

/*
 * Modernizr JavaScript library 1.5
 * http://www.modernizr.com/
 *
 * Copyright (c) 2009-2010 Faruk Ates - http://farukat.es/
 * Dual-licensed under the BSD and MIT licenses.
 * http://www.modernizr.com/license/
 *
 * Featuring major contributions by
 * Paul Irish  - http://paulirish.com
 */
window.Modernizr=(function(window,doc,undefined){var version="1.5",ret={},enableHTML5=true,fontfaceCheckDelay=75,docElement=doc.documentElement,mod="modernizr",m=doc.createElement(mod),m_style=m.style,f=doc.createElement("input"),canvas="canvas",canvastext="canvastext",rgba="rgba",hsla="hsla",multiplebgs="multiplebgs",backgroundsize="backgroundsize",borderimage="borderimage",borderradius="borderradius",boxshadow="boxshadow",opacity="opacity",cssanimations="cssanimations",csscolumns="csscolumns",cssgradients="cssgradients",cssreflections="cssreflections",csstransforms="csstransforms",csstransforms3d="csstransforms3d",csstransitions="csstransitions",fontface="fontface",geolocation="geolocation",video="video",audio="audio",input="input",inputtypes=input+"types",svg="svg",smil="smil",svgclippaths=svg+"clippaths",background="background",backgroundColor=background+"Color",canPlayType="canPlayType",localstorage="localStorage",sessionstorage="sessionStorage",applicationcache="applicationCache",webWorkers="webworkers",hashchange="hashchange",crosswindowmessaging="crosswindowmessaging",historymanagement="historymanagement",draganddrop="draganddrop",websqldatabase="websqldatabase",indexedDB="indexedDB",websockets="websockets",smile=":)",tostring=Object.prototype.toString,prefixes=" -o- -moz- -ms- -webkit- -khtml- ".split(" "),tests={},inputs={},attrs={},classes=[],isEventSupported=(function(){var TAGNAMES={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"},cache={};
function isEventSupported(eventName,element){var canCache=(arguments.length==1);
if(canCache&&cache[eventName]){return cache[eventName]
}element=element||document.createElement(TAGNAMES[eventName]||"div");
eventName="on"+eventName;
var isSupported=(eventName in element);
if(!isSupported&&element.setAttribute){element.setAttribute(eventName,"return;");
isSupported=typeof element[eventName]=="function"
}element=null;
return canCache?(cache[eventName]=isSupported):isSupported
}return isEventSupported
})();
var _hasOwnProperty=({}).hasOwnProperty,hasOwnProperty;
if(typeof _hasOwnProperty!=="undefined"&&typeof _hasOwnProperty.call!=="undefined"){hasOwnProperty=function(object,property){return _hasOwnProperty.call(object,property)
}
}else{hasOwnProperty=function(object,property){return((property in object)&&typeof object.constructor.prototype[property]==="undefined")
}
}function set_css(str){m_style.cssText=str
}function set_css_all(str1,str2){return set_css(prefixes.join(str1+";")+(str2||""))
}function contains(str,substr){return(""+str).indexOf(substr)!==-1
}function test_props(props,callback){for(var i in props){if(m_style[props[i]]!==undefined&&(!callback||callback(props[i],m))){return true
}}}function test_props_all(prop,callback){var uc_prop=prop.charAt(0).toUpperCase()+prop.substr(1),props=[prop,"Webkit"+uc_prop,"Moz"+uc_prop,"O"+uc_prop,"ms"+uc_prop,"Khtml"+uc_prop];
return !!test_props(props,callback)
}tests[canvas]=function(){return !!doc.createElement(canvas).getContext
};
tests[canvastext]=function(){return !!(tests[canvas]()&&typeof doc.createElement(canvas).getContext("2d").fillText=="function")
};
tests[geolocation]=function(){return !!navigator.geolocation
};
tests[crosswindowmessaging]=function(){return !!window.postMessage
};
tests[websqldatabase]=function(){var result=!!window.openDatabase;
if(result){try{result=!!openDatabase("testdb","1.0","html5 test db",200000)
}catch(err){result=false
}}return result
};
tests[indexedDB]=function(){return !!window[indexedDB]
};
tests[hashchange]=function(){return isEventSupported(hashchange,window)&&(document.documentMode===undefined||document.documentMode>7)
};
tests[historymanagement]=function(){return !!(window.history&&history.pushState)
};
tests[draganddrop]=function(){return isEventSupported("drag")&&isEventSupported("dragstart")&&isEventSupported("dragenter")&&isEventSupported("dragover")&&isEventSupported("dragleave")&&isEventSupported("dragend")&&isEventSupported("drop")
};
tests[websockets]=function(){return("WebSocket" in window)
};
tests[rgba]=function(){set_css(background+"-color:rgba(150,255,150,.5)");
return contains(m_style[backgroundColor],rgba)
};
tests[hsla]=function(){set_css(background+"-color:hsla(120,40%,100%,.5)");
return contains(m_style[backgroundColor],rgba)
};
tests[multiplebgs]=function(){set_css(background+":url(//:),url(//:),red url(//:)");
return new RegExp("(url\\s*\\(.*?){3}").test(m_style[background])
};
tests[backgroundsize]=function(){return test_props_all(background+"Size")
};
tests[borderimage]=function(){return test_props_all("borderImage")
};
tests[borderradius]=function(){return test_props_all("borderRadius","",function(prop){return contains(prop,"orderRadius")
})
};
tests[boxshadow]=function(){return test_props_all("boxShadow")
};
tests[opacity]=function(){set_css_all("opacity:.5");
return contains(m_style[opacity],"0.5")
};
tests[cssanimations]=function(){return test_props_all("animationName")
};
tests[csscolumns]=function(){return test_props_all("columnCount")
};
tests[cssgradients]=function(){var str1=background+"-image:",str2="gradient(linear,left top,right bottom,from(#9f9),to(white));",str3="linear-gradient(left top,#9f9, white);";
set_css((str1+prefixes.join(str2+str1)+prefixes.join(str3+str1)).slice(0,-str1.length));
return contains(m_style.backgroundImage,"gradient")
};
tests[cssreflections]=function(){return test_props_all("boxReflect")
};
tests[csstransforms]=function(){return !!test_props(["transformProperty","WebkitTransform","MozTransform","OTransform","msTransform"])
};
tests[csstransforms3d]=function(){var ret=!!test_props(["perspectiveProperty","WebkitPerspective","MozPerspective","OPerspective","msPerspective"]);
if(ret){var st=document.createElement("style"),div=doc.createElement("div");
st.textContent="@media ("+prefixes.join("transform-3d),(")+"modernizr){#modernizr{height:3px}}";
doc.getElementsByTagName("head")[0].appendChild(st);
div.id="modernizr";
docElement.appendChild(div);
ret=div.offsetHeight===3;
st.parentNode.removeChild(st);
div.parentNode.removeChild(div)
}return ret
};
tests[csstransitions]=function(){return test_props_all("transitionProperty")
};
tests[fontface]=function(){var fontret;
if(
/*@cc_on@if(@_jscript_version>=5)!@end@*/
0){fontret=true
}else{var st=doc.createElement("style"),spn=doc.createElement("span"),size,isFakeBody=false,body=doc.body,callback,isCallbackCalled;
st.textContent="@font-face{font-family:testfont;src:url('data:font/ttf;base64,AAEAAAAMAIAAAwBAT1MvMliohmwAAADMAAAAVmNtYXCp5qrBAAABJAAAANhjdnQgACICiAAAAfwAAAAEZ2FzcP//AAMAAAIAAAAACGdseWYv5OZoAAACCAAAANxoZWFk69bnvwAAAuQAAAA2aGhlYQUJAt8AAAMcAAAAJGhtdHgGDgC4AAADQAAAABRsb2NhAIQAwgAAA1QAAAAMbWF4cABVANgAAANgAAAAIG5hbWUgXduAAAADgAAABPVwb3N03NkzmgAACHgAAAA4AAECBAEsAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAACAAMDAAAAAAAAgAACbwAAAAoAAAAAAAAAAFBmRWQAAAAgqS8DM/8zAFwDMwDNAAAABQAAAAAAAAAAAAMAAAADAAAAHAABAAAAAABGAAMAAQAAAK4ABAAqAAAABgAEAAEAAgAuqQD//wAAAC6pAP///9ZXAwAAAAAAAAACAAAABgBoAAAAAAAvAAEAAAAAAAAAAAAAAAAAAAABAAIAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEACoAAAAGAAQAAQACAC6pAP//AAAALqkA////1lcDAAAAAAAAAAIAAAAiAogAAAAB//8AAgACACIAAAEyAqoAAwAHAC6xAQAvPLIHBADtMrEGBdw8sgMCAO0yALEDAC88sgUEAO0ysgcGAfw8sgECAO0yMxEhESczESMiARDuzMwCqv1WIgJmAAACAFUAAAIRAc0ADwAfAAATFRQWOwEyNj0BNCYrASIGARQGKwEiJj0BNDY7ATIWFX8aIvAiGhoi8CIaAZIoN/43KCg3/jcoAWD0JB4eJPQkHh7++EY2NkbVRjY2RgAAAAABAEH/+QCdAEEACQAANjQ2MzIWFAYjIkEeEA8fHw8QDxwWFhwWAAAAAQAAAAIAAIuYbWpfDzz1AAsEAAAAAADFn9IuAAAAAMWf0i797/8zA4gDMwAAAAgAAgAAAAAAAAABAAADM/8zAFwDx/3v/98DiAABAAAAAAAAAAAAAAAAAAAABQF2ACIAAAAAAVUAAAJmAFUA3QBBAAAAKgAqACoAWgBuAAEAAAAFAFAABwBUAAQAAgAAAAEAAQAAAEAALgADAAMAAAAQAMYAAQAAAAAAAACLAAAAAQAAAAAAAQAhAIsAAQAAAAAAAgAFAKwAAQAAAAAAAwBDALEAAQAAAAAABAAnAPQAAQAAAAAABQAKARsAAQAAAAAABgAmASUAAQAAAAAADgAaAUsAAwABBAkAAAEWAWUAAwABBAkAAQBCAnsAAwABBAkAAgAKAr0AAwABBAkAAwCGAscAAwABBAkABABOA00AAwABBAkABQAUA5sAAwABBAkABgBMA68AAwABBAkADgA0A/tDb3B5cmlnaHQgMjAwOSBieSBEYW5pZWwgSm9obnNvbi4gIFJlbGVhc2VkIHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgT3BlbiBGb250IExpY2Vuc2UuIEtheWFoIExpIGdseXBocyBhcmUgcmVsZWFzZWQgdW5kZXIgdGhlIEdQTCB2ZXJzaW9uIDMuYmFlYzJhOTJiZmZlNTAzMiAtIHN1YnNldCBvZiBKdXJhTGlnaHRiYWVjMmE5MmJmZmU1MDMyIC0gc3Vic2V0IG9mIEZvbnRGb3JnZSAyLjAgOiBKdXJhIExpZ2h0IDogMjMtMS0yMDA5YmFlYzJhOTJiZmZlNTAzMiAtIHN1YnNldCBvZiBKdXJhIExpZ2h0VmVyc2lvbiAyIGJhZWMyYTkyYmZmZTUwMzIgLSBzdWJzZXQgb2YgSnVyYUxpZ2h0aHR0cDovL3NjcmlwdHMuc2lsLm9yZy9PRkwAQwBvAHAAeQByAGkAZwBoAHQAIAAyADAAMAA5ACAAYgB5ACAARABhAG4AaQBlAGwAIABKAG8AaABuAHMAbwBuAC4AIAAgAFIAZQBsAGUAYQBzAGUAZAAgAHUAbgBkAGUAcgAgAHQAaABlACAAdABlAHIAbQBzACAAbwBmACAAdABoAGUAIABPAHAAZQBuACAARgBvAG4AdAAgAEwAaQBjAGUAbgBzAGUALgAgAEsAYQB5AGEAaAAgAEwAaQAgAGcAbAB5AHAAaABzACAAYQByAGUAIAByAGUAbABlAGEAcwBlAGQAIAB1AG4AZABlAHIAIAB0AGgAZQAgAEcAUABMACAAdgBlAHIAcwBpAG8AbgAgADMALgBiAGEAZQBjADIAYQA5ADIAYgBmAGYAZQA1ADAAMwAyACAALQAgAHMAdQBiAHMAZQB0ACAAbwBmACAASgB1AHIAYQBMAGkAZwBoAHQAYgBhAGUAYwAyAGEAOQAyAGIAZgBmAGUANQAwADMAMgAgAC0AIABzAHUAYgBzAGUAdAAgAG8AZgAgAEYAbwBuAHQARgBvAHIAZwBlACAAMgAuADAAIAA6ACAASgB1AHIAYQAgAEwAaQBnAGgAdAAgADoAIAAyADMALQAxAC0AMgAwADAAOQBiAGEAZQBjADIAYQA5ADIAYgBmAGYAZQA1ADAAMwAyACAALQAgAHMAdQBiAHMAZQB0ACAAbwBmACAASgB1AHIAYQAgAEwAaQBnAGgAdABWAGUAcgBzAGkAbwBuACAAMgAgAGIAYQBlAGMAMgBhADkAMgBiAGYAZgBlADUAMAAzADIAIAAtACAAcwB1AGIAcwBlAHQAIABvAGYAIABKAHUAcgBhAEwAaQBnAGgAdABoAHQAdABwADoALwAvAHMAYwByAGkAcAB0AHMALgBzAGkAbAAuAG8AcgBnAC8ATwBGAEwAAAAAAgAAAAAAAP+BADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAQACAQIAEQt6ZXJva2F5YWhsaQ==')}";
doc.getElementsByTagName("head")[0].appendChild(st);
spn.setAttribute("style","font:99px _,arial,helvetica;position:absolute;visibility:hidden");
if(!body){body=docElement.appendChild(doc.createElement(fontface));
isFakeBody=true
}spn.innerHTML="........";
spn.id="fonttest";
body.appendChild(spn);
size=spn.offsetWidth*spn.offsetHeight;
spn.style.font="99px testfont,_,arial,helvetica";
fontret=size!==spn.offsetWidth*spn.offsetHeight;
function delayedCheck(){if(!body.parentNode){return
}fontret=ret[fontface]=size!==spn.offsetWidth*spn.offsetHeight;
docElement.className=docElement.className.replace(/(no-)?fontface\b/,"")+(fontret?" ":" no-")+fontface
}setTimeout(delayedCheck,fontfaceCheckDelay);
setTimeout(delayedCheck,fontfaceCheckDelay*2);
addEventListener("load",function(){delayedCheck();
(isCallbackCalled=true)&&callback&&callback(fontret);
setTimeout(function(){if(!isFakeBody){body=spn
}body.parentNode.removeChild(body);
st.parentNode.removeChild(st)
},50)
},false)
}ret._fontfaceready=function(fn){(isCallbackCalled||fontret)?fn(fontret):(callback=fn)
};
return fontret||size!==spn.offsetWidth
};
tests[video]=function(){var elem=doc.createElement(video),bool=!!elem[canPlayType];
if(bool){bool=new Boolean(bool);
bool.ogg=elem[canPlayType]('video/ogg; codecs="theora"');
bool.h264=elem[canPlayType]('video/mp4; codecs="avc1.42E01E"');
bool.webm=elem[canPlayType]('video/webm; codecs="vp8, vorbis"')
}return bool
};
tests[audio]=function(){var elem=doc.createElement(audio),bool=!!elem[canPlayType];
if(bool){bool=new Boolean(bool);
bool.ogg=elem[canPlayType]('audio/ogg; codecs="vorbis"');
bool.mp3=elem[canPlayType]("audio/mpeg;");
bool.wav=elem[canPlayType]('audio/wav; codecs="1"');
bool.m4a=elem[canPlayType]("audio/x-m4a;")||elem[canPlayType]("audio/aac;")
}return bool
};
tests[localstorage]=function(){return("localStorage" in window)&&window[localstorage]!==null
};
tests[sessionstorage]=function(){try{return("sessionStorage" in window)&&window[sessionstorage]!==null
}catch(e){return false
}};
tests[webWorkers]=function(){return !!window.Worker
};
tests[applicationcache]=function(){var cache=window[applicationcache];
return !!(cache&&(typeof cache.status!="undefined")&&(typeof cache.update=="function")&&(typeof cache.swapCache=="function"))
};
tests[svg]=function(){return !!doc.createElementNS&&!!doc.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect
};
tests[smil]=function(){return !!doc.createElementNS&&/SVG/.test(tostring.call(doc.createElementNS("http://www.w3.org/2000/svg","animate")))
};
tests[svgclippaths]=function(){return !!doc.createElementNS&&/SVG/.test(tostring.call(doc.createElementNS("http://www.w3.org/2000/svg","clipPath")))
};
function webforms(){ret[input]=(function(props){for(var i=0,len=props.length;
i<len;
i++){attrs[props[i]]=!!(props[i] in f)
}return attrs
})("autocomplete autofocus list placeholder max min multiple pattern required step".split(" "));
ret[inputtypes]=(function(props){for(var i=0,bool,len=props.length;
i<len;
i++){f.setAttribute("type",props[i]);
bool=f.type!=="text";
if(bool){f.value=smile;
if(/tel|search/.test(f.type)){}else{if(/url|email/.test(f.type)){bool=f.checkValidity&&f.checkValidity()===false
}else{bool=f.value!=smile
}}}inputs[props[i]]=!!bool
}return inputs
})("search tel url email datetime date month week time datetime-local number range color".split(" "))
}for(var feature in tests){if(hasOwnProperty(tests,feature)){classes.push(((ret[feature.toLowerCase()]=tests[feature]())?"":"no-")+feature.toLowerCase())
}}if(!ret[input]){webforms()
}ret.addTest=function(feature,test){feature=feature.toLowerCase();
if(ret[feature]){return
}test=!!(test());
docElement.className+=" "+(test?"":"no-")+feature;
ret[feature]=test;
return ret
};
set_css("");
m=f=null;
if(enableHTML5&&(function(){var elem=doc.createElement("div");
elem.innerHTML="<elem></elem>";
return elem.childNodes.length!==1
})()){(function(p,e){function q(a,b){if(g[a]){g[a].styleSheet.cssText+=b
}else{var c=r[l],d=e[j]("style");
d.media=a;
c.insertBefore(d,c[l]);
g[a]=d;
q(a,b)
}}function s(a,b){for(var c=new RegExp("\\b("+m+")\\b(?!.*[;}])","gi"),d=function(k){return".iepp_"+k
},h=-1;
++h<a.length;
){b=a[h].media||b;
s(a[h].imports,b);
q(b,a[h].cssText.replace(c,d))
}}function t(){for(var a,b=e.getElementsByTagName("*"),c,d,h=new RegExp("^"+m+"$","i"),k=-1;
++k<b.length;
){if((a=b[k])&&(d=a.nodeName.match(h))){c=new RegExp("^\\s*<"+d+"(.*)\\/"+d+">\\s*$","i");
i.innerHTML=a.outerHTML.replace(/\r|\n/g," ").replace(c,a.currentStyle.display=="block"?"<div$1/div>":"<span$1/span>");
c=i.childNodes[0];
c.className+=" iepp_"+d;
c=f[f.length]=[a,c];
a.parentNode.replaceChild(c[1],c[0])
}}s(e.styleSheets,"all")
}function u(){for(var a=-1,b;
++a<f.length;
){f[a][1].parentNode.replaceChild(f[a][0],f[a][1])
}for(b in g){r[l].removeChild(g[b])
}g={};
f=[]
}for(var r=e.documentElement,i=e.createDocumentFragment(),g={},m="abbr|article|aside|audio|canvas|command|datalist|details|figure|figcaption|footer|header|hgroup|keygen|mark|meter|nav|output|progress|section|source|summary|time|video",n=m.split("|"),f=[],o=-1,l="firstChild",j="createElement";
++o<n.length;
){e[j](n[o]);
i[j](n[o])
}i=i.appendChild(e[j]("div"));
p.attachEvent("onbeforeprint",t);
p.attachEvent("onafterprint",u)
})(this,doc)
}ret._enableHTML5=enableHTML5;
ret._version=version;
docElement.className=docElement.className.replace(/\bno-js\b/,"")+" js";
docElement.className+=" "+classes.join(" ");
return ret
})(this,this.document);

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
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)
}}
})()};
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
}
},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)
},ready:(function(){var complete=false;
var queue=[],perform=function(){complete=true;
for(var fn;
fn=queue.shift();
fn()){}};
var styleElements=Object.prototype.propertyIsEnumerable?elementsByTagName("style"):{length:0};
var linkElements=elementsByTagName("link");
DOM.ready(function(){var linkStyles=0,link;
for(var i=0,l=linkElements.length;
link=linkElements[i],i<l;
++i){if(!link.disabled&&link.rel.toLowerCase()=="stylesheet"){++linkStyles
}}if(document.styleSheets.length>=styleElements.length+linkStyles){perform()
}else{setTimeout(arguments.callee,10)
}});
return function(listener){if(complete){listener()
}else{queue.push(listener)
}}
})(),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(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
}),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
}),textTransform:function(text,style){return text[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[style.get("textTransform")]||"toString"]()
}};
api.VML={parsePath:function(path){var cmds=[],re=/([mrvxe])([^a-z]*)/g,match;
while(match=re.exec(path)){cmds.push({type:match[1],coords:match[2].split(",")})
}return cmds
}};
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+/);
return{minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),width:parseInt(parts[2],10)-parseInt(parts[0],10),height:parseInt(parts[3],10)-parseInt(parts[1],10),toString:function(){return[this.minX,this.minY,this.width,this.height].join(" ")
}}
})();
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){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 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.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.extend=function(styles){for(var property in styles){custom[property]=styles[property]
}return this
}
}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(!cache.hasOwnProperty(key)){cache[key]=fun.apply(null,arguments)
}return cache[key]
}
}function getFont(el,style){if(!style){style=CSS.getStyle(el)
}var families=style.get("fontFamily").split(/\s*,\s*/),family;
for(var i=0,l=families.length;
i<l;
++i){family=families[i].replace(/^(["'])(.*?)\1$/,"$2").toLowerCase();
if(fonts[family]){return fonts[family].get(style.get("fontStyle"),style.get("fontWeight"))
}}return null
}function elementsByTagName(query){return document.getElementsByTagName(query)
}function merge(){var merged={},key;
for(var i=0,l=arguments.length;
i<l;
++i){for(key in arguments[i]){merged[key]=arguments[i][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,nextNode,redraw;
for(var node=attach(el,options).firstChild;
node;
node=nextNode){nextNode=node.nextSibling;
redraw=false;
if(node.nodeType==1){if(!node.firstChild){continue
}if(!/cufon/.test(node.className)){arguments.callee(node,options);
continue
}else{redraw=true
}}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=node.data;
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=[];
var engines={},fonts={},defaultOptions={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||window.jQuery||(window.dojo&&dojo.query)||(window.$$&&function(query){return $$(query)
})||(window.$&&function(query){return $(query)
})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query)
})||elementsByTagName),separate:"words",textShadow:"none"};
var separators={words:/\s+/,characters:""};
api.now=function(){DOM.ready();
return api
};
api.refresh=function(){var currentHistory=replaceHistory.splice(0,replaceHistory.length);
for(var i=0,l=currentHistory.length;
i<l;
++i){api.replace.apply(null,currentHistory[i])
}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(typeof options.textShadow=="string"){options.textShadow=CSS.textShadow(options.textShadow)
}if(!ignoreHistory){replaceHistory.push(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 null
}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("@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:none}"+(HAS_INLINE_BLOCK?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));
document.getElementsByTagName("head")[0].appendChild(styleSheet);
function generateFromVML(path,context){var atX=0,atY=0;
var cmds=Cufon.VML.parsePath(path);
var code=new Array(cmds.length-1);
generate:for(var i=0,l=cmds.length;
i<l;
++i){var c=cmds[i].coords;
switch(cmds[i].type){case"v":code[i]={m:"bezierCurveTo",a:[atX+Number(c[0]),atY+Number(c[1]),atX+Number(c[2]),atY+Number(c[3]),atX+=Number(c[4]),atY+=Number(c[5])]};
break;
case"r":code[i]={m:"lineTo",a:[atX+=Number(c[0]),atY+=Number(c[1])]};
break;
case"m":code[i]={m:"moveTo",a:[atX=Number(c[0]),atY=Number(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);
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=0,l=shadows.length;
i<l;
++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(redraw?node.alt:text,style).split("");
var width=0,lastWidth=null;
for(var i=0,l=chars.length;
i<l;
++i){var glyph=font.glyphs[chars[i]]||font.missingGlyph;
if(!glyph){continue
}width+=lastWidth=Number(glyph.w||font.w)+letterSpacing
}if(lastWidth===null){return null
}expandRight+=(viewBox.width-lastWidth);
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-expandTop+expandBottom);
var roundedHeight=Math.ceil(height);
var roundingFactor=roundedHeight/height;
canvas.width=Math.ceil(size.convert(width+expandRight-expandLeft)*roundingFactor);
canvas.height=roundedHeight;
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(width*roundingFactor))+"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=roundedHeight/viewBox.height;
g.scale(scale,scale);
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)
}g.fillStyle=style.get("color");
function renderText(){for(var i=0,l=chars.length;
i<l;
++i){var glyph=font.glyphs[chars[i]]||font.missingGlyph;
if(!glyph){continue
}g.beginPath();
if(glyph.d){if(glyph.code){interpret(glyph.code,g)
}else{glyph.code=generateFromVML("m"+glyph.d,g)
}}g.fill();
g.translate(Number(glyph.w||font.w)+letterSpacing,0)
}}if(shadows){for(var i=0,l=shadows.length;
i<l;
++i){var shadow=shadows[i];
g.save();
g.fillStyle=shadow.color;
g.translate.apply(g,shadowOffsets[i]);
renderText();
g.restore()
}}renderText();
g.restore();
if(textDecoration["line-through"]){line(-font.descent,textDecoration["line-through"])
}return wrapper
}
})());
Cufon.registerEngine("vml",(function(){if(!document.namespaces){return
}document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;</script><![endif]-->');
if(!Cufon.vmlEnabled){return
}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");
document.write('<style type="text/css">@media screen{cvml\\:shape,cvml\\:group,cvml\\:shapetype,cvml\\:fill{behavior:url(#default#VML);display:inline-block;antialias:true;position:absolute}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{display:none}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>')
}var typeIndex=0;
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;
var result=el.style.pixelLeft;
el.style.left=style;
el.runtimeStyle.left=runtimeStyle;
return result
}function createType(glyph,viewBox){var shapeType=document.createElement("cvml:shapetype");
shapeType.id="cufon-glyph-"+typeIndex++;
glyph.typeRef="#"+shapeType.id;
shapeType.stroked="f";
shapeType.coordsize=viewBox.width+","+viewBox.height;
shapeType.coordorigin=viewBox.minX+","+viewBox.minY;
var ensureSize="m"+viewBox.minX+","+viewBox.minY+" r"+viewBox.width+","+viewBox.height;
shapeType.path=(glyph.d?"m"+glyph.d+"x":"")+ensureSize;
document.body.insertBefore(shapeType,document.body.firstChild)
}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("cvml:group");
wrapper.appendChild(canvas);
if(options.printable){var print=document.createElement("span");
print.className="cufon-alt";
print.innerText=text;
wrapper.appendChild(print)
}if(!hasNext){wrapper.appendChild(document.createElement("cvml:group"))
}}var wStyle=wrapper.style;
var cStyle=canvas.style;
var height=size.convert(viewBox.height);
cStyle.height=Math.ceil(height);
cStyle.top=Math.round(size.convert(viewBox.minY-font.ascent));
cStyle.left=Math.round(size.convert(viewBox.minX));
var roundingFactor=parseInt(cStyle.height,10)/height;
wStyle.height=size.convert(-font.ascent+font.descent)+"px";
var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};
var color=style.get("color");
var chars=Cufon.CSS.textTransform(text,style).split("");
var width=0,offsetX=0,advance=null;
var shadows=options.textShadow;
for(var i=0,k=-1,l=chars.length;
i<l;
++i){var glyph=font.glyphs[chars[i]]||font.missingGlyph,shape;
if(!glyph){continue
}if(!glyph.typeRef){createType(glyph,viewBox)
}if(redraw){shape=canvas.childNodes[++k]
}else{shape=document.createElement("cvml:shape");
canvas.appendChild(shape)
}shape.type=glyph.typeRef;
var sStyle=shape.style;
sStyle.width=viewBox.width;
sStyle.height=viewBox.height;
sStyle.top=0;
sStyle.left=offsetX;
sStyle.zIndex=1;
shape.fillcolor=color;
if(shadows){for(var z=0,p=shadows.length;
z<p;
++z){var shadow=shadows[z];
var shadowColor=Cufon.CSS.color(shadow.color);
var shadowNode=shape.cloneNode(false),zStyle=shadowNode.runtimeStyle;
zStyle.top=size.convertFrom(parseFloat(shadow.offY));
zStyle.left=offsetX+size.convertFrom(parseFloat(shadow.offX));
zStyle.zIndex=0;
shadowNode.fillcolor=shadowColor.color;
if(shadowColor.opacity){var shadowFill=document.createElement("cvml:fill");
shadowFill.opacity=shadowColor.opacity;
shadowNode.appendChild(shadowFill)
}canvas.appendChild(shadowNode)
}++k
}advance=Number(glyph.w||font.w)+letterSpacing;
width+=advance;
offsetX+=advance
}if(advance===null){return null
}var fullWidth=-viewBox.minX+width+(viewBox.width-advance);
canvas.coordsize=fullWidth+","+viewBox.height;
cStyle.width=size.convert(fullWidth*roundingFactor);
wStyle.width=Math.max(Math.ceil(size.convert(width*roundingFactor)),0);
return wrapper
}
})());

/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright ? 1989, 1990, 2002 Adobe Systems Incorporated.  All Rights Reserved.
 * ? 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Trade Gothic is a trademark of Heidelberger Druckmaschinen AG, exclusively
 * licensed through Linotype Library GmbH, and may be registered in certain
 * jurisdictions.
 * 
 * Full name:
 * TradeGothicLTStd
 * 
 * Designer:
 * Jackson Burke
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({w:219,face:{"font-family":"Trade Gothic LT Std","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 5 0 0 0 0 0 0 0",ascent:"260",descent:"-100","x-height":"4",bbox:"-6 -346 347 80.6135","underline-thickness":"18","underline-position":"-18",stemh:"18",stemv:"26","unicode-range":"U+0020-U+03C0"},glyphs:{" ":{w:109},"!":{d:"41,-260r38,0r-8,178r-23,0xm42,-40r35,0r0,40r-35,0r0,-40",w:119},'"':{d:"27,-163r0,-97r23,0r0,97r-23,0xm70,-163r0,-97r23,0r0,97r-23,0",w:119},"#":{d:"90,-158r-7,55r48,0r8,-55r-49,0xm80,-83r-11,83r-23,0r12,-83r-36,0r0,-20r38,0r8,-55r-36,0r0,-20r39,0r11,-82r22,0r-11,82r49,0r11,-82r22,0r-11,82r34,0r0,20r-37,0r-7,55r34,0r0,20r-37,0r-11,83r-23,0r12,-83r-49,0"},"$":{d:"99,-150r0,-88v-29,-1,-47,16,-47,40v0,32,24,43,47,48xm123,-116r0,94v26,-1,51,-18,51,-44v0,-32,-27,-42,-51,-50xm99,-260r0,-28r24,0r0,28v30,2,54,24,67,43r-19,15v-10,-17,-29,-32,-48,-36r0,94v50,16,77,35,77,76v0,40,-36,68,-77,68r0,45r-24,0r0,-45v-35,-1,-61,-26,-79,-47r21,-16v12,17,34,40,58,41r0,-101v-26,-6,-73,-23,-73,-71v0,-45,36,-66,73,-66"},"%":{d:"238,-22v21,0,38,-16,38,-38v0,-22,-17,-37,-38,-37v-21,0,-37,15,-37,37v0,22,16,38,37,38xm238,0v-33,0,-60,-26,-60,-60v0,-34,27,-60,60,-60v33,0,60,26,60,60v0,34,-27,60,-60,60xm82,-140v-33,0,-60,-26,-60,-60v0,-34,27,-60,60,-60v33,0,60,26,60,60v0,34,-27,60,-60,60xm82,-163v21,0,38,-15,38,-37v0,-22,-17,-38,-38,-38v-21,0,-38,16,-38,38v0,22,17,37,38,37xm75,4r149,-268r21,0r-149,268r-21,0",w:320},"&":{d:"109,-241v-42,2,-27,57,-13,77v18,-12,39,-31,39,-51v0,-16,-13,-26,-26,-26xm191,-131r24,6v-5,27,-17,59,-30,77v11,12,34,22,43,22r0,26v-24,2,-40,-10,-60,-26v-39,51,-152,35,-152,-45v0,-35,29,-61,56,-78v-28,-39,-31,-115,38,-115v30,0,53,18,53,49v0,30,-30,54,-54,71v17,31,40,58,58,78v8,-11,19,-37,24,-65xm45,-69v1,59,78,58,105,27v-24,-27,-47,-58,-66,-88v-21,14,-39,29,-39,61",w:240},"(":{d:"73,-264r28,0v-69,84,-66,210,0,294r-27,0v-67,-83,-66,-210,-1,-294",w:119},")":{d:"47,30r-28,0v69,-84,66,-210,0,-294r27,0v66,84,66,210,1,294",w:119},"*":{d:"80,-196r-53,-8r6,-24r49,24r3,-2r-8,-54r24,0r-7,54v16,1,33,-17,50,-23r9,24r-53,11r-1,3r38,38r-20,15r-26,-48r-3,0r-26,48r-19,-14r38,-41",w:180},"+":{d:"97,-105r0,-82r22,0r0,82r83,0r0,23r-83,0r0,82r-22,0r0,-82r-83,0r0,-23r83,0",w:216},",":{d:"72,-40v4,43,-11,66,-22,93r-15,0r16,-53r-14,0r0,-40r35,0",w:109},"-":{d:"105,-82r-91,0r0,-23r91,0r0,23",w:119},".":{d:"37,-40r35,0r0,40r-35,0r0,-40",w:109},"/":{d:"81,-264r22,0r-84,268r-22,0",w:100},"0":{d:"18,-130v0,-94,35,-134,92,-134v57,0,92,40,92,134v0,94,-35,134,-92,134v-57,0,-92,-40,-92,-134xm45,-130v0,79,23,111,65,111v42,0,64,-32,64,-111v0,-79,-22,-111,-64,-111v-42,0,-65,32,-65,111"},"1":{d:"171,0r-115,0r0,-22r45,0r0,-212r-50,5r0,-17v29,-5,42,-21,76,-18r0,242r44,0r0,22"},"2":{d:"193,-22r0,22r-169,0r0,-27v45,-91,142,-97,142,-167v0,-30,-20,-47,-53,-47v-37,0,-57,30,-61,56r-26,-5v8,-36,30,-74,88,-74v42,0,79,25,79,70v0,79,-114,101,-142,172r142,0"},"3":{d:"12,-48r21,-14v20,27,44,43,71,43v38,0,62,-19,62,-50v0,-44,-40,-63,-99,-58r0,-23v53,3,89,-11,89,-48v0,-26,-22,-43,-47,-43v-32,0,-46,14,-63,36r-21,-15v18,-24,42,-44,84,-44v46,0,75,24,75,65v0,31,-21,50,-41,58v89,36,53,145,-39,145v-50,0,-80,-32,-92,-52"},"4":{d:"204,-61r-45,0r0,61r-26,0r0,-61r-119,0r0,-23r107,-176r38,0r0,176r45,0r0,23xm133,-233r-92,149r92,0r0,-149"},"5":{d:"180,-260r0,22r-111,0r-7,84v53,-47,137,-16,137,66v0,40,-24,92,-90,92v-44,0,-67,-25,-83,-50r23,-12v26,56,122,55,122,-30v0,-72,-93,-87,-113,-26r-22,-5r11,-141r133,0"},"6":{d:"184,-248r-11,22v-58,-38,-124,-2,-124,94v39,-50,149,-42,149,52v0,55,-41,84,-84,84v-54,0,-92,-32,-92,-121v0,-82,36,-147,106,-147v28,0,48,9,56,16xm171,-79v2,-87,-121,-72,-121,-7v0,37,25,67,62,67v37,0,59,-25,59,-60"},"7":{d:"158,-238r-131,0r0,-22r165,0r0,16r-110,244r-31,0"},"8":{d:"204,-68v0,40,-30,72,-94,72v-64,0,-95,-32,-95,-72v-1,-34,28,-55,57,-71v-29,-11,-46,-33,-46,-60v0,-42,36,-65,84,-65v48,0,84,23,84,65v1,28,-19,48,-46,61v31,11,56,35,56,70xm42,-68v0,23,21,49,68,49v47,0,67,-26,67,-49v0,-30,-31,-45,-72,-59v-32,14,-63,29,-63,59xm166,-200v0,-56,-113,-55,-113,0v0,28,36,44,57,50v29,-7,56,-25,56,-50"},"9":{d:"36,-12r11,-21v59,37,122,-2,124,-94v-39,50,-149,41,-149,-53v0,-55,40,-84,83,-84v54,0,93,32,93,121v0,82,-36,147,-106,147v-28,0,-48,-9,-56,-16xm49,-181v0,84,105,73,121,14v9,-90,-123,-98,-121,-14"},":":{d:"72,0r-35,0r0,-40r35,0r0,40xm72,-104r-35,0r0,-40r35,0r0,40",w:109},";":{d:"72,-40v4,43,-11,66,-22,93r-15,0r16,-53r-14,0r0,-40r35,0xm72,-104r-35,0r0,-40r35,0r0,40",w:109},"<":{d:"199,-22r0,22r-182,-84r0,-20r182,-83r0,22r-157,71",w:216},"=":{d:"202,-141r0,22r-188,0r0,-22r188,0xm202,-68r0,22r-188,0r0,-22r188,0",w:216},">":{d:"17,-22r157,-72r-157,-71r0,-22r182,83r0,21r-182,83r0,-22",w:216},"?":{d:"79,-82r-24,0v-10,-68,52,-82,54,-128v0,-14,-9,-31,-31,-31v-17,0,-27,8,-37,28r-22,-11v20,-57,117,-53,117,15v0,55,-68,66,-57,127xm49,-40r35,0r0,40r-35,0r0,-40",w:159},"@":{d:"97,-111v0,21,8,35,25,35v33,0,58,-42,58,-71v0,-23,-13,-33,-26,-33v-35,0,-57,40,-57,69xm164,-73v-27,40,-96,21,-96,-34v0,-68,83,-140,124,-71r7,-21r24,0r-33,116v0,5,2,9,8,9v27,0,51,-40,51,-75v0,-58,-46,-91,-100,-91v-63,0,-107,49,-107,111v0,105,138,146,196,71r28,0v-23,41,-69,62,-117,62v-74,0,-133,-59,-133,-133v0,-76,60,-135,133,-135v67,0,123,46,123,111v0,70,-51,103,-83,103v-14,0,-24,-11,-25,-23",w:288},A:{d:"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0"},B:{d:"163,-136v28,9,52,33,51,66v0,39,-23,70,-94,70r-81,0r0,-260r96,0v80,-3,99,102,28,124xm68,-124r0,100v54,1,117,4,117,-47v0,-50,-59,-57,-117,-53xm68,-235r0,87r50,0v78,5,81,-89,12,-87r-62,0",w:240},C:{d:"180,-83r26,5v-12,48,-39,82,-92,82v-58,0,-99,-43,-99,-134v0,-85,36,-134,99,-134v48,0,76,28,88,76r-26,8v-9,-37,-26,-59,-65,-59v-37,0,-67,34,-67,109v0,75,30,109,73,109v40,0,55,-30,63,-62"},D:{d:"65,-235r0,211v85,7,130,-19,129,-106v-1,-93,-47,-111,-129,-105xm36,0r0,-260v113,-9,187,15,187,130v0,76,-41,130,-119,130r-68,0",w:240},E:{d:"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260"},F:{d:"36,-260r154,0r0,25r-125,0r0,87r93,0r0,24r-93,0r0,124r-29,0r0,-260",w:200,k:{A:27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":46,".":46}},G:{d:"124,-125r87,0r0,125r-23,0v-1,-7,2,-18,-1,-24v-13,18,-39,28,-68,28v-59,0,-102,-43,-102,-134v0,-153,159,-182,195,-57r-27,5v-13,-41,-35,-57,-65,-57v-38,0,-74,26,-74,109v0,83,36,109,74,109v51,0,67,-31,63,-79r-59,0r0,-25",w:240},H:{d:"192,-260r29,0r0,260r-29,0r0,-124r-124,0r0,124r-29,0r0,-260r29,0r0,112r124,0r0,-112",w:259},I:{d:"45,-260r29,0r0,260r-29,0r0,-260",w:119},J:{d:"95,-260r29,0r0,193v9,86,-93,86,-121,37r21,-14v16,28,71,39,71,-15r0,-201",w:159},K:{d:"71,-87r0,87r-29,0r0,-260r29,0r0,135r108,-135r34,0r-81,98r91,162r-33,0r-77,-138",w:240},L:{d:"191,0r-152,0r0,-260r29,0r0,236r123,0r0,24",w:200,k:{T:33,V:33,W:27,y:20,"\u00fd":20,"\u00ff":20,Y:33,"\u00dd":33,"\u0178":33}},M:{d:"261,0r-26,0r-1,-238r-73,238r-22,0r-74,-238r0,238r-26,0r0,-260r45,0r66,210r66,-210r45,0r0,260",w:299},N:{d:"65,0r-26,0r0,-260r41,0r115,200r0,-200r26,0r0,260r-24,0r-132,-232r0,232",w:259},O:{d:"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134",w:240},P:{d:"65,-235r0,95v54,3,121,0,112,-48v5,-51,-59,-49,-112,-47xm65,0r-29,0r0,-260r91,0v55,0,79,32,79,73v0,58,-65,78,-141,71r0,116",k:{A:20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":46,".":46}},Q:{d:"234,-7r0,28v-32,0,-44,-11,-58,-34v-78,46,-158,-4,-158,-117v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,43,-9,77,-26,99v9,17,21,24,39,24xm130,-57r0,-27v23,3,37,9,49,26v9,-17,14,-41,14,-72v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109v0,95,55,132,115,95v-9,-13,-17,-20,-32,-22",w:240},R:{d:"65,-235r0,92v53,1,112,5,112,-47v0,-54,-60,-44,-112,-45xm65,0r-29,0r0,-260r84,0v102,-11,111,118,34,136r56,124r-32,0r-52,-118r-61,0r0,118",w:240,k:{T:13,V:6,W:6,Y:6,"\u00dd":6,"\u0178":6}},S:{d:"187,-199r-26,5v-1,-49,-109,-66,-109,-5v0,57,146,42,146,126v0,38,-21,77,-87,77v-57,0,-79,-37,-93,-68r26,-9v10,27,30,52,68,52v38,0,58,-20,58,-47v0,-66,-147,-47,-147,-129v0,-37,32,-67,79,-67v40,0,71,22,85,65"},T:{d:"192,-235r-78,0r0,235r-28,0r0,-235r-78,0r0,-25r184,0r0,25",w:200,k:{"\u00fc":33,"\u0161":33,"\u00f2":33,"\u00f6":33,"\u00ec":33,"\u00ee":33,"\u00ed":33,"\u00e8":33,"\u00eb":33,"\u00ea":33,"\u00e3":33,"\u00e5":33,"\u00e0":33,"\u00e4":33,"\u00e2":33,w:33,y:33,"\u00fd":33,"\u00ff":33,A:20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":33,".":33,"-":33,a:33,"\u00e6":33,"\u00e1":33,c:33,"\u00e7":33,e:33,"\u00e9":33,i:33,"\u00ef":33,o:33,"\u00f8":33,"\u0153":33,"\u00f3":33,"\u00f4":33,"\u00f5":33,r:33,s:33,u:33,"\u00fa":33,"\u00fb":33,"\u00f9":33,":":33,";":33}},U:{d:"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182",w:259},V:{d:"87,0r-81,-260r29,0r65,213r65,-213r29,0r-81,260r-26,0",w:200,k:{"\u00f6":13,"\u00f4":13,"\u00ee":6,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e4":13,"\u00e2":13,y:6,"\u00fd":6,"\u00ff":6,A:13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":40,".":40,"-":20,a:13,"\u00e6":13,"\u00e1":13,e:13,"\u00e9":13,i:6,"\u00ed":6,"\u00ef":6,"\u00ec":6,o:13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f2":13,"\u00f5":13,r:6,u:6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,":":27,";":27}},W:{d:"73,0r-63,-260r27,0r49,207r51,-207r25,0r53,207r47,-207r28,0r-62,260r-25,0r-54,-210r-51,210r-25,0",w:299,k:{"\u00fc":6,"\u00f6":13,"\u00ea":13,"\u00e4":13,y:6,"\u00fd":6,"\u00ff":6,A:13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":33,".":33,"-":13,a:13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,e:13,"\u00e9":13,"\u00eb":13,"\u00e8":13,i:6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,o:13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f2":13,"\u00f5":13,r:6,u:6,"\u00fa":6,"\u00fb":6,"\u00f9":6,":":20,";":20}},X:{d:"99,-107r-61,107r-33,0r78,-136r-73,-124r33,0r56,95r55,-95r33,0r-71,124r79,136r-33,0",w:200},Y:{d:"86,0r0,-109r-80,-151r31,0r63,119r63,-119r31,0r-80,151r0,109r-28,0",w:200,k:{"\u00fc":13,"\u00f6":20,v:13,A:20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":40,".":40,"-":33,a:20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,e:20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,i:13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,o:20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,u:13,"\u00fa":13,"\u00fb":13,"\u00f9":13,":":33,";":33,p:13,q:20}},Z:{d:"184,-24r0,24r-168,0r0,-21r131,-214r-119,0r0,-25r155,0r0,19r-133,217r134,0",w:200},"[":{d:"27,27r0,-287r74,0r0,15r-48,0r0,257r48,0r0,15r-74,0",w:119},"\\":{d:"-3,-264r22,0r84,268r-22,0",w:100},"]":{d:"93,-260r0,287r-74,0r0,-15r48,0r0,-257r-48,0r0,-15r74,0",w:119},"^":{d:"40,-100r-23,0r81,-160r20,0r81,160r-23,0r-68,-135",w:216},_:{d:"180,45r-180,0r0,-18r180,0r0,18",w:180},a:{d:"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2",w:180},b:{d:"58,-169v51,-44,126,-25,126,75v0,105,-80,119,-131,74r-5,20r-18,0v5,-83,1,-174,2,-260r26,0r0,91xm58,-143r0,99v41,47,100,27,100,-48v0,-86,-60,-93,-100,-51",w:200},c:{d:"159,-140r-24,9v-7,-23,-22,-37,-44,-37v-32,0,-51,26,-51,74v0,81,73,101,103,41r20,9v-19,32,-35,48,-72,48v-47,0,-77,-38,-77,-98v0,-60,30,-97,77,-97v39,0,56,22,68,51",w:180},d:{d:"17,-94v2,-101,74,-117,126,-75r0,-91r25,0r2,260r-24,0r-3,-18v-46,43,-128,26,-126,-76xm143,-44r0,-99v-41,-42,-101,-36,-101,51v0,76,60,95,101,48",w:200},e:{d:"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57",w:180},f:{d:"67,0r-26,0r0,-165r-31,0r0,-22r31,0v-5,-59,15,-89,69,-75r0,23v-22,-3,-46,-6,-43,24r0,28r41,0r0,22r-41,0r0,165",w:119},g:{d:"173,-194r0,26v-11,0,-23,2,-29,5v38,48,-18,129,-89,98v-19,3,-19,31,1,31v89,0,117,16,117,53v0,27,-27,50,-85,50v-82,0,-108,-57,-49,-83v-34,-11,-28,-48,2,-59v-51,-35,-21,-118,45,-118v20,0,34,4,46,13v11,-8,27,-15,41,-16xm149,20v0,-18,-19,-28,-65,-28v-41,0,-52,18,-52,31v0,14,8,24,60,24v31,0,57,-9,57,-27xm132,-124v0,-27,-15,-44,-47,-44v-30,0,-45,19,-45,43v0,25,19,43,48,43v30,0,44,-20,44,-42",w:180},h:{d:"32,-260r26,0r1,98v30,-41,109,-44,109,26r0,136r-26,0r0,-135v-1,-57,-66,-28,-84,-5r0,140r-26,0r0,-260",w:200},i:{d:"37,0r0,-187r26,0r0,187r-26,0xm37,-264r26,0r0,31r-26,0r0,-31",w:100},j:{d:"42,-187r26,0r0,217v3,31,-32,47,-60,35r0,-21v14,6,34,4,34,-16r0,-215xm68,-264r0,31r-26,0r0,-31r26,0",w:100},k:{d:"30,0r0,-260r26,0r1,167r75,-94r32,0r-55,69r62,118r-31,0r-49,-96r-35,40r0,56r-26,0",w:180},l:{d:"37,-260r26,0r0,260r-26,0r0,-260",w:100},m:{d:"55,-162v26,-36,87,-39,104,1v17,-18,38,-30,60,-30v25,0,51,11,51,57r0,134r-26,0r0,-134v-1,-57,-64,-31,-81,-6r0,140r-26,0r0,-134v-1,-57,-65,-30,-82,-6r0,140r-25,0r0,-187r25,0r0,25",w:299},n:{d:"32,-187r26,0v1,8,-2,19,1,25v30,-41,109,-44,109,26r0,136r-26,0r0,-135v-1,-57,-66,-28,-84,-5r0,140r-26,0r0,-187",w:200},o:{d:"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97",w:180},p:{d:"184,-94v0,100,-75,120,-126,76r0,87r-26,0r0,-256r26,0r0,22v45,-49,126,-31,126,71xm58,-143r0,98v39,43,100,37,100,-50v0,-75,-60,-95,-100,-48",w:200},q:{d:"143,-18v-52,43,-126,25,-126,-76v0,-103,80,-119,126,-73r5,-20r20,0r0,256r-25,0r0,-87xm143,-45r0,-98v-41,-47,-101,-27,-101,48v0,87,61,93,101,50",w:200},r:{d:"25,0r0,-187r26,0v1,12,-2,27,1,37v14,-26,30,-40,61,-40r0,26v-32,1,-50,21,-62,60r0,104r-26,0",w:119,k:{",":20,".":20,"-":13}},s:{d:"9,-32r20,-16v14,35,94,40,94,-2v0,-48,-110,-22,-109,-90v1,-63,101,-64,126,-18r-18,16v-14,-18,-28,-26,-48,-26v-22,0,-34,10,-34,27v0,41,109,20,109,90v0,72,-110,67,-140,19",w:159},t:{d:"6,-187r31,0r0,-62r26,0r0,62r43,0r0,22r-43,0r0,133v-3,16,30,14,44,11r0,22v-24,5,-78,8,-70,-28r0,-138r-31,0r0,-22",w:119},u:{d:"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187",w:200},v:{d:"154,-187r-56,187r-35,0r-57,-187r26,0r48,155r48,-155r26,0",w:159,k:{",":20,".":20}},w:{d:"57,0r-51,-187r26,0r39,144r36,-144r27,0r38,145r36,-145r26,0r-50,187r-26,0r-38,-145r-37,145r-26,0",w:240,k:{",":20,".":20}},x:{d:"38,-187r41,66r39,-66r29,0r-52,89r61,98r-30,0r-47,-77r-46,77r-29,0r59,-98r-54,-89r29,0",w:159},y:{d:"127,-187r27,0r-66,204v-19,49,-42,56,-82,50r0,-21v31,2,49,4,63,-44r-65,-189r28,0r51,143",w:159,k:{",":27,".":27}},z:{d:"149,-22r0,22r-138,0r0,-19r102,-146r-92,0r0,-22r127,0r0,19r-102,146r103,0",w:159},"{":{d:"17,-109r0,-15v62,-6,-29,-157,78,-140r0,16v-18,-1,-29,0,-29,20v0,43,15,107,-27,112v44,3,27,69,27,111v0,20,11,21,29,20r0,15v-34,3,-55,-5,-55,-39v0,-36,14,-98,-23,-100",w:119},"|":{d:"29,4r0,-268r22,0r0,268r-22,0",w:79},"}":{d:"103,-124r0,15v-62,5,30,157,-79,139r0,-15v18,1,30,1,30,-20v0,-43,-15,-107,27,-112v-44,-3,-27,-69,-27,-111v0,-20,-12,-21,-30,-20r0,-16v35,-3,56,6,56,40v0,36,-14,98,23,100",w:119},"~":{d:"70,-117v24,-1,57,23,77,24v14,0,23,-13,31,-25r14,15v-12,16,-24,32,-46,32v-36,0,-90,-50,-108,2r-14,-16v9,-17,22,-32,46,-32",w:216},"\u00a1":{d:"79,73r-38,0r8,-178r23,0xm78,-148r-36,0r0,-39r36,0r0,39",w:119},"\u00a2":{d:"76,-33r49,-133v-43,-10,-67,18,-67,72v0,27,6,49,18,61xm141,-154r-48,132v31,8,52,1,68,-31r20,9v-20,39,-50,56,-96,44r-15,40r-20,0r17,-49v-22,-16,-35,-45,-35,-85v0,-69,39,-108,100,-94r12,-32r21,0r-15,41v13,9,21,23,27,39r-24,9v-3,-9,-7,-17,-12,-23"},"\u00a3":{d:"126,-140r0,22r-52,0v4,26,3,48,-8,73v43,32,108,40,118,-20r23,5v-6,82,-109,72,-154,36v-10,14,-22,25,-43,28r0,-28v29,-3,48,-52,38,-94r-39,0r0,-22r36,0v-16,-63,7,-124,75,-124v45,0,71,25,81,67r-25,5v-6,-20,-19,-49,-55,-49v-64,0,-54,55,-50,101r55,0"},"\u00a5":{d:"122,-84r0,84r-24,0r0,-84r-64,0r0,-23v20,-2,48,4,64,-2r-16,-29r-48,0r0,-23r37,0r-53,-99r26,0r66,125r66,-125r26,0r-53,99r37,0r0,23r-48,0v-5,11,-12,19,-16,31r64,0r0,23r-64,0"},"\u0192":{d:"19,67r4,-24v24,9,46,1,52,-32r28,-155r-41,0r0,-22r45,0v10,-62,30,-114,91,-95r-6,24v-38,-21,-49,24,-57,71r41,0r0,22r-45,0r-30,152v-7,45,-33,68,-82,59"},"\u00a7":{d:"35,-1r18,-12v9,25,62,37,62,1v0,-32,-94,-95,-94,-131v0,-22,14,-37,43,-38v-33,-27,-26,-81,25,-83v22,0,36,9,53,30r-17,10v-3,-17,-58,-32,-57,1v0,11,3,15,43,55v39,39,48,51,48,72v0,24,-18,35,-39,38v30,29,27,87,-30,88v-24,0,-45,-12,-55,-31xm135,-95v7,-9,-55,-76,-68,-69v-12,0,-22,9,-22,20v-3,13,55,73,69,69v11,0,21,-8,21,-20",w:180},"\u00a4":{d:"110,-62v37,0,67,-26,67,-68v0,-42,-30,-68,-67,-68v-37,0,-67,26,-67,68v0,42,30,68,67,68xm184,-220r15,15r-19,20v25,29,25,81,0,110r19,20r-15,15r-20,-20v-27,25,-82,25,-109,0r-20,20r-15,-15r20,-20v-25,-29,-25,-81,0,-110r-20,-20r15,-15r20,20v27,-25,82,-25,109,0"},"'":{d:"29,-163r0,-97r22,0r0,97r-22,0",w:79},"\u00ab":{d:"76,-150r25,0r-47,56r47,57r-25,0r-47,-57xm126,-150r25,0r-46,56r46,57r-24,0r-48,-57",w:180},"\u00b7":{d:"32,-93v0,-13,10,-23,23,-23v12,0,22,10,22,23v0,12,-10,22,-22,22v-13,0,-23,-10,-23,-22",w:109},"\u00b6":{d:"79,30r0,-149v-44,0,-75,-31,-75,-69v0,-47,31,-72,81,-72r99,0r0,18r-25,0r0,272r-22,0r0,-272r-37,0r0,272r-21,0",w:180},"\u00bb":{d:"79,-150r25,0r47,56r-47,57r-25,0r47,-57xm29,-150r25,0r47,56r-48,57r-24,0r46,-57",w:180},"\u00bf":{d:"81,-105r24,0v10,68,-54,82,-54,128v0,38,56,42,68,3r22,11v-20,56,-117,52,-117,-15v0,-55,68,-66,57,-127xm111,-148r-35,0r0,-39r35,0r0,39",w:159},"`":{d:"2,-260r39,0r32,51r-24,0",w:100},"\u00b4":{d:"59,-260r39,0r-47,51r-24,0",w:100},"\u00af":{d:"106,-220r-112,0r0,-22r112,0r0,22",w:100},"\u00a8":{d:"94,-212r-31,0r0,-34r31,0r0,34xm37,-212r-31,0r0,-34r31,0r0,34",w:100},"\u00b8":{d:"46,0r17,0v-4,7,-15,15,-16,22v22,-8,44,9,41,28v4,32,-55,37,-78,23r7,-16v12,9,43,11,43,-8v0,-15,-18,-16,-31,-11r-6,-7",w:100},"\u00c6":{d:"6,0r146,-260r183,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-81r-96,0r-44,81r-33,0xm97,-106r82,0r0,-134r-8,0",w:360},"\u00aa":{d:"24,-231r-15,-9v12,-29,87,-38,88,10v1,26,-3,61,3,81r-19,0r-2,-13v-16,18,-74,25,-74,-16v0,-24,21,-38,73,-47v2,-16,-7,-22,-23,-22v-19,0,-28,8,-31,16xm78,-179r0,-29v-34,6,-54,16,-54,31v0,25,44,11,54,-2",w:108},"\u0141":{d:"68,-121r0,97r123,0r0,24r-152,0r0,-110r-33,14r0,-25r33,-13r0,-126r29,0r0,114r69,-28r0,25",w:200,k:{T:33,V:33,W:27,y:20,"\u00fd":20,"\u00ff":20,Y:33,"\u00dd":33,"\u0178":33}},"\u00d8":{d:"62,-57r103,-165v-58,-42,-118,-5,-118,92v0,31,6,56,15,73xm178,-204r-103,165v55,44,118,6,118,-91v0,-32,-6,-56,-15,-74xm224,-277r-30,47v17,22,27,56,27,100v0,116,-84,165,-161,114r-24,39r-24,0r33,-54v-18,-23,-27,-56,-27,-99v0,-114,82,-164,161,-115r20,-32r25,0",w:240},"\u0152":{d:"125,-264v67,0,142,3,214,4r0,25r-127,0r0,87r91,0r0,24r-91,0r0,100r135,0r0,24r-163,0r-59,4v-80,0,-112,-59,-112,-134v0,-75,32,-134,112,-134xm184,-68r0,-124v0,-35,-21,-47,-60,-47v-55,0,-82,38,-82,109v0,71,27,109,82,109v39,0,60,-12,60,-47",w:360},"\u00ba":{d:"25,-206v0,27,10,42,29,42v19,0,29,-15,29,-41v0,-26,-10,-41,-29,-41v-18,0,-29,15,-29,40xm4,-205v0,-36,20,-59,50,-59v31,0,50,23,50,59v0,36,-19,58,-50,58v-30,0,-50,-22,-50,-58",w:108},"\u00e6":{d:"121,-48r0,-53v-37,8,-83,20,-83,53v0,48,75,24,83,0xm262,-89r-115,0v-7,73,73,92,101,39r20,10v-15,42,-100,68,-133,12v-27,27,-48,32,-72,32v-24,0,-51,-18,-51,-48v0,-56,54,-70,109,-80v2,-28,-8,-45,-35,-44v-27,0,-42,16,-47,29r-22,-12v14,-40,94,-58,121,-15v42,-51,139,-22,124,77xm147,-111r89,0v0,-35,-17,-57,-45,-57v-30,0,-43,22,-44,57",w:280},"\u0131":{d:"37,0r0,-187r26,0r0,187r-26,0",w:100},"\u0142":{d:"63,-141r0,141r-26,0r0,-128r-32,17r0,-25r32,-16r0,-108r26,0r0,94r32,-16r0,25",w:100},"\u00f8":{d:"131,-143r-68,115v41,25,80,-5,78,-66v0,-21,-4,-37,-10,-49xm151,-217r23,0r-29,51v42,52,24,170,-55,170v-16,0,-29,-5,-39,-12r-22,38r-23,0r30,-51v-43,-51,-26,-175,54,-170v15,0,29,4,39,11xm49,-45r68,-114v-41,-25,-80,4,-78,65v0,21,4,37,10,49",w:180},"\u0153":{d:"34,-94v0,48,17,75,47,75v32,0,47,-27,47,-75v0,-48,-14,-74,-47,-74v-30,0,-47,26,-47,74xm269,-89r-115,0v0,41,13,70,49,70v22,0,40,-12,48,-31r20,10v-8,45,-111,65,-130,9v-42,68,-133,31,-133,-63v0,-94,89,-129,133,-63v41,-68,142,-33,128,68xm155,-111r88,0v0,-35,-16,-57,-44,-57v-31,0,-43,22,-44,57",w:280},"\u00df":{d:"83,-6r10,-21v27,20,63,-1,63,-42v0,-47,-25,-63,-65,-63r0,-23v30,3,49,-14,49,-44v0,-27,-13,-42,-40,-42v-28,0,-40,16,-40,48r0,193r-26,0r0,-199v0,-46,33,-65,67,-65v73,0,84,92,33,118v33,10,48,38,48,75v1,65,-53,91,-99,65",w:200},"\u00b9":{d:"27,-253v20,-4,28,-13,52,-11r0,141r28,0r0,18r-76,0r0,-18r27,0r0,-123r-31,5r0,-12",w:131},"\u00ac":{d:"179,-46r0,-73r-165,0r0,-22r188,0r0,95r-23,0",w:216},"\u00b5":{d:"168,0r-26,0v-1,-8,2,-19,-1,-25v-21,24,-50,37,-83,23r0,71r-26,0r0,-256r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187",w:200},"\u00d0":{d:"65,-148r67,0r0,24r-67,0r0,100v85,7,130,-19,129,-106v-1,-93,-47,-111,-129,-105r0,87xm12,-148r24,0r0,-112v113,-9,187,15,187,130v0,76,-41,130,-119,130r-68,0r0,-124r-24,0r0,-24",w:240},"\u00bd":{d:"32,-253v20,-4,28,-13,51,-11r0,141r29,0r0,18r-77,0r0,-18r27,0r0,-123r-30,5r0,-12xm310,0r-112,0r0,-19v29,-53,91,-58,91,-95v0,-44,-72,-24,-74,5r-17,-5v7,-23,25,-44,60,-44v30,0,51,15,51,41v0,50,-70,60,-92,99r93,0r0,18xm93,4r-21,0r158,-268r22,0",w:329},"\u00b1":{d:"97,-123r0,-64r22,0r0,64r83,0r0,23r-83,0r0,64r-22,0r0,-64r-83,0r0,-23r83,0xm14,0r0,-22r188,0r0,22r-188,0",w:216},"\u00de":{d:"65,-185r0,95v54,3,121,0,112,-48v5,-51,-59,-49,-112,-47xm65,0r-29,0r0,-260r29,0r0,50r62,0v55,0,79,32,79,73v0,58,-65,78,-141,71r0,66"},"\u00bc":{d:"312,-37r-29,0r0,37r-19,0r0,-37r-75,0r0,-16r67,-103r27,0r0,101r29,0r0,18xm264,-135v-20,25,-35,54,-53,80r53,0r0,-80xm32,-253v20,-4,28,-13,51,-11r0,141r29,0r0,18r-77,0r0,-18r27,0r0,-123r-30,5r0,-12xm100,4r-21,0r158,-268r22,0",w:329},"\u00f7":{d:"202,-82r-188,0r0,-23r188,0r0,23xm86,-168v0,-12,10,-23,22,-23v12,0,22,11,22,23v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22xm86,-19v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,23,-22,23v-12,0,-22,-11,-22,-23",w:216},"\u00a6":{d:"29,4r0,-101r22,0r0,101r-22,0xm29,-163r0,-101r22,0r0,101r-22,0",w:79},"\u00b0":{d:"20,-212v0,-29,23,-52,52,-52v29,0,52,23,52,52v0,29,-23,52,-52,52v-29,0,-52,-23,-52,-52xm37,-212v0,21,16,36,35,36v19,0,35,-15,35,-36v0,-21,-16,-36,-35,-36v-19,0,-35,15,-35,36",w:144},"\u00fe":{d:"184,-94v0,100,-75,120,-126,76r0,87r-26,0r0,-329r26,0r0,95v45,-49,126,-31,126,71xm58,-143r0,98v39,43,100,37,100,-50v0,-75,-60,-95,-100,-48",w:200},"\u00be":{d:"312,-37r-29,0r0,37r-19,0r0,-37r-75,0r0,-16r67,-103r27,0r0,101r29,0r0,18xm264,-135v-20,25,-35,54,-53,80r53,0r0,-80xm53,-180r0,-18v29,1,58,-3,56,-27v-2,-28,-60,-27,-68,-2r-15,-10v15,-34,105,-39,103,12v0,19,-11,31,-24,35v51,21,33,87,-28,87v-32,0,-52,-18,-60,-30r15,-12v16,32,79,32,83,-3v3,-26,-26,-34,-62,-32xm106,4r-21,0r158,-268r22,0",w:329},"\u00b2":{d:"122,-105r-112,0r0,-20v29,-53,92,-58,92,-95v0,-15,-12,-26,-33,-26v-25,0,-37,17,-42,32r-17,-6v7,-23,26,-44,61,-44v30,0,50,16,50,42v0,50,-69,60,-91,99r92,0r0,18",w:131},"\u00ae":{d:"116,-120r0,67r-24,0r0,-154v51,0,114,-8,114,44v0,28,-17,39,-40,42r44,68r-26,0r-41,-67r-27,0xm116,-188r0,49v30,1,72,0,66,-26v6,-25,-38,-24,-66,-23xm9,-130v0,-77,62,-134,135,-134v73,0,135,57,135,134v0,77,-62,134,-135,134v-73,0,-135,-57,-135,-134xm253,-130v0,-64,-48,-112,-109,-112v-62,0,-109,48,-109,112v0,65,47,112,109,112v61,0,109,-47,109,-112",w:288},"\u00f0":{d:"90,-19v34,0,51,-28,51,-70v0,-41,-17,-68,-51,-68v-34,0,-51,27,-51,68v0,42,17,70,51,70xm46,-251r23,-9v10,6,20,15,30,25r40,-22r11,18r-35,20v30,34,52,80,52,126v0,56,-26,97,-77,97v-51,0,-77,-38,-77,-93v0,-64,43,-104,104,-85v-5,-11,-13,-22,-23,-33r-39,21r-12,-18r37,-20v-13,-13,-27,-22,-34,-27",w:180},"\u00d7":{d:"108,-109r78,-78r16,16r-78,77r78,78r-16,16r-78,-78r-78,78r-16,-16r78,-78r-78,-77r16,-16",w:216},"\u00b3":{d:"40,-180r0,-18v29,1,58,-3,56,-27v-2,-28,-60,-27,-68,-2r-15,-10v15,-34,105,-39,103,12v0,19,-10,31,-23,35v51,22,32,87,-29,87v-32,0,-52,-18,-60,-30r15,-12v16,32,79,32,83,-3v3,-26,-26,-34,-62,-32",w:131},"\u00a9":{d:"190,-105r25,0v-17,96,-152,58,-145,-26v-11,-87,133,-114,145,-26r-25,0v-18,-59,-100,-32,-94,26v-9,59,84,86,94,26xm9,-130v0,-77,62,-134,135,-134v73,0,135,57,135,134v0,77,-62,134,-135,134v-73,0,-135,-57,-135,-134xm253,-130v0,-64,-48,-112,-109,-112v-62,0,-109,48,-109,112v0,65,47,112,109,112v61,0,109,-47,109,-112",w:288},"\u00c1":{d:"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm119,-325r39,0r-47,51r-24,0"},"\u00c2":{d:"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm58,-274r35,-51r34,0r36,51r-29,0r-24,-33r-24,33r-28,0"},"\u00c4":{d:"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm154,-277r-31,0r0,-34r31,0r0,34xm98,-277r-32,0r0,-34r32,0r0,34"},"\u00c0":{d:"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm62,-325r40,0r32,51r-25,0"},"\u00c5":{d:"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm74,-310v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm90,-310v0,11,9,21,20,21v11,0,20,-10,20,-21v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20"},"\u00c3":{d:"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm87,-316v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v0,0,-63,-32,-70,3r-18,0v2,-22,14,-39,38,-39"},"\u00c7":{d:"180,-83r26,5v-11,45,-35,77,-82,81v-4,6,-14,13,-14,19v22,-8,44,9,41,28v5,33,-54,37,-77,23r6,-16v13,9,44,12,44,-8v0,-15,-19,-17,-31,-11r-7,-7r21,-28v-54,-4,-92,-46,-92,-133v0,-85,36,-134,99,-134v48,0,76,28,88,76r-26,8v-9,-37,-26,-59,-65,-59v-37,0,-67,34,-67,109v0,75,30,109,73,109v40,0,55,-30,63,-62"},"\u00c9":{d:"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260xm129,-325r39,0r-47,51r-24,0"},"\u00ca":{d:"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260xm68,-274r35,-51r34,0r36,51r-29,0r-24,-33r-24,33r-28,0"},"\u00cb":{d:"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260xm165,-277r-32,0r0,-34r32,0r0,34xm108,-277r-32,0r0,-34r32,0r0,34"},"\u00c8":{d:"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260xm72,-325r40,0r32,51r-24,0"},"\u00cd":{d:"45,-260r29,0r0,260r-29,0r0,-260xm69,-325r39,0r-47,51r-24,0",w:119},"\u00ce":{d:"45,-260r29,0r0,260r-29,0r0,-260xm8,-274r35,-51r34,0r36,51r-29,0r-24,-33r-24,33r-28,0",w:119},"\u00cf":{d:"45,-260r29,0r0,260r-29,0r0,-260xm104,-277r-31,0r0,-34r31,0r0,34xm48,-277r-32,0r0,-34r32,0r0,34",w:119},"\u00cc":{d:"45,-260r29,0r0,260r-29,0r0,-260xm12,-325r39,0r33,51r-25,0",w:119},"\u00d1":{d:"65,0r-26,0r0,-260r41,0r115,200r0,-200r26,0r0,260r-24,0r-132,-232r0,232xm107,-316v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v-24,0,-63,-32,-71,3r-18,0v2,-22,15,-39,39,-39",w:259},"\u00d3":{d:"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm129,-325r39,0r-47,51r-24,0",w:240},"\u00d4":{d:"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm68,-274r35,-51r34,0r36,51r-29,0r-24,-33r-24,33r-28,0",w:240},"\u00d6":{d:"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm165,-277r-32,0r0,-34r32,0r0,34xm108,-277r-32,0r0,-34r32,0r0,34",w:240},"\u00d2":{d:"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm72,-325r40,0r32,51r-24,0",w:240},"\u00d5":{d:"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm97,-316v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v0,0,-63,-32,-70,3r-18,0v2,-22,14,-39,38,-39",w:240},"\u0160":{d:"187,-199r-26,5v-1,-49,-109,-66,-109,-5v0,57,146,42,146,126v0,38,-21,77,-87,77v-57,0,-79,-37,-93,-68r26,-9v10,27,30,52,68,52v38,0,58,-20,58,-47v0,-66,-147,-47,-147,-129v0,-37,32,-67,79,-67v40,0,71,22,85,65xm58,-325r28,0r24,34r24,-34r29,0r-36,51r-34,0"},"\u00da":{d:"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182xm139,-325r39,0r-47,51r-24,0",w:259},"\u00db":{d:"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182xm77,-274r36,-51r34,0r36,51r-29,0r-24,-33r-24,33r-29,0",w:259},"\u00dc":{d:"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182xm174,-277r-31,0r0,-34r31,0r0,34xm117,-277r-31,0r0,-34r31,0r0,34",w:259},"\u00d9":{d:"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182xm82,-325r39,0r32,51r-24,0",w:259},"\u00dd":{d:"86,0r0,-109r-80,-151r31,0r63,119r63,-119r31,0r-80,151r0,109r-28,0xm109,-325r39,0r-47,51r-24,0",w:200,k:{v:13,A:20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":40,".":40,"-":33,a:20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,e:20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,i:13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,o:20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,u:13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":33,";":33,p:13,q:20}},"\u0178":{d:"86,0r0,-109r-80,-151r31,0r63,119r63,-119r31,0r-80,151r0,109r-28,0xm144,-277r-31,0r0,-34r31,0r0,34xm87,-277r-31,0r0,-34r31,0r0,34",w:200,k:{v:13,A:20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":40,".":40,"-":33,a:20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,e:20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,i:13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,o:20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,u:13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":33,";":33,p:13,q:20}},"\u017d":{d:"184,-24r0,24r-168,0r0,-21r131,-214r-119,0r0,-25r155,0r0,19r-133,217r134,0xm48,-325r28,0r24,34r24,-34r29,0r-36,51r-34,0",w:200},"\u00e1":{d:"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm97,-260r39,0r-47,51r-24,0",w:180},"\u00e2":{d:"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm36,-209r35,-51r34,0r36,51r-29,0r-24,-34r-24,34r-28,0",w:180},"\u00e4":{d:"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm132,-212r-31,0r0,-34r31,0r0,34xm76,-212r-32,0r0,-34r32,0r0,34",w:180},"\u00e0":{d:"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm40,-260r40,0r32,51r-25,0",w:180},"\u00e5":{d:"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm52,-245v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm68,-245v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20",w:180},"\u00e3":{d:"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm65,-251v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v0,0,-63,-32,-70,3r-18,0v2,-22,14,-39,38,-39",w:180},"\u00e7":{d:"159,-140r-24,9v-7,-23,-22,-37,-44,-37v-32,0,-51,26,-51,74v0,81,73,101,103,41r20,9v-17,29,-32,44,-63,47v-4,6,-13,13,-13,19v22,-8,44,9,41,28v4,32,-55,37,-78,23r7,-16v12,9,43,11,43,-8v0,-15,-18,-16,-31,-11v-13,-11,9,-23,14,-35v-42,-4,-69,-40,-69,-97v0,-60,30,-97,77,-97v39,0,56,22,68,51",w:180},"\u00e9":{d:"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57xm99,-260r39,0r-47,51r-24,0",w:180},"\u00ea":{d:"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57xm37,-209r36,-51r34,0r36,51r-29,0r-24,-34r-24,34r-29,0",w:180},"\u00eb":{d:"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57xm134,-212r-31,0r0,-34r31,0r0,34xm77,-212r-31,0r0,-34r31,0r0,34",w:180},"\u00e8":{d:"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57xm42,-260r39,0r32,51r-24,0",w:180},"\u00ed":{d:"37,0r0,-187r26,0r0,187r-26,0xm59,-260r39,0r-47,51r-24,0",w:100},"\u00ee":{d:"37,0r0,-187r26,0r0,187r-26,0xm-3,-209r36,-51r34,0r36,51r-29,0r-24,-34r-24,34r-29,0",w:100},"\u00ef":{d:"37,0r0,-187r26,0r0,187r-26,0xm94,-212r-31,0r0,-34r31,0r0,34xm37,-212r-31,0r0,-34r31,0r0,34",w:100},"\u00ec":{d:"37,0r0,-187r26,0r0,187r-26,0xm2,-260r39,0r32,51r-24,0",w:100},"\u00f1":{d:"32,-187r26,0v1,8,-2,19,1,25v30,-41,109,-44,109,26r0,136r-26,0r0,-135v-1,-57,-66,-28,-84,-5r0,140r-26,0r0,-187xm77,-251v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v0,0,-63,-32,-70,3r-18,0v2,-22,14,-39,38,-39",w:200},"\u00f3":{d:"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm99,-260r39,0r-47,51r-24,0",w:180},"\u00f4":{d:"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm37,-209r36,-51r34,0r36,51r-29,0r-24,-34r-24,34r-29,0",w:180},"\u00f6":{d:"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm134,-212r-31,0r0,-34r31,0r0,34xm77,-212r-31,0r0,-34r31,0r0,34",w:180},"\u00f2":{d:"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm42,-260r39,0r32,51r-24,0",w:180},"\u00f5":{d:"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm67,-251v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v-24,0,-63,-32,-71,3r-18,0v2,-22,15,-39,39,-39",w:180},"\u0161":{d:"9,-32r20,-16v14,35,94,40,94,-2v0,-48,-110,-22,-109,-90v1,-63,101,-64,126,-18r-18,16v-14,-18,-28,-26,-48,-26v-22,0,-34,10,-34,27v0,41,109,20,109,90v0,72,-110,67,-140,19xm27,-260r29,0r24,34r24,-34r28,0r-36,51r-33,0",w:159},"\u00fa":{d:"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187xm109,-260r39,0r-47,51r-24,0",w:200},"\u00fb":{d:"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187xm48,-209r35,-51r34,0r36,51r-29,0r-24,-34r-24,34r-28,0",w:200},"\u00fc":{d:"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187xm144,-212r-31,0r0,-34r31,0r0,34xm87,-212r-31,0r0,-34r31,0r0,34",w:200},"\u00f9":{d:"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187xm52,-260r39,0r32,51r-24,0",w:200},"\u00fd":{d:"127,-187r27,0r-66,204v-19,49,-42,56,-82,50r0,-21v31,2,49,4,63,-44r-65,-189r28,0r51,143xm89,-260r39,0r-47,51r-24,0",w:159,k:{",":27,".":27}},"\u00ff":{d:"127,-187r27,0r-66,204v-19,49,-42,56,-82,50r0,-21v31,2,49,4,63,-44r-65,-189r28,0r51,143xm124,-212r-31,0r0,-34r31,0r0,34xm67,-212r-31,0r0,-34r31,0r0,34",w:159,k:{",":27,".":27}},"\u017e":{d:"149,-22r0,22r-138,0r0,-19r102,-146r-92,0r0,-22r127,0r0,19r-102,146r103,0xm27,-260r29,0r24,34r24,-34r28,0r-36,51r-33,0",w:159},"\u03bc":{d:"168,0r-26,0v-1,-8,2,-19,-1,-25v-21,24,-50,37,-83,23r0,71r-26,0r0,-256r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187",w:200},"\u03c0":{d:"211,-171r-33,0v1,51,-4,135,6,171r-23,0v-12,-30,-5,-123,-7,-171r-76,0v-2,49,-16,138,-30,171r-24,0v15,-39,28,-120,30,-171v-26,0,-38,2,-46,5r-4,-15v45,-19,145,-7,210,-10",w:221},"\u00a0":{w:109},"\u00ad":{d:"105,-82r-91,0r0,-23r91,0r0,23",w:119},"\u03a9":{d:"21,-19v19,-2,45,4,60,-2v-29,-23,-55,-63,-55,-116v0,-73,52,-124,119,-124v70,0,116,58,116,123v0,57,-31,94,-56,119r61,0r0,19r-93,0r0,-14v32,-19,64,-60,64,-120v0,-49,-33,-108,-93,-108v-57,0,-94,49,-94,108v0,57,32,102,63,120r0,14r-92,0r0,-19",w:287}}});

/*
 * jQuery JavaScript Library v1.4.2
 * http://jquery.com/
 *
 * Copyright 2010, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2010, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Sat Feb 13 22:33:48 2010 -0500
 */
(function(window,undefined){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context)
},_jQuery=window.jQuery,_$=window.$,document=window.document,rootjQuery,quickExpr=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/,rnotwhite=/\S/,rtrim=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,userAgent=navigator.userAgent,browserMatch,readyBound=false,readyList=[],DOMContentLoaded,toString=Object.prototype.toString,hasOwnProperty=Object.prototype.hasOwnProperty,push=Array.prototype.push,slice=Array.prototype.slice,indexOf=Array.prototype.indexOf;
jQuery.fn=jQuery.prototype={init:function(selector,context){var match,elem,ret,doc;
if(!selector){return this
}if(selector.nodeType){this.context=this[0]=selector;
this.length=1;
return this
}if(selector==="body"&&!context){this.context=document;
this[0]=document.body;
this.selector="body";
this.length=1;
return this
}if(typeof selector==="string"){match=quickExpr.exec(selector);
if(match&&(match[1]||!context)){if(match[1]){doc=(context?context.ownerDocument||context:document);
ret=rsingleTag.exec(selector);
if(ret){if(jQuery.isPlainObject(context)){selector=[document.createElement(ret[1])];
jQuery.fn.attr.call(selector,context,true)
}else{selector=[doc.createElement(ret[1])]
}}else{ret=buildFragment([match[1]],[doc]);
selector=(ret.cacheable?ret.fragment.cloneNode(true):ret.fragment).childNodes
}return jQuery.merge(this,selector)
}else{elem=document.getElementById(match[2]);
if(elem){if(elem.id!==match[2]){return rootjQuery.find(selector)
}this.length=1;
this[0]=elem
}this.context=document;
this.selector=selector;
return this
}}else{if(!context&&/^\w+$/.test(selector)){this.selector=selector;
this.context=document;
selector=document.getElementsByTagName(selector);
return jQuery.merge(this,selector)
}else{if(!context||context.jquery){return(context||rootjQuery).find(selector)
}else{return jQuery(context).find(selector)
}}}}else{if(jQuery.isFunction(selector)){return rootjQuery.ready(selector)
}}if(selector.selector!==undefined){this.selector=selector.selector;
this.context=selector.context
}return jQuery.makeArray(selector,this)
},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length
},toArray:function(){return slice.call(this,0)
},get:function(num){return num==null?this.toArray():(num<0?this.slice(num)[0]:this[num])
},pushStack:function(elems,name,selector){var ret=jQuery();
if(jQuery.isArray(elems)){push.apply(ret,elems)
}else{jQuery.merge(ret,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
},each:function(callback,args){return jQuery.each(this,callback,args)
},ready:function(fn){jQuery.bindReady();
if(jQuery.isReady){fn.call(document,jQuery)
}else{if(readyList){readyList.push(fn)
}}return this
},eq:function(i){return i===-1?this.slice(i):this.slice(i,+i+1)
},first:function(){return this.eq(0)
},last:function(){return this.eq(-1)
},slice:function(){return this.pushStack(slice.apply(this,arguments),"slice",slice.call(arguments).join(","))
},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem)
}))
},end:function(){return this.prevObject||jQuery(null)
},push:push,sort:[].sort,splice:[].splice};
jQuery.fn.init.prototype=jQuery.fn;
jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options,name,src,copy;
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(name in options){src=target[name];
copy=options[name];
if(target===copy){continue
}if(deep&&copy&&(jQuery.isPlainObject(copy)||jQuery.isArray(copy))){var clone=src&&(jQuery.isPlainObject(src)||jQuery.isArray(src))?src:jQuery.isArray(copy)?[]:{};
target[name]=jQuery.extend(deep,clone,copy)
}else{if(copy!==undefined){target[name]=copy
}}}}}return target
};
jQuery.extend({noConflict:function(deep){window.$=_$;
if(deep){window.jQuery=_jQuery
}return jQuery
},isReady:false,ready:function(){if(!jQuery.isReady){if(!document.body){return setTimeout(jQuery.ready,13)
}jQuery.isReady=true;
if(readyList){var fn,i=0;
while((fn=readyList[i++])){fn.call(document,jQuery)
}readyList=null
}if(jQuery.fn.triggerHandler){jQuery(document).triggerHandler("ready")
}}},bindReady:function(){if(readyBound){return
}readyBound=true;
if(document.readyState==="complete"){return jQuery.ready()
}if(document.addEventListener){document.addEventListener("DOMContentLoaded",DOMContentLoaded,false);
window.addEventListener("load",jQuery.ready,false)
}else{if(document.attachEvent){document.attachEvent("onreadystatechange",DOMContentLoaded);
window.attachEvent("onload",jQuery.ready);
var toplevel=false;
try{toplevel=window.frameElement==null
}catch(e){}if(document.documentElement.doScroll&&toplevel){doScrollCheck()
}}}},isFunction:function(obj){return toString.call(obj)==="[object Function]"
},isArray:function(obj){return toString.call(obj)==="[object Array]"
},isPlainObject:function(obj){if(!obj||toString.call(obj)!=="[object Object]"||obj.nodeType||obj.setInterval){return false
}if(obj.constructor&&!hasOwnProperty.call(obj,"constructor")&&!hasOwnProperty.call(obj.constructor.prototype,"isPrototypeOf")){return false
}var key;
for(key in obj){}return key===undefined||hasOwnProperty.call(obj,key)
},isEmptyObject:function(obj){for(var name in obj){return false
}return true
},error:function(msg){throw msg
},parseJSON:function(data){if(typeof data!=="string"||!data){return null
}data=jQuery.trim(data);
if(/^[\],:{}\s]*$/.test(data.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))){return window.JSON&&window.JSON.parse?window.JSON.parse(data):(new Function("return "+data))()
}else{jQuery.error("Invalid JSON: "+data)
}},noop:function(){},globalEval:function(data){if(data&&rnotwhite.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,isObj=length===undefined||jQuery.isFunction(object);
if(args){if(isObj){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(isObj){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
},trim:function(text){return(text||"").replace(rtrim,"")
},makeArray:function(array,results){var ret=results||[];
if(array!=null){if(array.length==null||typeof array==="string"||jQuery.isFunction(array)||(typeof array!=="function"&&array.setInterval)){push.call(ret,array)
}else{jQuery.merge(ret,array)
}}return ret
},inArray:function(elem,array){if(array.indexOf){return array.indexOf(elem)
}for(var i=0,length=array.length;
i<length;
i++){if(array[i]===elem){return i
}}return -1
},merge:function(first,second){var i=first.length,j=0;
if(typeof second.length==="number"){for(var l=second.length;
j<l;
j++){first[i++]=second[j]
}}else{while(second[j]!==undefined){first[i++]=second[j++]
}}first.length=i;
return first
},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,arg){var ret=[],value;
for(var i=0,length=elems.length;
i<length;
i++){value=callback(elems[i],i,arg);
if(value!=null){ret[ret.length]=value
}}return ret.concat.apply([],ret)
},guid:1,proxy:function(fn,proxy,thisObject){if(arguments.length===2){if(typeof proxy==="string"){thisObject=fn;
fn=thisObject[proxy];
proxy=undefined
}else{if(proxy&&!jQuery.isFunction(proxy)){thisObject=proxy;
proxy=undefined
}}}if(!proxy&&fn){proxy=function(){return fn.apply(thisObject||this,arguments)
}
}if(fn){proxy.guid=fn.guid=fn.guid||proxy.guid||jQuery.guid++
}return proxy
},uaMatch:function(ua){ua=ua.toLowerCase();
var match=/(webkit)[ \/]([\w.]+)/.exec(ua)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(ua)||/(msie) ([\w.]+)/.exec(ua)||!/compatible/.test(ua)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(ua)||[];
return{browser:match[1]||"",version:match[2]||"0"}
},browser:{}});
browserMatch=jQuery.uaMatch(userAgent);
if(browserMatch.browser){jQuery.browser[browserMatch.browser]=true;
jQuery.browser.version=browserMatch.version
}if(jQuery.browser.webkit){jQuery.browser.safari=true
}if(indexOf){jQuery.inArray=function(elem,array){return indexOf.call(array,elem)
}
}rootjQuery=jQuery(document);
if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener("DOMContentLoaded",DOMContentLoaded,false);
jQuery.ready()
}
}else{if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",DOMContentLoaded);
jQuery.ready()
}}
}}function doScrollCheck(){if(jQuery.isReady){return
}try{document.documentElement.doScroll("left")
}catch(error){setTimeout(doScrollCheck,1);
return
}jQuery.ready()
}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 access(elems,key,value,exec,fn,pass){var length=elems.length;
if(typeof key==="object"){for(var k in key){access(elems,k,key[k],exec,fn,value)
}return elems
}if(value!==undefined){exec=!pass&&exec&&jQuery.isFunction(value);
for(var i=0;
i<length;
i++){fn(elems[i],key,exec?value.call(elems[i],i,fn(elems[i],key)):value,pass)
}return elems
}return length?fn(elems[0],key):undefined
}function now(){return(new Date).getTime()
}(function(){jQuery.support={};
var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+now();
div.style.display="none";
div.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";
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,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:/^0.55$/.test(a.style.opacity),cssFloat:!!a.style.cssFloat,checkOn:div.getElementsByTagName("input")[0].value==="on",optSelected:document.createElement("select").appendChild(document.createElement("option")).selected,parentNode:div.removeChild(div.appendChild(document.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,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]
}try{delete script.test
}catch(e){jQuery.support.deleteExpando=false
}root.removeChild(script);
if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function click(){jQuery.support.noCloneEvent=false;
div.detachEvent("onclick",click)
});
div.cloneNode(true).fireEvent("onclick")
}div=document.createElement("div");
div.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";
var fragment=document.createDocumentFragment();
fragment.appendChild(div.firstChild);
jQuery.support.checkClone=fragment.cloneNode(true).cloneNode(true).lastChild.checked;
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";
div=null
});
var eventSupported=function(eventName){var el=document.createElement("div");
eventName="on"+eventName;
var isSupported=(eventName in el);
if(!isSupported){el.setAttribute(eventName,"return;");
isSupported=typeof el[eventName]==="function"
}el=null;
return isSupported
};
jQuery.support.submitBubbles=eventSupported("submit");
jQuery.support.changeBubbles=eventSupported("change");
root=script=div=all=a=null
})();
jQuery.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};
var expando="jQuery"+now(),uuid=0,windowData={};
jQuery.extend({cache:{},expando:expando,noData:{embed:true,object:true,applet:true},data:function(elem,name,data){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){return
}elem=elem==window?windowData:elem;
var id=elem[expando],cache=jQuery.cache,thisCache;
if(!id&&typeof name==="string"&&data===undefined){return null
}if(!id){id=++uuid
}if(typeof name==="object"){elem[expando]=id;
thisCache=cache[id]=jQuery.extend(true,{},name)
}else{if(!cache[id]){elem[expando]=id;
cache[id]={}
}}thisCache=cache[id];
if(data!==undefined){thisCache[name]=data
}return typeof name==="string"?thisCache[name]:thisCache
},removeData:function(elem,name){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){return
}elem=elem==window?windowData:elem;
var id=elem[expando],cache=jQuery.cache,thisCache=cache[id];
if(name){if(thisCache){delete thisCache[name];
if(jQuery.isEmptyObject(thisCache)){jQuery.removeData(elem)
}}}else{if(jQuery.support.deleteExpando){delete elem[jQuery.expando]
}else{if(elem.removeAttribute){elem.removeAttribute(jQuery.expando)
}}delete cache[id]
}}});
jQuery.fn.extend({data:function(key,value){if(typeof key==="undefined"&&this.length){return jQuery.data(this[0])
}else{if(typeof key==="object"){return this.each(function(){jQuery.data(this,key)
})
}}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)
})
}});
jQuery.extend({queue:function(elem,type,data){if(!elem){return
}type=(type||"fx")+"queue";
var q=jQuery.data(elem,type);
if(!data){return q||[]
}if(!q||jQuery.isArray(data)){q=jQuery.data(elem,type,jQuery.makeArray(data))
}else{q.push(data)
}return q
},dequeue:function(elem,type){type=type||"fx";
var queue=jQuery.queue(elem,type),fn=queue.shift();
if(fn==="inprogress"){fn=queue.shift()
}if(fn){if(type==="fx"){queue.unshift("inprogress")
}fn.call(elem,function(){jQuery.dequeue(elem,type)
})
}}});
jQuery.fn.extend({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(i,elem){var queue=jQuery.queue(this,type,data);
if(type==="fx"&&queue[0]!=="inprogress"){jQuery.dequeue(this,type)
}})
},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type)
})
},delay:function(time,type){time=jQuery.fx?jQuery.fx.speeds[time]||time:time;
type=type||"fx";
return this.queue(type,function(){var elem=this;
setTimeout(function(){jQuery.dequeue(elem,type)
},time)
})
},clearQueue:function(type){return this.queue(type||"fx",[])
}});
var rclass=/[\n\t]/g,rspace=/\s+/,rreturn=/\r/g,rspecialurl=/href|src|style/,rtype=/(button|input)/i,rfocusable=/(button|input|object|select|textarea)/i,rclickable=/^(a|area)$/i,rradiocheck=/radio|checkbox/;
jQuery.fn.extend({attr:function(name,value){return access(this,name,value,true,jQuery.attr)
},removeAttr:function(name,fn){return this.each(function(){jQuery.attr(this,name,"");
if(this.nodeType===1){this.removeAttribute(name)
}})
},addClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);
self.addClass(value.call(this,i,self.attr("class")))
})
}if(value&&typeof value==="string"){var classNames=(value||"").split(rspace);
for(var i=0,l=this.length;
i<l;
i++){var elem=this[i];
if(elem.nodeType===1){if(!elem.className){elem.className=value
}else{var className=" "+elem.className+" ",setClass=elem.className;
for(var c=0,cl=classNames.length;
c<cl;
c++){if(className.indexOf(" "+classNames[c]+" ")<0){setClass+=" "+classNames[c]
}}elem.className=jQuery.trim(setClass)
}}}}return this
},removeClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);
self.removeClass(value.call(this,i,self.attr("class")))
})
}if((value&&typeof value==="string")||value===undefined){var classNames=(value||"").split(rspace);
for(var i=0,l=this.length;
i<l;
i++){var elem=this[i];
if(elem.nodeType===1&&elem.className){if(value){var className=(" "+elem.className+" ").replace(rclass," ");
for(var c=0,cl=classNames.length;
c<cl;
c++){className=className.replace(" "+classNames[c]+" "," ")
}elem.className=jQuery.trim(className)
}else{elem.className=""
}}}}return this
},toggleClass:function(value,stateVal){var type=typeof value,isBool=typeof stateVal==="boolean";
if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);
self.toggleClass(value.call(this,i,self.attr("class"),stateVal),stateVal)
})
}return this.each(function(){if(type==="string"){var className,i=0,self=jQuery(this),state=stateVal,classNames=value.split(rspace);
while((className=classNames[i++])){state=isBool?state:!self.hasClass(className);
self[state?"addClass":"removeClass"](className)
}}else{if(type==="undefined"||type==="boolean"){if(this.className){jQuery.data(this,"__className__",this.className)
}this.className=this.className||value===false?"":jQuery.data(this,"__className__")||""
}}})
},hasClass:function(selector){var className=" "+selector+" ";
for(var i=0,l=this.length;
i<l;
i++){if((" "+this[i].className+" ").replace(rclass," ").indexOf(className)>-1){return true
}}return false
},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
}if(rradiocheck.test(elem.type)&&!jQuery.support.checkOn){return elem.getAttribute("value")===null?"on":elem.value
}return(elem.value||"").replace(rreturn,"")
}return undefined
}var isFunction=jQuery.isFunction(value);
return this.each(function(i){var self=jQuery(this),val=value;
if(this.nodeType!==1){return
}if(isFunction){val=value.call(this,i,self.val())
}if(typeof val==="number"){val+=""
}if(jQuery.isArray(val)&&rradiocheck.test(this.type)){this.checked=jQuery.inArray(self.val(),val)>=0
}else{if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(val);
jQuery("option",this).each(function(){this.selected=jQuery.inArray(jQuery(this).val(),values)>=0
});
if(!values.length){this.selectedIndex=-1
}}else{this.value=val
}}})
}});
jQuery.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(elem,name,value,pass){if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined
}if(pass&&name in jQuery.attrFn){return jQuery(elem)[name](value)
}var notxml=elem.nodeType!==1||!jQuery.isXMLDoc(elem),set=value!==undefined;
name=notxml&&jQuery.props[name]||name;
if(elem.nodeType===1){var special=rspecialurl.test(name);
if(name==="selected"&&!jQuery.support.optSelected){var parent=elem.parentNode;
if(parent){parent.selectedIndex;
if(parent.parentNode){parent.parentNode.selectedIndex
}}}if(name in elem&&notxml&&!special){if(set){if(name==="type"&&rtype.test(elem.nodeName)&&elem.parentNode){jQuery.error("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:rfocusable.test(elem.nodeName)||rclickable.test(elem.nodeName)&&elem.href?0:undefined
}return elem[name]
}if(!jQuery.support.style&&notxml&&name==="style"){if(set){elem.style.cssText=""+value
}return elem.style.cssText
}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
}return jQuery.style(elem,name,value)
}});
var rnamespaces=/\.(.*)$/,fcleanup=function(nm){return nm.replace(/[^\w\s\.\|`]/g,function(ch){return"\\"+ch
})
};
jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType===3||elem.nodeType===8){return
}if(elem.setInterval&&(elem!==window&&!elem.frameElement)){elem=window
}var handleObjIn,handleObj;
if(handler.handler){handleObjIn=handler;
handler=handleObjIn.handler
}if(!handler.guid){handler.guid=jQuery.guid++
}var elemData=jQuery.data(elem);
if(!elemData){return
}var events=elemData.events=elemData.events||{},eventHandle=elemData.handle,eventHandle;
if(!eventHandle){elemData.handle=eventHandle=function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(eventHandle.elem,arguments):undefined
}
}eventHandle.elem=elem;
types=types.split(" ");
var type,i=0,namespaces;
while((type=types[i++])){handleObj=handleObjIn?jQuery.extend({},handleObjIn):{handler:handler,data:data};
if(type.indexOf(".")>-1){namespaces=type.split(".");
type=namespaces.shift();
handleObj.namespace=namespaces.slice(0).sort().join(".")
}else{namespaces=[];
handleObj.namespace=""
}handleObj.type=type;
handleObj.guid=handler.guid;
var handlers=events[type],special=jQuery.event.special[type]||{};
if(!handlers){handlers=events[type]=[];
if(!special.setup||special.setup.call(elem,data,namespaces,eventHandle)===false){if(elem.addEventListener){elem.addEventListener(type,eventHandle,false)
}else{if(elem.attachEvent){elem.attachEvent("on"+type,eventHandle)
}}}}if(special.add){special.add.call(elem,handleObj);
if(!handleObj.handler.guid){handleObj.handler.guid=handler.guid
}}handlers.push(handleObj);
jQuery.event.global[type]=true
}elem=null
},global:{},remove:function(elem,types,handler,pos){if(elem.nodeType===3||elem.nodeType===8){return
}var ret,type,fn,i=0,all,namespaces,namespace,special,eventType,handleObj,origType,elemData=jQuery.data(elem),events=elemData&&elemData.events;
if(!elemData||!events){return
}if(types&&types.type){handler=types.handler;
types=types.type
}if(!types||typeof types==="string"&&types.charAt(0)==="."){types=types||"";
for(type in events){jQuery.event.remove(elem,type+types)
}return
}types=types.split(" ");
while((type=types[i++])){origType=type;
handleObj=null;
all=type.indexOf(".")<0;
namespaces=[];
if(!all){namespaces=type.split(".");
type=namespaces.shift();
namespace=new RegExp("(^|\\.)"+jQuery.map(namespaces.slice(0).sort(),fcleanup).join("\\.(?:.*\\.)?")+"(\\.|$)")
}eventType=events[type];
if(!eventType){continue
}if(!handler){for(var j=0;
j<eventType.length;
j++){handleObj=eventType[j];
if(all||namespace.test(handleObj.namespace)){jQuery.event.remove(elem,origType,handleObj.handler,j);
eventType.splice(j--,1)
}}continue
}special=jQuery.event.special[type]||{};
for(var j=pos||0;
j<eventType.length;
j++){handleObj=eventType[j];
if(handler.guid===handleObj.guid){if(all||namespace.test(handleObj.namespace)){if(pos==null){eventType.splice(j--,1)
}if(special.remove){special.remove.call(elem,handleObj)
}}if(pos!=null){break
}}}if(eventType.length===0||pos!=null&&eventType.length===1){if(!special.teardown||special.teardown.call(elem,namespaces)===false){removeEvent(elem,type,elemData.handle)
}ret=null;
delete events[type]
}}if(jQuery.isEmptyObject(events)){var handle=elemData.handle;
if(handle){handle.elem=null
}delete elemData.events;
delete elemData.handle;
if(jQuery.isEmptyObject(elemData)){jQuery.removeData(elem)
}}},trigger:function(event,data,elem){var type=event.type||event,bubbling=arguments[3];
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(jQuery.event.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)
}var parent=elem.parentNode||elem.ownerDocument;
try{if(!(elem&&elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()])){if(elem["on"+type]&&elem["on"+type].apply(elem,data)===false){event.result=false
}}}catch(e){}if(!event.isPropagationStopped()&&parent){jQuery.event.trigger(event,data,parent,true)
}else{if(!event.isDefaultPrevented()){var target=event.target,old,isClick=jQuery.nodeName(target,"a")&&type==="click",special=jQuery.event.special[type]||{};
if((!special._default||special._default.call(elem,event)===false)&&!isClick&&!(target&&target.nodeName&&jQuery.noData[target.nodeName.toLowerCase()])){try{if(target[type]){old=target["on"+type];
if(old){target["on"+type]=null
}jQuery.event.triggered=true;
target[type]()
}}catch(e){}if(old){target["on"+type]=old
}jQuery.event.triggered=false
}}}},handle:function(event){var all,handlers,namespaces,namespace,events;
event=arguments[0]=jQuery.event.fix(event||window.event);
event.currentTarget=this;
all=event.type.indexOf(".")<0&&!event.exclusive;
if(!all){namespaces=event.type.split(".");
event.type=namespaces.shift();
namespace=new RegExp("(^|\\.)"+namespaces.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")
}var events=jQuery.data(this,"events"),handlers=events[event.type];
if(events&&handlers){handlers=handlers.slice(0);
for(var j=0,l=handlers.length;
j<l;
j++){var handleObj=handlers[j];
if(all||namespace.test(handleObj.namespace)){event.handler=handleObj.handler;
event.data=handleObj.data;
event.handleObj=handleObj;
var ret=handleObj.handler.apply(this,arguments);
if(ret!==undefined){event.result=ret;
if(ret===false){event.preventDefault();
event.stopPropagation()
}}if(event.isImmediatePropagationStopped()){break
}}}}return event.result
},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY 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&&doc.clientLeft||body&&body.clientLeft||0);
event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc&&doc.clientTop||body&&body.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!==undefined){event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)))
}return event
},guid:100000000,proxy:jQuery.proxy,special:{ready:{setup:jQuery.bindReady,teardown:jQuery.noop},live:{add:function(handleObj){jQuery.event.add(this,handleObj.origType,jQuery.extend({},handleObj,{handler:liveHandler}))
},remove:function(handleObj){var remove=true,type=handleObj.origType.replace(rnamespaces,"");
jQuery.each(jQuery.data(this,"events").live||[],function(){if(type===this.origType.replace(rnamespaces,"")){remove=false;
return false
}});
if(remove){jQuery.event.remove(this,handleObj.origType,liveHandler)
}}},beforeunload:{setup:function(data,namespaces,eventHandle){if(this.setInterval){this.onbeforeunload=eventHandle
}return false
},teardown:function(namespaces,eventHandle){if(this.onbeforeunload===eventHandle){this.onbeforeunload=null
}}}}};
var removeEvent=document.removeEventListener?function(elem,type,handle){elem.removeEventListener(type,handle,false)
}:function(elem,type,handle){elem.detachEvent("on"+type,handle)
};
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;
try{while(parent&&parent!==this){parent=parent.parentNode
}if(parent!==this){event.type=event.data;
jQuery.event.handle.apply(this,arguments)
}}catch(e){}},delegate=function(event){event.type=event.data;
jQuery.event.handle.apply(this,arguments)
};
jQuery.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(orig,fix){jQuery.event.special[orig]={setup:function(data){jQuery.event.add(this,fix,data&&data.selector?delegate:withinElement,orig)
},teardown:function(data){jQuery.event.remove(this,fix,data&&data.selector?delegate:withinElement)
}}
});
if(!jQuery.support.submitBubbles){jQuery.event.special.submit={setup:function(data,namespaces){if(this.nodeName.toLowerCase()!=="form"){jQuery.event.add(this,"click.specialSubmit",function(e){var elem=e.target,type=elem.type;
if((type==="submit"||type==="image")&&jQuery(elem).closest("form").length){return trigger("submit",this,arguments)
}});
jQuery.event.add(this,"keypress.specialSubmit",function(e){var elem=e.target,type=elem.type;
if((type==="text"||type==="password")&&jQuery(elem).closest("form").length&&e.keyCode===13){return trigger("submit",this,arguments)
}})
}else{return false
}},teardown:function(namespaces){jQuery.event.remove(this,".specialSubmit")
}}
}if(!jQuery.support.changeBubbles){var formElems=/textarea|input|select/i,changeFilters,getVal=function(elem){var type=elem.type,val=elem.value;
if(type==="radio"||type==="checkbox"){val=elem.checked
}else{if(type==="select-multiple"){val=elem.selectedIndex>-1?jQuery.map(elem.options,function(elem){return elem.selected
}).join("-"):""
}else{if(elem.nodeName.toLowerCase()==="select"){val=elem.selectedIndex
}}}return val
},testChange=function testChange(e){var elem=e.target,data,val;
if(!formElems.test(elem.nodeName)||elem.readOnly){return
}data=jQuery.data(elem,"_change_data");
val=getVal(elem);
if(e.type!=="focusout"||elem.type!=="radio"){jQuery.data(elem,"_change_data",val)
}if(data===undefined||val===data){return
}if(data!=null||val){e.type="change";
return jQuery.event.trigger(e,arguments[1],elem)
}};
jQuery.event.special.change={filters:{focusout:testChange,click:function(e){var elem=e.target,type=elem.type;
if(type==="radio"||type==="checkbox"||elem.nodeName.toLowerCase()==="select"){return testChange.call(this,e)
}},keydown:function(e){var elem=e.target,type=elem.type;
if((e.keyCode===13&&elem.nodeName.toLowerCase()!=="textarea")||(e.keyCode===32&&(type==="checkbox"||type==="radio"))||type==="select-multiple"){return testChange.call(this,e)
}},beforeactivate:function(e){var elem=e.target;
jQuery.data(elem,"_change_data",getVal(elem))
}},setup:function(data,namespaces){if(this.type==="file"){return false
}for(var type in changeFilters){jQuery.event.add(this,type+".specialChange",changeFilters[type])
}return formElems.test(this.nodeName)
},teardown:function(namespaces){jQuery.event.remove(this,".specialChange");
return formElems.test(this.nodeName)
}};
changeFilters=jQuery.event.special.change.filters
}function trigger(type,elem,args){args[0].type=type;
return jQuery.event.handle.apply(elem,args)
}if(document.addEventListener){jQuery.each({focus:"focusin",blur:"focusout"},function(orig,fix){jQuery.event.special[fix]={setup:function(){this.addEventListener(orig,handler,true)
},teardown:function(){this.removeEventListener(orig,handler,true)
}};
function handler(e){e=jQuery.event.fix(e);
e.type=fix;
return jQuery.event.handle.call(this,e)
}})
}jQuery.each(["bind","one"],function(i,name){jQuery.fn[name]=function(type,data,fn){if(typeof type==="object"){for(var key in type){this[name](key,data,type[key],fn)
}return this
}if(jQuery.isFunction(data)){fn=data;
data=undefined
}var handler=name==="one"?jQuery.proxy(fn,function(event){jQuery(this).unbind(event,handler);
return fn.apply(this,arguments)
}):fn;
if(type==="unload"&&name!=="one"){this.one(type,data,fn)
}else{for(var i=0,l=this.length;
i<l;
i++){jQuery.event.add(this[i],type,handler,data)
}}return this
}
});
jQuery.fn.extend({unbind:function(type,fn){if(typeof type==="object"&&!type.preventDefault){for(var key in type){this.unbind(key,type[key])
}}else{for(var i=0,l=this.length;
i<l;
i++){jQuery.event.remove(this[i],type,fn)
}}return this
},delegate:function(selector,types,data,fn){return this.live(types,data,fn,selector)
},undelegate:function(selector,types,fn){if(arguments.length===0){return this.unbind("live")
}else{return this.die(types,null,fn,selector)
}},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.proxy(fn,args[i++])
}return this.click(jQuery.proxy(fn,function(event){var lastToggle=(jQuery.data(this,"lastToggle"+fn.guid)||0)%i;
jQuery.data(this,"lastToggle"+fn.guid,lastToggle+1);
event.preventDefault();
return args[lastToggle].apply(this,arguments)||false
}))
},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut||fnOver)
}});
var liveMap={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};
jQuery.each(["live","die"],function(i,name){jQuery.fn[name]=function(types,data,fn,origSelector){var type,i=0,match,namespaces,preType,selector=origSelector||this.selector,context=origSelector?this:jQuery(this.context);
if(jQuery.isFunction(data)){fn=data;
data=undefined
}types=(types||"").split(" ");
while((type=types[i++])!=null){match=rnamespaces.exec(type);
namespaces="";
if(match){namespaces=match[0];
type=type.replace(rnamespaces,"")
}if(type==="hover"){types.push("mouseenter"+namespaces,"mouseleave"+namespaces);
continue
}preType=type;
if(type==="focus"||type==="blur"){types.push(liveMap[type]+namespaces);
type=type+namespaces
}else{type=(liveMap[type]||type)+namespaces
}if(name==="live"){context.each(function(){jQuery.event.add(this,liveConvert(type,selector),{data:data,selector:selector,handler:fn,origType:type,origHandler:fn,preType:preType})
})
}else{context.unbind(liveConvert(type,selector),fn)
}}return this
}
});
function liveHandler(event){var stop,elems=[],selectors=[],args=arguments,related,match,handleObj,elem,j,i,l,data,events=jQuery.data(this,"events");
if(event.liveFired===this||!events||!events.live||event.button&&event.type==="click"){return
}event.liveFired=this;
var live=events.live.slice(0);
for(j=0;
j<live.length;
j++){handleObj=live[j];
if(handleObj.origType.replace(rnamespaces,"")===event.type){selectors.push(handleObj.selector)
}else{live.splice(j--,1)
}}match=jQuery(event.target).closest(selectors,event.currentTarget);
for(i=0,l=match.length;
i<l;
i++){for(j=0;
j<live.length;
j++){handleObj=live[j];
if(match[i].selector===handleObj.selector){elem=match[i].elem;
related=null;
if(handleObj.preType==="mouseenter"||handleObj.preType==="mouseleave"){related=jQuery(event.relatedTarget).closest(handleObj.selector)[0]
}if(!related||related!==elem){elems.push({elem:elem,handleObj:handleObj})
}}}}for(i=0,l=elems.length;
i<l;
i++){match=elems[i];
event.currentTarget=match.elem;
event.data=match.handleObj.data;
event.handleObj=match.handleObj;
if(match.handleObj.origHandler.apply(match.elem,args)===false){stop=false;
break
}}return stop
}function liveConvert(type,selector){return"live."+(type&&type!=="*"?type+".":"")+selector.replace(/\./g,"`").replace(/ /g,"&")
}jQuery.each(("blur focus focusin focusout 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)
};
if(jQuery.attrFn){jQuery.attrFn[name]=true
}});
if(window.attachEvent&&!window.addEventListener){window.attachEvent("onunload",function(){for(var id in jQuery.cache){if(jQuery.cache[id].handle){try{jQuery.event.remove(jQuery.cache[id].handle.elem)
}catch(e){}}}});
/*
 * Sizzle CSS Selector Engine - v1.0
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
}(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true;
[0,0].sort(function(){baseHasDuplicate=false;
return 0
});
var Sizzle=function(selector,context,results,seed){results=results||[];
var origContext=context=context||document;
if(context.nodeType!==1&&context.nodeType!==9){return[]
}if(!selector||typeof selector!=="string"){return results
}var parts=[],m,set,checkSet,extra,prune=true,contextXML=isXML(context),soFar=selector;
while((chunker.exec(""),m=chunker.exec(soFar))!==null){soFar=m[3];
parts.push(m[1]);
if(m[2]){extra=m[3];
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{if(!seed&&parts.length>1&&context.nodeType===9&&!contextXML&&Expr.match.ID.test(parts[0])&&!Expr.match.ID.test(parts[parts.length-1])){var ret=Sizzle.find(parts.shift(),context,contextXML);
context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0]
}if(context){var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&(parts[0]==="~"||parts[0]==="+")&&context.parentNode?context.parentNode:context,contextXML);
set=ret.expr?Sizzle.filter(ret.expr,ret.set):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,contextXML)
}}else{checkSet=parts=[]
}}if(!checkSet){checkSet=set
}if(!checkSet){Sizzle.error(cur||selector)
}if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet)
}else{if(context&&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,origContext,results,seed);
Sizzle.uniqueSort(results)
}return results
};
Sizzle.uniqueSort=function(results){if(sortOrder){hasDuplicate=baseHasDuplicate;
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.leftMatch[type].exec(expr))){var left=match[1];
match.splice(1,1);
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.leftMatch[type].exec(expr))!=null&&match[2]){var filter=Expr.filter[type],found,item,left=match[1];
anyFound=false;
match.splice(1,1);
if(left.substr(left.length-1)==="\\"){continue
}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){Sizzle.error(expr)
}else{break
}}old=expr
}return curLoop
};
Sizzle.error=function(msg){throw"Syntax error, unrecognized expression: "+msg
};
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\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href")
}},relative:{"+":function(checkSet,part){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;
if(isTag){part=part.toLowerCase()
}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.toLowerCase()===part?elem||false:elem===part
}}if(isPartStrNotTag){Sizzle.filter(part,checkSet,true)
}},">":function(checkSet,part){var isPartStr=typeof part==="string";
if(isPartStr&&!/\W/.test(part)){part=part.toLowerCase();
for(var i=0,l=checkSet.length;
i<l;
i++){var elem=checkSet[i];
if(elem){var parent=elem.parentNode;
checkSet[i]=parent.nodeName.toLowerCase()===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(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();
checkFn=dirNodeCheck
}checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML)
},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;
if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();
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){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+" ").replace(/[\t\n]/g," ").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){return match[1].toLowerCase()
},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((chunker.exec(match[3])||"").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.toLowerCase()==="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||getText([elem])||"").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
}else{Sizzle.error("Syntax error, unrecognized expression: "+name)
}}}},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.toLowerCase()===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]=new RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);
Expr.leftMatch[type]=new RegExp(/(^(?:.|\r|\n)*?)/.source+Expr.match[type].source.replace(/\\(\d+)/g,function(all,num){return"\\"+(num-0+1)
}))
}var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);
if(results){results.push.apply(results,array);
return results
}return array
};
try{Array.prototype.slice.call(document.documentElement.childNodes,0)[0].nodeType
}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){if(!a.compareDocumentPosition||!b.compareDocumentPosition){if(a==b){hasDuplicate=true
}return a.compareDocumentPosition?-1:1
}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){if(!a.sourceIndex||!b.sourceIndex){if(a==b){hasDuplicate=true
}return a.sourceIndex?-1:1
}var ret=a.sourceIndex-b.sourceIndex;
if(ret===0){hasDuplicate=true
}return ret
}
}else{if(document.createRange){sortOrder=function(a,b){if(!a.ownerDocument||!b.ownerDocument){if(a==b){hasDuplicate=true
}return a.ownerDocument?-1:1
}var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();
aRange.setStart(a,0);
aRange.setEnd(a,0);
bRange.setStart(b,0);
bRange.setEnd(b,0);
var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);
if(ret===0){hasDuplicate=true
}return ret
}
}}}function getText(elems){var ret="",elem;
for(var i=0;
elems[i];
i++){elem=elems[i];
if(elem.nodeType===3||elem.nodeType===4){ret+=elem.nodeValue
}else{if(elem.nodeType!==8){ret+=getText(elem.childNodes)
}}}return ret
}(function(){var form=document.createElement("div"),id="script"+(new Date).getTime();
form.innerHTML="<a 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);
root=form=null
})();
(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)
}
}div=null
})();
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)
};
for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop]
}div=null
})()
}(function(){var div=document.createElement("div");
div.innerHTML="<div class='test e'></div><div class='test'></div>";
if(!div.getElementsByClassName||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])
}};
div=null
})();
function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;
i<l;
i++){var elem=checkSet[i];
if(elem){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.toLowerCase()===cur){match=elem;
break
}elem=elem[dir]
}checkSet[i]=match
}}}function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;
i<l;
i++){var elem=checkSet[i];
if(elem){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){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;
return documentElement?documentElement.nodeName!=="HTML":false
};
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.expr=Sizzle.selectors;
jQuery.expr[":"]=jQuery.expr.filters;
jQuery.unique=Sizzle.uniqueSort;
jQuery.text=getText;
jQuery.isXMLDoc=isXML;
jQuery.contains=contains;
return;
window.Sizzle=Sizzle
})();
var runtil=/Until$/,rparentsprev=/^(?:parents|prevUntil|prevAll)/,rmultiselector=/,/,slice=Array.prototype.slice;
var winnow=function(elements,qualifier,keep){if(jQuery.isFunction(qualifier)){return jQuery.grep(elements,function(elem,i){return !!qualifier.call(elem,i,elem)===keep
})
}else{if(qualifier.nodeType){return jQuery.grep(elements,function(elem,i){return(elem===qualifier)===keep
})
}else{if(typeof qualifier==="string"){var filtered=jQuery.grep(elements,function(elem){return elem.nodeType===1
});
if(isSimple.test(qualifier)){return jQuery.filter(qualifier,filtered,!keep)
}else{qualifier=jQuery.filter(qualifier,filtered)
}}}}return jQuery.grep(elements,function(elem,i){return(jQuery.inArray(elem,qualifier)>=0)===keep
})
};
jQuery.fn.extend({find:function(selector){var ret=this.pushStack("","find",selector),length=0;
for(var i=0,l=this.length;
i<l;
i++){length=ret.length;
jQuery.find(selector,this[i],ret);
if(i>0){for(var n=length;
n<ret.length;
n++){for(var r=0;
r<length;
r++){if(ret[r]===ret[n]){ret.splice(n--,1);
break
}}}}}return ret
},has:function(target){var targets=jQuery(target);
return this.filter(function(){for(var i=0,l=targets.length;
i<l;
i++){if(jQuery.contains(this,targets[i])){return true
}}})
},not:function(selector){return this.pushStack(winnow(this,selector,false),"not",selector)
},filter:function(selector){return this.pushStack(winnow(this,selector,true),"filter",selector)
},is:function(selector){return !!selector&&jQuery.filter(selector,this).length>0
},closest:function(selectors,context){if(jQuery.isArray(selectors)){var ret=[],cur=this[0],match,matches={},selector;
if(cur&&selectors.length){for(var i=0,l=selectors.length;
i<l;
i++){selector=selectors[i];
if(!matches[selector]){matches[selector]=jQuery.expr.match.POS.test(selector)?jQuery(selector,context||this.context):selector
}}while(cur&&cur.ownerDocument&&cur!==context){for(selector in matches){match=matches[selector];
if(match.jquery?match.index(cur)>-1:jQuery(cur).is(match)){ret.push({selector:selector,elem:cur});
delete matches[selector]
}}cur=cur.parentNode
}}return ret
}var pos=jQuery.expr.match.POS.test(selectors)?jQuery(selectors,context||this.context):null;
return this.map(function(i,cur){while(cur&&cur.ownerDocument&&cur!==context){if(pos?pos.index(cur)>-1:jQuery(cur).is(selectors)){return cur
}cur=cur.parentNode
}return null
})
},index:function(elem){if(!elem||typeof elem==="string"){return jQuery.inArray(this[0],elem?jQuery(elem):this.parent().children())
}return jQuery.inArray(elem.jquery?elem[0]:elem,this)
},add:function(selector,context){var set=typeof selector==="string"?jQuery(selector,context||this.context):jQuery.makeArray(selector),all=jQuery.merge(this.get(),set);
return this.pushStack(isDisconnected(set[0])||isDisconnected(all[0])?all:jQuery.unique(all))
},andSelf:function(){return this.add(this.prevObject)
}});
function isDisconnected(node){return !node||!node.parentNode||node.parentNode.nodeType===11
}jQuery.each({parent:function(elem){var parent=elem.parentNode;
return parent&&parent.nodeType!==11?parent:null
},parents:function(elem){return jQuery.dir(elem,"parentNode")
},parentsUntil:function(elem,i,until){return jQuery.dir(elem,"parentNode",until)
},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")
},nextUntil:function(elem,i,until){return jQuery.dir(elem,"nextSibling",until)
},prevUntil:function(elem,i,until){return jQuery.dir(elem,"previousSibling",until)
},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(until,selector){var ret=jQuery.map(this,fn,until);
if(!runtil.test(name)){selector=until
}if(selector&&typeof selector==="string"){ret=jQuery.filter(selector,ret)
}ret=this.length>1?jQuery.unique(ret):ret;
if((this.length>1||rmultiselector.test(selector))&&rparentsprev.test(name)){ret=ret.reverse()
}return this.pushStack(ret,name,slice.call(arguments).join(","))
}
});
jQuery.extend({filter:function(expr,elems,not){if(not){expr=":not("+expr+")"
}return jQuery.find.matches(expr,elems)
},dir:function(elem,dir,until){var matched=[],cur=elem[dir];
while(cur&&cur.nodeType!==9&&(until===undefined||cur.nodeType!==1||!jQuery(cur).is(until))){if(cur.nodeType===1){matched.push(cur)
}cur=cur[dir]
}return matched
},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
},sibling:function(n,elem){var r=[];
for(;
n;
n=n.nextSibling){if(n.nodeType===1&&n!==elem){r.push(n)
}}return r
}});
var rinlinejQuery=/ jQuery\d+="(?:\d+|null)"/g,rleadingWhitespace=/^\s+/,rxhtmlTag=/(<([\w:]+)[^>]*?)\/>/g,rselfClosing=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,rtagName=/<([\w:]+)/,rtbody=/<tbody/i,rhtml=/<|&#?\w+;/,rnocache=/<script|<object|<embed|<option|<style/i,rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,fcloseTag=function(all,front,tag){return rselfClosing.test(tag)?all:front+"></"+tag+">"
},wrapMap={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};
wrapMap.optgroup=wrapMap.option;
wrapMap.tbody=wrapMap.tfoot=wrapMap.colgroup=wrapMap.caption=wrapMap.thead;
wrapMap.th=wrapMap.td;
if(!jQuery.support.htmlSerialize){wrapMap._default=[1,"div<div>","</div>"]
}jQuery.fn.extend({text:function(text){if(jQuery.isFunction(text)){return this.each(function(i){var self=jQuery(this);
self.text(text.call(this,i,self.text()))
})
}if(typeof text!=="object"&&text!==undefined){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text))
}return jQuery.text(this)
},wrapAll:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapAll(html.call(this,i))
})
}if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).eq(0).clone(true);
if(this[0].parentNode){wrap.insertBefore(this[0])
}wrap.map(function(){var elem=this;
while(elem.firstChild&&elem.firstChild.nodeType===1){elem=elem.firstChild
}return elem
}).append(this)
}return this
},wrapInner:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapInner(html.call(this,i))
})
}return this.each(function(){var self=jQuery(this),contents=self.contents();
if(contents.length){contents.wrapAll(html)
}else{self.append(html)
}})
},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html)
})
},unwrap:function(){return this.parent().each(function(){if(!jQuery.nodeName(this,"body")){jQuery(this).replaceWith(this.childNodes)
}}).end()
},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(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this)
})
}else{if(arguments.length){var set=jQuery(arguments[0]);
set.push.apply(set,this.toArray());
return this.pushStack(set,"before",arguments)
}}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling)
})
}else{if(arguments.length){var set=this.pushStack(this,"after",arguments);
set.push.apply(set,jQuery(arguments[0]).toArray());
return set
}}},remove:function(selector,keepData){for(var i=0,elem;
(elem=this[i])!=null;
i++){if(!selector||jQuery.filter(selector,[elem]).length){if(!keepData&&elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));
jQuery.cleanData([elem])
}if(elem.parentNode){elem.parentNode.removeChild(elem)
}}}return this
},empty:function(){for(var i=0,elem;
(elem=this[i])!=null;
i++){if(elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"))
}while(elem.firstChild){elem.removeChild(elem.firstChild)
}}return this
},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML,ownerDocument=this.ownerDocument;
if(!html){var div=ownerDocument.createElement("div");
div.appendChild(this.cloneNode(true));
html=div.innerHTML
}return jQuery.clean([html.replace(rinlinejQuery,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(rleadingWhitespace,"")],ownerDocument)[0]
}else{return this.cloneNode(true)
}});
if(events===true){cloneCopyEvent(this,ret);
cloneCopyEvent(this.find("*"),ret.find("*"))
}return ret
},html:function(value){if(value===undefined){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(rinlinejQuery,""):null
}else{if(typeof value==="string"&&!rnocache.test(value)&&(jQuery.support.leadingWhitespace||!rleadingWhitespace.test(value))&&!wrapMap[(rtagName.exec(value)||["",""])[1].toLowerCase()]){value=value.replace(rxhtmlTag,fcloseTag);
try{for(var i=0,l=this.length;
i<l;
i++){if(this[i].nodeType===1){jQuery.cleanData(this[i].getElementsByTagName("*"));
this[i].innerHTML=value
}}}catch(e){this.empty().append(value)
}}else{if(jQuery.isFunction(value)){this.each(function(i){var self=jQuery(this),old=self.html();
self.empty().append(function(){return value.call(this,i,old)
})
})
}else{this.empty().append(value)
}}}return this
},replaceWith:function(value){if(this[0]&&this[0].parentNode){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this),old=self.html();
self.replaceWith(value.call(this,i,old))
})
}if(typeof value!=="string"){value=jQuery(value).detach()
}return this.each(function(){var next=this.nextSibling,parent=this.parentNode;
jQuery(this).remove();
if(next){jQuery(next).before(value)
}else{jQuery(parent).append(value)
}})
}else{return this.pushStack(jQuery(jQuery.isFunction(value)?value():value),"replaceWith",value)
}},detach:function(selector){return this.remove(selector,true)
},domManip:function(args,table,callback){var results,first,value=args[0],scripts=[],fragment,parent;
if(!jQuery.support.checkClone&&arguments.length===3&&typeof value==="string"&&rchecked.test(value)){return this.each(function(){jQuery(this).domManip(args,table,callback,true)
})
}if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);
args[0]=value.call(this,i,table?self.html():undefined);
self.domManip(args,table,callback)
})
}if(this[0]){parent=value&&value.parentNode;
if(jQuery.support.parentNode&&parent&&parent.nodeType===11&&parent.childNodes.length===this.length){results={fragment:parent}
}else{results=buildFragment(args,this,scripts)
}fragment=results.fragment;
if(fragment.childNodes.length===1){first=fragment=fragment.firstChild
}else{first=fragment.firstChild
}if(first){table=table&&jQuery.nodeName(first,"tr");
for(var i=0,l=this.length;
i<l;
i++){callback.call(table?root(this[i],first):this[i],i>0||results.cacheable||this.length>1?fragment.cloneNode(true):fragment)
}}if(scripts.length){jQuery.each(scripts,evalScript)
}}return this;
function root(elem,cur){return jQuery.nodeName(elem,"table")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem
}}});
function cloneCopyEvent(orig,ret){var i=0;
ret.each(function(){if(this.nodeName!==(orig[i]&&orig[i].nodeName)){return
}var oldData=jQuery.data(orig[i++]),curData=jQuery.data(this,oldData),events=oldData&&oldData.events;
if(events){delete curData.handle;
curData.events={};
for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data)
}}}})
}function buildFragment(args,nodes,scripts){var fragment,cacheable,cacheresults,doc=(nodes&&nodes[0]?nodes[0].ownerDocument||nodes[0]:document);
if(args.length===1&&typeof args[0]==="string"&&args[0].length<512&&doc===document&&!rnocache.test(args[0])&&(jQuery.support.checkClone||!rchecked.test(args[0]))){cacheable=true;
cacheresults=jQuery.fragments[args[0]];
if(cacheresults){if(cacheresults!==1){fragment=cacheresults
}}}if(!fragment){fragment=doc.createDocumentFragment();
jQuery.clean(args,doc,fragment,scripts)
}if(cacheable){jQuery.fragments[args[0]]=cacheresults?fragment:1
}return{fragment:fragment,cacheable:cacheable}
}jQuery.fragments={};
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),parent=this.length===1&&this[0].parentNode;
if(parent&&parent.nodeType===11&&parent.childNodes.length===1&&insert.length===1){insert[original](this[0]);
return this
}else{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,insert.selector)
}}
});
jQuery.extend({clean:function(elems,context,fragment,scripts){context=context||document;
if(typeof context.createElement==="undefined"){context=context.ownerDocument||context[0]&&context[0].ownerDocument||document
}var ret=[];
for(var i=0,elem;
(elem=elems[i])!=null;
i++){if(typeof elem==="number"){elem+=""
}if(!elem){continue
}if(typeof elem==="string"&&!rhtml.test(elem)){elem=context.createTextNode(elem)
}else{if(typeof elem==="string"){elem=elem.replace(rxhtmlTag,fcloseTag);
var tag=(rtagName.exec(elem)||["",""])[1].toLowerCase(),wrap=wrapMap[tag]||wrapMap._default,depth=wrap[0],div=context.createElement("div");
div.innerHTML=wrap[1]+elem+wrap[2];
while(depth--){div=div.lastChild
}if(!jQuery.support.tbody){var hasBody=rtbody.test(elem),tbody=tag==="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&&rleadingWhitespace.test(elem)){div.insertBefore(context.createTextNode(rleadingWhitespace.exec(elem)[0]),div.firstChild)
}elem=div.childNodes
}}if(elem.nodeType){ret.push(elem)
}else{ret=jQuery.merge(ret,elem)
}}if(fragment){for(var i=0;
ret[i];
i++){if(scripts&&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 ret
},cleanData:function(elems){var data,id,cache=jQuery.cache,special=jQuery.event.special,deleteExpando=jQuery.support.deleteExpando;
for(var i=0,elem;
(elem=elems[i])!=null;
i++){id=elem[jQuery.expando];
if(id){data=cache[id];
if(data.events){for(var type in data.events){if(special[type]){jQuery.event.remove(elem,type)
}else{removeEvent(elem,type,data.handle)
}}}if(deleteExpando){delete elem[jQuery.expando]
}else{if(elem.removeAttribute){elem.removeAttribute(jQuery.expando)
}}delete cache[id]
}}}});
var rexclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,ralpha=/alpha\([^)]*\)/,ropacity=/opacity=([^)]*)/,rfloat=/float/i,rdashAlpha=/-([a-z])/ig,rupper=/([A-Z])/g,rnumpx=/^-?\d+(?:px)?$/i,rnum=/^-?\d/,cssShow={position:"absolute",visibility:"hidden",display:"block"},cssWidth=["Left","Right"],cssHeight=["Top","Bottom"],getComputedStyle=document.defaultView&&document.defaultView.getComputedStyle,styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat",fcamelCase=function(all,letter){return letter.toUpperCase()
};
jQuery.fn.css=function(name,value){return access(this,name,value,true,function(elem,name,value){if(value===undefined){return jQuery.curCSS(elem,name)
}if(typeof value==="number"&&!rexclude.test(name)){value+="px"
}jQuery.style(elem,name,value)
})
};
jQuery.extend({style:function(elem,name,value){if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined
}if((name==="width"||name==="height")&&parseFloat(value)<0){value=undefined
}var style=elem.style||elem,set=value!==undefined;
if(!jQuery.support.opacity&&name==="opacity"){if(set){style.zoom=1;
var opacity=parseInt(value,10)+""==="NaN"?"":"alpha(opacity="+value*100+")";
var filter=style.filter||jQuery.curCSS(elem,"filter")||"";
style.filter=ralpha.test(filter)?filter.replace(ralpha,opacity):opacity
}return style.filter&&style.filter.indexOf("opacity=")>=0?(parseFloat(ropacity.exec(style.filter)[1])/100)+"":""
}if(rfloat.test(name)){name=styleFloat
}name=name.replace(rdashAlpha,fcamelCase);
if(set){try{style[name]=value
}catch(error){}}return style[name]
},css:function(elem,name,force,extra){if(name==="width"||name==="height"){var val,props=cssShow,which=name==="width"?cssWidth:cssHeight;
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,filter;
if(!jQuery.support.opacity&&name==="opacity"&&elem.currentStyle){ret=ropacity.test(elem.currentStyle.filter||"")?(parseFloat(RegExp.$1)/100)+"":"";
return ret===""?"1":ret
}if(rfloat.test(name)){name=styleFloat
}if(!force&&style&&style[name]){ret=style[name]
}else{if(getComputedStyle){if(rfloat.test(name)){name="float"
}name=name.replace(rupper,"-$1").toLowerCase();
var defaultView=elem.ownerDocument.defaultView;
if(!defaultView){return null
}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(rdashAlpha,fcamelCase);
ret=elem.currentStyle[name]||elem.currentStyle[camelCase];
if(!rnumpx.test(ret)&&rnum.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;
elem.runtimeStyle.left=elem.currentStyle.left;
style.left=camelCase==="fontSize"?"1em":(ret||0);
ret=style.pixelLeft+"px";
style.left=left;
elem.runtimeStyle.left=rsLeft
}}}}return ret
},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]
}}});
if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.hidden=function(elem){var width=elem.offsetWidth,height=elem.offsetHeight,skip=elem.nodeName.toLowerCase()==="tr";
return width===0&&height===0&&!skip?true:width>0&&height>0&&!skip?false:jQuery.curCSS(elem,"display")==="none"
};
jQuery.expr.filters.visible=function(elem){return !jQuery.expr.filters.hidden(elem)
}
}var jsc=now(),rscript=/<script(.|\s)*?\/script>/gi,rselectTextarea=/select|textarea/i,rinput=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,jsre=/=\?(&|$)/,rquery=/\?/,rts=/(\?|&)_=.*?(&|$)/,rurl=/^(\w+:)?\/\/([^\/?#]+)/,r20=/%20/g,_load=jQuery.fn.load;
jQuery.fn.extend({load:function(url,params,callback){if(typeof url!=="string"){return _load.call(this,url)
}else{if(!this.length){return this
}}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,jQuery.ajaxSettings.traditional);
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(rscript,"")).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||rselectTextarea.test(this.nodeName)||rinput.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)
}
});
jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){type=type||callback;
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)){type=type||callback;
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:window.XMLHttpRequest&&(window.location.protocol!=="file:"||!window.ActiveXObject)?function(){return new window.XMLHttpRequest()
}:function(){try{return new window.ActiveXObject("Microsoft.XMLHTTP")
}catch(e){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(origSettings){var s=jQuery.extend(true,{},jQuery.ajaxSettings,origSettings);
var jsonp,status,data,callbackContext=origSettings&&origSettings.context||s,type=s.type.toUpperCase();
if(s.data&&s.processData&&typeof s.data!=="string"){s.data=jQuery.param(s.data,s.traditional)
}if(s.dataType==="jsonp"){if(type==="GET"){if(!jsre.test(s.url)){s.url+=(rquery.test(s.url)?"&":"?")+(s.jsonp||"callback")+"=?"
}}else{if(!s.data||!jsre.test(s.data)){s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?"
}}s.dataType="json"
}if(s.dataType==="json"&&(s.data&&jsre.test(s.data)||jsre.test(s.url))){jsonp=s.jsonpCallback||("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]=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(rts,"$1_="+ts+"$2");
s.url=ret+((ret===s.url)?(rquery.test(s.url)?"&":"?")+"_="+ts:"")
}if(s.data&&type==="GET"){s.url+=(rquery.test(s.url)?"&":"?")+s.data
}if(s.global&&!jQuery.active++){jQuery.event.trigger("ajaxStart")
}var parts=rurl.exec(s.url),remote=parts&&(parts[1]&&parts[1]!==location.protocol||parts[2]!==location.host);
if(s.dataType==="script"&&type==="GET"&&remote){var head=document.getElementsByTagName("head")[0]||document.documentElement;
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;
if(head&&script.parentNode){head.removeChild(script)
}}}
}head.insertBefore(script,head.firstChild);
return undefined
}var requestDone=false;
var xhr=s.xhr();
if(!xhr){return
}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||origSettings&&origSettings.contentType){xhr.setRequestHeader("Content-Type",s.contentType)
}if(s.ifModified){if(jQuery.lastModified[s.url]){xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url])
}if(jQuery.etag[s.url]){xhr.setRequestHeader("If-None-Match",jQuery.etag[s.url])
}}if(!remote){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.call(callbackContext,xhr,s)===false){if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop")
}xhr.abort();
return false
}if(s.global){trigger("ajaxSend",[xhr,s])
}var onreadystatechange=xhr.onreadystatechange=function(isTimeout){if(!xhr||xhr.readyState===0||isTimeout==="abort"){if(!requestDone){complete()
}requestDone=true;
if(xhr){xhr.onreadystatechange=jQuery.noop
}}else{if(!requestDone&&xhr&&(xhr.readyState===4||isTimeout==="timeout")){requestDone=true;
xhr.onreadystatechange=jQuery.noop;
status=isTimeout==="timeout"?"timeout":!jQuery.httpSuccess(xhr)?"error":s.ifModified&&jQuery.httpNotModified(xhr,s.url)?"notmodified":"success";
var errMsg;
if(status==="success"){try{data=jQuery.httpData(xhr,s.dataType,s)
}catch(err){status="parsererror";
errMsg=err
}}if(status==="success"||status==="notmodified"){if(!jsonp){success()
}}else{jQuery.handleError(s,xhr,status,errMsg)
}complete();
if(isTimeout==="timeout"){xhr.abort()
}if(s.async){xhr=null
}}}};
try{var oldAbort=xhr.abort;
xhr.abort=function(){if(xhr){oldAbort.call(xhr)
}onreadystatechange("abort")
}
}catch(e){}if(s.async&&s.timeout>0){setTimeout(function(){if(xhr&&!requestDone){onreadystatechange("timeout")
}},s.timeout)
}try{xhr.send(type==="POST"||type==="PUT"||type==="DELETE"?s.data:null)
}catch(e){jQuery.handleError(s,xhr,null,e);
complete()
}if(!s.async){onreadystatechange()
}function success(){if(s.success){s.success.call(callbackContext,data,status,xhr)
}if(s.global){trigger("ajaxSuccess",[xhr,s])
}}function complete(){if(s.complete){s.complete.call(callbackContext,xhr,status)
}if(s.global){trigger("ajaxComplete",[xhr,s])
}if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop")
}}function trigger(type,args){(s.context?jQuery(s.context):jQuery.event).trigger(type,args)
}return xhr
},handleError:function(s,xhr,status,e){if(s.error){s.error.call(s.context||s,xhr,status,e)
}if(s.global){(s.context?jQuery(s.context):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||xhr.status===0
}catch(e){}return false
},httpNotModified:function(xhr,url){var lastModified=xhr.getResponseHeader("Last-Modified"),etag=xhr.getResponseHeader("Etag");
if(lastModified){jQuery.lastModified[url]=lastModified
}if(etag){jQuery.etag[url]=etag
}return xhr.status===304||xhr.status===0
},httpData:function(xhr,type,s){var ct=xhr.getResponseHeader("content-type")||"",xml=type==="xml"||!type&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;
if(xml&&data.documentElement.nodeName==="parsererror"){jQuery.error("parsererror")
}if(s&&s.dataFilter){data=s.dataFilter(data,type)
}if(typeof data==="string"){if(type==="json"||!type&&ct.indexOf("json")>=0){data=jQuery.parseJSON(data)
}else{if(type==="script"||!type&&ct.indexOf("javascript")>=0){jQuery.globalEval(data)
}}}return data
},param:function(a,traditional){var s=[];
if(traditional===undefined){traditional=jQuery.ajaxSettings.traditional
}if(jQuery.isArray(a)||a.jquery){jQuery.each(a,function(){add(this.name,this.value)
})
}else{for(var prefix in a){buildParams(prefix,a[prefix])
}}return s.join("&").replace(r20,"+");
function buildParams(prefix,obj){if(jQuery.isArray(obj)){jQuery.each(obj,function(i,v){if(traditional||/\[\]$/.test(prefix)){add(prefix,v)
}else{buildParams(prefix+"["+(typeof v==="object"||jQuery.isArray(v)?i:"")+"]",v)
}})
}else{if(!traditional&&obj!=null&&typeof obj==="object"){jQuery.each(obj,function(k,v){buildParams(prefix+"["+k+"]",v)
})
}else{add(prefix,obj)
}}}function add(key,value){value=jQuery.isFunction(value)?value():value;
s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value)
}}});
var elemdisplay={},rfxtypes=/toggle|show|hide/,rfxnum=/^([+-]=)?([\d+-.]+)(.*)$/,timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];
jQuery.fn.extend({show:function(speed,callback){if(speed||speed===0){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 nodeName=this[i].nodeName,display;
if(elemdisplay[nodeName]){display=elemdisplay[nodeName]
}else{var elem=jQuery("<"+nodeName+" />").appendTo("body");
display=elem.css("display");
if(display==="none"){display="block"
}elem.remove();
elemdisplay[nodeName]=display
}jQuery.data(this[i],"olddisplay",display)
}}for(var j=0,k=this.length;
j<k;
j++){this[j].style.display=jQuery.data(this[j],"olddisplay")||""
}return this
}},hide:function(speed,callback){if(speed||speed===0){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 j=0,k=this.length;
j<k;
j++){this[j].style.display="none"
}return this
}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";
if(jQuery.isFunction(fn)&&jQuery.isFunction(fn2)){this._toggle.apply(this,arguments)
}else{if(fn==null||bool){this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");
jQuery(this)[state?"show":"hide"]()
})
}else{this.animate(genFx("toggle",3),fn,fn2)
}}return this
},fadeTo:function(speed,to,callback){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:to},speed,callback)
},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);
if(jQuery.isEmptyObject(prop)){return this.each(optall.complete)
}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){var name=p.replace(rdashAlpha,fcamelCase);
if(p!==name){prop[name]=prop[p];
delete prop[p];
p=name
}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(jQuery.isArray(prop[p])){(opt.specialEasing=opt.specialEasing||{})[p]=prop[p][1];
prop[p]=prop[p][0]
}}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(rfxtypes.test(val)){e[val==="toggle"?hidden?"show":"hide":val](prop)
}else{var parts=rfxnum.exec(val),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=speed&&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(jQuery.fx.tick,13)
}},show:function(){this.options.orig[this.prop]=jQuery.style(this.elem,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.style(this.elem,this.prop);
this.options.hide=true;
this.custom(this.cur(),0)
},step:function(gotoEnd){var t=now(),done=true;
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;
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;
var old=jQuery.data(this.elem,"olddisplay");
this.elem.style.display=old?old: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.style(this.elem,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;
var specialEasing=this.options.specialEasing&&this.options.specialEasing[this.prop];
var defaultEasing=this.options.easing||(jQuery.easing.swing?"swing":"linear");
this.pos=jQuery.easing[specialEasing||defaultEasing](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,{tick:function(){var timers=jQuery.timers;
for(var i=0;
i<timers.length;
i++){if(!timers[i]()){timers.splice(i--,1)
}}if(!timers.length){jQuery.fx.stop()
}},stop:function(){clearInterval(timerId);
timerId=null
},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.style(fx.elem,"opacity",fx.now)
},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null){fx.elem.style[fx.prop]=(fx.prop==="width"||fx.prop==="height"?Math.max(0,fx.now):fx.now)+fx.unit
}else{fx.elem[fx.prop]=fx.now
}}}});
if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem
}).length
}
}function genFx(type,num){var obj={};
jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type
});
return obj
}if("getBoundingClientRect" in document.documentElement){jQuery.fn.offset=function(options){var elem=this[0];
if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i)
})
}if(!elem||!elem.ownerDocument){return null
}if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem)
}var box=elem.getBoundingClientRect(),doc=elem.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.support.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.support.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;
return{top:top,left:left}
}
}else{jQuery.fn.offset=function(options){var elem=this[0];
if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i)
})
}if(!elem||!elem.ownerDocument){return null
}if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem)
}jQuery.offset.initialize();
var offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle,top=elem.offsetTop,left=elem.offsetLeft;
while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){if(jQuery.offset.supportsFixedPosition&&prevComputedStyle.position==="fixed"){break
}computedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle;
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.nodeName))){top+=parseFloat(computedStyle.borderTopWidth)||0;
left+=parseFloat(computedStyle.borderLeftWidth)||0
}prevOffsetParent=offsetParent,offsetParent=elem.offsetParent
}if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible"){top+=parseFloat(computedStyle.borderTopWidth)||0;
left+=parseFloat(computedStyle.borderLeftWidth)||0
}prevComputedStyle=computedStyle
}if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static"){top+=body.offsetTop;
left+=body.offsetLeft
}if(jQuery.offset.supportsFixedPosition&&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(){var body=document.body,container=document.createElement("div"),innerDiv,checkDiv,table,td,bodyMarginTop=parseFloat(jQuery.curCSS(body,"marginTop",true))||0,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>";
jQuery.extend(container.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});
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);
checkDiv.style.position="fixed",checkDiv.style.top="20px";
this.supportsFixedPosition=(checkDiv.offsetTop===20||checkDiv.offsetTop===15);
checkDiv.style.position=checkDiv.style.top="";
innerDiv.style.overflow="hidden",innerDiv.style.position="relative";
this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);
this.doesNotIncludeMarginInBodyOffset=(body.offsetTop!==bodyMarginTop);
body.removeChild(container);
body=container=innerDiv=checkDiv=table=td=null;
jQuery.offset.initialize=jQuery.noop
},bodyOffset:function(body){var top=body.offsetTop,left=body.offsetLeft;
jQuery.offset.initialize();
if(jQuery.offset.doesNotIncludeMarginInBodyOffset){top+=parseFloat(jQuery.curCSS(body,"marginTop",true))||0;
left+=parseFloat(jQuery.curCSS(body,"marginLeft",true))||0
}return{top:top,left:left}
},setOffset:function(elem,options,i){if(/static/.test(jQuery.curCSS(elem,"position"))){elem.style.position="relative"
}var curElem=jQuery(elem),curOffset=curElem.offset(),curTop=parseInt(jQuery.curCSS(elem,"top",true),10)||0,curLeft=parseInt(jQuery.curCSS(elem,"left",true),10)||0;
if(jQuery.isFunction(options)){options=options.call(elem,i,curOffset)
}var props={top:(options.top-curOffset.top)+curTop,left:(options.left-curOffset.left)+curLeft};
if("using" in options){options.using.call(elem,props)
}else{curElem.css(props)
}}};
jQuery.fn.extend({position:function(){if(!this[0]){return null
}var elem=this[0],offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].nodeName)?{top:0,left:0}:offsetParent.offset();
offset.top-=parseFloat(jQuery.curCSS(elem,"marginTop",true))||0;
offset.left-=parseFloat(jQuery.curCSS(elem,"marginLeft",true))||0;
parentOffset.top+=parseFloat(jQuery.curCSS(offsetParent[0],"borderTopWidth",true))||0;
parentOffset.left+=parseFloat(jQuery.curCSS(offsetParent[0],"borderLeftWidth",true))||0;
return{top:offset.top-parentOffset.top,left:offset.left-parentOffset.left}
},offsetParent:function(){return this.map(function(){var offsetParent=this.offsetParent||document.body;
while(offsetParent&&(!/^body|html$/i.test(offsetParent.nodeName)&&jQuery.css(offsetParent,"position")==="static")){offsetParent=offsetParent.offsetParent
}return offsetParent
})
}});
jQuery.each(["Left","Top"],function(i,name){var method="scroll"+name;
jQuery.fn[method]=function(val){var elem=this[0],win;
if(!elem){return null
}if(val!==undefined){return this.each(function(){win=getWindow(this);
if(win){win.scrollTo(!i?val:jQuery(win).scrollLeft(),i?val:jQuery(win).scrollTop())
}else{this[method]=val
}})
}else{win=getWindow(elem);
return win?("pageXOffset" in win)?win[i?"pageYOffset":"pageXOffset"]:jQuery.support.boxModel&&win.document.documentElement[method]||win.document.body[method]:elem[method]
}}
});
function getWindow(elem){return("scrollTo" in elem&&elem.document)?elem:elem.nodeType===9?elem.defaultView||elem.parentWindow:false
}jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();
jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],type,false,"padding"):null
};
jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],type,false,margin?"margin":"border"):null
};
jQuery.fn[type]=function(size){var elem=this[0];
if(!elem){return size==null?null:this
}if(jQuery.isFunction(size)){return this.each(function(i){var self=jQuery(this);
self[type](size.call(this,i,self[type]()))
})
}return("scrollTo" in elem&&elem.document)?elem.document.compatMode==="CSS1Compat"&&elem.document.documentElement["client"+name]||elem.document.body["client"+name]:(elem.nodeType===9)?Math.max(elem.documentElement["client"+name],elem.body["scroll"+name],elem.documentElement["scroll"+name],elem.body["offset"+name],elem.documentElement["offset"+name]):size===undefined?jQuery.css(elem,type):this.css(type,typeof size==="string"?size:size+"px")
}
});
window.jQuery=window.$=jQuery
})(window);


/*
 * jQuery UI Widget 1.8.2
 *
 * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Widget
 */
(function($){var _remove=$.fn.remove;
$.fn.remove=function(selector,keepData){return this.each(function(){if(!keepData){if(!selector||$.filter(selector,[this]).length){$("*",this).add(this).each(function(){$(this).triggerHandler("remove")
})
}}return _remove.call($(this),selector,keepData)
})
};
$.widget=function(name,base,prototype){var namespace=name.split(".")[0],fullName;
name=name.split(".")[1];
fullName=namespace+"-"+name;
if(!prototype){prototype=base;
base=$.Widget
}$.expr[":"][fullName]=function(elem){return !!$.data(elem,name)
};
$[namespace]=$[namespace]||{};
$[namespace][name]=function(options,element){if(arguments.length){this._createWidget(options,element)
}};
var basePrototype=new base();
basePrototype.options=$.extend({},basePrototype.options);
$[namespace][name].prototype=$.extend(true,basePrototype,{namespace:namespace,widgetName:name,widgetEventPrefix:$[namespace][name].prototype.widgetEventPrefix||name,widgetBaseClass:fullName},prototype);
$.widget.bridge(name,$[namespace][name])
};
$.widget.bridge=function(name,object){$.fn[name]=function(options){var isMethodCall=typeof options==="string",args=Array.prototype.slice.call(arguments,1),returnValue=this;
options=!isMethodCall&&args.length?$.extend.apply(null,[true,options].concat(args)):options;
if(isMethodCall&&options.substring(0,1)==="_"){return returnValue
}if(isMethodCall){this.each(function(){var instance=$.data(this,name),methodValue=instance&&$.isFunction(instance[options])?instance[options].apply(instance,args):instance;
if(methodValue!==instance&&methodValue!==undefined){returnValue=methodValue;
return false
}})
}else{this.each(function(){var instance=$.data(this,name);
if(instance){if(options){instance.option(options)
}instance._init()
}else{$.data(this,name,new object(options,this))
}})
}return returnValue
}
};
$.Widget=function(options,element){if(arguments.length){this._createWidget(options,element)
}};
$.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(options,element){this.element=$(element).data(this.widgetName,this);
this.options=$.extend(true,{},this.options,$.metadata&&$.metadata.get(element)[this.widgetName],options);
var self=this;
this.element.bind("remove."+this.widgetName,function(){self.destroy()
});
this._create();
this._init()
},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);
this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")
},widget:function(){return this.element
},option:function(key,value){var options=key,self=this;
if(arguments.length===0){return $.extend({},self.options)
}if(typeof key==="string"){if(value===undefined){return this.options[key]
}options={};
options[key]=value
}$.each(options,function(key,value){self._setOption(key,value)
});
return self
},_setOption:function(key,value){this.options[key]=value;
if(key==="disabled"){this.widget()[value?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",value)
}return this
},enable:function(){return this._setOption("disabled",false)
},disable:function(){return this._setOption("disabled",true)
},_trigger:function(type,event,data){var callback=this.options[type];
event=$.Event(event);
event.type=(type===this.widgetEventPrefix?type:this.widgetEventPrefix+type).toLowerCase();
data=data||{};
if(event.originalEvent){for(var i=$.event.props.length,prop;
i;
){prop=$.event.props[--i];
event[prop]=event.originalEvent[prop]
}}this.element.trigger(event,data);
return !($.isFunction(callback)&&callback.call(this.element[0],event,data)===false||event.isDefaultPrevented())
}}
})(jQuery);




(function($,window,document,undefined){$.widget("ctg.contactForm",{options:{productId:"",productName:"",block:{message:null,overlayCSS:{backgroundColor:"#fff",opacity:"0.50"}}},_create:function(){var self=this;
return
},_init:function(){var self=this;
self._events();
return
},_destroy:function(){},_events:function(){var self=this,$el=self.element;
$el.click(function(e){e.preventDefault();
self._load()
});
return
},_load:function(){var self=this;
DKI.read.siteContactForm(self.options.productId,function(response){$.modal(response,{appendTo:"#container",opacity:20,minWidth:1000,overlayId:"shared_dialog-overlay",containerId:"shared_dialog-container",dataId:"shared_dialog-data",overlayClose:true,onShow:function(dialog){var $a=$("<a/>");
$a.addClass("close-modal").attr("href","#").attr("title","Close X").html("Close X").click(function(e){e.preventDefault();
$.modal.close()
}).prependTo(dialog.data);
self._form(dialog.data)
},onClose:function(dialog){$.modal.close()
},onOpen:function(dialog){dialog.overlay.css({display:"block"});
dialog.data.css({display:"block"});
dialog.container.css({display:"block"})
}})
});
return
},_form:function($dialog){var self=this;
$dialog.find("select").control();
$dialog.find("a.submit").click(function(e){e.preventDefault();
self._submit($(this).closest("form"))
});
$dialog.find("#productId").val(self.options.productId);
$dialog.find("#productName").val(self.options.productName);
return
},_submit:function($form){var self=this,$container=$form.closest(".simplemodal-data"),$partial=$form.closest(".modal"),validator=$form.validate({rules:{},showErrors:function(errorMap,errorList){},highlight:function(element){},invalidHandler:function(form,validator){}});
$container.block(self.options.block);
$.ajax({type:"POST",url:$form.attr("action"),data:$form.serialize(),success:function(response){var $response=$(response);
$container.unblock();
if($response.find(".message").length>0){$(".close-modal").css({display:"none"});
$partial.replaceWith('<p>Thank you. Your requst has been submitted.</p><div class="button"><a href="#" class="js-show close-button button">Close</a></div>');
$(".close-button").click(function(e){e.preventDefault();
$.modal.close()
})
}$partial.replaceWith($response);
self._form($response);
return
},error:function(response){$container.unblock();
return
}})
}})
})(jQuery,this,this.document);

(function($){$.shared=function(options){return $.shared.impl.init(options)
};
$.fn.shared=function(options){return $.shared.impl.init(this,options)
};
$.shared.defaults={rows_subnav:5,h_div:122,h_shade:0,padding_shade:196,res:{}};
$.shared.impl={opts:null,helper:{},init:function(container,options){var self=this;
self.opts=$.extend({},$.shared.defaults,options);
self.helper.container=container;
self.helper.editorial={};
self.helper.editorial.videoLinks=$(".dkny-times-module .dt-article-video .dt-article-image-link");
self.helper.forgotPasswordLinks=$(".forgot-password-link");
self.helper.checkboxes=$(".replaced-checkbox");
self.helper.submitButtons=$(".js-show.submit");
self.fonts();
self.credit();
self.promo();
self.layout();
self.forms();
self.editorial();
self.links();
self.search();
self.nav();
self.events();
return self
},search:function(){var self=this,$form=$(".search form");
$form.find("input").each(function(){var val_0;
val_0=$(this).val();
if(isNullOrEmpty(val_0)){return
}$(this).data("val_0",val_0)
}).focus(function(){var val,val_0;
val=$(this).val();
val_0=$(this).data("val_0");
if(compare(val,val_0,true)){$(this).val("")
}}).blur(function(){var val,val_0;
val=$(this).val();
val_0=$(this).data("val_0");
if(isNullOrEmpty(val)){$(this).val(val_0)
}});
$(".submit-search",$form).click(function(e){e.preventDefault();
$form.submit()
});
return
},promo:function(){var self=this;
var $promo,$buttons;
$promo=$(".header .promo");
$buttons=$(".promo-close-button, .promo-expand-button",$promo);
$buttons.click(function(e){$promo.toggleClass("promo-expanded");
e.preventDefault()
});
return
},nav:function(){var self,isCurrent,$liCurrent,$body;
self=this;
isCurrent=true;
$liCurrent=self.helper.container.find(".li-1-current");
$body=$(document.body);
self.helper.shade=$("<div />");
self.helper.shade.addClass("shade").prependTo(self.helper.container);
self.opts.isExpanded=$liCurrent.length>0;
self.opts.h_shade=self.helper.shade.height();
self.helper.shade.css({height:0,left:0});
if(self.opts.isExpanded){self.helper.shade.css({height:self.opts.h_shade+"px"})
}self.helper.container.find(".li-1").each(function(){var $li1,$a,$div,$fixer,color;
$li1=$(this);
$a=$li1.find(".a-1");
$div=$li1.find(".div-2");
$fixer=$li1.find(".fixer-2");
color=$a.attr("data-color");
$li1.hover(function(){if($li1.hasClass("li-1-hover")){return
}isCurrent=$li1.hasClass("li-1-current");
$body.addClass("nav-open");
$li1.addClass("li-1-hover");
if(color){$a.css({color:"#000",background:color})
}$li1.siblings().removeClass("li-1-hover").removeClass("li-1-current");
Cufon.refresh($li1.siblings());
self.helper.shade.css({display:"block",height:self.opts.h_shade+"px"});
$fixer.css({display:"block"});
$div.css({width:2000});
$uls=$li1.find(".ul-2");
var calc_width=0;
$uls.each(function(i,ul){calc_width+=$(ul).outerWidth(true)
});
$div.css({height:self.opts.h_div+"px",width:calc_width});
if(!isCurrent){self.hideSubnav($liCurrent)
}},function(){if(isCurrent){return
}$body.removeClass("nav-open");
$li1.removeClass("li-1-hover");
if(color){$a.css({color:color,background:"none"})
}self.helper.shade.css({height:0});
$div.css({height:0});
$fixer.css({display:"none"});
if(!isCurrent){self.showSubnav($liCurrent)
}})
});
return
},hideSubnav:function($li){var self=this,$div=$li.find(".div-2"),$fixer=$li.find(".fixer-2");
$li.removeClass("li-1-hover");
$div.css({height:0});
$fixer.css({display:"none"});
return
},showSubnav:function($li){var self=this,$div=$li.find(".div-2"),$fixer=$li.find(".fixer-2");
if($li.hasClass("li-1-hover")){return
}$li.addClass("li-1-hover");
Cufon.refresh($li);
if(self.opts.isExpanded){self.helper.shade.css({height:self.opts.h_shade+"px"})
}$div.css({height:self.opts.h_div+"px"});
$fixer.css({display:"block"});
return
},layout:function(){var self,$window,$fixer;
self=this;
$window=$(window);
$fixer=$(".header .fixer, .footer .fixer");
if($("body").hasClass("body-collapsednav")){self.helper.container.find(".li-1-current").removeClass("li-1-current").addClass("li-1-current-nosub");
self.helper.container.find(".li-2-current").removeClass("li-2-current")
}self.helper.container.find(".li-1").each(function(){var $li1=$(this),$div=$li1.find(".div-2"),$fixer=$li1.find(".fixer-2"),$ul=$li1.find(".ul-2"),colCount=Math.ceil($ul.children(':not(".li-2-placeholder")').length/self.opts.rows_subnav)+$ul.children(".li-2-placeholder").length,colArr=[],i=0,w_col=145;
for(i;
i<colCount;
i++){colArr.push($('<ul class="ul-2 column" />'))
}i=0;
$ul.children(".li-2-placeholder").each(function(j,li){var $li;
$li=$(li);
colArr[i].addClass("ul-2-with-split");
colArr[i].append($li);
i++
});
$ul.children(':not(".li-2-placeholder")').each(function(j,li){var $li;
$li=$(li);
if(j==0){colArr[i].addClass("ul-2-with-split")
}colArr[i].append($li);
if((j+1)%self.opts.rows_subnav===0){i++
}});
$ul.remove();
$.each(colArr,function(j,column){$fixer.append(column)
});
$(this).find(".li-2-placeholder").each(function(j){var $div3=$(this).find(".div-3");
var $ul3=$(this).find(".ul-3");
var colCount2=Math.ceil($ul3.children().length/(self.opts.rows_subnav-1));
var colArr2=[];
var k=0;
for(k;
k<colCount2;
k++){colArr2.push($('<ul class="ul-3 column" />'))
}k=0;
if(colCount2>1){var w_0=w_col,w=w_0*colCount2;
$(this).parents(".ul-2").first().css({width:w+"px"})
}$ul3.children().each(function(j,li){var $li;
$li=$(li);
colArr2[k].append($li);
if((j+1)%(self.opts.rows_subnav-1)===0){k++
}});
$ul3.remove();
$.each(colArr2,function(j,column){$div3.append(column)
});
$div3.append('<div class="clear" />')
});
$ul=$li1.find(".ul-2");
var calc_width=0;
$ul.each(function(i,ul){calc_width+=$(ul).outerWidth(true)
});
$div.css({width:calc_width})
});
self.helper.container.addClass("global-nav-init");
return
},credit:function(){var self=this;
var $credit,text;
$credit=$(".credit");
text=$credit.html();
$credit.html(self.opts.res.siteCredits).hover(function(){$credit.html(text)
},function(){$credit.html(self.opts.res.siteCredits)
});
return
},links:function(){var self=this;
self.helper.forgotPasswordLinks.click(function(e){e.preventDefault();
DKI.read.forgotPasswordDialog(function(response){$.modal(response,{appendTo:"#container",opacity:75,overlayId:"shared_dialog-overlay",containerId:"shared_dialog-container",dataId:"shared_dialog-data",overlayClose:true,onShow:function(dialog){$('<a href="#" title="'+self.opts.res.close+'" class="modal-close">'+self.opts.res.close+"</a>").prependTo(dialog.data);
dialog.data.find(".modal-close").click(function(e){e.preventDefault();
$.modal.close()
});
dialog.data.delegate("form","submit",function(e){e.preventDefault();
$.post($(this).attr("action"),$(this).serialize(),function(data){dialog.data.find("#forgot-password-dialog").html(data);
dialog.container.animate({height:dialog.data.outerHeight()})
});
dialog.data.find("#forgot-password-dialog").ajaxError(function(){$(this).html("Your reset password request has expired or is invalid.")
})
}).delegate(".submit","click",function(e){e.preventDefault();
$(this).closest("form").trigger("submit")
})
},onClose:function(dialog){dialog.container.fadeOut(200,function(){dialog.overlay.fadeOut(300,function(){$.modal.close()
})
})
},onOpen:function(dialog){dialog.overlay.fadeIn(200,function(){var $container=$('<div class="dialog-data-container"></div>').appendTo(dialog.container);
$container.append(dialog.data);
dialog.container.css({opacity:0,display:"block"}).height(dialog.data.outerHeight()).add(dialog.data).fadeTo(300,1)
})
}})
})
});
return
},editorial:function(){var self=this;
self.helper.editorial.videoLinks.hover(function(){$(this).stop().animate({opacity:1},400)
},function(){$(this).stop().animate({opacity:0.8},300)
}).click(function(e){e.preventDefault()
}).trigger("mouseout")
},forms:function(){var self=this;
self.helper.checkboxes.each(function(){var $self,$checkbox,$input;
$self=$(this);
$checkbox=$self.find(".checkbox");
$input=$self.siblings("input");
$self.click(function(e){if(compare($self[0].nodeName,"A",true)){e.preventDefault()
}$checkbox.toggleClass("enabled");
if($checkbox.hasClass("enabled")){$input.attr("checked",true)
}else{$input.attr("checked",false)
}});
if($input.is(":checked")){$self.click()
}});
self.helper.submitButtons.click(function(e){e.preventDefault();
$(this).closest("form").submit()
});
self.helper.submitButtons.closest("form").find("input:text, input:password").keypress(function(e){var key=e.which?e.which:e.keyCode;
if(key===13){e.preventDefault();
$(this).closest("form").submit()
}})
},fonts:function(){if($.browser.msie&&$.browser.version<7){return
}var self=this,$els=$(".a-1",self.helper.container);
Cufon.replace($els,{fontFamily:"Trade Gothic LT Std",hover:true});
$els.css({visibility:"visible",opacity:1});
return
},events:function(){var self=this;
$('a[rel="external"]').attr("target","_blank");
$('input[type="text"].default:first').focus();
$(".input-validation-error:first").focus();
$(".form-confirmation:first").parents("form").first().find("input:text").focus();
return
}}
})(jQuery);

