From 2e5f2a0fb1d0bdb78d43a86d2f51904a23a6670c Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 5 Nov 2011 10:49:12 +0100 Subject: cleaned up todo lists and i18n documentation --- TODOS | 13 + docs/i18n/EventSourceGenerator | 40 - docs/i18n/EventSourceGenerator.txt | 40 + docs/i18n/TODOS | 13 - docs/i18n/localizing_files/customLogo.png | Bin 12093 -> 0 bytes docs/i18n/localizing_files/ga.js | 41 - docs/i18n/localizing_files/jot-old.css | 2879 ----------------------------- docs/i18n/localizing_files/jot_min.js | 604 ------ docs/i18n/localizing_files/note.gif | Bin 295 -> 0 bytes docs/libraries/README | 1 - 10 files changed, 53 insertions(+), 3578 deletions(-) delete mode 100644 docs/i18n/EventSourceGenerator create mode 100644 docs/i18n/EventSourceGenerator.txt delete mode 100644 docs/i18n/TODOS delete mode 100644 docs/i18n/localizing_files/customLogo.png delete mode 100644 docs/i18n/localizing_files/ga.js delete mode 100644 docs/i18n/localizing_files/jot-old.css delete mode 100644 docs/i18n/localizing_files/jot_min.js delete mode 100644 docs/i18n/localizing_files/note.gif diff --git a/TODOS b/TODOS index fbf3a5c..1b3fdad 100644 --- a/TODOS +++ b/TODOS @@ -15,3 +15,16 @@ - PATH_MAX defined in a hard way or fetched from limits.h, not good, add probing for fpathconf and friends and test on all platforms again +- gettext and libintl: don't make platform flags for this, check library version + and set things according to 0.17, 0.16.3 etc., but anyway, the library is + a little bit broken in older versions +- localization of gengetopt generated code? ok, it's just an example + (testd), but we should have an idea about this, maybe extend gengetopt? + - see discussions about 'gettext' in 'getgetopt-user' mailing list + - see HelenOS comment on getopt in libc: Interesting internationalization | Echoreply.txt + - have a look at alternatives: + - popt is localized + - argtable is not, but is very simple + - also gengetopt has a stub getopt/getopt_long which can be i18n-ized +- merging of mc files (we want to export only the MC file so it can + be merged) diff --git a/docs/i18n/EventSourceGenerator b/docs/i18n/EventSourceGenerator deleted file mode 100644 index 79e79b2..0000000 --- a/docs/i18n/EventSourceGenerator +++ /dev/null @@ -1,40 +0,0 @@ -Idea: -- the master is gettext, a logger and a set of category, message ids in a - header file -- produce an .mc file from it, which can be used in the event logger - application as message/category DLL -- maybe its awk/sed in the beginning - -Links: -- members.tripod.com/~ashimg/Parser.html -- cscope -- mcpp_lib - -we must find all wolf_log calls in a given set of source files (in this case -libwolf.dll), later we also need a merger for at least wolfmsg.mc and app.mc - -foreach call to wolf_log we get: -- wolf level: must be mapped to 'Severity' -- the category_id (is passed in ReportEvent directly, we don't need it to - generate the MC file, also the categories and their names are few and - change not too often, so we hard-code them) -- message_id (we need it here expanded) - - the Severity, the Facility and the message_id form the 'MessageId' -- _( ) format string or message: this is the msgid in gettext and gets - the English version in the MC file -- for each msgid we must search for the msgstr in the corresponding gettext - file and map it to the right language -- The 'SymbolicName' is tricky: we need the define from log/messages.h, - unexpanded - -1) Easy way to find all calls of wolf_log with macros correctly expanded -find . -name '*.c' -exec cat {} \; | mcpp -DLINUX - -DOS_MAJOR_VERSION=2 -DOS_MINOR_VERSION=6 -DENABLE_NLS=1 -I. -I -- /usr/lib/gcc/i686-pc-linux-gnu/4.3.3/include -I../include/wolf | grep -- / wolf_log\( - -2) The logger must map the messageid correcly (masks) - -3) Sort out the problems with message.dll installation and the registry in - the event source - diff --git a/docs/i18n/EventSourceGenerator.txt b/docs/i18n/EventSourceGenerator.txt new file mode 100644 index 0000000..79e79b2 --- /dev/null +++ b/docs/i18n/EventSourceGenerator.txt @@ -0,0 +1,40 @@ +Idea: +- the master is gettext, a logger and a set of category, message ids in a + header file +- produce an .mc file from it, which can be used in the event logger + application as message/category DLL +- maybe its awk/sed in the beginning + +Links: +- members.tripod.com/~ashimg/Parser.html +- cscope +- mcpp_lib + +we must find all wolf_log calls in a given set of source files (in this case +libwolf.dll), later we also need a merger for at least wolfmsg.mc and app.mc + +foreach call to wolf_log we get: +- wolf level: must be mapped to 'Severity' +- the category_id (is passed in ReportEvent directly, we don't need it to + generate the MC file, also the categories and their names are few and + change not too often, so we hard-code them) +- message_id (we need it here expanded) + - the Severity, the Facility and the message_id form the 'MessageId' +- _( ) format string or message: this is the msgid in gettext and gets + the English version in the MC file +- for each msgid we must search for the msgstr in the corresponding gettext + file and map it to the right language +- The 'SymbolicName' is tricky: we need the define from log/messages.h, + unexpanded + +1) Easy way to find all calls of wolf_log with macros correctly expanded +find . -name '*.c' -exec cat {} \; | mcpp -DLINUX + -DOS_MAJOR_VERSION=2 -DOS_MINOR_VERSION=6 -DENABLE_NLS=1 -I. -I +- /usr/lib/gcc/i686-pc-linux-gnu/4.3.3/include -I../include/wolf | grep +- / wolf_log\( + +2) The logger must map the messageid correcly (masks) + +3) Sort out the problems with message.dll installation and the registry in + the event source + diff --git a/docs/i18n/TODOS b/docs/i18n/TODOS deleted file mode 100644 index ff3a838..0000000 --- a/docs/i18n/TODOS +++ /dev/null @@ -1,13 +0,0 @@ -- gettext and libintl: don't make platform flags for this, check library version - and set things according to 0.17, 0.16.3 etc., but anyway, the library is - a little bit broken in older versions -- localization of gengetopt generated code? ok, it's just an example - (testd), but we should have an idea about this, maybe extend gengetopt? - - see discussions about 'gettext' in 'getgetopt-user' mailing list - - see HelenOS comment on getopt in libc: Interesting internationalization | Echoreply.txt - - have a look at alternatives: - - popt is localized - - argtable is not, but is very simple - - also gengetopt has a stub getopt/getopt_long which can be i18n-ized -- merging of mc files (we want to export only the MC file so it can - be merged) diff --git a/docs/i18n/localizing_files/customLogo.png b/docs/i18n/localizing_files/customLogo.png deleted file mode 100644 index 2c9c642..0000000 Binary files a/docs/i18n/localizing_files/customLogo.png and /dev/null differ diff --git a/docs/i18n/localizing_files/ga.js b/docs/i18n/localizing_files/ga.js deleted file mode 100644 index caaf7e8..0000000 --- a/docs/i18n/localizing_files/ga.js +++ /dev/null @@ -1,41 +0,0 @@ -var _gat=new Object({c:"length",lb:"4.3",m:"cookie",b:undefined,cb:function(d,a){this.zb=d;this.Nb=a},r:"__utma=",W:"__utmb=",ma:"__utmc=",Ta:"__utmk=",na:"__utmv=",oa:"__utmx=",Sa:"GASO=",X:"__utmz=",lc:"http://www.google-analytics.com/__utm.gif",mc:"https://ssl.google-analytics.com/__utm.gif",Wa:"utmcid=",Ya:"utmcsr=",$a:"utmgclid=",Ua:"utmccn=",Xa:"utmcmd=",Za:"utmctr=",Va:"utmcct=",Hb:false,_gasoDomain:undefined,_gasoCPath:undefined,e:window,a:document,k:navigator,t:function(d){var a=1,c=0,h, -o;if(!_gat.q(d)){a=0;for(h=d[_gat.c]-1;h>=0;h--){o=d.charCodeAt(h);a=(a<<6&268435455)+o+(o<<14);c=a&266338304;a=c!=0?a^c>>21:a}}return a},C:function(d,a,c){var h=_gat,o="-",k,l,s=h.q;if(!s(d)&&!s(a)&&!s(c)){k=h.w(d,a);if(k>-1){l=d.indexOf(c,k);if(l<0)l=d[h.c];o=h.F(d,k+h.w(a,"=")+1,l)}}return o},Ea:function(d){var a=false,c=0,h,o;if(!_gat.q(d)){a=true;for(h=0;h0&&_gat.P(" \n\r\t",d)},P:function(d,a){return _gat.w(d,a)>-1},h:function(d,a){d[d[_gat.c]]=a},T:function(d){return d.toLowerCase()}, -z:function(d,a){return d.split(a)},w:function(d,a){return d.indexOf(a)},F:function(d,a,c){c=_gat.b==c?d[_gat.c]:c;return d.substring(a,c)},uc:function(){var d=_gat.b,a=window;if(a&&a.gaGlobal&&a.gaGlobal.hid)d=a.gaGlobal.hid;else{d=Math.round(Math.random()*2147483647);a.gaGlobal=a.gaGlobal?a.gaGlobal:{};a.gaGlobal.hid=d}return d},wa:function(){return Math.round(Math.random()*2147483647)},Gc:function(){return(_gat.wa()^_gat.vc())*2147483647},vc:function(){var d=_gat.k,a=_gat.a,c=_gat.e,h=a[_gat.m]? -a[_gat.m]:"",o=c.history[_gat.c],k,l,s=[d.appName,d.version,d.language?d.language:d.browserLanguage,d.platform,d.userAgent,d.javaEnabled()?1:0].join("");if(c.screen)s+=c.screen.width+"x"+c.screen.height+c.screen.colorDepth;else if(c.java){l=java.awt.Toolkit.getDefaultToolkit().getScreenSize();s+=l.screen.width+"x"+l.screen.height}s+=h;s+=a.referrer?a.referrer:"";k=s[_gat.c];while(o>0)s+=o--^k++;return _gat.t(s)}});_gat.hc=function(){var d=this,a=_gat.cb;function c(h,o){return new a(h,o)}d.db="utm_campaign";d.eb="utm_content";d.fb="utm_id";d.gb="utm_medium";d.hb="utm_nooverride";d.ib="utm_source";d.jb="utm_term";d.kb="gclid";d.pa=0;d.I=0;d.wb="15768000";d.Tb="1800";d.ea=[];d.ga=[];d.Ic="cse";d.Gb="q";d.ab="google";d.fa=[c(d.ab,d.Gb),c("yahoo","p"),c("msn","q"),c("aol","query"),c("aol","encquery"),c("lycos","query"),c("ask","q"),c("altavista","q"),c("netscape","query"),c("cnn","query"),c("looksmart","qt"),c("about", -"terms"),c("mamma","query"),c("alltheweb","q"),c("gigablast","q"),c("voila","rdata"),c("virgilio","qs"),c("live","q"),c("baidu","wd"),c("alice","qs"),c("yandex","text"),c("najdi","q"),c("aol","q"),c("club-internet","query"),c("mama","query"),c("seznam","q"),c("search","q"),c("wp","szukaj"),c("onet","qt"),c("netsprint","q"),c("google.interia","q"),c("szukacz","q"),c("yam","k"),c("pchome","q"),c("kvasir","searchExpr"),c("sesam","q"),c("ozu","q"),c("terra","query"),c("nostrum","query"),c("mynet","q"), -c("ekolay","q"),c("search.ilse","search_for")];d.B=undefined;d.Kb=false;d.p="/";d.ha=100;d.Da="/__utm.gif";d.ta=1;d.ua=1;d.G="|";d.sa=1;d.qa=1;d.pb=1;d.g="auto";d.D=1;d.Ga=1000;d.Yc=10;d.nc=10;d.Zc=0.2};_gat.Y=function(d,a){var c,h,o,k,l,s,q,f=this,n=_gat,w=n.q,x=n.c,g,z=a;f.a=d;function B(i){var b=i instanceof Array?i.join("."):"";return w(b)?"-":b}function A(i,b){var e=[],j;if(!w(i)){e=n.z(i,".");if(b)for(j=0;j=1){l[2]=Math.min(Math.floor(l[2]*1+q),h.nc);l[3]=s}return l};a.O=function(l,s,q,f,n,w,x){var g,z=h.D,B=q.location;if(!o)o=new c.Y(q,h);o.Ha(f);g=c.z(o.K(),".");if(g[1]<500||n){if(w)g=k(g);if(n||!w||g[2]>=1){if(!n&&w)g[2]=g[2]*1-1;g[1]=g[1]*1+1;l="?utmwv="+_gat.lb+"&utmn="+c.wa()+(c.q(B.hostname)?"":"&utmhn="+c.d(B.hostname))+(h.ha==100?"":"&utmsp="+c.d(h.ha))+l;if(0==z||2==z){var A= -new Image(1,1);A.src=h.Da+l;var p=2==z?function(){}:x||function(){};A.onload=p}if(1==z||2==z){var u=new Image(1,1);u.src=("https:"==B.protocol?c.mc:c.lc)+l+"&utmac="+s+"&utmcc="+a.wc(q,f);u.onload=x||function(){}}}}o.La(g.join("."));o.Pa()};a.wc=function(l,s){var q=[],f=[c.r,c.X,c.na,c.oa],n,w=l[c.m],x;for(n=0;n0)for(l=0;l9?l.F(F,I+1)*1:0;e++;G=0==G?1:G;p.Xb([v,k.ja,G,e,i.ka()].join("."));p.Ra();return"&utmcn=1"}else return"&utmcr=1"}};_gat.n.s=function(d,a,c,h,o,k,l){var s=this;s.v=d;s.ia=a;s.ra=c;s.L=h;s.da=o;s.R=k;s.vb=l};_gat.n.s.prototype.ka= -function(){var d=this,a=_gat,c=[],h=[[a.Wa,d.v],[a.Ya,d.ia],[a.$a,d.ra],[a.Ua,d.L],[a.Xa,d.da],[a.Za,d.R],[a.Va,d.vb]],o,k;if(d.Fa())for(o=0;o-1}function p(b, -e,j){if(o(b)||o(e)||o(j))return"-";var t=s(b,c.r+a.f+".",e),v;if(!o(t)){v=f(t,".");v[5]=v[5]?v[5]*1+1:1;v[3]=v[4];v[4]=j;t=v.join(".")}return t}function u(){return"file:"!=a.a[n].protocol&&A()}function m(b){if(!b||""==b)return"";while(c.Lb(b.charAt(0)))b=l(b,1);while(c.Lb(b.charAt(b[w]-1)))b=l(b,0,b[w]-1);return b}function r(b,e,j){if(!o(b())){e(c.J(b()));if(!q(b(),";"))j()}}function i(b){var e,j=""!=b&&a.a[n].host!=b;if(j)for(e=0;e=0&&j<=8?"0":("["==b.charAt(0)&&"]"==b.charAt(b[w]-1)?"-":b)}return b};a.Ia=function(b){var e="",j=a.a;e+=a.aa?a.aa.Xc():"";e+=g.qa?a.rb:"";e+=g.ta&&!o(j.title)?"&utmdt="+c.d(j.title):"";e+="&utmhid="+c.uc()+"&utmr="+a.va+"&utmp="+a.Tc(b);return e};a.Tc=function(b){var e=a.a[n];b=h!=b&&""!=b?c.d(b,true):c.d(e.pathname+unescape(e.search),true);return b};a.$c= -function(b){if(a.Q()){var e="";if(a.l!=h&&a.l.N().length>0)e+="&utme="+c.d(a.l.N());e+=a.Ia(b);x.O(e,a.H,a.a,a.f)}};a.qc=function(){var b=new c.Y(a.a,g);return b.Ha(a.f)?b.Wc():h};a._getLinkerUrl=function(b,e){var j=f(b,"#"),t=b,v=a.qc();if(v)if(e&&1>=j[w])t+="#"+v;else if(!e||1>=j[w])if(1>=j[w])t+=(q(b,"?")?"&":"?")+v;else t=j[0]+(q(b,"?")?"&":"?")+v+"#"+j[1];return t};a.Zb=function(){var b;if(a.A&&a.A[w]>=10&&!q(a.A,"=")){a.u.Uc(a.A);a.u.cd();c._gasoDomain=g.g;c._gasoCPath=g.p;b=a.a.createElement("script"); -b.type="text/javascript";b.id="_gasojs";b.src="https://www.google.com/analytics/reporting/overlay_js?gaso="+a.A+"&"+c.wa();a.a.getElementsByTagName("head")[0].appendChild(b)}};a.Jc=function(){var b=a.a[c.m],e=a.ja,j=a.u,t=a.f+"",v=a.e,y=v?v.gaGlobal:h,E,F=q(b,c.r+t+"."),I=q(b,c.W+t),G=q(b,c.ma+t),C,D=[],H="",K=false,J;b=o(b)?"":b;if(g.I){E=c.Db(a.a[n]);if(g.pa&&!o(E))H=E+"&";H+=a.a[n].search;if(!o(H)&&q(H,c.r)){j.Rc(H);if(!j.Jb())j.pc();C=j.ya()}r(j.Ba,j.Wb,j.fc);r(j.Aa,j.Na,j.Qa)}if(!o(C))if(o(j.K())|| -o(j.za())){C=p(H,"&",e);a.M=true}else{D=f(j.K(),".");t=D[0]}else if(F)if(!I||!G){C=p(b,";",e);a.M=true}else{C=s(b,c.r+t+".",";");D=f(s(b,c.W+t,";"),".")}else{C=[t,c.Gc(),e,e,e,1].join(".");a.M=true;K=true}C=f(C,".");if(v&&y&&y.dh==t){C[4]=y.sid?y.sid:C[4];if(K){C[3]=y.sid?y.sid:C[4];if(y.vid){J=f(y.vid,".");C[1]=J[0];C[2]=J[1]}}}j.Ub(C.join("."));D[0]=t;D[1]=D[1]?D[1]:0;D[2]=undefined!=D[2]?D[2]:g.Yc;D[3]=D[3]?D[3]:C[4];j.La(D.join("."));j.Vb(t);if(!o(j.Hc()))j.Ma(j.t());j.dc();j.Pa();j.ec()};a.Lc= -function(){x=new c.jc(g)};a._initData=function(){var b;if(!z){a.Lc();a.f=a.Bc();a.u=new c.Y(a.a,g)}if(u())a.Jc();if(!z){if(u()){a.va=a.tc(a.Ac(),a.a.domain);if(g.sa){a.aa=new c.gc(g.ua);a.aa.xc()}if(g.qa){b=new c.n(a.f,a.a,a.va,a.ja,g);a.rb=b.yc(a.u,a.M)}}a.l=new c.Z;a.Ab=new c.Z;z=true}if(!c.Hb)a.Mc()};a._visitCode=function(){a._initData();var b=s(a.a[c.m],c.r+a.f+".",";"),e=f(b,".");return e[w]<4?"":e[1]};a._cookiePathCopy=function(b){a._initData();if(a.u)a.u.bd(a.f,b)};a.Mc=function(){var b=a.a[n].hash, -e;e=b&&""!=b&&0==k(b,"#gaso=")?s(b,"gaso=","&"):s(a.a[c.m],c.Sa,";");if(e[w]>=10){a.A=e;if(a.e.addEventListener)a.e.addEventListener("load",a.Zb,false);else a.e.attachEvent("onload",a.Zb)}c.Hb=true};a.Q=function(){return a._visitCode()%10000table{ -margin:1px} - -.goog-ws-content-wrapper h1 a, -.goog-ws-content-wrapper h2 a, -.goog-ws-content-wrapper h3 a, -.goog-ws-content-wrapper h4 a, -.goog-ws-content-wrapper h5 a{ -color:#000} - -.goog-ws-wrapper .goog-ws-content h2{ -background-color:transparent; -color:#000; -font-family:Arial,Verdana,sans-serif; -font-size:22px; -margin:10px 10px 10px 0} - -.goog-ws-wrapper .goog-ws-content h3{ -background-color:transparent; -color:#000; -font-family:Arial,Verdana,sans-serif; -font-size:18px; -margin:10px 10px 10px 0} - -.goog-ws-wrapper .goog-ws-content h4{ -background-color:transparent; -color:#000; -font-family:Arial,Verdana,sans-serif; -font-size:14px; -margin:10px 10px 10px 0} - -.goog-ws-wrapper .goog-ws-content p{ -margin:10px 0; -padding:0} - -.goog-ws-wrapper .goog-ws-content ul{ -margin-right:10px} - -.goog-ws-wrapper .goog-ws-content li{ -padding:1px 0} - -.goog-ws-content-wrapper{ -position:relative} - -/* Create page styles */ -.goog-ws-create-main{ -border-top:1px solid #b0bdcc; -margin:10px 0 0; -padding:10px 0 10px} - -.goog-ws-create-main p{ -margin:10px} - -.goog-ws-create-submit{ -border-top:1px solid #b0bdcc; -padding-top:15px !important} - -.goog-ws-create-table{ -font-size:12px; -width:100%} - -.goog-ws-create-table .goog-ws-create-text{ -padding-left:30px} - -.goog-ws-create-top{ -font-size:11px; -position:absolute; -right:10px; -top:15px} - -/* Sites breadcrumb styling */ -.goog-ws-crumbs span{ -color:#5f6a72; -display:block; -margin:0 0 -5px; -padding:7px 10px 0} - -.goog-ws-crumbs a{ -color:#06c} - -.goog-ws-crumbs a:visited{ -color:#551a8b} - -.goog-ws-crumbs a:hover{ -color:#551a8b} - -.goog-ws-crumbs a:active{ -color:#06c} - -.goog-ws-breadcrumb-highlightDeleted{ -background-color:#ff0; -padding:2px} - -/* Sites dashboard */ -.goog-ws-dash-footer{ -font-size:11px; -margin-top:20px; -padding-top:10px; -color:#5e6a72; -text-align:center} - -.goog-ws-dash-looking-for-sites{ -border:1px solid #ccc; -padding:4px; -background-color:#ffc} - -.goog-ws-dashboard{ -line-height:1.33em} - -.goog-ws-dashboard h2{ -font-size:18px; -margin:0} - -.goog-ws-dashboard p{ -padding-right:15px} - -.goog-ws-dashboard td{ -vertical-align:top} - -.goog-ws-dashboard ul{ -list-style:none; -margin:10px 0 0; -padding:0} - -.goog-ws-dashboard li{ -background:url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/icon_right.gif) no-repeat 6px 1px; -margin:0 0 16px; -padding:0 10px 0 26px} - -.goog-ws-dashboard .goog-ws-dashboard-button{ -background:none; -padding-left:0} - -/* Sites delete page styling */ -.goog-ws-deletePage-table{ -table-layout:fixed; -width:100%; -border-collapse:collapse} - -.goog-ws-deletePage-table th{ -text-align:left; -border-bottom:1px solid #eee; -padding:3px} - -.goog-ws-deletePage-table td{ -border-bottom:1px solid #eee; -padding:3px} - -.goog-ws-deletePage-lockText{ -background-color:#ffc; -padding:4px} - -/* ********************************************************* * - * CURRENT STYLING * - * Styling for the 'current' styles used throughout the site * - * ********************************************************* */ -.goog-ws-table .goog-ws-current{ -background:url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/table_background_on.png) repeat-x left top; -color:#333} - -.goog-ws-subnav .goog-ws-selected a{ -background:#eff4f9; -color:#eff4f9; -cursor:default; -text-decoration:none} - -.goog-ws-list-gadget .goog-ws-selected, -.goog-ws-list-gadget .goog-ws-selected:hover{ -background-color:#eff4f9; -color:#fff} - -/* ************************************** * - * GADGETS * - * Gadget stylings for dashboard pagetype * - * ************************************** */ -.goog-ws-content-wrapper .goog-ws-dash-box, -.goog-ws-content-wrapper .goog-ws-dash-files, -.goog-ws-content-wrapper .goog-ws-dash-list, -.goog-ws-content-wrapper .goog-ws-dash-text{ -color:#000; -font-family:Arial,Verdana,sans-serif; -font-size:12px} - -.goog-ws-content-wrapper .goog-ws-dash-box-inside{ -background-color:#fff} - -.goog-ws-content-wrapper .goog-ws-dash-box-border{ -border-top:1px solid #b0bdcc; -border-right:1px solid #b0bdcc; -border-bottom:1px solid #b0bdcc; -border-left:1px solid #b0bdcc} - -.goog-ws-content-wrapper .goog-ws-dash-box-inside h2{ -color:#000; -font-family:Arial,Verdana,sans-serif; -font-size:22px} - -.goog-ws-content-wrapper .goog-ws-dash-box-inside h3{ -color:#000; -font-family:Arial,Verdana,sans-serif; -font-size:16px} - -.goog-ws-content-wrapper .goog-ws-dash-box h4, -.goog-ws-content-wrapper .goog-ws-dash-files h4, -.goog-ws-content-wrapper .goog-ws-dash-list h4, -.goog-ws-content-wrapper .goog-ws-dash-text h4{ -background-color:#484848 !important; -background-image:none; -background-position:top; -background-repeat:no-repeat; -border-top:none; -border-right:none; -border-bottom:1px dotted #d7dee5; -border-left:none; -color:#ffffff; -font-family:Arial,Verdana,sans-serif; -font-size:13px; -margin:0 !important; -padding:5px !important; -text-align:left !important} - -.goog-ws-dash-text .goog-ws-dash-box-inside h4{ -background:none; -border:0; -color:#000; -margin-bottom:10px; -padding:0; -text-align:left !important} - -.goog-ws-dash-box-inside a{ -color:#06c} - -.goog-ws-dash-box-inside a:visited{ -color:#551a8b} - -.goog-ws-dash-box-inside a:hover{ -color:#551a8b} - -.goog-ws-dash-box-inside a:active{ -color:#06c} - -/* SHARED gadget */ -.goog-ws-content-wrapper .goog-ws-dash-list ul, -.goog-ws-content-wrapper .goog-ws-dash-files ul{ -list-style:none; -margin:0; -padding:0; -text-align:left !important} - -.goog-ws-content-wrapper .goog-ws-dash-list li, -.goog-ws-content-wrapper .goog-ws-dash-files li{ -border-bottom:1px solid #d7dee5; -margin:0; -padding:5px 5px 5px 25px} - -.goog-ws-content-wrapper .goog-ws-dash-list span{ -color:#000} - -.goog-ws-content-wrapper .goog-ws-dash-files span{ -color:#000; -font-size:11px} - -.goog-ws-content-wrapper .goog-ws-dash-box-inside .goog-ws-grey, -.goog-ws-content-wrapper .goog-ws-dash-box-inside .goog-ws-grey span{ -font-size:13px} - -/* LIST gadget */ -.goog-ws-dash-list .goog-ws-list-table{ -border:0; -border-collapse:collapse; -width:99.8%} - -.goog-ws-dash-list .goog-ws-list-table th{ -border:0} - -.goog-ws-dash-list .goog-ws-list-table td{ -border-bottom:1px solid #d7dee5; -padding-left:3px} - -.goog-ws-content-wrapper .goog-ws-dash-list li{ -background:url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/icon_announce.gif) no-repeat 4px 6px} - -.goog-ws-content-wrapper .goog-ws-dash-box-inside .goog-ws-dash-list-last, -.goog-ws-content-wrapper .goog-ws-dash-box-inside .goog-ws-dash-files-last{ -background:transparent; -padding-left:5px} - -.goog-ws-content-wrapper .goog-ws-dash-box-inside .goog-ws-dash-list-post{ -bottom:5px; -font-size:13px; -position:absolute; -right:5px} - -.goog-ws-content-wrapper .goog-ws-dash-box-inside .goog-ws-dash-list-date, -.goog-ws-content-wrapper .goog-ws-dash-box-inside .goog-ws-dash-list-last{ -border-bottom:0; -font-size:11px} - -.goog-ws-list-col-checkboxes{ -list-style:none; -padding:2px; -margin:4px} - -.goog-ws-list-gadget-sort{ -border-bottom:1px dotted; -padding-bottom:5px} - -/* TEXT gadget */ -.goog-ws-content-wrapper .goog-ws-dash-text .goog-ws-dash-box-inside{ -padding:5px} - -.goog-ws-dash-box-inside{ -background-color:#fff; -background-image:none; -background-position:top; -background-repeat:no-repeat; -overflow:auto; -text-align:left !important} - -/* FILES gadget */ -.goog-ws-content-wrapper .goog-ws-dash-files li{ -background-repeat:no-repeat; -background-position:4px 4px; -padding-left:24px} - -.goog-ws-content-wrapper .goog-ws-dash-files li img{ -margin-bottom:-3px} - -.goog-ws-dialog{ -z-index:200}/* 200 is for dialogs */ - -.modal-dialog-bg{ -z-index:199} - -.goog-ws-dialog .goog-ws-button{ -margin:0 5px 0 0} - -.goog-ws-editing-toolbar{ -background-color:#f0f0f0; -border-style:solid; -border-width:0; -border-color:#666} - -/* Admin elements list */ -.goog-ws-element{ -border:1px solid #ddd; -margin:0 0 10px} - -.goog-ws-element .goog-ws-list-gadget{ -height:200px; -margin-left:0; -width:100%} - -.goog-ws-element-icon{ -width:35px} - -.goog-ws-element-section{ -border-bottom:1px solid #ddd; -padding:5px} - -.goog-ws-element-section td{ -vertical-align:top} - -.goog-ws-element-section p{ -margin:0; -padding:0 0 7px} - -/* Page header stylings */ -.goog-ws-header{ -background-color:#366698; -background-image:none; -background-position:top; -background-repeat:no-repeat; -border-top:none; -border-right:none; -border-bottom:1px solid #b0bdcc; -border-left:none; -font-family:Arial,Verdana,sans-serif; -margin:0 0 5px; -position:relative; -text-align:Left} - -.goog-ws-header-title, -.goog-ws-header-search{ -vertical-align:top} - -.goog-ws-header-title h2{ -font-size:24px; -font-weight:bold; -margin:0; -padding:0} - -.goog-ws-header-title h2 a{ -color:#ffffff; -text-decoration:none} - -.goog-ws-header h2 a:visited{ -color:#ffffff} - -.goog-ws-header h2 a:hover{ -color:#06c; -text-decoration:underline} - -.goog-ws-header h2 a:active{ -color:#06c} - -.goog-ws-header-table{ -padding:5px; -width:100%} - -/* Icon styles used for doc items,calendar items,etc. */ -.sites-attach-icon-cal{ -background:url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/icon_cal.gif) no-repeat left 4px; -padding-left:19px !important} - -.sites-attach-icon-doc{ -background:url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/icon_word.gif) no-repeat left 4px; -padding-left:19px !important} - -.sites-attach-icon-img{ -background:url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/icon_img.gif) no-repeat left 6px; -padding-left:19px !important} - -.sites-attach-icon-page{ -background:url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/icon_page.gif) no-repeat left 4px; -padding-left:19px !important} - -.sites-attach-icon-spread{ -background:url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/icon_xls.gif) no-repeat left 4px; -padding-left:19px !important} - -.sites-attach-icon-presentation{ -background:url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/icon_ppt.gif) no-repeat left 4px; -padding-left:19px !important} - -.sites-attach-icon-pdf{ -background:url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/icon_pdf.gif) no-repeat left 4px; -padding-left:19px !important} - -/* The sitemap pages' toolbar */ -.goog-ws-wrapper .goog-ws-inside-tools{ -background:#eff4f9; -color:#000; -margin:0; -padding:8px 8px 8px 20px} - -.goog-ws-wrapper .goog-ws-inside-tools a{ -color:#000; -outline:none} - -.goog-ws-invite-first{ -border-top:1px solid #b0bdcc; -padding:10px 0 0} - -.goog-ws-label-inline{ -display:inline !important; -font-weight:bold; -padding-right:5px !important} - -.goog-ws-legend-removal{ -color:#00f; -text-decoration:line-through} - -/* The list-gadget is used throughout Sites to show a scrollable boxed list */ -.goog-ws-list-gadget{ -background:#fff; -border-top:1px solid #b0bdcc; -border-right:1px solid #b0bdcc; -border-bottom:1px solid #b0bdcc; -border-left:1px solid #b0bdcc; -overflow:auto; -overflow-x:hidden; -height:220px; -margin:0 7px; -width:95%} - -.goog-ws-list-gadget ul{ -margin:0; -padding:0} - -.goog-ws-list-gadget li{ -cursor:pointer; -list-style:none; -margin:0; -padding:2px 3px} - -.goog-ws-list-gadget-swatch{ -border:1px solid #999; -height:12px; -margin-bottom:-3px; -margin-right:3px; -width:14px} - -.goog-ws-list-gadget li:hover{ -background-color:#b0bdcc} - -.goog-ws-logo{ -float:left; -margin:0 10px 0 0; -vertical-align:top} - -/* *************************** * - * LINK PICKER * - * Editor link picker stylings * - * *************************** */ -.goog-ws-lp-dialog{ -border-bottom:1px solid #a4caee; -height:28em; -padding-bottom:5px !important; -position:relative} - -.goog-ws-lp-dialog hr{ -background:#a4caee} - -.goog-ws-lp-list{ -height:25em;/* gives room beneath list for "Create page" button */ -overflow:auto} - -.lp-list-createpage-btn{ -margin-top:10px; -margin-left:8px} - -.lp-createpage-tree{ -margin-top:7px; -height:209px; -overflow:auto; -border:1px solid #999; -padding:3px} - -.goog-ws-lp-list ul, -.goog-ws-lp-list li{ -margin:0; -padding:0} - -.goog-ws-lp-list li a{ -color:#111; -display:block; -padding:3px 1em 3px 2em; -text-decoration:none} - -.goog-ws-lp-list li a:hover{ -background-color:#fffab6} - -.goog-ws-lp-list li .time{ -color:#666; -float:right; -font-size:11px; -width:13%} - -.goog-ws-lp-list li strong{ -background:#b0bdcc none repeat scroll 0; -display:block; -padding:3px 6px} - -.goog-ws-lp-list .selected{ -background:#fffab6 url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/check.gif) no-repeat 5px 5px} - -.goog-sites-pagefinder .goog-tree-root .selected { - /* in the Page Finder, we don't want the little checkmark next to tree rows, - because they overlap with the connector-lines and are obscured by the - expando/collapso boxes */ - background-image:none; -} - -.goog-ws-lp-dialog .goog-tabpane-tabs{ -border-top:1px solid #a4caee; -width:140px} - -.goog-ws-lp-dialog .goog-tabpane-tabs li{ -border:0; -border-bottom:1px solid #a4caee} - -.goog-ws-lp-dialog .goog-tabpane-cont{ -border-left:5px solid #a4caee; -border-top:1px solid #a4caee; -padding-bottom:5px} - -.goog-tabpane-top .goog-tabpane-cont{ -border-left:0; -padding-bottom:5px} - -.goog-ws-lp-dialog .goog-tabpane-cont input{ -width:200px} - -.goog-ws-lp-fullscreenpane{ -position:absolute; -top:0; -background:#fff; -width:100%} - -/* Move page dialog styling */ -.goog-ws-movepage{ -background:#fff} - -.goog-ws-movepage p{ -margin:0 7px 5px; -padding:5px 0 0} - -.goog-ws-movepage-inside{ -background:#fff; -overflow-y:scroll; -height:200px} - -.goog-ws-movepage-table{ -width:100%} - -.goog-ws-movepage-table td{ -border-bottom:1px solid #b0bdcc; -padding:4px 5px} - -/* Styling for the update notice at the top of the page */ -.goog-ws-notice{ -background:#fc3; -color:#000; -display:inline; -font:bold 13px Arial,sans-serif; -padding:2px 10px 3px; -z-index:199} - -/* The outside and outside-in divs are used mainly for theming */ -.goog-ws-outside{ -background-color:#fff; -background-image:none; -background-position:top; -background-repeat:no-repeat; -position:relative} - -.goog-ws-outside-in{ -background-color:#fff; -background-image:none; -background-position:top; -background-repeat:no-repeat; -border-left:1px solid #b0bdcc; -border-right:1px solid #b0bdcc; -border-top:1px solid #b0bdcc; -border-bottom:1px solid #b0bdcc} - -/* Page title styling */ -.goog-ws-page-title{ -color:#000; -font-family:Arial,Verdana,sans-serif; -font-size:22px; -font-weight:bold; -margin:0; -padding:9px 10px 8px} - -.goog-ws-page-title input{ -font-size:22px; -font-weight:bold} - -.goog-ws-page-title span{ -font-size:11px; -font-weight:normal} - -#goog-ws-page-title-header input{ -color:#000} - -#goog-ws-page-title{ -color:#000; -font-family:Arial,Verdana,sans-serif; -font-size:22px; -font-weight:bold} - -.goog-ws-page-title h2{ -margin:0} - -.goog-ws-page-title h2 a, -.goog-ws-page-title h2 a:visited{ -color:#ffffff; -text-decoration:none} - -.goog-ws-page-title h2 a:hover{ -color:#06c; -text-decoration:underline} - -/* Create page,edit page,more actions */ -.goog-ws-create-page{ -margin-top:2.5px} - -a.goog-ws-create-page, -a.goog-ws-create-page:hover{ -text-decoration:none; -color:#333 !important; -font-weight:bold} - -#edit-start-btn{ -font-weight:bold} - - -/* Create page pagetype styling */ -#pagetypes{ -border-bottom:1px solid #b0bdcc; -padding:10px 0; -margin:0 0 10px} - -.goog-ws-pagetype{ -border:2px solid #b0bdcc; -float:left; -margin:0 10px 10px 0; -padding:5px 5px 10px; -text-align:center; -width:130px} - -.goog-ws-pagetype img{ -display:block; -margin:0 auto} - -.goog-ws-pagetype input{ -margin-bottom:-3px} - -.goog-ws-pagetype-img{ -height:48px; -margin:0 0 5px} - - -.goog-ws-return-home{ -margin-left:-15px !important} - -.goog-ws-return-home{ -color:#fff} - -.goog-ws-revision-add{ -color:#fff; -padding:1px 3px} - -/* Revisions page styling */ -.goog-ws-revision-tools{ -margin-top:10px} - -.goog-ws-revision-done{ -padding:10px 10px 5px} - -.goog-ws-revision-done p{ -margin:0; -padding:0} - -.goog-ws-revision-tools p{ -margin:0; -padding:10px} - -.revisionsForm{ -display:inline} - -.goog-ws-right{ -float:right; -margin-right:15px} - -.goog-ws-right li{ -float:right} - -.goog-ws-save{ -font-weight:bold; -padding-left:5px; -padding-right:5px} - -/* Search form */ -.goog-ws-header-search{ -width:400px} - -.goog-ws-search{ -float:right; -font:13px Arial,Verdana,sans-serif; -margin:0; -padding:0; -text-align:right; -vertical-align:top} - -.goog-ws-search form{ -margin:0} - -.goog-ws-search span{ -float:right; -margin:0 0 0 5px} - -#jot-ui-searchInput{ -width:150px} - -/* *************************** * - * SEARCH RESULTS * - * Search results page styling * - * *************************** */ -.goog-ws-search-crumbs{ -color:#40a040 !important; -font-size:13px !important} - -.goog-ws-search-footer{ -border-top:1px solid #b0bdcc; -padding-top:6px} - -.goog-ws-search-result{ -padding:0 0 5px} - -.goog-ws-search-result h3{ -font-size:15px; -font-weight:normal; -margin:10px 0 0 !important; -padding:0 !important} - -.goog-ws-search-result h3 span{ -color:#999; -font-size:13px; -font-weight:normal} - -.goog-ws-search-result p{ -margin:2px 0 !important; -padding:0 !important} - -.goog-ws-search-subhead{ -border-bottom:1px solid #b0bdcc; -margin:0 10px 10px; -padding:4px 0 6px} - -.goog-ws-search-subhead p{ -margin-bottom:0; -margin-top:0} - -.goog-ws-search-site-title a{ -color:#060; -text-decoration:none} - -.wiki_searchHilite{ -font-weight:bold} - -/* Page settings dialog styling */ -.goog-ws-settings{ -background:#fff} - -.goog-ws-settings-inside p{ -line-height:25px} - -.goog-ws-settings-inside{ -background:#fff; -padding:3px 0 0} - -/* ******************************* * - * GOOG SIDEBAR and SIDEBAR GADGET * - * Sidebar and gadget styling * - * ******************************* */ -.goog-ws-sidebar{ -background-color:transparent; -background-image:none; -background-position:top; -background-repeat:no-repeat; -font-size:13px; -position:absolute; -top:0} - -.goog-ws-sidebar-content{ -border-top:none; -border-bottom:none; -border-right:none; -border-left:none; -padding:0} - -.goog-ws-sidebar-inside{ -padding:0} - -.goog-ws-sidebar-gadget, -.goog-ws-sidebar-textgadget{ -border-top:1px solid #b0bdcc; -border-bottom:1px solid #b0bdcc; -border-right:1px solid #b0bdcc; -border-left:1px solid #b0bdcc; -color:#5e6a72; -font-family:Arial,Verdana,sans-serif; -font-size:12px; -margin:0 0 6px} - -.goog-ws-sidebar-gadget-inside, -.goog-ws-sidebar-textgadget-inside{ -background-color:#CCFFFF; -background-image:none; -background-position:top; -background-repeat:no-repeat; -color:#5e6a72; -overflow:hidden} - -.goog-ws-sidebar-gadget-inside .sites-attach-icon-page{ -background-position:5px 3px; -padding-left:25px !important} - -.goog-ws-sidebar-gadget a{ -color:#06c} - -.goog-ws-sidebar .goog-ws-sidebar-gadget a:visited{ -color:#551a8b} - -.goog-ws-sidebar-gadget h4, -h4.goog-ws-sidebar-textgadget-header{ -background-color:#484848; -background-image:none; -background-position:top; -background-repeat:no-repeat; -border-top:#ffffff; -border-right:#ffffff; -border-bottom:#ffffff; -border-left:#ffffff; -color:#ffffff; -font-family:Arial,Verdana,sans-serif; -font-size:13px; -font-weight:bold; -margin:0; -overflow:hidden; -padding:3px 5px} - -.goog-ws-sidebar-gadget .open{ -border:0; -padding:0 2px 2px 0} - -/* Need to make sure regular h4's don't look like gadget headers */ -.goog-ws-sidebar-gadget-inside h1, -.goog-ws-sidebar-gadget-inside h2, -.goog-ws-sidebar-gadget-inside h3, -.goog-ws-sidebar-gadget-inside h4, -.goog-ws-sidebar-gadget-inside h5{ -background:transparent !important; -border:0 !important; -color:#5e6a72 !important} - -.goog-ws-sidebar-gadget-inside ul{ -line-height:1.33em; -margin:0; -padding:4px 0} - -.goog-ws-sidebar-gadget-inside li{ -list-style:none; -margin:0; -padding:3px 0 3px 5px} - -.goog-ws-sidebar-gadget-inside li span{ -display:block; -font-size:11px} - -.goog-ws-sidebar-textgadget-inside{ -margin:0; -padding:5px} - -.goog-ws-sidebar-gadget-inside p{ -line-height:1.33em; -margin:0; -padding:5px} - -.goog-ws-sidebar-gadget-inside img{ -padding:2px 2px 5px} - -.goog-ws-sidebar-gadget-inside p.goog-ws-img-text{ -color:#222; -font-size:11px; -line-height:12px; -padding:4px} - -.goog-ws-sidebar-gadget .goog-ws-sidebar-viewall{ -margin-top:0; -padding:5px} - -.goog-ws-sidebar-viewall-left{ -float:left; -text-align:left; -width:44%} - -.goog-ws-sidebar-viewall-right{ -float:right; -text-align:right; -width:54%} - -/* ******************** * - * SIDEBAR NAVIGATION * - * Nav gadget styling * - * ******************** */ -.goog-ws-sidebar-nav{ -border-bottom:0 !important; -padding-bottom: 0;} - -.goog-ws-sidebar-nav a { -text-decoration: none;} - -.goog-ws-sidebar-nav a:hover { -text-decoration: underline;} - -.goog-ws-sidebar-nav a:visited{ -color:#06c !important} - -.goog-ws-sidebar-nav ul { -padding: 0;} - -.goog-ws-sidebar-nav li { -padding: 2px 0 0 19px; -margin-top: 1px; -text-indent: 0;} - -.goog-ws-sidebar-nav li.unindented { -padding-left: 5px; /* for when there are no folders */ -} - -.goog-ws-sidebar-nav li.parent { -text-indent: -16px;} - -.goog-ws-sidebar-nav .expander { -/* note: must be used together with .goog-inline-block class */ -width: 11px; -height: 11px; -padding: 0; -margin-right: 5px; -vertical-align: 0.1ex; -background: url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/tree.gif) no-repeat -194px -27px;} - -.goog-ws-sidebar-nav li.closed .expander { -background-position: -192px -3px;} - -.goog-ws-sidebar-nav li.closed ul { -display: none;} - -.goog-ws-sidebar-nav a.topLevel { -font-weight: bold;} - -.goog-ws-sidebar-nav li.topLevel { -border-top: 1px solid #d7dee5; -margin-top: 1px; -margin-bottom: 1px;} - -.goog-ws-sidebar-nav li.nav-first { -border-top: none; -margin-top: 0px;} - -.goog-ws-sidebar-nav .current-bg { -color: #ffffff; -font-weight: bold; -background-color: #67a7e3; -margin-top: -2px; padding-top: 2px; margin-bottom: -2px; padding-bottom: 2px; -margin-left: -200px; -padding-left: 200px} - -.goog-ws-sidebar-nav li ul .current-bg { -outline-width: 1px;} - -/* OLD 1.0 NAV */ - -.goog-ws-sidebar-nav-OLD{ -border-bottom:0 !important} - -.goog-ws-sidebar-nav-OLD a:visited{ -color:#06c !important} - - - -/* ******************** * - * SITEMAP * - * Sitemap page styling * - * ******************** */ -.goog-ws-sitemap, -goog-sites-recent{ -background:#fff; -position:relative} - -.goog-ws-sitemap .goog-ws-subnav{ -padding-left:10px} - -.goog-ws-sitemap .goog-ws- li{ -padding-bottom:5px} - -.goog-ws-sitemap .goog-ws-selected{ -background:#eff4f9} - -.goog-ws-sitemap .goog-ws-subnav a:visited{ -color:#06c} - -.goog-ws-sitemap .goog-ws-selected a, -.goog-ws-sitemap .goog-ws-selected a:visited{ -color:#000} - -.goog-ws-sitemap-tree a:hover{ -text-decoration:none !important} - -.goog-ws-sitemap-tree{ -font-family:Arial,Verdana,sans-serif !important; -min-height:350px; -padding:10px} - -/* ******************************* * - * SITES SITEMAP TABLE * - * Sitemap heirarchy table styling * - * ******************************* */ -.goog-ws-sm{ -border-collapse:collapse; -border-bottom:1px solid #ddd; -margin:0 0 20px; -width:100%} - -.goog-ws-sm td{ -border-top:1px solid #ddd; -padding:4px 4px 4px 12px} - -.goog-ws-sm th{ -background:#fff url(http://www.gstatic.com/sites/p/1236722368649/system/app/themes/default/bg_sprites.gif) repeat-x left bottom; -background-position:0 0; -border-bottom:1px solid #ddd; -color:#444; -font-weight:normal; -height:21px; -padding:4px 4px 4px 12px; -vertical-align:top} - -.goog-ws-wrapper .goog-ws-sm-letter{ -background:#eff4f9; -border-bottom:1px solid #ddd; -border-right:0; -font-size:16px; -font-weight:bold; -padding:4px 4px 4px 12px} - -#goog-ws-status { - position: absolute; - z-index: 199; -} - -.sites-autosaveStatus{ -color:#999 !important; -font-size:12px !important; -font-style:italic !important; -padding-top:2px; -text-align:right !important} - -/* ********************************************** * - * SUBFOOTER * - * Subfooter styling (site name,quick links,etc.) * - * ********************************************** */ -.goog-ws-subfooter{ -color:#5e6a72; -font-size:11px; -padding:0 0 5px; -text-align:center} - -.goog-ws-subfooter p{ -margin:0; -padding:5px} - -.goog-ws-subfooter p span{ -color:#5e6a72; -font-size:10px} - -.goog-ws-subfooter p a, -.goog-ws-subfooter p a:visited{ -color:#06c} - -/* ****************************************** * - * SITES TOOLBAR * - * Toolbar styling (create,edit buttons,etc.) * - * ****************************************** */ -.goog-ws-version-history{ -color:#666; -font-size:12px; -padding:7px 5px 9px 0; -text-align:right; -position:absolute; -bottom:0; -right:0} - -#goog-ws-page-tools-div{ -border-bottom:1px solid #b0bdcc; -margin:0; -position:relative} - -#goog-ws-page-tools-div .goog-ws-version-history a, -#goog-ws-page-tools-div .goog-ws-version-history a:visited{ -color:#00c !important} - -#goog-ws-page-tools-div .goog-ws-version-history a:hover{ -color:#00c} - -/* Subpages styling */ -.goog-ws-subpage{ -border-top:1px solid #d7dee5; -background-color:#eff4f9; -color:#000; -font-family:Arial,Verdana,sans-serif; -margin:0; -padding:5px 0 5px 10px} - -.goog-ws-subpage h4{ -color:#000; -display:block; -font-size:12px; -font-weight:normal; -margin:0 0 -10px; -padding:10px 0 5px 10px} - -.goog-ws-subpage ul{ -display:inline; -margin:0; -padding:0} - -.goog-ws-subpage li{ -display:inline; -margin:0; -padding-left:5px} - -.goog-ws-submit{ -clear:both; -margin:10px 0; -text-align:center} - -/* Navigation tabs styling */ -.goog-ws-subnav{ -clear:left; -padding:10px 2px 0 15px} - -.goog-ws-subnav h2{ -line-height:12px; -margin:0; -padding:0 0 10px} - -.goog-ws-subnav ul{ -margin:0; -padding:4px 0 0} - -.goog-ws-subnav li{ -float:left; -list-style:none; -margin:0; -padding:0} - -.goog-ws-subnav li a{ -padding:5px 15px 3px} - -/* *********************************** * - * SITE TABLES * - * Table styling used throughout Sites * - * *********************************** */ -.goog-ws-table{ -border-collapse:collapse; -font-size:12px; -margin:0 0 10px; -width:100%} - -.goog-ws-table td{ -border-bottom:1px solid #b0bdcc; -padding:6px 9px; -vertical-align:top} - -.goog-ws-table th{ -background:url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/table_background_off.jpg) repeat-x left top; -border-bottom:1px solid #b0bdcc; -border-top:1px solid #b0bdcc; -color:#444; -font-weight:normal; -padding:5px 10px; -text-align:left; -vertical-align:top} - -.goog-ws-table .goog-ws-t-edit{ -text-align:left; -width:45%} - -.goog-ws-table .goog-ws-t-size{ -padding-right:3%; -text-align:right; -width:7%} - -.goog-ws-table-wrapper{ -padding:0 10px} - -.goog-ws-t-att, -.goog-ws-t-up{ -text-align:left; -width:15%} - -.goog-ws-td-chk, -.goog-ws-th-chk{ -border-right:0; -padding:1px 4px 0; -text-align:right; -width:2%} - -.goog-ws-th-crea, -.goog-ws-td-crea{ -text-align:left; -width:24%} - -.goog-ws-th-last, -.goog-ws-td-last{ -text-align:left; -width:24%} - -.goog-ws-th-page, -.goog-ws-td-page{ -text-align:left; -width:44%} - -.goog-ws-th-star, -.goog-ws-td-star{ -text-align:left; -width:2%} - -.goog-ws-th-revision, -.goog-ws-td-revision{ -text-align:left; -width:14%} - -.goog-ws-th-edited, -.goog-ws-td-edited{ -text-align:left; -width:29%} - -.goog-ws-th-last, -.goog-ws-td-last{ -text-align:left; -width:39%} - -.goog-ws-th-revert, -.goog-ws-td-revert{ -text-align:left; -width:19%} - -.goog-ws-th-edited, -.goog-ws-th-last{ -border-left:1px solid #ddd} - -.goog-ws-th-revision, -.goog-ws-th-page{ -border-right:1px solid #ddd} - -.goog-ws-t-file, -.goog-ws-t-page{ -text-align:left; -width:40%} - -.goog-ws-t-rem, -.goog-ws-t-ver{ -text-align:center; -width:15%} - -.goog-ws-title-editor{ -color:#000; -font-size:20px; -width:55%} - -.goog-ws-top{ -background-color:#fff; -border-bottom:1px solid #b0bdcc; -color:#000; -font-size:12px} - -.goog-ws-top a, -.goog-ws-top a:visited{ -color:#00c} - -div.goog-ws-wrapper{ -margin:0 5px; -position:relative; -text-align:left} - -/* ************************************ * - * SITES MISCELLANY * - * Stuff that couldn't go anywhere else * - * ************************************ */ - -#editorToolbar{ -background:#eff4f9} - -.goog-ws-color-selected{ -border:2px solid #67a7e3} - -.drag-over{ -background:#900 !important} - -#jot-versionInfo{ -padding-left:10px} - -.goog-ws-clear:after{ -content:"."; -display:block; -height:0; -clear:both; -visibility:hidden} - -.goog-ws-large{ -font-size:13px} - -.jot-ui-pageNameErr{ -color:red; -font-weight:bold} - -del.wiki_del{ -color:#67a7e3; -text-decoration:line-through} - -ins.wiki_ins{ -background-color:#67a7e3; -color:#fff; -text-decoration:none} - -.disabled{ -text-decoration:none; -color:#666} - -#tr_raw-html-area{ -font-family:"Andale Mono","Courier New",Courier,monospace; -overflow:auto} - -.jot-insertMenu img{ -padding:4px 0 2px 17px !important} - -.goog-toolbar-menu-item-icon{ -padding-bottom:1px} - -.jot-tableMenu-menu .goog-menuitem{ -padding-left:15px} - -/* Goog format menu */ -.goog-menuitem-checkbox{} - -.goog-menuitem, -.goog-submenu{ -clear:both} - -.goog-submenu{ -padding:5px 0 5px 4px} - -.goog-submenu .goog-menu{ -right:0; -text-align:left; -top:0} - -.goog-submenu .goog-menu div{ -padding:5px 0} - -.goog-menu .goog-option span{ -margin:0 3px 0 0} - -.jot-formatblock{ -padding-bottom:11px !important; -padding-top:3px !important} - -.goog-edit-submenu-text{ -margin-left:15px} - -.goog-menuseparator{ -border-top:1px solid #b0bdcc !important} - -div.goog-toc{ -background:#eff4f9; -border:1px solid #b0bdcc; -list-style:none; -margin-bottom:5px; -overflow:hidden; -width:100%} - -div.goog-toc a{ -text-decoration:none} - -div.goog-toc a:visited{ -color:#06c} - -div.goog-toc ol{ -line-height:1.33em; -list-style:none; -margin-left:10px; -padding-left:0; -text-align:left} - -.goog-ws-outside-in div.goog-toc p{ -padding-left:10px; -font-weight:bold; -text-align:left} - -/* ******************************************************** * - * LINK PICKER TABS * - * These goog-tabpane styles go with the link picker dialog * - * ******************************************************** */ -.goog-tabpane{ -background-color:#fff; -padding:0; -position:relative} - -.goog-tabpane-tabs{ -list-style:none; -margin:0; -padding:0; -height:1ex; -position:relative} - -.goog-tabpane-left .goog-tabpane-tabs{ -float:left} - -.goog-tabpane-cont{ -overflow:auto; -height:100%} - -.goog-tabpane-tab, -.goog-tabpane-tab-selected{ -display:block; -padding:1em; -border:1px solid #d7dee5; -cursor:pointer; -border-width:1px 0; -margin:0} - -.goog-tabpane-left .goog-tabpane-tab-selected{ -background-color:#eff4f9; -border:1px solid #d7dee5} - -.goog-tabpane-top ul.goog-tabpane-tabs{ -border:0; -height:20px; -outline:none; -width:99%} - -.goog-tabpane-top ul.goog-tabpane-tabs li, -.goog-tabpane-top ul.goog-tabpane-tabs li.goog-tabpane-tab-selected{ -border:0; -background:transparent; -display:inline; -padding:0 5px} - -.goog-tabpane-top ul.goog-tabpane-tabs li{ -border-right:1px solid #ccc; -color:#06c; -text-decoration:underline !important} - -.goog-tabpane-top ul.goog-tabpane-tabs li.goog-tabpane-tab-selected{ -border-right:1px solid #ccc; -color:#000 !important; -text-decoration:none !important} - -.goog-tabpane-cont li{ -list-style:none} - -/* ******************************* * - * CCC BUTTON STYLES * - * Button style borrowed from Docs * - * ******************************* */ -.btn, -.btn:visited{ -color:#345 !important; -cursor:pointer; -float:left; -font-size:12px; -margin:0 3px 5px 0; -outline:none; -text-decoration:none} - -.btn b{ -background-color:#fff; -border:solid #bcc7d4; -border-width:1px 0; -display:block; -float:left; -font-weight:normal; -margin:0 3px 0 0; -position:relative} - -.btn b b{ -background:#fff url(http://www.gstatic.com/sites/p/1236722368649/system/app/themes/default/bg_sprites.gif) repeat-x left bottom; -background-position:0 0; -border-width:0 1px; -display:block; -height:21px; -margin:0 -1px; -position:relative} - -.btn b b b{ -border-width:0; -height:15px; -margin:0; -padding:2px 5px 4px} - -.btn b b b b{ -height:13px; -margin-bottom:0; -padding-bottom:0 !important} - -.btn:hover{ -cursor:pointer} - -.btn:active b{ -background-color:#ccc; -background-image:none} - -.btn img{ -border-width:0; -display:block; -margin:-2px 1px 0 -8px; -padding:1px} - -.btn strong{ -color:#000} - -/* ********************************************** * - * GOOG PALETTE STYLINGS * - * Styling for the colors and fonts color palette * - * ********************************************** */ -.goog-palette{ -outline:none; --moz-outline:none; --moz-user-select:none; -cursor:default; -z-index:300}/* 300 is for dropdowns,flyouts,etc. */ - -.goog-palette-cell{ -border-left:1px solid #b0bdcc; -border-top:1px solid #b0bdcc; -height:15px; -padding:3px; -width:15px; -margin:0; -text-align:center; -vertical-align:middle; -font-size:1px} - -.goog-palette-cell-hover{ -background:#ccc} - -.goog-palette-cell-selected{ -background:#ccc; -border-left:1px solid #666 !important; -border-top:1px solid #666 !important} - -.goog-palette-colorswatch{ -position:relative; -height:15px; -width:15px} - -.goog-palette-table{ -border-right:1px solid #b0bdcc; -border-bottom:1px solid #b0bdcc} - -/* ****************************************************** * - * GOOG TREE * - * Styles the goog-tree component we use throughout Sites * - * ****************************************************** */ -.goog-tree-row{ -cursor:default; -font:icon; -padding:3px 0; -white-space:nowrap} - -.goog-tree-root .selected, -.goog-tree-root .selected span{ -color:#111; -background-color:#fffab6; -} - -.goog-modal-dialog .goog-tree-root a:hover{ -text-decoration:none} - -.goog-ws-sitemap .goog-tree-root a{ -cursor:pointer} - -.goog-tree-row span{ -overflow:hidden; -text-overflow:ellipsis} - -.goog-tree-children{ -background-repeat:repeat-y; -background-position-y:1px !important;/* IE only */ -font:icon} - -.goog-tree-children-nolines{ -font:icon} - -.goog-tree-icon{ -background-image:url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/tree.gif); -height:16px; -width:16px} - -.goog-tree-expand-icon{ -cursor:hand; -cursor:pointer; -height:16px; -vertical-align:middle; -width:16px} - -.goog-tree-expand-icon-plus{ -background-position:0 0; -width:19px} - -.goog-tree-expand-icon-minus{ -background-position:-24px 0; -width:19px} - -.goog-tree-expand-icon-tplus{ -background-position:-48px 0; -width:19px} - -.goog-tree-expand-icon-tminus{ -background-position:-72px 0; -width:19px} - -.goog-tree-expand-icon-lplus{ -background-position:-96px 0; -width:19px} - -.goog-tree-expand-icon-lminus{ -background-position:-120px 0; -width:19px} - -.goog-tree-expand-icon-t{ -background-position:-144px 0; -width:19px} - -.goog-tree-expand-icon-l{ -background-position:-168px 0; -width:19px} - -.goog-tree-expand-icon-blank{ -background-image: none; -width:19px} - -.goog-tree-collapsed-folder-icon{ -background-position:2px -24px; -height:16px; -vertical-align:middle; -width:16px} - -.goog-tree-expanded-folder-icon{ -background-position:-22px -24px; -height:16px; -vertical-align:middle; -width:16px} - -.goog-tree-file-icon{ -background-position:-48px -24px; -height:16px; -vertical-align:middle; -width:16px} - -.goog-tree-item{ -outline:none; -width:99%} - -.goog-modal-dialog .goog-tree-item{ -cursor:pointer} - -.goog-tree-item-label{ -color:WindowText; -margin-left:3px; -padding:1px 2px; -text-decoration:none} - -.goog-ws-sitemap .goog-tree-item-label a:hover{ -text-decoration:underline} - -.goog-tree-hide-root{ -display:none} - -/* ************************************************** * - * DIALOGS * - * Modal dialogs styling using Goog naming convention * - * ************************************************** */ -.modal-dialog{ -background-color:#a4caee; -border:1px solid #000; -color:#000; -left:0; -outline:none; -padding:8px; -/* This is a workaround for the FF cursor bug,doesn't seem to -affect other browsers */ -position:fixed; -position:expression("absolute"); -text-align:left; -top:0; -width:450px; -z-index:200}/* 200 is for dialogs */ - -.modal-dialog p{ -margin:0 0 10px} - -.modal-dialog-bg{ -background-color:#000; -filter:alpha(opacity=30); -left:0; -opacity:0.3; -position:fixed !important; -/* This is a workaround for IE6 because it does not support position:fixed - * or the important keyword so it uses position:absolute which works. - */ -position:absolute; -top:0} - -.modal-dialog-buttons{ -clear:both; -margin:0 !important; -padding:10px 0 0 !important} - -.modal-dialog-close{ -background:url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/icon_close.gif) no-repeat; -cursor:pointer; -height:15px; -position:absolute; -right:15px; -top:15px; -width:15px} - -.modal-dialog-close a{ -display:block; -height:15px; -outline:none; -text-decoration:none; -width:15px} - -.modal-dialog-content{ -background:#fff; -font:normal 13px Arial,Verdana,sans-serif; -padding:8px !important} - -.modal-dialog-content a{ -color:#06c} - -.modal-dialog-content select{ -font:normal 13px Arial,sans-serif} - -.modal-dialog-title{ -background-color:#d1e4f7; -color:#000; -cursor:default; -font:bold 14px Arial,Verdana,sans-serif; -padding:10px; -position:relative} - -.modal-dialog-title-close{ -display:none} - -.goog-ws-tree-wrapper{ -height:350px; -outline:none; -overflow:auto; -width:415px} - -/* goog.ui.Menu */ - -.goog-menu{ -border:1px solid #b5b6b5; -background-color:#f3f3f7; -color:#000; -cursor:default; -font:normal small Arial,sans-serif; -margin:0; -outline:none; -padding:0; -position:absolute; -z-index:300}/* 300 is for dropdowns,flyouts,etc. */ - -.goog-menuitem{ -list-style:none; -margin:0; -text-align:left; -padding:3px 1.5em 2px 5px; -white-space:nowrap} - -.goog-menuitem-rtl{ -text-align:right;/* hardcode instead of using bidi_right */ -padding:2px 5px 2px 1.5em/* hardcode instead of using bidi_trbl */} - -a.goog-menuitem{ -display:block} - -.goog-menuitem a, -a.goog-menuitem{ -color:#000 !important; -cursor:default; -text-decoration:none} - -.goog-menuitem-highlight{ -background-color:#67a7e3 !important; -clear:both; -color:#fff !important} - -.goog-menuitem-highlight a{ -color:#fff !important} - -.goog-menuitem-disabled{ -color:#999} - -.goog-option{ -/* Selectable options should leave some room for the check mark. */ -padding-left:15px !important} - -.goog-option-selected{ -background-position:4px 50%; -background-repeat:no-repeat} - -/* Page settings icons for menu */ -#more-actions-menu .goog-menuitem{ -padding-left:24px} - -/* goog.ui.MenuSeparator */ -.goog-menuseparator{ -border-top:1px solid #999; -margin:2px 0; -outline:none; -padding:0; -position:relative} - -/* goog.ui.SubMenu */ -.goog-submenu-arrow{ -text-align:right; -position:absolute; -right:3px; -left:auto} - -.goog-menuitem-rtl .goog-submenu-arrow{ -position:absolute; -text-align:left;/* hardcode instead of using bidi_left */ -left:0;/* hardcode instead of using bidi_left */ -right:auto}/* hardcode instead of using bidi_right */ - -.goog-menuitem-disabled .goog-submenu-arrow{ -display:none} - -/* TEMP */ -.goog-temp-spew{ -color:#366698 !important} - -.command-jot-editor-save div{ -padding-left:6px; -padding-right:6px} - -.jot-extra-buttony{ -background:#fff url(http://www.gstatic.com/sites/p/1236722368649/system/app/themes/default/bg_sprites.gif) repeat-x 0 3px; -height:24px} - -/* Hideous Safari hacks */ -@media screen and (-webkit-min-device-pixel-ratio:0){ -.jot-foreColor .goog-toolbar-menu-button-caption{ -background-position:-79px 0 !important} -.jot-backColor .goog-toolbar-menu-button-caption{ -background-position:-95px 0 !important} -} - -#jot-content-table{ -border-collapse:collapse; -margin:0} - -.goog-ws-edit-sidebar{ -font-size:11px; -padding:2px} - -.goog-ws-edit-sidebar a{ -color:#06c} - -#goog-add-attachment, -#goog-add-comment{ -margin:0} - -#goog-attachment-wrapper p, -#goog-comment-wrapper p{ -margin:10px 10px 10px 20px} - -#goog-attachment-wrapper h3 a, -#goog-comment-wrapper h3 a{ -color:#000; -text-decoration:none} - -#goog-attachment-wrapper h3 a:visited, -#goog-comment-wrapper h3 a:visited{ -color:#000} - -#goog-attachment-wrapper h3 a:hover, -#goog-comment-wrapper h3 a:hover{ -color:#000} - -#goog-add-attachment a span, -#goog-add-comment a span, -.goog-ws-bottom h3 span{ -color:#000; -font-size:12px; -font-weight:normal} - -#goog-attachment-wrapper, -#goog-comment-wrapper{ -border-top:1px solid #d7dee5; -color:#000; -padding:0 0 5px} - -#goog-attachment-wrapper .goog-ws-attachment-form p{ -margin:0 10px 0 0; -padding:5px 0 10px 10px} - -.goog-ws-bottom-none .goog-ws-attachment-form p{ -padding:0 0 10px 26px !important} - -.goog-ws-comment-submit{ -margin:0 !important} - -.goog-ws-bottom-none .goog-ws-comment-submit{ -margin:0 0 0 15px !important} - -.goog-ws-outer{ -background-image:none; -background-position:0 -53px; -background-repeat:repeat-x; -border-top:none; -border-bottom:none; -border-left:none; -border-right:none; -clear:both; -margin:0; -padding:5px 0 0} - -/* Used in the editor embed dialogs */ -.goog-link-box{ -background:#eff4f9; -border:1px solid #b0bdcc; -padding:8px 0 0} - -/* Fix iframe layout in text widget embed editor */ -#COMP_dialogembedding .editable{ -border:0; -height:300px; -margin:0; -padding:5px; -overflow:auto} - -#tmpTxtId iframe{ -top:5px !important; -left:5px !important} - -/* Dashboard search dropdown (have to put here b/c it uses bg images */ -#scopeSelectMenu .goog-menu-button-outer-box{ -background:#fff url(http://www.gstatic.com/sites/p/1236722368649/system/app/themes/default/bg_sprites.gif) repeat-x left bottom; -background-position:0 0; -height:21px} - -/* Base toolbar stylesheets */ - -/* Gecko hack;Pre-FF3 Gecko uses -moz-inline-box instead of inline-block. */ -html>body .goog-inline-block{ -display:-moz-inline-box;/* This is ignored by FF3 and later */ -display:inline-block}/* This is ignored by pre-FF3 Gecko */ - -/* Default rule;only Safari,Webkit,and Opera handle it without hacks. */ -.goog-inline-block{ -position:relative; -display:inline-block} - -/* Pre-IE7 IE hack. On IE,"display:inline-block" only gives the element */ -/* layout,but doesn't give it inline behavior. Subsequently setting display */ -/* to inline does the trick. */ -* html .goog-inline-block{ -display:inline} - -/* IE7-only hack. On IE,"display:inline-block" only gives the element */ -/* layout,but doesn't give it inline behavior. Subsequently setting display */ -/* to inline does the trick. */ -*:first-child+html .goog-inline-block{ -display:inline} - -.goog-toolbar{ -background:#f9f9f9 url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/toolbar_bg.gif) repeat-x left bottom; -border-bottom:1px solid #b0bdcc; -cursor:default; -font:12px Arial,sans-serif !important;/* Toolbar stays Arial */ -margin:0; -padding:3px 2px 2px; -position:relative; -outline:none; -text-align:left; -zoom:1}/* The toolbar element must have layout on IE. */ - -#goog-ws-page-tools-div .goog-toolbar{ -background:#f9f9f9 url(http://www.gstatic.com/sites/p/1236722368649/system/app/themes/default/bg_sprites.gif) repeat-x left bottom; -background-position:0 -22px; -height:24px; -border-bottom:0} - -.edit-in-progress-message{ -color:#666; -display:inline-block; -font-style:italic; -padding-top:4px} - -#goog-ws-page-tools-div .editing{ -background-position:0 2px !important} - -.editing{ -border:0 !important} - -/* Firefox 2 hack,b/c FF2 is doing crazy stuff with the toolbar */ -#goog-ws-page-tools-div .editing, -x:-moz-any-link{ -height:23px} - -.edit-in-progress-message, -x:-moz-any-link{ -display:-moz-inline-box; -line-height:25px; -padding-left:5px} - -#goog-ws-page-tools-div .editing, -x:-moz-any-link, -x:default{ -height:24px} - -.edit-in-progress-message, -x:-moz-any-link,x:default{ -display:inline-block} - -.edit-in-progress-message, -x:-moz-any-link{ -display:-moz-inline-box; -line-height:15px; -padding-left:0} - -.goog-toolbar-button{ -margin:0 2px; -border:0; -padding:0; -font:normal 12px Arial,sans-serif; -color:#333; -text-decoration:none; -list-style:none; -vertical-align:middle; -cursor:default; -outline:none} - -/* Pseudo-rounded corners. */ -.goog-toolbar-button-outer-box{ -margin:0; -border:0; -padding:1px 0; -vertical-align:middle} - -.goog-toolbar-button-inner-box{ -margin:0 -1px; -border:0; -padding:3px 5px; -vertical-align:middle} - -/* Pre-IE7 IE hack;ignored by IE7 and all non-IE browsers. */ -* html .goog-toolbar-button-inner-box{ -/* IE6 needs to have the box shifted to make the borders line up. */ -left:-1px} - -/* Pre-IE7 BiDi fixes. */ -* html .goog-toolbar-button-rtl .goog-toolbar-button-outer-box{ -left:-1px}/* hardcode instead of using bidi_left */ - -* html .goog-toolbar-button-rtl .goog-toolbar-button-inner-box{ -left:0}/* hardcode instead of using bidi_right */ - -/* IE7-only hack;ignored by all other browsers. */ -*:first-child+html .goog-toolbar-button-inner-box{ -/* IE7 needs to have the box shifted to make the borders line up. */ -left:-1px} - -/* IE7 BiDi fix. */ -*:first-child+html .goog-toolbar-button-rtl .goog-toolbar-button-inner-box{ -left:1px}/* hardcode instead of using bidi_right */ - -/* Safari-only hacks. */ -::root .goog-toolbar-button, -::root .goog-toolbar-button-outer-box{ -/* Required to make pseudo-rounded corners work on Safari. */ -line-height:0} - -::root .goog-toolbar-button-inner-box{ -/* Required to make pseudo-rounded corners work on Safari. */ -line-height:normal} - -/* Disabled styles. */ -.goog-toolbar-button-disabled{ -opacity:0.3; --moz-opacity:0.3; -filter:alpha(opacity=30)} - -.goog-toolbar-button-disabled .goog-toolbar-button-outer-box, -.goog-toolbar-button-disabled .goog-toolbar-button-inner-box{ -/* Disabled text/border color trumps everything else. */ -color:#333 !important; -border-color:#999 !important} - -/* Pre-IE7 IE hack;ignored by IE7 and all non-IE browsers. */ -* html .goog-toolbar-button-disabled{ -/* IE can't apply alpha to an element with a transparent background... */ -background-color:#f0f0f0; -margin:0 1px; -padding:0 1px} - -/* IE7-only hack;ignored by all other browsers. */ -*:first-child+html .goog-toolbar-button-disabled{ -/* IE can't apply alpha to an element with a transparent background... */ -background-color:#f0f0f0; -margin:0 1px; -padding:0 1px} - -.goog-toolbar-menu-button{ -margin:0 2px; -border:0; -padding:0; -font:normal 12px Arial,sans-serif; -color:#333; -text-decoration:none; -list-style:none; -vertical-align:middle; -cursor:default; -outline:none} - -/* Pseudo-rounded corners. */ -.goog-toolbar-menu-button-outer-box{ -margin:0; -border:0; -padding:1px 0; -vertical-align:middle} - -.goog-toolbar-menu-button-inner-box{ -margin:0 -1px; -border:0; -padding:3px 5px; -vertical-align:middle} - -/* Pre-IE7 IE hack;ignored by IE7 and all non-IE browsers. */ -* html .goog-toolbar-menu-button-inner-box{ -/* IE6 needs to have the box shifted to make the borders line up. */ -left:-1px} - -/* Pre-IE7 BiDi fixes. */ -* html .goog-toolbar-menu-button-rtl .goog-toolbar-menu-button-outer-box{ -left:-1px}/* hardcode instead of using bidi_left */ - -* html .goog-toolbar-menu-button-rtl .goog-toolbar-menu-button-inner-box{ -left:0}/* hardcode instead of using bidi_left */ - -/* IE7-only hack;ignored by all other browsers. */ -*:first-child+html .goog-toolbar-menu-button-inner-box{ -/* IE7 needs to have the box shifted to make the borders line up. */ -left:-1px} - -/* IE7 BiDi fix. */ -*:first-child+html .goog-toolbar-menu-button-rtl -.goog-toolbar-menu-button-inner-box{ -left:1px}/* hardcode instead of using bidi_ */ - -/* Safari-only hacks. */ -::root .goog-toolbar-menu-button, -::root .goog-toolbar-menu-button-outer-box, -::root .goog-toolbar-menu-button-inner-box{ -/* Required to make pseudo-rounded corners work on Safari. */ -line-height:0} - -::root .goog-toolbar-menu-button-caption, -::root .goog-toolbar-menu-button-dropdown{ -/* Required to make pseudo-rounded corners work on Safari. */ -line-height:normal} - -/* Disabled styles. */ -.goog-toolbar-menu-button-disabled{ -opacity:0.3; --moz-opacity:0.3; -filter:alpha(opacity=30)} - -.goog-toolbar-menu-button-disabled .goog-toolbar-menu-button-outer-box, -.goog-toolbar-menu-button-disabled .goog-toolbar-menu-button-inner-box{ -/* Disabled text/border color trumps everything else. */ -color:#333 !important; -border-color:#999 !important} - -/* Pre-IE7 IE hack;ignored by IE7 and all non-IE browsers. */ -* html .goog-toolbar-menu-button-disabled{ -/* IE can't apply alpha to an element with a transparent background... */ -background-color:#f0f0f0; -margin:0 1px; -padding:0 1px} - -/* IE7-only hack;ignored by all other browsers. */ -*:first-child+html .goog-toolbar-menu-button-disabled{ -/* IE can't apply alpha to an element with a transparent background... */ -background-color:#f0f0f0; -margin:0 1px; -padding:0 1px} - -/* Only draw borders when in a non-default state. */ -.goog-toolbar-menu-button-hover .goog-toolbar-menu-button-outer-box, -.goog-toolbar-menu-button-active .goog-toolbar-menu-button-outer-box, -.goog-toolbar-menu-button-open .goog-toolbar-menu-button-outer-box{ -border-width:1px 0; -border-style:solid; -padding:0} - -.goog-toolbar-menu-button-hover .goog-toolbar-menu-button-inner-box, -.goog-toolbar-menu-button-active .goog-toolbar-menu-button-inner-box, -.goog-toolbar-menu-button-open .goog-toolbar-menu-button-inner-box{ -border-width:0 1px; -border-style:solid; -padding:3px 4px} - -/* Hover styles. */ -.goog-toolbar-menu-button-hover .goog-toolbar-menu-button-outer-box, -.goog-toolbar-menu-button-hover .goog-toolbar-menu-button-inner-box{ -/* Hover border color trumps active/open style. */ -border-color:#a1badf !important} - -/* Active/open styles. */ -.goog-toolbar-menu-button-active, -.goog-toolbar-menu-button-open{ -/* Active/open background color wins. */ -background-color:#dde1eb !important} - -.goog-toolbar-menu-button-active .goog-toolbar-menu-button-outer-box, -.goog-toolbar-menu-button-active .goog-toolbar-menu-button-inner-box, -.goog-toolbar-menu-button-open .goog-toolbar-menu-button-outer-box, -.goog-toolbar-menu-button-open .goog-toolbar-menu-button-inner-box{ -border-color:#729bd1} - -/* BiDi hack. */ -.goog-toolbar-menu-button-rtl .goog-toolbar-menu-button-caption{ -padding:0 0 0 4px}/* hardcode instead of using bidi_ */ - -.goog-toolbar-menu-button-caption{ -background-image:none; -padding-right:5px} - -.goog-toolbar-separator{ -margin:0 2px; -border-left:1px solid #d6d6d6; -border-right:1px solid #f7f7f7; -padding:0; -width:0; -text-decoration:none; -list-style:none; -outline:none; -vertical-align:middle; -line-height:normal; -font-size:120%; -overflow:hidden} - -.jot-extra-buttony{ -vertical-align:top} - -/* Only draw borders when in a non-default state,or for - selected extra-buttony buttons */ -.goog-toolbar-button-hover .goog-toolbar-button-outer-box, -.goog-toolbar-button-active .goog-toolbar-button-outer-box, -.goog-toolbar-button-checked .goog-toolbar-button-outer-box, -.goog-toolbar-button-selected .goog-toolbar-button-outer-box, -.jot-extra-buttony .goog-toolbar-button-outer-box, -.jot-extra-buttony .goog-toolbar-menu-button-outer-box{ -border-width:1px 0; -border-style:solid; -padding:0} - -.goog-toolbar-button-hover .goog-toolbar-button-inner-box, -.goog-toolbar-button-active .goog-toolbar-button-inner-box, -.goog-toolbar-button-checked .goog-toolbar-button-inner-box, -.goog-toolbar-button-selected .goog-toolbar-button-inner-box, -.jot-extra-buttony .goog-toolbar-button-inner-box, -.jot-extra-buttony .goog-toolbar-menu-button-inner-box{ -border-width:0 1px; -border-style:solid; -padding:3px 4px 4px} - -.jot-extra-buttony .goog-toolbar-button-inner-box, -.jot-extra-buttony .goog-toolbar-button-outer-box, -.jot-extra-buttony .goog-toolbar-menu-button-inner-box, -.jot-extra-buttony .goog-toolbar-menu-button-outer-box{ -border-color:#bfcbdf} - -/* Hover styles. */ -.goog-toolbar-button-hover .goog-toolbar-button-outer-box, -.goog-toolbar-button-hover .goog-toolbar-button-inner-box{ -/* Hover border style wins over active/checked/selected. */ -border-color:#a1badf !important} - -/* Active/checked/selected styles. */ -.goog-toolbar-button-active, -.goog-toolbar-button-checked, -.goog-toolbar-button-selected{ -/* Active/checked/selected background color always wins. */ -background-color:#dde1eb !important} - -.goog-toolbar-button-active .goog-toolbar-button-outer-box, -.goog-toolbar-button-active .goog-toolbar-button-inner-box, -.goog-toolbar-button-checked .goog-toolbar-button-outer-box, -.goog-toolbar-button-checked .goog-toolbar-button-inner-box, -.goog-toolbar-button-selected .goog-toolbar-button-outer-box, -.goog-toolbar-button-selected .goog-toolbar-button-inner-box{ -border-color:#729bd1} - -/* Dropdown style. */ -.goog-toolbar-menu-button-dropdown, -#scopeSelectMenu .goog-menu-button-dropdown{ -width:7px !important; -background:transparent url(http://www.gstatic.com/sites/p/1236722368649/system/app/images/icon_sprites.gif) no-repeat -27px 0 !important; -vertical-align:middle} - -/* Temp */ -#gbar{ -font-size:12px !important; -height:20px !important; -margin:5px 0 0 5px; -padding:0 !important} - -.goog-sites-user-settings{ -padding:0 10px} - -.goog-sites-user-settings-table{ -border-top:1px solid #ccc; -padding:10px 0 0; -width:100%} - -.goog-sites-user-settings-table td{ -padding:0 0 20px} - -.goog-sites-user-settings-table th{ -padding-right:10px; -text-align:right; -vertical-align:top; -width:180px} - -#more-actions-btn .goog-toolbar-menu-button-inner-box, -#site-settings-btn .goog-toolbar-menu-button-inner-box{ -padding-bottom:3px; -padding-top:3px} - -#edit-btn-separator{ -margin:3px 0 0 1px} - -#settings-menu-separator{ -margin:3px 0 0 1px} - -.edit-in-progress-message{ -color:#666; -display:inline-block; -font-style:italic; -padding-top:4px} - -.goog-ws-site-info{ -color:#666; -float:left; -font-family:Arial,sans-serif !important; -font-weight:bold; -padding:3px 6px 0 0; -position:relative; -z-index:1001} - -.goog-ws-site-info a, -.goog-ws-site-info a:visited{ -color:#666; -text-decoration:none} - -.goog-ws-site-info a:hover{ -color:#06c; -text-decoration:underline} - -.goog-ws-siteinfo-siteslogo{ -color:#36c; -font-size:14px; -font-weight:bold; -padding:0 0 0 5px} - -.goog-ws-siteinfo-domain{ -font-weight:normal} - -.editing-page-tools-div{ -background-color:#fceab5; -border-top:1px solid #efdda8; -border-bottom:1px solid #d6c48f !important} - -.goog-ws-create-page, -#page-btns .goog-toolbar-button, -#page-btns .goog-toolbar-menu-button{ -cursor:pointer} - -.goog-ws-pagetype-blurb{ -min-height:0} - -.modal-dialog-content .goog-toolbar{ -background-position:left bottom} - -/* these 2 classes are used in text.js */ -.goog-s-text-box-editor-wrapper{ -background:#fff; -border:1px solid #efefef; -color:#000} - -.goog-s-text-box-editor-wrapper a{ -color:#06c} - - diff --git a/docs/i18n/localizing_files/jot_min.js b/docs/i18n/localizing_files/jot_min.js deleted file mode 100644 index 6e31e72..0000000 --- a/docs/i18n/localizing_files/jot_min.js +++ /dev/null @@ -1,604 +0,0 @@ -/* Copyright 2008 Google. */ (function() { -// Input 0 -var d=false,i=null,j=true;function l(a){throw a;}var aa=Boolean,da=encodeURIComponent,ea=editorResources,fa=parseInt,ga=parseFloat,m=window,ha=Number,ia=JOT_addListener,ja=JOT_removeListenerByKey,la=Object,ma=JOT_postEvent,na=document,oa=decodeURIComponent,pa=isNaN,qa=alert,ra=byId,n=Math;function sa(a,b){return a.onload=b}function ta(a,b){return a.toString=b}function ua(a,b){return a.onreadystatechange=b}function va(a,b){return a.length=b}function wa(a,b){return a.position=b} -function xa(a,b){return a.className=b}function ya(a,b){return a.result=b}function za(a,b){return a.width=b}function Aa(a,b){return a.checked=b}function o(a,b){return a.innerHTML=b}function Ba(a,b){return a.value=b}function Ca(a,b){return a.currentTarget=b}function Da(a,b){return a.left=b}function Ea(a,b){return a.target=b}function Fa(a,b){return a.screenX=b}function Ga(a,b){return a.screenY=b}function Ha(a,b){return a.send=b}function Ia(a,b){return a.remove=b}function Ja(a,b){return a.cssText=b} -function Ka(a,b){return a.coords=b}function La(a,b){return a.keyCode=b}function Ma(a,b){return a.href=b}function Na(a,b){return a.handleEvent=b}function Oa(a,b){return a.type=b}function Pa(a,b){return a.contains=b}function Qa(a,b){return a.tabIndex=b}function Ra(a,b){return a.clear=b}function Sa(a,b){return a.onclick=b}function Ta(a,b){return a.display=b}function Ua(a,b){return a.height=b}function Va(a,b){return a.clientX=b}function Wa(a,b){return a.clientY=b} -function Xa(a,b){return a.visibility=b} -var q="appendChild",Ya="scrollTop",Za="previousSibling",t="push",$a="stop",ab="toString",bb="altKey",v="length",cb="title",db="version",eb="getBoundingClientRect",x="page",y="prototype",fb="payload",gb="test",hb="shift",ib="className",jb="relatedTarget",kb="exec",lb="clearTimeout",z="width",mb="clientWidth",nb="round",ob="abort",pb="checked",qb="slice",rb="setTimeout",A="replace",sb="nodeType",tb="document",ub="split",vb="floor",wb="getElementById",xb="innerHTML",yb="offsetWidth",zb="concat",Ab="charAt", -Bb="createTextNode",Cb="stopPropagation",B="value",Db="location",Eb="preventDefault",Fb="insertBefore",Gb="wuid",Hb="button",C="indexOf",Ib="message",Jb="hasOwnProperty",D="dispatchEvent",F="style",Kb="jstiming",Lb="nodeName",Mb="body",G="left",Nb="removeChild",Ob="parent",Pb="baseUri",Qb="search",Rb="user",H="target",Sb="screenX",Tb="screenY",Ub="lastChild",I="call",Vb="match",Wb="getBoxObjectFor",Xb="send",Yb="isOpen",Zb="readyState",$b="charCode",ac="remove",cc="some",dc="start",ec="focus",fc= -"revision",gc="getAttribute",hc="createElement",ic="coords",jc="scrollHeight",kc="keyCode",J="firstChild",lc="select",mc="forEach",nc="parentPath",oc="clientHeight",pc="scrollLeft",qc="charCodeAt",rc="clientLeft",sc="bottom",tc="setAttribute",uc="substring",vc="clientTop",wc="play",xc="handleEvent",L="path",yc="every",M="type",zc="contains",Ac="apply",Bc="listenerCompId",Cc="clear",Dc="childNodes",Ec="shiftKey",Fc="tagName",Gc="defaultView",Hc="name",N="parentNode",Ic="getHours",Jc="fileName",Kc= -"display",Lc="nextSibling",Mc="offsetTop",O="height",Nc="toUpperCase",Oc="splice",Pc="getTime",Qc="offsetHeight",P="join",Rc="unshift",Sc="setActive",Tc="getElementsByTagName",Uc="nodeValue",Vc="toLowerCase",Wc="frames",Xc="eventSrc",Yc="clientX",Zc="clientY",$c="documentElement",ad="substr",bd="right",cd="getTimezoneOffset",R,dd=dd||{},ed=this,fd=".",gd="var ",id=function(a,b,c){var e=a[ub](fd),f=c||ed,g;!(e[0]in f)&&f.execScript&&f.execScript(gd+e[0]);for(;e[v]&&(g=e[hb]());)if(!e[v]&&hd(b))f[g]= -b;else if(f[g])f=f[g];else{f[g]={};f=f[g]}},jd=function(a,b){var c=a[ub](fd),e=b||ed,f;for(;f=c[hb]();)if(e[f])e=e[f];else return i;return e},kd=function(){},ld=function(a){a.qb=function(){return a.on||(a.on=new a)}},md="object",nd="[object Array]",od="array",S="function",pd="null",qd=function(a){var b=typeof a;if(b==md)if(a){if(a instanceof Array||!(a instanceof la)&&la[y][ab][I](a)==nd)return od;if(typeof a[I]!="undefined")return S}else return pd;else if(b==S&&typeof a[I]=="undefined")return md; -return b},hd=function(a){return typeof a!="undefined"};var rd=function(a){return qd(a)==od},sd="number",td=function(a){var b=qd(a);return b==od||b==md&&typeof a[v]==sd},ud="string",vd=function(a){return typeof a==ud}; -var wd=function(a){return typeof a==sd},xd=function(a){return qd(a)==S},yd=function(a){var b=qd(a);return b==md||b==od||b==S},zd="closure_hashCode_",Bd=function(a){if(a[Jb]&&a[Jb](zd)){var b=a.closure_hashCode_;if(b)return b}a.closure_hashCode_||(a.closure_hashCode_=++Ad);return a.closure_hashCode_},Ad=0,Cd=function(a){var b=qd(a);if(b==md||b==od){if(a.na)return a.na[I](a);var c=b==od?[]:{};for(var e in a)c[e]=Cd(a[e]);return c}return a},Dd=function(a,b){var c=a.Xk;if(arguments[v]>2){var e=Array[y][qb][I](arguments, -2);c&&e[Rc][Ac](e,c);c=e}b=a.Zk||b;a=a.Yk||a;var f,g=b||ed;f=c?function(){var h=Array[y][qb][I](arguments);h[Rc][Ac](h,c);return a[Ac](g,h)}:function(){return a[Ac](g,arguments)};f.Xk=c;f.Zk=b;f.Yk=a;return f},Ed=function(a){var b=Array[y][qb][I](arguments,1);b[Rc](a,i);return Dd[Ac](i,b)},Fd=Date.now||function(){return(new Date)[Pc]()},T=function(a,b,c){id(a,b,c)},Gd=function(a,b,c){a[b]=c},U=function(a,b){function c(){}c.prototype=b[y];a.b=b[y];a.prototype=new c;a[y].constructor=a}; -// Input 1 -var Hd=/\s*;\s*/,Id="=",Jd=function(a,b){var c=a+Id,e=String(na.cookie)[ub](Hd),f=0,g;for(;g=e[f];f++)if(g[C](c)==0)return g[ad](c[v]);return b}; -// Input 2 -var Kd={}; -// Input 3 -var Ld=function(a,b,c){if(a[C])return a[C](b,c);if(Array[C])return Array[C](a,b,c);var e=c==i?0:c<0?n.max(0,a[v]+c):c;for(;e-1}; -var Rd=function(a){if(!rd(a)){var b=a[v]-1;for(;b>=0;b--)delete a[b]}va(a,0)},Td=function(a,b,c){Sd(a,c,0,b)},Ud=function(a,b){var c=Ld(a,b),e;if(e=c!=-1)Array[y][Oc][I](a,c,1)[v]==1;return e}; -var Vd=function(a){if(rd(a))return a[zb]();else{var b=[],c=0,e=a[v];for(;c/g,ne=/\"/g,oe=/[&<>\"]/,qe="document",te=function(a){if(a[C](ge)!=-1)return qe in ed&&!(a[C](he)!=-1)?re(a):se(a);return a},ue="a",re=function(a){var b=ed[tb][hc](ue);o(b,a); -b.normalize&&b.normalize();a=b[J][Uc];o(b,V);return a},ve="amp",we="lt",xe="gt",ye="quot",ze="#",Ae="0",se=function(a){return a[A](/&([^;]+);/g,function(b,c){switch(c){case ve:return ge;case we:return he;case xe:return ie;case ye:return je;default:if(c[Ab](0)==ze){var e=ha(Ae+c[ad](1));if(!pa(e))return String.fromCharCode(e)}return b}})};var Be=function(a,b){return(new Array(b+1))[P](a)},Ce=function(a,b,c){var e=hd(c)?a.toFixed(c):String(a),f=e[C](fd);if(f==-1)f=e[v];return Be(Ae,n.max(0,b-f))+e}; -var De=function(){return Array[y][P][I](arguments,V)}; -var Ee="(\\d*)(\\D*)",Fe="g",He=function(a,b){var c=0,e=$d(String(a))[ub](fd),f=$d(String(b))[ub](fd),g=n.max(e[v],f[v]),h=0;for(;c==0&&hb)return 1;return 0}; -// Input 5 -if("StopIteration"in ed)var Ie=ed.StopIteration;else Ie=Error("StopIteration");var Je=function(){};Je[y].Hn=function(){l(Ie)};Je[y].Kk=function(){return this}; -// Input 6 -var Ke=function(a,b,c){for(var e in a)b[I](c,a[e],e,a)},Le=function(a){var b=0;for(var c in a)b++;return b},Me=function(a){var b=[],c=0;for(var e in a)b[c++]=a[e];return b},Ne=function(a){var b=[],c=0;for(var e in a)b[c++]=e;return b},Oe=function(a){for(var b in a)return d;return j},Pe=function(a,b){var c;if(c=b in a)delete a[b];return c},Re=function(a,b,c){if(b in a)l(Error('The object already contains the key "'+b+je));Qe(a,b,c)},Se=function(a,b,c){if(b in a)return a[b];return c},Qe=function(a, -b,c){a[b]=c},Te=function(a){var b={},c=Ne(a),e=0,f=c[v];for(;e1){if(b%2)l(Error(We));var c=0;for(;c2*this.A&&this.ne();return j}return d});R.ne=function(){if(this.A!=this.u[v]){var a=0,b=0;for(;a=c[v])l(Ie);var k=c[b++];return a?k:e[k]}};return h}; -if(la[y][Jb])var df=function(a,b){return la[y][Jb][I](a,b)};else df=function(a,b){return b in a&&a[b]!==la[y][b]}; -// Input 9 -// Input 10 -var ef="Message: ",ff='\nUrl: ',hf="\nLine: ",jf="\n\nBrowser stack:\n",kf="-> ",lf="[end]\n\nJS stack traversal:\n",mf="Exception trying to expose exception! You win, we lose. ",pf=function(a,b){try{var c=nf(a);return ef+pe(c[Ib])+ff+c[Jc]+gf+c[Jc]+hf+c.lineNumber+jf+pe(c.stack+kf)+lf+pe(of(b)+kf)}catch(e){return mf+e}},qf="window.location.href",rf="Unknown error",sf="Not available",nf=function(a){var b=jd(qf);return typeof a==ud?{message:a,name:rf, -lineNumber:sf,fileName:b,stack:sf}:!a.lineNumber||!a[Jc]||!a.stack?{message:a[Ib],name:a[Hc],lineNumber:a.lineNumber||a.line||sf,fileName:a[Jc]||a.filename||a.sourceURL||b,stack:a.stack||sf}:a},of=function(a){return tf(a||arguments.callee.caller,[])},uf="[...circular reference...]",vf="(",wf=", ",xf="boolean",yf="true",zf="false",Af="[fn]",Bf="...",Cf=")\n",Df="[exception trying to get caller]\n",Ef="[...long stack...]",Ff="[end]",tf=function(a,b){var c=[];if(Qd(b,a))c[t](uf);else if(a&&b[v]<50){c[t](Gf(a)+ -vf);var e=a.arguments,f=0;for(;f0&&c[t](wf);var g,h=e[f];switch(typeof h){case md:g=h?md:pd;break;case ud:g=h;break;case sd:g=String(h);break;case xf:g=h?yf:zf;break;case S:g=(g=Gf(h))?g:Af;break;case "undefined":default:g=typeof h;break}if(g[v]>40)g=g[ad](0,40)+Bf;c[t](g)}b[t](a);c[t](Cf);try{c[t](tf(a.caller,b))}catch(k){c[t](Df)}}else a?c[t](Ef):c[t](Ff);return c[P](V)},Hf="[Anonymous]",Gf=function(a){var b=String(a);if(!If[b]){var c=/function ([^\(]+)/[kb](b);If[b]=c?c[1]:Hf}return If[b]}, -If={}; -// Input 11 -var Kf=function(a,b,c,e,f){this.Op=typeof f==sd?f:Jf++;this.Pp=e||Fd();this.Pc=a;this.Ap=b;this.zp=c};Kf[y].Pl=i;Kf[y].Ol=i;var Jf=0;Kf[y].so=function(a){this.Pl=a};Kf[y].to=function(a){this.Ol=a};Kf[y].Zj=function(a){this.Pc=a}; -// Input 12 -var Lf=function(a){this.Ld=a;this.i=i;this.C={};this.Qi=[]};Lf[y].Pc=i;var Mf=function(a,b){this.name=a;Ba(this,b)};ta(Mf[y],function(){return this[Hc]});new Mf("OFF",Infinity);new Mf("SHOUT",1200);var Nf=new Mf("SEVERE",1000),Of=new Mf("WARNING",900),Pf=new Mf("INFO",800),Qf=new Mf("CONFIG",700),Rf=new Mf("FINE",500),Sf=new Mf("FINER",400),Tf=new Mf("FINEST",300);new Mf("ALL",0);R=Lf[y];R.Kf=function(){return this.C};R.Zj=function(a){this.Pc=a}; -R.pg=function(a){if(this.Pc)return a[B]>=this.Pc[B];if(this.i)return this.i.pg(a);return d};R.log=function(a,b,c){this.pg(a)&&this.Cn(this.zm(a,b,c))};R.zm=function(a,b,c){var e=new Kf(a,String(b),this.Ld);if(c){e.so(c);e.to(pf(c,arguments.callee.caller))}return e};R.jk=function(a,b){this.log(Nf,a,b)};R.vh=function(a,b){this.log(Of,a,b)};R.Ka=function(a,b){this.log(Pf,a,b)};R.D=function(a,b){this.log(Rf,a,b)};R.vi=function(a,b){this.log(Sf,a,b)};R.Ff=function(a,b){this.log(Tf,a,b)}; -R.Cn=function(a){if(this.pg(a.Pc)){var b=this;for(;b;){b.$k(a);b=b.i}}};R.$k=function(a){var b=0;for(;bthis.ij)l(Error("[goog.structs.SimplePool] Initial cannot be greater than max"));var b=0;for(;b=0}; -// Input 16 -var Dg=function(a,b){Oa(this,a);Ea(this,b);Ca(this,this[H])};U(Dg,Zf);R=Dg[y];R.f=function(){delete this[M];delete this[H];delete this.currentTarget};R.Lb=d;R.Wc=j;R.stopPropagation=function(){this.Lb=j};R.preventDefault=function(){this.Wc=d}; -// Input 17 -var Eg=function(a,b){a&&this.He(a,b)};U(Eg,Dg);var Fg=[1,4,2];R=Eg[y];Oa(R,i);Ea(R,i);R.relatedTarget=i;R.offsetX=0;R.offsetY=0;Va(R,0);Wa(R,0);Fa(R,0);Ga(R,0);R.button=0;La(R,0);R.charCode=0;R.ctrlKey=d;R.altKey=d;R.shiftKey=d;R.metaKey=d;R.ja=i;var Gg="mouseover",Hg="mouseout",Ig="keypress"; -R.He=function(a,b){Oa(this,a[M]);Ea(this,a[H]||a.srcElement);Ca(this,b);this.relatedTarget=a[jb]?a[jb]:this[M]==Gg?a.fromElement:this[M]==Hg?a.toElement:i;this.offsetX=typeof a.layerX==sd?a.layerX:a.offsetX;this.offsetY=typeof a.layerY==sd?a.layerY:a.offsetY;Va(this,typeof a[Yc]==sd?a[Yc]:a.pageX);Wa(this,typeof a[Zc]==sd?a[Zc]:a.pageY);Fa(this,a[Sb]||0);Ga(this,a[Tb]||0);this.button=a[Hb];La(this,a[kc]||0);this.charCode=a[$b]||(this[M]==Ig?a[kc]:0);this.ctrlKey=a.ctrlKey;this.altKey=a[bb];this.shiftKey= -a[Ec];this.metaKey=a.metaKey;this.ja=a;delete this.Wc;delete this.Lb};var Jg="click",Kg="420";R.Vi=function(a){return W?this[M]==Jg?a==0:!!(this.ja[Hb]&Fg[a]):sg&&!Cg(Kg)?this.ja[Hb]==1&&a==0:this.ja[Hb]==a};R.stopPropagation=function(){this.Lb=j;if(this.ja[Cb])this.ja[Cb]();else this.ja.cancelBubble=j};R.preventDefault=function(){this.Wc=d;if(this.ja[Eb])this.ja[Eb]();else{this.ja.returnValue=d;try{La(this.ja,-1)}catch(a){}}};R.f=function(){Eg.b.f[I](this);this.ja=i}; -// Input 18 -var Lg=function(){},Mg=0;R=Lg[y];R.og=i;R.ec=i;R.Aj=i;R.src=i;Oa(R,i);R.sc=i;R.xd=i;R.ra=0;R.Vc=d;R.Nh=d;var Ng="Invalid listener argument";R.He=function(a,b,c,e,f,g){if(xd(a))this.og=j;else if(a&&a[xc]&&xd(a[xc]))this.og=d;else l(Error(Ng));this.ec=a;this.Aj=b;this.src=c;Oa(this,e);this.sc=!!f;this.xd=g;this.Nh=d;this.ra=++Mg;this.Vc=d};Na(R,function(a){if(this.og)return this.ec[I](this.xd||this.src,a);return this.ec[xc][I](this.ec,a)}); -// Input 19 -var Og={},Pg={},Qg={},Rg=new $f(0,600);Rg.Td(function(){return{A:0}});Rg.Uj(function(a){a.A=0});var Sg=new $f(0,600);Sg.Td(function(){return[]});Sg.Uj(function(a){va(a,0);delete a.Id;delete a.Cg});var Tg=new $f(0,600);Tg.Td(function(){var a=function(b){return Ug[I](a.src,a.ra,b)};return a});var Vg=function(){return new Lg},Wg=new $f(0,600);Wg.Td(Vg); -var Xg=function(){return new Eg},Yg=(function(){var a=i;if(W){a=new $f(0,600);a.Td(Xg)}return a})(),Zg={},X=function(a,b,c,e,f){if(b)if(rd(b)){var g=0;for(;g=0;w--){var E=u[w];if((g||b==E[M])&&(h||c==E.sc)){ch(E.ra);e++}}});else{var k=Bd(a);if(Qg[k]){var r=Qg[k],p=r[v]-1;for(;p>=0;p--){var s=r[p];if((g||b==s[M])&&(h||c==s.sc)){ch(s.ra);e++}}}}return e},bh=function(a,b,c){var e=Pg;if(b in e){e=e[b];if(c in e){e=e[c];var f=Bd(a);if(e[f])return e[f]}}return i},fh=function(a,b,c,e,f){var g=!!e,h=bh(a,b,g);if(h){var k=0;for(;k=0;s--){Ca(b,f[s]);e&=ih(f[s],b[M],j,b)&&b.Wc!=d}}if(r)if(k){var s=0;for(;!b.Lb&&s=0;u--){Ca(r,p[u]);g&=ih(p[u],e,j,r)}var u=0;for(;!r.Lb&&u0&&a2147483647?-1:Kh[rb](a,b||0)},Oh=function(a){Kh[lb](a)}; -// Input 23 -// Input 24 -// Input 25 -var Ph=function(){if(!!rg){this.Fb={};this.hf={};this.Ze=[]}},Qh=function(a){return vd(a)?a:yd(a)?Bd(a):V};R=Ph[y];R.j=Yf("goog.net.xhrMonitor");var Rh="Pushing context: ",Sh=" (";R.Ue=function(a){if(!!rg){var b=Qh(a);this.j.Ff(Rh+a+Sh+b+qh);this.Ze[t](b)}};var Th="Popping context: ";R.Se=function(){if(!!rg){var a=this.Ze.pop();this.j.Ff(Th+a);this.Ro(a)}};var Uh="Context is safe : ",Vh=" - ";R.sn=function(a){if(!rg)return j;var b=this.Fb[Qh(a)];this.j.D(Uh+a+Vh+b);return!b};var Wh="Opening XHR : "; -R.Fn=function(a){if(!!rg){var b=Bd(a);this.j.D(Wh+b);var c=0;for(;c0){this.j.D(this.ob(xi+this.pc+yi));this.Qb=Kh[rb](Dd(this.Ko,this),this.pc)}this.j.D(this.ob(zi));this.Ge=j;this.w[Xb](h);this.Ge=d}catch(g){this.j.D(this.ob(Ai+g[Ib]));this.ti(5,g)}});R.dispatchEvent=function(a){if(this.w){Zh.Ue(this.w);try{ji.b[D][I](this,a)}finally{Zh.Se()}}else ji.b[D][I](this,a)};var Bi="Timed out after ",Ci="ms, aborting",Di="timeout"; -R.Ko=function(){if(!(typeof dd=="undefined"))if(this.w){this.Gd=Bi+this.pc+Ci;this.ab=8;this.j.D(this.ob(this.Gd));this[D](Di);this[ob](8)}};R.ti=function(a,b){this.O=d;if(this.w){this.bc=j;this.w[ob]();this.bc=d}this.Gd=b;this.ab=a;this.ii();this.me()};var Ei="error";R.ii=function(){if(!this.Bf){this.Bf=j;this[D](li);this[D](Ei)}};var Fi="Aborting",Gi="abort";R.abort=function(a){if(this.w){this.j.D(this.ob(Fi));this.O=d;this.bc=j;this.w[ob]();this.bc=d;this.ab=a||7;this[D](li);this[D](Gi);this.me()}}; -R.f=function(){if(this.w){this.O=d;this.bc=j;this.w[ob]();this.bc=d;this.me(j)}ji.b.f[I](this)};R.rj=function(){!this.lg&&!this.Ge&&!this.bc?this.Hg():this.qj()};R.Hg=function(){this.qj()};var Hi="Local request error detected and ignored",Ii="readystatechange",Ji="Request complete",Ki="success",Li=" ["; -R.qj=function(){if(!!this.O)if(!(typeof dd=="undefined"))if(this.gf[1]&&this.sd()==4&&this.De()==2)this.j.D(this.ob(Hi));else if(this.Ge&&this.sd()==4)Kh[rb](Dd(this.rj,this),0);else{this[D](Ii);if(this.mg()){this.j.D(this.ob(Ji));this.O=d;if(this.Zi()){this[D](li);this[D](Ki)}else{this.ab=6;this.Gd=this.Nm()+Li+this.De()+oh;this.ii()}this.me()}}}; -R.me=function(a){if(this.w){ua(this.w,this.gf[0]?kd:i);var b=this.w;this.gf=this.w=i;if(this.Qb){Kh[lb](this.Qb);this.Qb=i}if(!a){Zh.Ue(b);this[D](mi);Zh.Se()}Zh.En(b)}};R.Lc=function(){return this.O};R.mg=function(){return this.sd()==4};R.Zi=function(){switch(this.De()){case 0:case 200:case 204:case 304:return j;default:return d}};R.sd=function(){return this.w?this.w[Zb]:0};var Mi="Can not get status: ";R.De=function(){try{return this.sd()>2?this.w.status:-1}catch(a){this.j.vh(Mi+a[Ib]);return-1}}; -R.Nm=function(){try{return this.sd()>2?this.w.statusText:V}catch(a){this.j.D(Mi+a[Ib]);return V}};R.Be=function(){return this.w?this.w.responseText:V};R.R=function(){return this.w?rh(this.w.responseText):undefined};R.getResponseHeader=function(a){return this.w&&this.mg()?this.w.getResponseHeader(a):undefined};var Ni=" ";R.ob=function(a){return a+Li+this.bj+Ni+this.wb+Ni+this.De()+oh}; -// Input 28 -var Oi=ji;Ha(Oi,oi);Oi.rp=pi;Oi.Fp=qi;Oi.sp=ni;Oi.Xo=vi;Oi.$o=wi;Oi.Np=ki; -// Input 29 -var Pi=function(a,b){this.x=hd(a)?a:0;this.y=hd(b)?b:0};Pi[y].na=function(){return new Pi(this.x,this.y)};ta(Pi[y],function(){return vf+this.x+wf+this.y+qh});var Qi=function(a,b){return new Pi(a.x-b.x,a.y-b.y)}; -// Input 30 -var Ri=function(a,b){za(this,a);Ua(this,b)},Si=function(a,b){if(a==b)return j;if(!a||!b)return d;return a[z]==b[z]&&a[O]==b[O]};R=Ri[y];R.na=function(){return new Ri(this[z],this[O])};var Ti=" x ";ta(R,function(){return vf+this[z]+Ti+this[O]+qh});R.Uk=function(){return this[z]*this[O]};R.Ed=function(){return!this.Uk()};R.ceil=function(){za(this,n.ceil(this[z]));Ua(this,n.ceil(this[O]));return this};R.floor=function(){za(this,n[vb](this[z]));Ua(this,n[vb](this[O]));return this}; -R.round=function(){za(this,n[nb](this[z]));Ua(this,n[nb](this[O]));return this};R.scale=function(a){this.width*=a;this.height*=a;return this}; -// Input 31 -var Ui,Vi=function(a,b){xa(a,b)},Wi=function(a){var b=a[ib];return b&&typeof b[ub]==S?b[ub](Ni):[]},Xi=function(a){var b=Wi(a),c=1,e=1;for(;e=0}return d},Lj="tabIndex",Mj=function(a,b){if(b)Qa(a,0);else a.removeAttribute(Lj)},Nj="innerText", -Pj=function(a){var b;if(W&&Nj in a)b=a.innerText[A](/(\r\n|\r|\n)/g,Hj);else{var c=[];Oj(a,c,j);b=c[P](V)}b=b[A](/\xAD/g,V);b=b[A](/ +/g,Ni);if(b!=Ni)b=b[A](/^\s*/,V);return b},Oj=function(a,b,c){if(!(a[Lb]in Gj))if(a[sb]==3)c?b[t](String(a[Uc])[A](/(\r\n|\r|\n)/g,V)):b[t](a[Uc]);else if(a[Lb]in Ij)b[t](Ij[a[Lb]]);else{var e=a[J];for(;e;){Oj(e,b,c);e=e[Lc]}}},Qj=function(a){if(a&&typeof a[v]==sd)if(yd(a))return typeof a.item==S||typeof a.item==ud;else if(xd(a))return typeof a.item==S;return d},Sj= -function(a,b,c){return Rj(a,function(e){return(!b||e[Lb]==b)&&(!c||Zi(e,c))},j)},Rj=function(a,b,c,e){if(!c)a=a[N];var f=e==i,g=0;for(;a&&(f||g<=e);){if(b(a))return a;a=a[N];g++}return i},bj=function(a){this.p=a||ed[tb]||na};R=bj[y];R.a=function(a){return vd(a)?this.p[wb](a):a};var Tj="*",Uj="528",Vj="8"; -R.ye=function(a,b,c){var e=c||this.p,f=a&&a!=Tj?a[Vc]():V;if(e.querySelectorAll&&(f||b)&&(!sg||this.Dd()||Cg(Uj))){var g=e.querySelectorAll(f+(b?fd+b:V));return W&&Cg(Vj)?Wd(g):g}if(b&&e.getElementsByClassName){var h=e.getElementsByClassName(b);if(f){var k=[],r=0,p;for(;p=h[r];r++)f==p[Lb][Vc]()&&k[t](p);return k}else return h}var h=e[Tc](f||Tj);if(b){var k=[],r=0,p;for(;p=h[r];r++){var s=p[ib];typeof s[ub]==S&&Qd(s[ub](Ni),b)&&k[t](p)}return k}else return h};R.wh=bj[y].ye; -R.Pm=function(a){return oj(a||this.Vf())};var Wj=' name="',Xj=' type="';R.c=function(a,b){if(W&&b&&(b[Hc]||b[M])){var c=[he,a];b[Hc]&&c[t](Wj,pe(b[Hc]),je);if(b[M]){c[t](Xj,pe(b[M]),je);b=Cd(b);delete b[M]}c[t](ie);a=c[P](V)}var e=this[hc](a);b&&kj(e,b);if(arguments[v]>2){function f(k){if(k)this[q](e,vd(k)?this[Bb](k):k)}var g=2;for(;g0)?Md(Qj(h)?Vd(h):h,f,this):f[I](this,h)}}return e};R.createElement=function(a){return this.p[hc](a)}; -R.createTextNode=function(a){return this.p[Bb](a)};var Yj="CSS1Compat",Z="div",Zj="position:absolute;width:0;height:0;width:1",$j="1px",ak="BackCompat";R.Dd=function(){var a=this.p;if(a.compatMode)return a.compatMode==Yj;if(sg){var b=a[hc](Z);Ja(b[F],Zj);return(a.compatMode=b[F][z]==$j?ak:Yj)==Yj}return d};var bk="script",ck="document.parentWindow=window"; -R.Vf=function(){var a=this.p;if(a.parentWindow)return a.parentWindow;if(sg&&!Cg(mj)&&!tg){var b=a[hc](bk);o(b,ck);var c=a[$c];c[q](b);c[Nb](b);return a.parentWindow}return a[Gc]};R.Ci=function(){var a=this.p;return!sg&&this.Dd()?a[$c]:a[Mb]};R.Wb=function(){var a=this.Ci();return new Pi(a[pc],a[Ya])};R.appendChild=sj;R.removeNode=vj;R.replaceNode=wj;R.Fi=yj;Pa(R,Aj);R.om=Sj; -// Input 34 -// Input 35 -var dk=/^(?:([^:\/?#]+):)?(?:\/\/(?:([^\/?#]*)@)?([^\/?#:@]*)(?::([0-9]+))?)?([^?#]+)?(?:\?([^#]*))?(?:#(.*))?$/,ek=function(a){return a[Vb](dk)}; -// Input 36 -var fk=function(a,b){var c;if(a instanceof fk){this.Yc(b==i?a.gb:b);this.dh(a.Mb);this.hh(a.be);this.Wg(a.ld);this.ah(a.Uc);this.$g(a.getPath());this.bh(a.Ma.na());this.Xg(a.pd)}else if(a&&(c=ek(String(a)))){this.Yc(!!b);this.dh(c[1],j);this.hh(c[2],j);this.Wg(c[3],j);this.ah(c[4]);this.$g(c[5],j);this.bh(c[6]);this.Xg(c[7],j)}else{this.Yc(!!b);this.Ma=new gk(i,this,this.gb)}};R=fk[y];R.Mb=V;R.be=V;R.ld=V;R.Uc=i;R.Od=V;R.pd=V;R.un=d;R.gb=d;var hk="//",ik="?"; -ta(R,function(){if(this.ha)return this.ha;var a=[];this.Mb&&a[t](jk(this.Mb,kk),Ih);if(this.ld){a[t](hk);this.be&&a[t](jk(this.be,kk),nh);a[t](lk(this.ld));this.Uc!=i&&a[t](Ih,String(this.Uc))}this.Od&&a[t](jk(this.Od,mk));var b=String(this.Ma);b&&a[t](ik,b);this.pd&&a[t](ze,jk(this.pd,nk));return this.ha=a[P](V)});R.na=function(){return ok(this.Mb,this.be,this.ld,this.Uc,this.Od,this.Ma.na(),this.pd,this.gb)}; -R.dh=function(a,b){this.nb();delete this.ha;if(this.Mb=b?a?oa(a):V:a)this.Mb=this.Mb[A](/:$/,V);return this};R.hh=function(a,b){this.nb();delete this.ha;this.be=b?a?oa(a):V:a;return this};R.Wg=function(a,b){this.nb();delete this.ha;this.ld=b?a?oa(a):V:a;return this};R.ah=function(a){this.nb();delete this.ha;if(a){a=ha(a);if(pa(a)||a<0)l(Error("Bad port number "+a));this.Uc=a}else this.Uc=i;return this};R.getPath=function(){return this.Od}; -R.$g=function(a,b){this.nb();delete this.ha;this.Od=b?a?oa(a):V:a;return this};R.bh=function(a){this.nb();delete this.ha;if(a instanceof gk){this.Ma=a;this.Ma.th=this;this.Ma.Yc(this.gb)}else this.Ma=new gk(a,this,this.gb);return this};R.Vd=function(a,b){this.nb();delete this.ha;this.Ma.J(a,b);return this};R.eb=function(a){return this.Ma.Q(a)};R.Xg=function(a,b){this.nb();delete this.ha;this.pd=b?a?oa(a):V:a;return this};var pk="zx"; -R.yg=function(){this.nb();this.Vd(pk,n[vb](n.random()*2147483648)[ab](36)+(n[vb](n.random()*2147483648)^(new Date)[Pc]())[ab](36));return this};R.nb=function(){if(this.un)l(Error("Tried to modify a read-only Uri"))};R.Yc=function(a){this.gb=a;this.Ma&&this.Ma.Yc(a)};var ok=function(a,b,c,e,f,g,h,k){var r=new fk(i,k);a&&r.dh(a);b&&r.hh(b);c&&r.Wg(c);e&&r.ah(e);f&&r.$g(f);g&&r.bh(g);h&&r.Xg(h);return r}; -var lk=function(a){if(vd(a))return da(a);return i},qk=/^[a-zA-Z0-9\-_.!~*'():\/;?]*$/,jk=function(a,b){var c=i;if(vd(a)){c=a;qk[gb](c)||(c=encodeURI(a));if(c[Qb](b)>=0)c=c[A](b,rk)}return c},sk="%",rk=function(a){var b=a[qc](0);return sk+(b>>4&15)[ab](16)+(b&15)[ab](16)},kk=/[#\/\?@]/g,mk=/[\#\?]/g,nk=/#/g,gk=function(a,b,c){this.T=new cf;this.th=b||i;this.gb=!!c;if(a){var e=a[ub](ge),f=0;for(;f=0){h=e[f][uc](0,g);k=e[f][uc](g+1)}else h=e[f];h=oa(h[A](/\+/g, -Ni));h=this.Yb(h);this.add(h,k?oa(k[A](/\+/g,Ni)):V)}}};R=gk[y];R.A=0;R.xe=function(){return this.A};R.add=function(a,b){this.Cd();a=this.Yb(a);if(this.Ta(a)){var c=this.T.Q(a);rd(c)?c[t](b):this.T.J(a,[c,b])}else this.T.J(a,b);this.A++;return this};Ia(R,function(a){a=this.Yb(a);if(this.T.Ta(a)){this.Cd();var b=this.T.Q(a);if(rd(b))this.A-=b[v];else this.A--;return this.T[ac](a)}return d});Ra(R,function(){this.Cd();this.T[Cc]();this.A=0});R.Ed=function(){return this.A==0}; -R.Ta=function(a){a=this.Yb(a);return this.T.Ta(a)};R.rb=function(){var a=this.T.tb(),b=this.T.rb(),c=[],e=0;for(;e0&&a[t](ge);a[t](g,Id,be(h[k]));b++}}else{b>0&&a[t](ge);a[t](g,Id,be(h));b++}}return this.ha=a[P](V)}); -R.Cd=function(){delete this.ha;this.th&&delete this.th.ha};R.na=function(){var a=new gk;a.T=this.T.na();return a};R.Yb=function(a){var b=String(a);if(this.gb)b=b[Vc]();return b};R.Yc=function(a){if(a&&!this.gb){this.Cd();bf(this.T,function(b,c){var e=c[Vc]();if(c!=e){this[ac](c);this.add(e,b)}},this)}this.gb=a};R.extend=function(){var a=0;for(;a=a[G]&&b.x<=a[bd]&&b.y>=a.top&&b.y<=a[sc]}; -// Input 41 -// Input 42 -var El=function(a,b,c,e){Da(this,a);this.top=b;za(this,c);Ua(this,e)};El[y].na=function(){return new El(this[G],this.top,this[z],this[O])};var Fl="w x ",Gl="h)";ta(El[y],function(){return vf+this[G]+wf+this.top+Vh+this[z]+Fl+this[O]+Gl});El[y].pn=function(a){var b=n.max(this[G],a[G]),c=n.min(this[G]+this[z],a[G]+a[z]);if(b<=c){var e=n.max(this.top,a.top),f=n.min(this.top+this[O],a.top+a[O]);if(e<=f){Da(this,b);this.top=e;za(this,c-b);Ua(this,f-e);return j}}return d}; -Pa(El[y],function(a){return this[G]<=a[G]&&this[G]+this[z]>=a[G]+a[z]&&this.top<=a.top&&this.top+this[O]>=a.top+a[O]}); -// Input 43 -// Input 44 -var Hl={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400", -darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc", -ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a", -lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370d8",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1", -moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#d87093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57", -seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"}; -// Input 45 -var Il="hex",Jl="rgb",Kl="named",Pl=function(a){var b={};a=String(a);var c=a[Ab](0)==ze?a:ze+a;if(Ll[gb](c)){b.fg=Ml(c);Oa(b,Il);return b}else{var e=Nl(a);if(e[v]){b.fg=Ol(e[0],e[1],e[2]);Oa(b,Jl);return b}else if(Hl){var f=Hl[a[Vc]()];if(f){b.fg=f;Oa(b,Kl);return b}}}l(Error(a+" is not a valid color string"))},Ql=/#(.)(.)(.)/,Rl="#$1$1$2$2$3$3",Ml=function(a){if(!Ll[gb](a))l(Error("'"+a+"' is not a valid hex color"));if(a[v]==4)a=a[A](Ql,Rl);return a[Vc]()},Sl=function(a){a=Ml(a);var b=fa(a[ad](1, -2),16),c=fa(a[ad](3,2),16),e=fa(a[ad](5,2),16);return[b,c,e]},Ol=function(a,b,c){a=ha(a);b=ha(b);c=ha(c);if(pa(a)||a<0||a>255||pa(b)||b<0||b>255||pa(c)||c<0||c>255)l(Error('"('+a+Gh+b+Gh+c+'") is not a valid RGB color'));var e=Tl(a[ab](16)),f=Tl(b[ab](16)),g=Tl(c[ab](16));return ze+e+f+g};var Ll=/^#(?:[0-9a-f]{3}){1,2}$/i; -var Ul=/^(?:rgb)?\((0|[1-9]\d{0,2}),\s?(0|[1-9]\d{0,2}),\s?(0|[1-9]\d{0,2})\)$/i,Nl=function(a){var b=a[Vb](Ul);if(b){var c=ha(b[1]),e=ha(b[2]),f=ha(b[3]);if(c>=0&&c<=255&&e>=0&&e<=255&&f>=0&&f<=255)return[c,e,f]}return[]},Tl=function(a){return a[v]==1?Ae+a:a}; -// Input 46 -var Vl,Wl,Xl,Yl,Zl,$l,am="Firefox",bm="iPhone",cm="iPod",dm="Android",em="Chrome",fm="Safari";(function(){$l=Zl=Yl=Xl=Wl=Vl=d;var a=jg();if(!!a)if(a[C](am)!=-1)Vl=j;else if(a[C](pg)!=-1)Wl=j;else if(a[C](bm)!=-1||a[C](cm)!=-1)Xl=j;else if(a[C](dm)!=-1)Yl=j;else if(a[C](em)!=-1)Zl=j;else if(a[C](fm)!=-1)$l=j})();var gm=Wl; -// Input 47 -var hm,jm=function(a,b,c){vd(b)?im(a,c,b):Ke(b,Ed(im,a))},im=function(a,b,c){a[F][km(c)]=b},lm=function(a,b){var c=cj(a);if(c[Gc]&&c[Gc].getComputedStyle){var e=c[Gc].getComputedStyle(a,V);if(e)return e[b]}return i};var mm=function(a,b){return lm(a,b)||(a.currentStyle?a.currentStyle[b]:i)||a[F][b]},nm="position",om=function(a){return mm(a,nm)}; -var pm="px",qm=function(a,b,c){var e,f;if(b instanceof Pi){e=b.x;f=b.y}else{e=b;f=c}Da(a[F],typeof e==sd?e+pm:e);a[F].top=typeof f==sd?f+pm:f},rm=function(a){var b;b=a?a[sb]==9?a:cj(a):na;if(W&&!dj(b).Dd())return b[Mb];return b[$c]},sm=function(a){var b=a[eb]();if(W){var c=a.ownerDocument;b.left-=c[$c][rc]+c[Mb][rc];b.top-=c[$c][vc]+c[Mb][vc]}return b},tm="fixed",um="static",vm=function(a){if(W)return a.offsetParent;var b=cj(a),c=mm(a,nm),e=c==tm||c==Ak,f=a[N];for(;f&&f!=b;f=f[N]){c=mm(f,nm);e=e&& -c==um&&f!=b[$c]&&f!=b[Mb];if(!e&&(f.scrollWidth>f[mb]||f[jc]>f[oc]||c==tm||c==Ak))return f}return i},wm="overflow",xm="visible",Am=function(a){var b=new yl(0,Infinity,Infinity,0),c=dj(a),e=c.Ci(),f,g=a;for(;g=vm(g);)if((!W||g[mb]!=0)&&(g.scrollWidth!=g[mb]||g[jc]!=g[oc])&&mm(g,wm)!=xm){var h=ym(g),k=zm(g);h.x+=k.x;h.y+=k.y;b.top=n.max(b.top,h.y);b.right=n.min(b[bd],h.x+g[mb]);b.bottom=n.min(b[sc],h.y+g[oc]);Da(b,n.max(b[G],h.x));f=f||g!=e}var r=e[pc],p=e[Ya];if(sg){b.left+=r;b.top+=p}else{Da(b,n.max(b[G], -r));b.top=n.max(b.top,p)}if(!f||sg){b.right+=r;b.bottom+=p}var s=c.Pm();b.right=n.min(b[bd],r+s[z]);b.bottom=n.min(b[sc],p+s[O]);return b.top>=0&&b[G]>=0&&b[sc]>b.top&&b[bd]>b[G]?b:i},Bm="1.9",Cm="borderLeftWidth",Dm="borderRightWidth",Em="borderTopWidth",zm=function(a){if(rg&&!Cg(Bm)){var b=ga(lm(a,Cm));if(Fm(a)){var c=a[yb]-a[mb]-b-ga(lm(a,Dm));b+=c}return new Pi(b,ga(lm(a,Em)))}return new Pi(a[rc],a[vc])},Gm="1.8.0.11",Hm="TR",ym=function(a){var b,c=cj(a),e=mm(a,nm),f=rg&&c[Wb]&&!a[eb]&&e==Ak&& -(b=c[Wb](a))&&(b[Sb]<0||b[Tb]<0);if(typeof hm=="undefined")hm=gm&&!Cg(Gm);var g=new Pi(0,0),h=rm(c);if(a==h)return g;if(a[eb]){b=sm(a);var k=dj(c).Wb();g.x=b[G]+k.x;g.y=b.top+k.y}else if(c[Wb]&&!f&&!hm){b=c[Wb](a);var r=c[Wb](h);g.x=b[Sb]-r[Sb];g.y=b[Tb]-r[Tb]}else{var p=a;do{g.x+=p.offsetLeft;g.y+=p[Mc];if(p!=a){g.x+=p[rc]||0;g.y+=p[vc]||0}if(sg&&om(p)==tm){g.x+=c[Mb][pc];g.y+=c[Mb][Ya];break}p=p.offsetParent}while(p&&p!=a);if(qg||sg&&e==Ak)g.y-=c[Mb][Mc];p=a;for(;(p=vm(p))&&p!=c[Mb];){g.x-=p[pc]; -if(!qg||p[Fc]!=Hm)g.y-=p[Ya]}}return g},Jm=function(a,b){var c=new Pi(0,0),e=pj(cj(a)),f=a;do{var g=e==b?ym(f):Im(f);c.x+=g.x;c.y+=g.y}while(e&&e!=b&&(f=e.frameElement)&&(e=e[Ob]));return c},Km=function(a,b,c){if(b.p!=c.p){var e=b.p[Mb],f=Jm(e,c.Vf());f=Qi(f,ym(e));if(W&&!b.Dd())f=Qi(f,b.Wb());a.left+=f.x;a.top+=f.y}},Im=function(a){var b=new Pi;if(a[sb]==1)if(a[eb]){var c=sm(a);b.x=c[G];b.y=c.top}else{var e=dj(a).Wb(),f=ym(a);b.x=f.x-e.x;b.y=f.y-e.y}else{b.x=a[Yc];b.y=a[Zc]}return b},Lm=function(a, -b,c){var e=ym(a);if(b instanceof Pi){c=b.y;b=b.x}qm(a,a.offsetLeft+(b-e.x),a[Mc]+(c-e.y))},Mm=function(a,b,c){var e;if(b instanceof Ri){e=b[O];b=b[z]}else{if(c==undefined)l(Error("missing height argument"));e=c}za(a[F],typeof b==sd?n[nb](b)+pm:b);Ua(a[F],typeof e==sd?n[nb](e)+pm:e)},Nm="display",Om="inline",Pm=function(a){if(mm(a,Nm)!=sl)return qg?new Ri(a[yb]||a[mb],a[Qc]||a[oc]):new Ri(a[yb],a[Qc]);var b=a[F],c=b[Kc],e=b.visibility,f=b.position;Xa(b,Bk);wa(b,Ak);Ta(b,Om);var g,h;if(qg){g=a[yb]|| -a[mb];h=a[Qc]||a[oc]}else{g=a[yb];h=a[Qc]}Ta(b,c);wa(b,f);Xa(b,e);return new Ri(g,h)},Qm=function(a){var b=ym(a),c=Pm(a);return new El(b.x,b.y,c[z],c[O])},Rm={},km=function(a){return Rm[a]||(Rm[a]=String(a)[A](/\-([a-z])/g,function(b,c){return c[Nc]()}))},Sm="opacity",Tm="MozOpacity",Um="filter",Vm="alpha(opacity=",Wm=function(a,b){var c=a[F];if(Sm in c)c.opacity=b;else if(Tm in c)c.MozOpacity=b;else if(Um in c)c.filter=b===V?V:Vm+b*100+qh},Xm=function(a,b){Ta(a[F],b?V:sl)},Ym="head",Zm="body",an= -function(a,b){var c=dj(b),e=i;if(W)e=c.p.createStyleSheet();else{var f=c.wh(Ym)[0];if(!f){var g=c.wh(Zm)[0];f=c.c(Ym);g[N][Fb](f,g)}e=c.c(gj);c[q](f,e)}$m(e,a);return e},bn="innerHTML",$m=function(a,b){if(W)Ja(a,b);else a[sg?Nj:bn]=b}; -var cn=function(a){return a?vd(a)||a[sb]==3?j:Od(a,cn):d},dn=rg&&!Cg(Bm),en="rtl",fn="direction",Fm=function(a){return en==mm(a,fn)},gn=rg?"MozUserSelect":sg?"WebkitUserSelect":i,hn="unselectable",jn=function(a,b,c){var e=!c?a[Tc](Tj):i;if(gn){var f=b?sl:V;a[F][gn]=f;if(e){var g=0,h;for(;h=e[g];g++)h[F][gn]=f}}else if(W||qg){var f=b?gh:V;a[tc](hn,f);if(e){var g=0,h;for(;h=e[g];g++)h[tc](hn,f)}}}; -// Input 48 -var kn=function(a,b,c,e){mh[I](this);if(!rd(a)||!rd(b))l(Error("Start and end parameters must be arrays"));if(a[v]!=b[v])l(Error("Start and end points must be the same length"));this.Yd=a;this.Ml=b;this.te=c;this.Dh=e;Ka(this,[])};U(kn,mh);var ln={},mn=i,nn=function(){Kh[lb](mn);var a=Fd();for(var b in ln)ln[b].fi(a);mn=Oe(ln)?i:Kh[rb](nn,20)},on=function(a){var b=Bd(a);b in ln||(ln[b]=a);mn||(mn=Kh[rb](nn,20))},pn=function(a){var b=Bd(a);delete ln[b];if(mn&&Oe(ln)){Kh[lb](mn);mn=i}};R=kn[y]; -R.Z=0;R.xi=0;R.Da=0;R.mc=i;R.ri=i;R.rg=i;R.play=function(a){if(a||this.Z==0){this.Da=0;Ka(this,this.Yd)}else if(this.Z==1)return d;pn(this);this.mc=Fd();if(this.Z==-1)this.mc-=this.te*this.Da;this.ri=this.mc+this.te;this.rg=this.mc;this.Da||this.gc();this.Sn();this.Z==-1&&this.Tn();this.Z=1;on(this);this.fi(this.mc);return j};R.stop=function(a){pn(this);this.Z=0;if(a)this.Da=1;this.sh(this.Da);this.Un();this.Sc()};R.pause=function(){if(this.Z==1){pn(this);this.Z=-1;this.Rn()}}; -R.f=function(){this.Z!=0&&this[$a](d);this.Nn();kn.b.f[I](this)};R.gi=function(){this.h()};R.fi=function(a){this.Da=(a-this.mc)/(this.ri-this.mc);if(this.Da>=1)this.Da=1;this.xi=1000/(a-this.rg);this.rg=a;xd(this.Dh)?this.sh(this.Dh(this.Da)):this.sh(this.Da);if(this.Da==1){this.Z=0;pn(this);this.Pn();this.Sc()}else this.Z==1&&this.Dg()};R.sh=function(a){Ka(this,new Array(this.Yd[v]));var b=0;for(;b=this.ef[c];)c+=2;return c==0?0:this.ef[c-1]};R.um=function(a){return Xn(this.Rf(a))};R.Am=function(a){return this.qh[this.Wi(a)?3:1]};R.Rf=function(a){return this.pk-this.Ai(a)}; -R.Jm=function(a){var b=-this.Rf(a),c=[b<0?Wn:Vn];b=n.abs(b);c[t](Ce(n[vb](b/60)%100,2),Ce(b%60,2));return c[P](V)};R.Mm=function(a){return this.qh[this.Wi(a)?2:0]};R.Wi=function(a){return this.Ai(a)>0}; -// Input 53 -var $n="DateTimeConstants",ao=function(){this.ga=On($n,Mn());this.Jg=[]};R=ao[y];R.Vl=function(a,b){b||(b=Rn(a[cd]()));var c=(a[cd]()-b.Rf(a))*60000,e=c?new Date(a[Pc]()+c):a,f=e;if(e[cd]()!=a[cd]()){c+=c>0?-86400000:86400000;f=new Date(a[Pc]()+c)}var g=[],h=0;for(;h0?1:0;return a>=4?this.ga.Yo[c]:this.ga.Zo[c]}; -R.nm=function(a,b){var c=b.getFullYear();if(c<0)c=-c;return a==2?Ce(c%100,2):String(c)};R.gm=function(a,b){var c=b.getMonth();switch(a){case 5:return this.ga.bp[c];case 4:return this.ga.ap[c];case 3:return this.ga.dp[c];default:return Ce(c+1,a)}};R.Zl=function(a,b){return Ce(b[Ic]()||24,a)};R.em=function(a,b){return(b[Pc]()%1000/1000).toFixed(n.min(3,a))[ad](2)+(a>3?Ce(0,a-3):V)};R.bm=function(a,b){var c=b.getDay();return a>=4?this.ga.op[c]:this.ga.fp[c]}; -R.$l=function(a,b){var c=b[Ic]();return this.ga.Uo[c>=12&&c<24?1:0]};R.Yl=function(a,b){return Ce(b[Ic]()%12||12,a)};R.Wl=function(a,b){return Ce(b[Ic]()%12,a)};R.Xl=function(a,b){return Ce(b[Ic](),a)};R.jm=function(a,b){var c=b.getDay();switch(a){case 5:return this.ga.ip[c];case 4:return this.ga.lp[c];case 3:return this.ga.kp[c];default:return Ce(c,1)}}; -R.km=function(a,b){var c=b.getMonth();switch(a){case 5:return this.ga.hp[c];case 4:return this.ga.gp[c];case 3:return this.ga.jp[c];default:return Ce(c+1,a)}};R.hm=function(a,b){var c=n[vb](b.getMonth()/3);return a<4?this.ga.ep[c]:this.ga.cp[c]};R.am=function(a,b){return Ce(b.getDate(),a)};R.fm=function(a,b){return Ce(b.getMinutes(),a)};R.im=function(a,b){return Ce(b.getSeconds(),a)};R.lm=function(a,b,c){return a<4?c.Jm(b):c.um(b)};R.mm=function(a,b,c){return a<4?c.Mm(b):c.Am(b)}; -var bo="G",co="y",eo="M",fo="k",go="S",ho="E",io="h",jo="K",ko="H",lo="c",mo="L",no="Q",oo="d",po="m",qo="s",ro="v",so="z",to="Z"; -R.dm=function(a,b,c,e,f){var g=a[v];switch(a[Ab](0)){case bo:return this.cm(g,c);case co:return this.nm(g,c);case eo:return this.gm(g,c);case fo:return this.Zl(g,e);case go:return this.em(g,e);case ho:return this.bm(g,c);case ue:return this.$l(g,e);case io:return this.Yl(g,e);case jo:return this.Wl(g,e);case ko:return this.Xl(g,e);case lo:return this.jm(g,c);case mo:return this.km(g,c);case no:return this.hm(g,c);case oo:return this.am(g,c);case po:return this.fm(g,e);case qo:return this.im(g,e); -case ro:return f.wk;case so:return this.mm(g,b,f);case to:return this.lm(g,b,f);default:return V}}; -// Input 54 -var uo,vo="role",wo=function(a,b){if(rg||uo){a[tc](vo,b);a.Kp=b}},xo="aria-",yo=function(a,b,c){if(rg||uo)a[tc](xo+b,c)}; -// Input 55 -// Input 56 -var zo=function(a){this.B=a};U(zo,Zf);var Ao=new $f(0,100);R=zo[y];R.l=function(a,b,c,e,f){if(rd(b)){var g=0;for(;g=48&&a<=57)return j;if(a>=96&&a<=106)return j;if(a>=65&&a<=90)return j;if(a==27&&sg)return d;switch(a){case 13:case 27:case 32:case 63:case 107:case 109:case 110:case 111:case 186:case 189:case 187:case 188:case 190:case 191:case 192:case 222:case 219:case 220:case 221:return j;default:return d}},Io=function(a){if(a>=48&&a<=57)return j;if(a>=96&&a<=106)return j;if(a>=65&&a<=90)return j;switch(a){case 32:case 63:case 107:case 109:case 110:case 111:case 186:case 189:case 187:case 188:case 190:case 191:case 192:case 222:case 219:case 220:case 221:return j; -default:return d}}; -// Input 59 -var Jo="mousedown",Ko=function(a,b,c){Ea(this,a);this.Wf=b||a;this.tg=c||new El(NaN,NaN,NaN,NaN);this.p=a.ownerDocument||a[tb];X(this.Wf,Jo,this.qk,d,this)};U(Ko,mh);R=Ko[y];Fa(R,0);Ga(R,0);R.lh=0;R.mh=0;R.jd=0;R.kd=0;R.pa=j;R.mb=d;R.Ri=0;R.Gn=0;R.zb=function(a){this.pa=a};var Lo="mousemove",Mo="mouseup",No="scroll"; -R.f=function(){Ko.b.f[I](this);ah(this.Wf,Jo,this.qk,d,this);ah(this.p,Lo,this.Bg,d,this);ah(this.p,Mo,this.yc,d,this);if(rg)try{ah(m.top,Hg,this.vj,d,this)}catch(a){}this.Qd&&ah(this.Qd,No,this.Ig,d,this);delete this[H];delete this.Wf}; -R.qk=function(a){if(this.pa&&!this.mb){if(this.Ri==0){this.Ui(a);if(this.mb)a[Eb]();else return}else a[Eb]();X(this.p,Lo,this.Bg,d,this);X(this.p,Mo,this.yc,d,this);if(rg)try{X(m.top,Hg,this.vj,d,this)}catch(a){}this.Qd&&X(this.Qd,No,this.Ig,d,this);this.lh=a[Sb];Fa(this,this.lh);this.mh=a[Tb];Ga(this,this.mh);this.jd=this[H].offsetLeft;this.kd=this[H][Mc];this.Nd=dj(this.p).Wb();this.Gn=Fd()}};var Oo="start";R.Ui=function(a){if(this[D](new Po(Oo,this,a[Yc],a[Zc],a))!==d)this.mb=j}; -R.yc=function(a){ah(this.p,Lo,this.Bg,d,this);ah(this.p,Mo,this.yc,d,this);this.Qd&&ah(this.Qd,No,this.Ig,d,this);if(this.mb){this.mb=d;var b=this.dj(this.jd),c=this.ej(this.kd);this[D](new Po(tn,this,a[Yc],a[Zc],a,b,c))}};R.vj=function(a){this.mb&&!a[jb]&&this.yc(a)};var Qo="beforedrag"; -R.Bg=function(a){if(this.pa)if(W&&!a[Hb])this.yc(a);else{var b=a[Sb]-this[Sb],c=a[Tb]-this[Tb];Fa(this,a[Sb]);Ga(this,a[Tb]);if(!this.mb){var e=this.lh-this[Sb],f=this.mh-this[Tb];if(e*e+f*f>this.Ri){this.Ui(a);if(!this.mb){this.yc(a);return}}}var g=this.Lh(b,c),h=g.x,k=g.y;if(this.mb)if(this[D](new Po(Qo,this,a[Yc],a[Zc],a,h,k))!==d){this.li(a,h,k);a[Eb]()}}}; -R.Lh=function(a,b){var c=dj(this.p).Wb();a+=c.x-this.Nd.x;b+=c.y-this.Nd.y;this.Nd=c;this.jd+=a;this.kd+=b;var e=this.dj(this.jd),f=this.ej(this.kd);return new Pi(e,f)};R.Ig=function(a){var b=this.Lh(0,0);Va(a,this.Nd.x-this[Sb]);Wa(a,this.Nd.x-this[Tb]);this.li(a,b.x,b.y)};var Ro="drag";R.li=function(a,b,c){this.Fl(b,c);this[D](new Po(Ro,this,a[Yc],a[Zc],a,b,c))};R.dj=function(a){var b=this.tg,c=!pa(b[G])?b[G]:i,e=!pa(b[z])?b[z]:0;return n.min(c!=i?c+e:Infinity,n.max(c!=i?c:-Infinity,a))}; -R.ej=function(a){var b=this.tg,c=!pa(b.top)?b.top:i,e=!pa(b[O])?b[O]:0;return n.min(c!=i?c+e:Infinity,n.max(c!=i?c:-Infinity,a))};R.Fl=function(a,b){Da(this[H][F],a+pm);this[H][F].top=b+pm};var Po=function(a,b,c,e,f,g,h){Dg[I](this,a);Oa(this,a);Va(this,c);Wa(this,e);this.qp=f;Da(this,hd(g)?g:b.jd);this.top=hd(h)?h:b.kd;this.vp=b};U(Po,Dg); -// Input 60 -var So=function(){};ld(So);So[y].In=0;So[y].Em=function(){return Ih+(this.In++)[ab](36)}; -// Input 61 -var Uo=function(a){mh[I](this);this.d=a||dj();this.Pd=To};U(Uo,mh);Uo[y].kn=So.qb();var To=i,Vo="disable",Wo="enable",Xo="highlight",Yo="unhighlight",Zo="activate",$o="deactivate",ap="unselect",bp="check",cp="uncheck",dp="open",ep="close",fp=function(a,b){switch(a){case 1:return b?Vo:Wo;case 2:return b?Xo:Yo;case 4:return b?Zo:$o;case 8:return b?Uk:ap;case 16:return b?bp:cp;case 32:return b?Eo:Co;case 64:return b?dp:ep;default:}l(Error("Invalid component state"))};R=Uo[y];R.$a=i;R.d=i;R.o=d;R.e=i; -R.Pd=i;R.Rc=i;R.i=i;R.C=i;R.Sa=i;R.Ck=d;R.Xb=function(){return this.$a||(this.$a=this.kn.Em())};R.Xj=function(a){if(this.i&&this.i.Sa){Pe(this.i.Sa,this.$a);Re(this.i.Sa,a,this)}this.$a=a};R.a=function(){return this.e};R.jc=function(a){this.e=a};var gp="Unable to set parent component";R.Zg=function(a){if(this==a)l(Error(gp));if(a&&this.i&&this.$a&&this.i.yi(this.$a)&&this.i!=a)l(Error(gp));this.i=a};R.Sf=function(){return this.i};R.c=function(){this.e=this.d[hc](Z)};R.xb=function(a){this.Cj(a)}; -var hp="Component already rendered";R.Cj=function(a,b){if(this.o)l(Error(hp));this.e||this.c();a?a[Fb](this.e,b||i):this.d.p[Mb][q](this.e);if(!this.i||this.i.o)this.v()};R.M=function(a){if(this.o)l(Error(hp));else if(a&&this.ma(a)){this.Ck=j;if(!this.d||this.d.p!=cj(a))this.d=dj(a);this.Ua(a);this.v()}else l(Error("Invalid element to decorate"))};R.ma=function(){return j};R.Ua=function(a){this.e=a};R.v=function(){this.o=j;this.ka(function(a){!a.o&&a.a()&&a.v()})}; -R.aa=function(){this.ka(function(a){a.o&&a.aa()});this.o=d};R.f=function(){Uo.b.f[I](this);this.o&&this.aa();this.ka(function(a){a.h()});!this.Ck&&this.e&&vj(this.e);this.i=this.Rc=this.e=this.Sa=this.C=i};R.$j=function(a){this.Rc=a};R.de=function(a,b){this.dd(a,this.pb(),b)}; -R.dd=function(a,b,c){if(a.o&&(c||!this.o))l(Error(hp));if(b<0||b>this.pb())l(Error("Child component index out of bounds"));if(!this.Sa||!this.C){this.Sa={};this.C=[]}if(a.i==this){Qe(this.Sa,a.Xb());Ud(this.C,a)}else Re(this.Sa,a.Xb(),a);a.Zg(this);Td(this.C,a,b);if(a.o&&this.o&&a.i==this){var e=this.z();e[Fb](a.a(),e[Dc][b+1]||i)}else if(c){this.e||this.c();var f=this.db(b+1);a.Cj(this.z(),f?f.e:i)}else this.o&&!a.o&&a.e&&a.v()};R.z=function(){return this.e}; -R.Jb=function(){if(this.Pd==i)this.Pd=Fm(this.o?this.e:this.d.p[Mb]);return this.Pd};R.Zc=function(a){if(this.o)l(Error(hp));this.Pd=a};R.Ia=function(){return!!this.C&&this.C[v]!=0};R.pb=function(){return this.C?this.C[v]:0};R.yi=function(a){return this.Sa&&a?Se(this.Sa,a)||i:i};R.db=function(a){return this.C?this.C[a]||i:i};R.ka=function(a,b){this.C&&Md(this.C,a,b)};R.Ad=function(a){return this.C&&a?Ld(this.C,a):-1}; -R.removeChild=function(a,b){if(a){var c=vd(a)?a:a.Xb();a=this.yi(c);if(c&&a){Pe(this.Sa,c);Ud(this.C,a);if(b){a.aa();a.e&&vj(a.e)}a.Zg(i)}}if(!a)l(Error("Child is not in parent component"));return a}; -// Input 62 -var ip="modal-dialog",kp=function(a,b,c){Uo[I](this,c);this.ea=a||ip;this.uh=!!b;this.la=jp;this.fa=new zo(this);this.cb=new Fo(this.d.p)};U(kp,Uo);R=kp[y];R.ea=i;R.uh=d;R.Pe=j;R.mi=j;R.Wk=0.3;R.cf=V;R.wa=V;R.la=i;R.wc=i;R.s=d;R.Kl=d;R.V=i;R.P=i;R.Ra=i;R.kb=i;R.oh=i;R.Rb=i;R.va=i;R.da=i;R.fa=i;R.Xa=function(){return this.fa};R.hk=function(a){this.cf=a;this.kb&&Dj(this.kb,a)};R.Nb=function(a){this.wa=a;if(this.va)o(this.va,a)};R.z=function(){this.va||this.xb();return this.va}; -R.pm=function(){this.o||this.xb();return this.da};var lp="-title-draggable";R.fl=function(){var a=new Ko(this.a(),this.Ra);Xi(this.Ra,this.ea+lp);return a};var mp="-title",np="-title-text",op="-title-close",pp="-content",qp="-buttons",rp="dialog",sp="labelledby"; -R.c=function(){this.hj();this.jc(this.d.c(Z,{className:this.ea,tabIndex:0},this.Ra=this.d.c(Z,{className:this.ea+mp,id:this.Xb()},this.kb=this.d.c(rl,{className:this.ea+np},this.cf),this.Rb=this.d.c(rl,{className:this.ea+op})),this.va=this.d.c(Z,{className:this.ea+pp}),this.da=this.d.c(Z,{className:this.ea+qp}),this.sk=this.d.c(rl,{tabIndex:0})));this.oh=this.Ra.id;wo(this.a(),rp);yo(this.a(),sp,this.oh);if(this.wa)o(this.va,this.wa);Xm(this.a(),d);this.la&&this.la.lf(this.da)}; -var tp="border: 0; vertical-align: bottom",up="-bg";R.hj=function(){if(this.uh&&this.Pe&&!this.P){this.P=this.d.c(il,{frameborder:0,style:tp,src:hl});xa(this.P,this.ea+up);Xm(this.P,d);Wm(this.P,0)}else if((!this.uh||!this.Pe)&&this.P){vj(this.P);this.P=i}if(this.Pe&&!this.V){this.V=this.d.c(Z,{className:this.ea+up});Wm(this.V,this.Wk);Xm(this.V,d)}else if(!this.Pe&&this.V){vj(this.V);this.V=i}}; -R.xb=function(a){if(this.o)l(Error(hp));this.a()||this.c();var b=a||this.d.p[Mb];this.Bj(b);kp.b.xb[I](this,b)};R.Bj=function(a){this.P&&a[q](this.P);this.V&&a[q](this.V)};var vp="DIV";R.ma=function(a){return a&&a[Fc]&&a[Fc]==vp&&kp.b.ma[I](this,a)}; -R.Ua=function(a){kp.b.Ua[I](this,a);Xi(this.a(),this.ea);var b=this.ea+pp;if(this.va=Fj(this.a(),function(h){return h[sb]==1&&Zi(h,b)}))this.wa=this.va[xb];else{this.va=this.d.c(Z,{className:b});if(this.wa)o(this.va,this.wa);this.a()[q](this.va)}var c=this.ea+mp,e=this.ea+np,f=this.ea+op;if(this.Ra=Fj(this.a(),function(h){return h[sb]==1&&Zi(h,c)})){this.kb=Fj(this.Ra,function(h){return h[sb]==1&&Zi(h,e)});this.Rb=Fj(this.Ra,function(h){return h[sb]==1&&Zi(h,f)})}else{this.Ra=this.d.c(Z,{className:c}); -this.a()[Fb](this.Ra,this.va)}if(this.kb)this.cf=Pj(this.kb);else{this.kb=this.d.c(rl,{className:e},this.cf);this.Ra[q](this.kb)}yo(this.a(),sp,this.oh);if(!this.Rb){this.Rb=this.d.c(rl,{className:f});this.Ra[q](this.Rb)}var g=this.ea+qp;if(this.da=Fj(this.a(),function(h){return h[sb]==1&&Zi(h,g)})){this.la=new wp(this.d);this.la.M(this.da)}else{this.da=this.d.c(Z,{className:g});this.a()[q](this.da);this.la&&this.la.lf(this.da)}this.hj();this.Bj(cj(this.a())[Mb]);Xm(this.a(),d)}; -R.v=function(){kp.b.v[I](this);if(this.mi&&!this.wc)this.wc=this.fl();this.fa.l(this.Rb,Jg,this.uj).l(this.cb,Do,this.nj);wo(this.a(),rp);this.kb.id!==V&&yo(this.a(),sp,this.kb.id)};R.aa=function(){this.fa.U(this.Rb,Jg,this.uj).U(this.cb,Do,this.nj);this.s&&this.q(d);if(this.wc){this.wc.h();this.wc=i}kp.b.aa[I](this)};var xp="keydown",yp="resize",zp="button",Ap="position:fixed;width:0;height:0",Bp="afterhide"; -R.q=function(a){if(!(a==this.s)){var b=this.d.p,c=pj(b)||m;this.o||this.xb(b[Mb]);if(a){this.Dj();this.sa();this.fa.l(this.a(),xp,this.Re,j).l(c,yp,this.sj,j)}else this.fa.U(this.a(),xp,this.Re,j).U(c,yp,this.sj,j);this.P&&Xm(this.P,a);this.V&&Xm(this.V,a);Xm(this.a(),a);if(a){rg&&this.a()[ec]();if(this.la){var e=this.la.rf;if(e){var f=this.da[Tc](zp),g=0,h;for(;h=f[g];g++)if(h[Hc]==e){try{if(sg||qg){var k=b[hc](Fk);Ja(k[F],Ap);this.a()[q](k);k[ec]();this.a()[Nb](k)}h[ec]()}catch(r){}break}}}}if(this.s= -a)this.fa.l(this.da,Jg,this.mj);else{this.fa.U(this.da,Jg,this.mj);this[D](Bp);this.Kl&&this.h()}}};R.Dj=function(){this.P&&Xm(this.P,d);this.V&&Xm(this.V,d);var a=this.d.p,b=pj(a)||m,c=oj(b),e=a[Mb].scrollWidth,f=n.max(a[Mb][jc],c[O]);if(this.P){Xm(this.P,j);Mm(this.P,e,f)}if(this.V){Xm(this.V,j);Mm(this.V,e,f)}if(this.mi){var g=Pm(this.a());this.wc.tg=new El(0,0,e-g[z],f-g[O])}}; -R.sa=function(){var a=this.d.p,b=pj(a)||m;if(om(this.a())==tm)var c=0,e=0;else var f=this.d.Wb(),c=f.x,e=f.y;var g=Pm(this.a()),h=oj(b),k=n.max(c+h[z]/2-g[z]/2,0),r=n.max(e+h[O]/2-g[O]/2,0);qm(this.a(),k,r)};R.uj=function(){var a=this.la,b=a&&a.of;if(b){var c=a.Q(b);this[D](new Cp(b,c))&&this.q(d)}else this.q(d)};R.f=function(){kp.b.f[I](this);if(this.fa){this.fa.h();this.fa=i}if(this.cb){this.cb.h();this.cb=i}if(this.V){vj(this.V);this.V=i}if(this.P){vj(this.P);this.P=i}this.sk=this.da=this.Rb=i}; -R.Qj=function(a){this.la=a;this.da&&this.la.lf(this.da)};R.mj=function(a){var b=this.Sl(a[H]);if(b){var c=b[Hc],e=this.la.Q(c);this[D](new Cp(c,e))&&this.q(d)}};var Dp="BUTTON";R.Sl=function(a){var b=a;for(;b!=i&&b!=this.da;){if(b[Fc]==Dp)return b;b=b[N]}return i}; -R.Re=function(a){var b=this.la;if(a[kc]==27){var c=b&&b.of;if(c){var e=b.Q(c);this[D](new Cp(c,e))&&this.q(d)}else this.q(d);a[Cb]()}else if(a[kc]==13){var f=a[H]&&a[H][Fc]==Dp?a[H][Hc]:b&&b.rf;if(f&&this[D](new Cp(f,String(b.Q(f))))){this.q(d);a[Eb]()}a[Cb]()}else if(a[kc]==9&&a[Ec]&&a[H]==this.a()){a[Eb]();a[Cb]()}};R.sj=function(){this.Dj()};R.nj=function(a){this.sk==a[H]&&Nh(this.Tl,0,this)};R.Tl=function(){W&&this.d.p[Mb][ec]();this.a()[ec]()}; -var Ep="dialogselect",Cp=function(a,b){Oa(this,Ep);this.ra=a;this.caption=b};U(Cp,Dg);var wp=function(a){this.d=a||dj();cf[I](this)},jp;U(wp,cf);R=wp[y];R.rf=i;R.e=i;R.of=i;R.J=function(a,b,c,e){cf[y].J[I](this,a,b);if(c)this.rf=a;if(e)this.of=a;return this};R.lf=function(a){this.e=a;this.xb()};R.xb=function(){if(this.e){o(this.e,V);var a=dj(this.e);bf(this,function(b,c){this.e[q](a.c(zp,{name:c},b))},this)}};var Fp="cancel"; -R.M=function(a){if(!(!a||a[sb]!=1)){this.e=a;var b=this.e[Tc](zp),c=0,e,f,g;for(;e=b[c];c++){f=e[Hc]||e.id;g=Pj(e)||e[B];f&&this.J(f,g,c==0,e[Hc]==Fp)}}};var Gp="ok",Hp="OK",Ip="Cancel";(function(){jp=(new wp).J(Gp,Hp,j).J(Fp,Ip,d,j)})(); -// Input 63 -var Jp=function(a,b,c,e){mh[I](this);this.d=c||dj();this.ia=a;this.Aa=[];this.Io=b?b:0;this.Bk=!!e;this.pl()};U(Jp,mh);R=Jp[y];var Kp="goog-tabpane",Lp="ul",Mp="goog-tabpane-tabs",Np="goog-tabpane-cont",Op="goog-tabpane-top",Pp="goog-tabpane-bottom",Qp="goog-tabpane-left",Rp="goog-tabpane-right"; -R.pl=function(){xa(this.ia,Kp);var a=this.rm();this.oa=this.d.c(Lp,{className:Mp,tabIndex:Ae});this.xa=this.d.c(Z,{className:Np});this.ia[q](this.xa);switch(this.Io){case 0:this.ia[Fb](this.oa,this.xa);this.ia[Fb](this.Sh(),this.xa);Xi(this.ia,Op);break;case 1:this.ia[q](this.oa);this.ia[q](this.Sh());Xi(this.ia,Pp);break;case 2:this.ia[Fb](this.oa,this.xa);Xi(this.ia,Qp);break;case 3:this.ia[Fb](this.oa,this.xa);Xi(this.ia,Rp);break;default:l(Error("Invalid tab location"))}Qa(this.oa,0);X(this.oa, -this.Bk?Jo:Jg,this.oj,d,this);X(this.oa,xp,this.pj,d,this);this.ll(a)};var Sp=".goog-tabpane-clear { clear: both; height: 0px; overflow: hidden }",Tp="goog-tabpane-clear";R.Sh=function(){an(Sp);return this.d.c(Z,{className:Tp})};R.f=function(){Jp.b.f[I](this);ah(this.oa,this.Bk?Jo:Jg,this.oj,d,this);ah(this.oa,xp,this.pj,d,this);delete this.ia;this.xa=this.oa=i};R.rm=function(){var a=[],b=yj(this.ia);for(;b;){a[t](b);b=xj(b[Lc],j)}return a};R.ll=function(a){var b,c=0;for(;b=a[c];c++)this.fe(new Up(b))}; -var Vp="change";R.fe=function(a,b){a.i&&a.i!=this&&a.i instanceof Jp&&a.i.eo(a);var c=this.Aa[v];if(hd(b)&&b!=c){c=b;this.Aa[Oc](c,0,a);this.oa[Fb](a.xc,this.oa[Dc][c])}else{this.Aa[t](a);this.oa[q](a.xc)}a.Wd(this,c);if(!this.ca){this.ca=a;this[D](new Wp(Vp,this,this.ca))}this.xa[q](a.xa);a.ih(a==this.ca);var e,f=c+1;for(;e=this.Aa[f];f++)e.cc=f};R.eo=function(a){if(wd(a))a=this.Aa[a];this.Aa[Oc](a.cc,1);a.Wd(i);vj(a.xc);vj(a.xa);var b,c=0;for(;b=this.Aa[c];c++)b.Wd(this,c)};R.Ec=function(a){return this.Aa[a]}; -R.ek=function(a){if(a.H()&&(!this.ca||a!=this.ca)){this.ca.ih(d);a.ih(j);this.ca=a;this[D](new Wp(Vp,this,this.ca))}};R.Ab=function(a){a>=0&&a=this.Aa[v]?0:b);break;case 36:this.Ab(0);break;case 35:this.Ab(this.Aa[v]-1);break}};var Yp="li",Up=function(a,b,c){var e,f;if(vd(a)&&!hd(b))e=a;else if(b){e=b;f=a}else if(a){var g=yj(a);if(g){e=Pj(g);g[N][Nb](g)}f=a}this.d=c||dj();this.xa=f||this.d.c(Z);this.xc=this.d.c(Yp,i,e);this.cc=this.i=i;this.pa=j};R=Up[y];R.hk=function(a){Dj(this.xc,a)};R.z=function(){return this.xa}; -R.select=function(){this.i&&this.i.ek(this)};var Zp="goog-tabpane-tab",$p="goog-tabpane-tab-disabled";R.zb=function(a){this.pa=a;xa(this.xc,a?Zp:$p)};R.H=function(){return this.pa};var aq="goog-tabpane-tab-selected";R.ih=function(a){if(this.H()){Ta(this.xa[F],a?V:sl);xa(this.xc,a?aq:Zp)}};R.Wd=function(a,b){this.i=a;this.cc=hd(b)?b:i};var Wp=function(a,b,c){Dg[I](this,a,b);this.page=c};U(Wp,Dg); -// Input 64 -var bq="BODY",eq=function(a,b,c,e,f,g,h,k){var r,p=c.offsetParent;if(p&&(p[Fc]!=bq||om(p)!=um))r=ym(p);var s=cq(a);Km(s,dj(a),dj(c));var u=(b&4&&Fm(a)?b^2:b)&-5,w=new Pi(u&2?s[G]+s[z]:s[G],u&1?s.top+s[O]:s.top);if(r)w=new Pi(w.x-r.x,w.y-r.y);if(f){w.x+=(u&2?-1:1)*f.x;w.y+=(u&1?-1:1)*f.y}var E;if(h)if((E=Am(c))&&r){E.top=n.max(0,E.top-r.y);E.right-=r.x;E.bottom-=r.y;Da(E,n.max(0,E[G]-r.x))}return dq(w,c,e,g,E,h,k)},cq=function(a){var b=Qm(a),c=Am(a);c&&b.pn(new El(c[G],c.top,c[bd]-c[G],c[sc]-c.top)); -return b},dq=function(a,b,c,e,f,g,h){var k=0,r=(c&4&&Fm(b)?c^2:c)&-5,p=Pm(b),s=h?h.na():p;if(e||r!=0){if(r&2)a.x-=s[z]+(e?e[bd]:0);else if(e)a.x+=e[G];if(r&1)a.y-=s[O]+(e?e[sc]:0);else if(e)a.y+=e.top}if(g){k=f?fq(a,s,f,g):256;if(k&496)return k}qm(b,a);Si(p,s)||Mm(b,s);return k},fq=function(a,b,c,e){var f=0;if(a.xc[bd]&&e&16){b.width-=a.x+b[z]-c[bd];f|=4}if(a.x+b[z]>c[bd]&&e&1){a.x=n.max(c[bd]-b[z],c[G]);f|=1}if(e&2)f|=(a.xc[bd]? -32:0);if(a.y=c.top&&a.y+b[O]>c[sc]&&e&32){b.height-=a.y+b[O]-c[sc];f|=8}if(a.y+b[O]>c[sc]&&e&4){a.y=n.max(c[sc]-b[O],c.top);f|=2}if(e&8)f|=(a.yc[sc]?128:0);return f}; -// Input 65 -var gq=function(){};gq[y].sa=function(){}; -// Input 66 -var hq=function(a,b){this.Va=a;this.uc=b};U(hq,gq);hq[y].sa=function(a,b,c){eq(this.Va,this.uc,a,b,undefined,c)}; -// Input 67 -var iq=function(a,b,c){hq[I](this,a,b);this.Qk=c};U(iq,hq);iq[y].sa=function(a,b,c,e){var f=eq(this.Va,this.uc,a,b,i,c,10,e)&496;if(f)if(f=eq(this.Va,b,a,this.uc,i,c,10,e)&496)this.Qk?eq(this.Va,this.uc,a,b,i,c,5,e):eq(this.Va,this.uc,a,b,i,c,0,e)}; -// Input 68 -var jq=function(a,b){this.pe=a instanceof Pi?a:new Pi(a,b)};U(jq,gq);jq[y].sa=function(a,b,c,e){var f=rm(a),g=new Pi(this.pe.x+f[pc],this.pe.y+f[Ya]);eq(f,0,a,b,g,c,i,e)}; -// Input 69 -var kq=function(a,b){jq[I](this,a,b)};U(kq,jq);kq[y].sa=function(a,b,c,e){var f=rm(a),g=new Pi(this.pe.x+f[pc],this.pe.y+f[Ya]);(eq(f,0,a,b,g,c,10,e)&496)==0||(eq(f,0,a,b^1,g,c,10,e)&496)==0||(eq(f,0,a,b^2,g,c,10,e)&496)==0||(eq(f,0,a,b^1^2,g,c,10,e)&496)==0||eq(f,0,a,b,g,c,i,e)}; -// Input 70 -var lq=function(a){mh[I](this);a&&this.ed(a)};U(lq,mh);R=lq[y];R.e=i;R.Me=i;R.qg=i;R.Ne=i;R.Hd=-1;R.Nc=-1;R.cj=0;R.mn=j; -var mq={"3":13,"12":144,"63232":38,"63233":40,"63234":37,"63235":39,"63236":112,"63237":113,"63238":114,"63239":115,"63240":116,"63241":117,"63242":118,"63243":119,"63244":120,"63245":121,"63246":122,"63247":123,"63248":44,"63272":46,"63273":36,"63275":35,"63276":33,"63277":34,"63289":144,"63302":45},nq={Up:38,Down:40,Left:37,Right:39,Enter:13,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,"U+007F":46,Home:36,End:35,PageUp:33,PageDown:34,Insert:45},oq={61:187, -59:186},pq=W||sg&&Cg(Go);R=lq[y];R.Ym=function(a){if(pq&&!Ho(a[kc],this.Hd,a[Ec]))this[xc](a);else this.Nc=rg&&a[kc]in oq?oq[a[kc]]:a[kc]};R.Zm=function(){this.Nc=this.Hd=-1}; -Na(R,function(a){var b=a.ja,c,e;if(W&&a[M]==Ig){c=this.Nc;e=c!=13&&c!=27?b[kc]:0}else if(sg&&a[M]==Ig){c=this.Nc;e=b[$b]>=0&&b[$b]<63232&&Io(c)?b[$b]:0}else if(qg){c=this.Nc;e=Io(c)?b[kc]:0}else{c=b[kc]||this.Nc;e=b[$b]||0;if(yg&&e==63&&!c)c=191}var f=c,g=b.keyIdentifier;if(c)if(c>=63232&&c in mq)f=mq[c];else{if(c==25&&a[Ec])f=9}else if(g&&g in nq)f=nq[g];var h=f==this.Hd;this.Hd=f;if(sg&&this.mn){if(h&&b.timeStamp-this.cj<50)return;this.cj=b.timeStamp}var k=new qq(f,e,h,b);try{this[D](k)}finally{k.h()}}); -var rq="keyup";R.ed=function(a){this.Ne&&this.detach();this.e=a;this.Me=X(this.e,Ig,this);this.qg=X(this.e,xp,this.Ym,d,this);this.Ne=X(this.e,rq,this.Zm,d,this)};R.detach=function(){if(this.Me){ch(this.Me);ch(this.qg);ch(this.Ne);this.Ne=this.qg=this.Me=i}this.e=i;this.Hd=-1};R.f=function(){lq.b.f[I](this);this.detach()};var sq="key",qq=function(a,b,c,e){Eg[I](this,e);Oa(this,sq);La(this,a);this.charCode=b;this.repeat=c};U(qq,Eg); -// Input 71 -var uq=function(a){var b,c;for(;a;){b=Bd(a);if(c=tq[b])break;a=a.b?a.b.constructor:i}if(c)return xd(c.qb)?c.qb():new c;return i},vq=function(a,b){if(!xd(a))l(Error("Invalid component class "+a));if(!xd(b))l(Error("Invalid renderer class "+b));var c=Bd(a);tq[c]=b};var xq=function(a,b){if(!a)l(Error("Invalid class name "+a));if(!xd(b))l(Error("Invalid decorator function "+b));wq[a]=b},yq=function(a){var b,c=Wi(a),e=0,f=c[v];for(;e0){p[t][Ac](p,u);r=j}}if(!h||!k||s||r)Vi(b,p[P](Ni));return b};R.Jc=function(a){a.Jb()&&this.Zc(a.a(),j);a.H()&&this.Ob(a,a.s)}; -R.Pj=function(a){if(rg){var b=this.Gb();b&&wo(a,b)}};R.Sd=function(a,b){jn(a,!b,!W&&!qg)};var Cq="-rtl";R.Zc=function(a,b){this.ue(a,this.td()+Cq,b)};R.Ib=function(a){var b;if(a.qa(32)&&(b=a.W()))return Kj(b);return d};R.Ob=function(a,b){var c;if(a.qa(32)&&(c=a.W())){if(!b&&a.Yi()){try{c.blur()}catch(e){}a.Yi()&&a.ub(i)}Kj(c)!=b&&Mj(c,b)}};R.q=function(a,b){Xm(a,b)};R.Pa=function(a,b,c){var e=a.a();if(e){var f=this.qd(b);f&&this.ue(a,f,c);this.ad(e,b,c)}}; -var Dq="disabled",Eq="pressed",Fq="selected",Gq="checked",Hq="expanded";R.ad=function(a,b,c){if(rg){Aq||(Aq=Xe(1,Dq,4,Eq,8,Fq,16,Gq,64,Hq));var e=Aq[b];e&&yo(a,e,c)}};R.Nb=function(a,b){var c=this.z(a);if(c){tj(c);if(b)if(vd(b))Dj(c,b);else{function e(f){if(f){var g=cj(c);c[q](vd(f)?g[Bb](f):f)}}rd(b)?Md(b,e):e(b)}}};R.W=function(a){return a.a()};var Iq="goog-control";R.G=function(){return Iq};R.td=function(){return this.G()}; -R.Ac=function(a){var b=this.G(),c=[b],e=this.td();e!=b&&c[t](e);var f=this.sm(a.Z);f&&c[t][Ac](c,f);var g=a.Wa;g&&c[t][Ac](c,g);W&&!Cg(Bq)&&c[t][Ac](c,this.If(c));return c};R.If=function(a,b){var c=[];if(b)a=a[zb]([b]);Md([],function(e){if(Pd(e,Ed(Qd,a))&&(!b||Qd(e,b)))c[t](e[P](gl))});return c};R.sm=function(a){if(a){var b=[],c=1;for(;a;c<<=1)if(a&c){b[t](this.qd(c));a&=~c}return b}return i};R.qd=function(a){this.le||this.Rh();return this.le[a]}; -R.Uf=function(a){this.rk||this.ol();var b=fa(this.rk[a],10);return pa(b)?0:b};var Jq="-disabled",Kq="-hover",Lq="-active",Mq="-selected",Nq="-checked",Oq="-focused",Pq="-open";R.Rh=function(){var a=this.td();this.le=Xe(1,a+Jq,2,a+Kq,4,a+Lq,8,a+Mq,16,a+Nq,32,a+Oq,64,a+Pq)};R.ol=function(){this.le||this.Rh();this.rk=Te(this.le)}; -// Input 73 -// Input 74 -var Qq=function(a,b,c){Uo[I](this,c);this.k=b||uq(this.constructor);this.Ye(a)};U(Qq,Uo);R=Qq[y];R.wa=i;R.Z=0;R.Zd=39;R.ke=255;R.$e=0;R.s=j;R.Wa=i;R.ag=j;R.ie=d;R.Xa=function(){return this.B||(this.B=new zo(this))};R.Yg=function(a){this.o&&a!=this.ag&&this.pi(a);this.ag=a};R.W=function(){return this.k.W(this)};R.ze=function(){return this.ba||(this.ba=new lq)};R.Nk=function(a){if(a){if(this.Wa)Qd(this.Wa,a)||this.Wa[t](a);else this.Wa=[a];this.k.ni(this,a,j)}}; -R.bo=function(a){if(a&&this.Wa){Ud(this.Wa,a);if(this.Wa[v]==0)this.Wa=i;this.k.ni(this,a,d)}};R.ue=function(a,b){b?this.Nk(a):this.bo(a)};R.c=function(){var a=this.k.c(this);this.jc(a);this.k.Pj(a);this.ie||this.k.Sd(a,d);this.s||this.k.q(a,d)};R.z=function(){return this.k.z(this.a())};R.ma=function(a){return this.k.ma(a)};R.Ua=function(a){a=this.k.M(this,a);this.jc(a);this.k.Pj(a);this.ie||this.k.Sd(a,d);this.s=a[F][Kc]!=sl}; -R.v=function(){Qq.b.v[I](this);this.k.Jc(this);if(this.Zd&-2){this.ag&&this.pi(j);if(this.qa(32)){var a=this.W();if(a){var b=this.ze();b.ed(a);this.Xa().l(b,sq,this.Ya).l(a,Eo,this.Ee).l(a,Co,this.ub)}}}};var Rq="dblclick";R.pi=function(a){var b=this.Xa(),c=this.a();if(a){b.l(c,Gg,this.cg).l(c,Jo,this.$b).l(c,Mo,this.wd).l(c,Hg,this.bg);W&&b.l(c,Rq,this.Ni)}else{b.U(c,Gg,this.cg).U(c,Jo,this.$b).U(c,Mo,this.wd).U(c,Hg,this.bg);W&&b.U(c,Rq,this.Ni)}}; -R.aa=function(){Qq.b.aa[I](this);this.B&&this.B.Lg();this.ba&&this.ba.detach();this.s&&this.H()&&this.k.Ob(this,d)};R.f=function(){Qq.b.f[I](this);if(this.B){this.B.h();delete this.B}if(this.ba){this.ba.h();delete this.ba}delete this.k;this.Wa=this.wa=i};R.Nb=function(a){this.k.Nb(this.a(),a);this.Ye(a)};R.Ye=function(a){this.wa=a};R.we=function(){var a=this.wa;if(!a||vd(a))return a;var b=rd(a)?Nd(a,Pj)[P](V):Pj(a);return b&&$d(b)}; -R.Zc=function(a){Qq.b.Zc[I](this,a);var b=this.a();b&&this.k.Zc(b,a)};R.Sd=function(a){this.ie=a;var b=this.a();b&&this.k.Sd(b,a)};var Sq="show",Tq="hide";R.q=function(a,b){if(b||this.s!=a&&this[D](a?Sq:Tq)){var c=this.a();c&&this.k.q(c,a);this.H()&&this.k.Ob(this,a);this.s=a;return j}return d};R.H=function(){return!this.Za(1)};R.tn=function(){var a=this.i;return!!a&&typeof a.H==S&&!a.H()}; -R.zb=function(a){if(!this.tn()&&this.dc(1,!a)){if(!a){this[Sc](d);this.jb(d)}this.s&&this.k.Ob(this,a);this.Pa(1,!a)}};R.jb=function(a){this.dc(2,a)&&this.Pa(2,a)};R.Lc=function(){return this.Za(4)};R.setActive=function(a){this.dc(4,a)&&this.Pa(4,a)};R.Ke=function(){return this.Za(8)};R.eh=function(a){this.dc(8,a)&&this.Pa(8,a)};R.rn=function(){return this.Za(16)};R.qo=function(a){this.dc(16,a)&&this.Pa(16,a)};R.Yi=function(){return this.Za(32)};R.Wj=function(a){this.dc(32,a)&&this.Pa(32,a)}; -R.isOpen=function(){return this.Za(64)};R.K=function(a){this.dc(64,a)&&this.Pa(64,a)};R.Za=function(a){return!!(this.Z&a)};R.Pa=function(a,b){if(this.qa(a)&&b!=this.Za(a)){this.k.Pa(this,a,b);this.Z=b?this.Z|a:this.Z&~a}};R.fk=function(a){this.Z=a};R.qa=function(a){return!!(this.Zd&a)};R.Pb=function(a,b){if(this.o&&this.Za(a)!=b)l(Error(hp));!b&&this.Za(a)&&this.Pa(a,d);this.Zd=b?this.Zd|a:this.Zd&~a};R.za=function(a){return!!(this.ke&a)&&this.qa(a)}; -R.po=function(a,b){this.ke=b?this.ke|a:this.ke&~a};R.Tj=function(a,b){this.$e=b?this.$e|a:this.$e&~a};R.dc=function(a,b){return this.qa(a)&&this.Za(a)!=b&&(!(this.$e&a)||this[D](fp(a,b)))&&!this.Xi()};var Uq="enter";R.cg=function(a){a[jb]&&!Aj(this.a(),a[jb])&&this[D](Uq)&&this.H()&&this.za(2)&&this.jb(j)};var Vq="leave";R.bg=function(a){if(a[jb]&&!Aj(this.a(),a[jb])&&this[D](Vq)){this.za(4)&&this[Sc](d);this.za(2)&&this.jb(d)}}; -R.$b=function(a){if(this.H()){this.za(2)&&this.jb(j);if(a.Vi(0)){this.za(4)&&this[Sc](j);this.k.Ib(this)&&this.W()[ec]()}}!this.ie&&a.Vi(0)&&a[Eb]()};R.wd=function(a){if(this.H()){this.za(2)&&this.jb(j);this.Lc()&&this.Tc(a)&&this.za(4)&&this[Sc](d)}};R.Ni=function(a){this.H()&&this.Tc(a)};var Wq="action";R.Tc=function(){this.za(16)&&this.qo(!this.rn());this.za(8)&&this.eh(j);this.za(64)&&this.K(!this[Yb]());return this[D](Wq)};R.Ee=function(){this.za(32)&&this.Wj(j)}; -R.ub=function(){this.za(4)&&this[Sc](d);this.za(32)&&this.Wj(d)};R.Ya=function(a){if(this.s&&this.H()&&this.Hc(a)){a[Eb]();a[Cb]();return j}return d};R.Hc=function(a){return a[kc]==13&&this.Tc(a)};vq(Qq,zq);xq(Iq,function(){return new Qq(i)}); -// Input 75 -var Xq=function(){return zq[I](this)};U(Xq,zq);ld(Xq);Xq[y].c=function(a){return a.d.c(Z,{"class":this.G()})};var Yq="HR";Xq[y].M=function(a,b){if(b[Fc]==Yq){var c=b;b=this.c(a);uj(b,c);vj(c)}else Xi(b,this.G());return b};Xq[y].Nb=function(){};var Zq="goog-menuseparator";Xq[y].G=function(){return Zq}; -// Input 76 -var $q=function(a,b){Qq[I](this,i,a||Xq.qb(),b);this.Pb(1,d);this.Pb(2,d);this.Pb(4,d);this.Pb(32,d);this.fk(1)};U($q,Qq);var ar="separator";$q[y].v=function(){$q.b.v[I](this);wo(this.a(),ar)};xq(Zq,function(){return new $q}); -// Input 77 -var br=function(){};ld(br);R=br[y];R.Gb=function(){return undefined};R.gn=function(a){if(a){var b=a.getAttributeNode(Jj);if(b&&b.specified){var c=a.tabIndex;return wd(c)&&c>=0}}return d};R.yf=function(a,b){if(a)Qa(a,b?0:-1)};R.c=function(a){return a.d.c(Z,{"class":this.Ac(a)[P](Ni)})};R.z=function(a){return a};R.ma=function(a){return a[Fc]==vp};R.M=function(a,b){b.id&&a.Xj(b.id);var c=this.G(),e=d,f=Wi(b);f&&Md(f,function(g){if(g==c)e=j;else g&&this.Bo(a,g,c)},this);e||Xi(b,c);this.El(a,b);return b}; -var cr="-horizontal",dr="horizontal",er="-vertical",fr="vertical";R.Bo=function(a,b,c){if(b==c+Jq)a.zb(d);else if(b==c+cr)a.ck(dr);else b==c+er&&a.ck(fr)};R.El=function(a,b){if(b){var c=b[J],e;for(;c&&c[N]==b;){e=c[Lc];if(c[sb]==1){var f=this.Lf(c);if(f){f.jc(c);a.H()||f.zb(d);a.de(f);f.M(c)}}else if(!c[Uc]||$d(c[Uc])==V)b[Nb](c);c=e}}};R.Lf=function(a){return yq(a)};var gr="1.9a"; -R.Jc=function(a){var b=a.a();jn(b,j,rg);if(W)b.hideFocus=j;var c=this.Gb();c&&wo(b,c);if(a.hb==dr&&rg&&!Cg(gr)&&a.Jb()){var e=this.z(b);a.ka(function(f){var g=f.a();g&&g[N]==e&&hr(f)})}};R.W=function(a){return a.a()};var ir="goog-container";R.G=function(){return ir};R.Ac=function(a){var b=this.G(),c=[b,b+(a.hb==dr?cr:er)];a.H()||c[t](this.G()+Jq);return c}; -var jr="display:-moz-box;position:relative;top:4px",kr="display:-moz-box;position:relative",hr=function(a){var b=a.a();if(b){var c=b[Lc];b[N][Fb](a.d.c(Z,{style:a instanceof $q?jr:kr},b),c)}},lr=function(a){var b=a.a();if(b){var c=b[N];c[N][Fb](b,c);vj(c)}}; -// Input 78 -var mr=function(a,b,c){Uo[I](this,c);this.k=b||br.qb();this.hb=a||fr};U(mr,Uo);R=mr[y];R.B=i;R.Le=i;R.ba=i;R.k=i;R.hb=i;R.s=j;R.pa=j;R.Gf=j;R.Ja=-1;R.X=i;R.Ag=d;R.Sk=d;R.Db=i;R.Xa=function(){return this.B||(this.B=new zo(this))};R.W=function(){return this.Le||this.k.W(this)};R.ze=function(){return this.ba||(this.ba=new lq(this.W()))};R.c=function(){this.jc(this.k.c(this))};R.z=function(){return this.k.z(this.a())};R.ma=function(a){return this.k.ma(a)}; -R.Ua=function(a){this.jc(this.k.M(this,a));if(a[F][Kc]==sl)this.s=d};R.v=function(){mr.b.v[I](this);var a=this.a();this.k.Jc(this);this.q(this.s,j);this.Xa().l(this,Uq,this.Xf).l(this,Xo,this.Yf).l(this,Yo,this.dg).l(this,dp,this.bn).l(this,ep,this.Tm).l(a,Jo,this.$b).l(cj(a),Mo,this.Vm).l(a,[Jo,Mo,Gg,Hg],this.Sm);this.Ib()&&this.oi(j)};R.oi=function(a){var b=this.Xa(),c=this.W();a?b.l(c,Eo,this.Ee).l(c,Co,this.ub).l(this.ze(),sq,this.Ya):b.U(c,Eo,this.Ee).U(c,Co,this.ub).U(this.ze(),sq,this.Ya)}; -R.aa=function(){mr.b.aa[I](this);this.kc(-1);this.B&&this.B.Lg();this.X&&this.X.K(d);this.Ag=d};R.f=function(){mr.b.f[I](this);if(this.B){this.B.h();this.B=i}if(this.ba){this.ba.h();this.ba=i}this.k=this.X=this.Db=i};R.Xf=function(){return j};var nr="activedescendant";R.Yf=function(a){var b=this.Ad(a[H]);if(b>-1&&b!=this.Ja){var c=this.Dc();c&&c.jb(d);this.Ja=b;c=this.Dc();this.Ag&&c[Sc](j);if(this.X&&c!=this.X)c.qa(64)?c.K(j):this.X.K(d)}yo(this.a(),nr,a[H].a().id)}; -R.dg=function(a){if(a[H]==this.Dc())this.Ja=-1;yo(this.a(),nr,i)};R.bn=function(a){var b=a[H];if(b&&b!=this.X&&b.i==this){this.X&&this.X.K(d);this.X=b}};R.Tm=function(a){if(a[H]==this.X)this.X=i};R.$b=function(a){this.pa&&this.lc(j);var b=this.W();this.k.gn(b)?b[ec]():a[Eb]()};R.Vm=function(){this.lc(d)};R.Sm=function(a){var b=this.Gm(a[H]);if(b)switch(a[M]){case Jo:b.$b(a);break;case Mo:b.wd(a);break;case Gg:b.cg(a);break;case Hg:b.bg(a);break}}; -R.Gm=function(a){if(this.Db){var b=this.a();for(;a&&a[N]&&a!=b;){var c=a.id;if(c in this.Db)return this.Db[c];a=a[N]}}return i};R.Ee=function(){};R.ub=function(){this.kc(-1);this.lc(d);this.X&&this.X.K(d)};R.Ya=function(a){if(this.H()&&this.pb()!=0&&this.Hc(a)){a[Eb]();a[Cb]();return j}return d}; -R.Hc=function(a){var b=this.Dc();if(b&&typeof b.Ya==S&&b.Ya(a))return j;if(this.X&&this.X!=b&&typeof this.X.Ya==S&&this.X.Ya(a))return j;switch(a[kc]){case 27:if(this.Ib())this.W().blur();else return d;break;case 36:this.hn();break;case 35:this.jn();break;case 38:if(this.hb==fr)this.hg();else return d;break;case 37:if(this.hb==dr)this.Jb()?this.gg():this.hg();else return d;break;case 40:if(this.hb==fr)this.gg();else return d;break;case 39:if(this.hb==dr)this.Jb()?this.hg():this.gg();else return d; -break;default:return d}return j};R.dd=function(a,b,c){a.Tj(2,j);a.Tj(64,j);if(this.Ib()||!this.Sk)a.Pb(32,d);a.Yg(d);mr.b.dd[I](this,a,b,c);var e=a.a();if(e){if(!e.id)e.id=a.Xb();if(!this.Db)this.Db={};Qe(this.Db,e.id,a)}c&&this.o&&this.Jb()&&this.hb==dr&&rg&&!Cg(gr)&&hr(a);b<=this.Ja&&this.Ja++}; -R.removeChild=function(a,b){var c=this.Ad(a);if(c!=-1)if(c==this.Ja)a.jb(d);else c-1&&this.Dc().jb(d)};R.jb=function(a){this.kc(this.Ad(a))};R.Dc=function(){return this.db(this.Ja)}; -R.hn=function(){this.Fe(function(a,b){return(a+1)%b},this.pb()-1)};R.jn=function(){this.Fe(function(a,b){a--;return a<0?b-1:a},0)};R.gg=function(){this.Fe(function(a,b){return(a+1)%b},this.Ja)};R.hg=function(){this.Fe(function(a,b){a--;return a<0?b-1:a},this.Ja)};R.Fe=function(a,b){var c=b<0?this.Ad(this.X):b,e=this.pb();c=a(c,e);var f=0;for(;f<=e;){var g=this.db(c);if(g&&this.Ph(g)){this.uo(c);return j}f++;c=a(c,e)}return d};R.Ph=function(a){return a.s&&a.H()&&a.qa(2)};R.uo=function(a){this.kc(a)}; -R.lc=function(a){this.Ag=a}; -// Input 79 -// Input 80 -var or=function(){zq[I](this);this.Qh={}};U(or,zq);ld(or);R=or[y];R.Bc=function(a){return this.Qh[a]||(this.Qh[a]=this.td()+a)};var pr="menuitem";R.Gb=function(){return pr};R.c=function(a){var b=a.d.c(Z,{"class":this.Ac(a)[P](Ni)},this.Th(a.wa,a.d));this.Vj(a,b,a.qa(8)||a.qa(16));return b};R.z=function(a){return a&&a[J]};var qr="goog-option";R.M=function(a,b){this.fn(b)||b[q](this.Th(b[Dc],a.d));if(Zi(b,qr)){a.Xe(j);this.Xe(a,b,j)}return or.b.M[I](this,a,b)}; -R.Nb=function(a,b){var c=this.z(a),e=this.eg(a)?c[J]:i;or.b.Nb[I](this,a,b);if(e&&!this.eg(a))c[Fb](e,c[J]||i)};R.fn=function(a){var b=yj(a),c=this.Bc(pp);return!!b&&b[ib][C](c)!=-1};R.Th=function(a,b){var c=this.Bc(pp);return b.c(Z,{"class":c},a)};var rr="menuitemcheckbox";R.Xe=function(a,b,c){if(b){wo(b,c?rr:this.Gb());this.Vj(a,b,c)}};var sr="-checkbox";R.eg=function(a){var b=this.z(a);if(b){var c=b[J],e=this.Bc(sr);return!!c&&!!c[ib]&&c[ib][C](e)!=-1}return d}; -R.Vj=function(a,b,c){if(c!=this.eg(b)){$i(b,qr,c);var e=this.z(b);if(c){var f=this.Bc(sr);e[Fb](a.d.c(Z,{"class":f}),e[J]||i)}else e[Nb](e[J])}};var tr="-highlight",ur="goog-option-selected";R.qd=function(a){switch(a){case 2:return this.Bc(tr);case 16:case 8:return ur;default:return or.b.qd[I](this,a)}};R.Uf=function(a){var b=this.Bc(tr);switch(a){case ur:return 16;case b:return 2;default:return or.b.Uf[I](this,a)}};var vr="goog-menuitem";R.G=function(){return vr}; -// Input 81 -var wr=function(a,b,c,e){Qq[I](this,a,e||or.qb(),c);this.Bb(b)};U(wr,Qq);wr[y].fb=function(){var a=this.Rc;return a!=i?a:this.we()};wr[y].Bb=function(a){this.$j(a)};wr[y].Xe=function(a){this.Pb(16,a);var b=this.a();b&&this.k.Xe(this,b,a)};xq(vr,function(){return new wr(i)}); -// Input 82 -var xr=function(){br[I](this)};U(xr,br);ld(xr);R=xr[y];var yr="menu";R.Gb=function(){return yr};var zr="UL";R.ma=function(a){return a[Fc]==zr||xr.b.ma[I](this,a)};R.Lf=function(a){return a[Fc]==Yq?new $q:xr.b.Lf[I](this,a)};R.Eb=function(a,b){return Aj(a.a(),b)};var Ar="goog-menu";R.G=function(){return Ar};var Br="haspopup";R.Jc=function(a){xr.b.Jc[I](this,a);var b=a.a();yo(b,Br,yf)}; -// Input 83 -xq(Zq,function(){return new $q}); -// Input 84 -var Cr=function(a,b){mr[I](this,fr,b||xr.qb(),a);this.Ob(d)};U(Cr,mr);R=Cr[y];R.jf=j;R.Tk=d;R.G=function(){return this.k.G()};R.Eb=function(a){return this.k.Eb(this,a)||this.Ia()&&Od(this.C,function(b){return typeof b.Eb==S&&b.Eb(a)})};R.rd=function(a){return this.db(a)};R.Gi=function(){return this.C||[]};R.setPosition=function(a,b){var c=this.s;c||Xm(this.a(),j);Lm(this.a(),a,b);c||Xm(this.a(),d)};R.Oj=function(a){(this.jf=a)&&this.Ob(j)}; -R.q=function(a,b){var c=Cr.b.q[I](this,a,b);c&&a&&this.o&&this.jf&&this.W()[ec]();return c};R.Xf=function(a){this.jf&&this.W()[ec]();return Cr.b.Xf[I](this,a)};R.Ph=function(a){return(this.Tk||a.H())&&a.s&&a.qa(2)}; -// Input 85 -// Input 86 -var Dr=function(a){Cr[I](this,a);this.Oj(j);this.Qa=new cf};U(Dr,Cr);R=Dr[y];R.s=d;R.Lo=d;R.aj=0;R.di=i;R.Ua=function(a){Dr.b.Ua[I](this,a);var b=a[gc](ij)||a.htmlFor;b&&this.ed(this.d.a(b),1)};var Er="contextmenu";R.v=function(){Dr.b.v[I](this);bf(this.Qa,this.Hh,this);this.B.l(this,Wq,this.lj);this.B.l(this.d.p,Jo,this.Qe,j);sg&&this.B.l(this.d.p,Er,this.Qe,j)}; -R.aa=function(){Dr.b.aa[I](this);bf(this.Qa,this.hi,this);this.B.U(this,Wq,this.lj);this.B.U(this.d.p,Jo,this.Qe,j);sg&&this.B.U(this.d.p,Er,this.Qe,j)};R.ed=function(a,b,c,e,f){var g=Bd(a);if(!this.Qa.Ta(g)){var h={e:a,uk:b,jj:c,ui:e?Er:Jo,Dn:f};this.Qa.J(g,h);this.o&&this.Hh(h)}};R.Hh=function(a){this.B.l(a.e,a.ui,this.tj)};R.detach=function(a){var b=Bd(a);if(!this.Qa.Ta(b))l(Error("Menu not attached to provided element, unable to detach."));this.o&&this.hi(this.Qa.Q(b));this.Qa[ac](b)}; -R.hi=function(a){this.B.U(a.e,a.ui,this.tj)};var Fr="beforeshow";R.lk=function(a,b,c){var e=this.s;if((e||this.To())&&this.Lo)this.Ic();else if(!!this[D](Fr)){var f=hd(a.uk)?new iq(a.e,a.uk):new kq(b,c),g=hd(a.jj)?a.jj:4;if(!e)Xa(this.a()[F],Bk);Xm(this.a(),j);f.sa(this.a(),g,a.Dn);if(!e)Xa(this.a()[F],xm);this.di=a.e;this.kc(-1);this.q(j)}};R.Ic=function(){this.q(d);if(!this.s){this.aj=Fd();this.di=i}};R.To=function(){return Fd()-this.aj<150};R.lj=function(){this.Ic()}; -R.tj=function(a){var b=this.Qa.rb(),c=0;for(;c0;){var h=c.pop(),k=h[0],f=h[1];if(Oe(k.$[f].$))delete k.$[f];else break}return g});R.na=function(){return new Vs(this)};R.xe=function(){return Ye(this.tb())};R.Ed=function(){return this.ua===undefined&&af(this.$)}; -// Input 104 -var Ws=function(){this.fc=new Vs};R=Ws[y];R.L=V;R.zg=i;R.Oe=i;R.Kd=0;R.Qc=0;R.an=function(a){var b=d;switch(a[kc]){case 40:case 38:if(a.ctrlKey){this.vn(a[kc]==40?1:-1);b=j}break;case 8:var c=this.L[v]-1;b=j;if(c>0){this.L=this.L[uc](0,c);this.$i(this.L)}else if(c==0)this.L=V;else b=d;break;case 27:this.L=V;b=j;break}return b};var Xs="~",Ys="\u0080",Zs="\ufffd"; -R.dn=function(a){var b=d;if(!a.ctrlKey&&!a[bb]){var c=String.fromCharCode(a[kc])[Vc]();if((c[v]==1&&c>=Ni&&c<=Xs||c>=Ys&&c<=Zs)&&(c!=Ni||this.L)){this.L+=c;b=this.$i(this.L)}}return b};R.wo=function(a){var b=a.Li();if(b&&!Zd(b==i?V:String(b))){b=b[Vc]();var c=this.fc.Q(b);c?c[t](a):this.fc.J(b,[a])}};R.co=function(a){var b=a.Li();if(b&&!Zd(b==i?V:String(b))){b=b[Vc]();var c=this.fc.Q(b);if(c){Ud(c,a);!c[v]||this.fc[ac](b)}}}; -R.$i=function(a){var b=d,c=this.fc.rb(a);if(c&&c[v]){this.Kd=this.Qc=0;var e=this.fc.Q(c[0]);if(b=this.Kj(e))this.zg=c}return b};R.vn=function(a){var b=d,c=this.zg;if(c){var e,f=d;if(this.Oe){var g=this.Qc+a;if(g>=0&&g=0&&hthis.Kd)e=this.fc.Q(c[this.Kd]);if(e&&e[v]&&f)this.Qc=a==-1?e[v]-1:0}if(b=this.Kj(e))this.zg=c}return b}; -R.Kj=function(a){var b;if(a){if(this.Qc0.4?en:vt;a.dir=c};R.Bb=function(a){Ba(this.a(),a);this.Vg()};R.fb=function(){return this.a()[B]}; -R.f=function(){if(this.Kc){eh(this.Kc);this.Kc.h();this.Kc=i;tt.b.f[I](this)}}; -// Input 110 -var wt,xt="T",yt="0000",zt="length",At="[]",Bt="[\n",Ct=",\n",Dt=": ",Et="{}",Ft="{\n"; -wt||(wt=(function(){function a(p){return p<10?Ae+p:p}Date[y].qc=function(){return this.getUTCFullYear()+Wn+a(this.getUTCMonth()+1)+Wn+a(this.getUTCDate())+xt+a(this.getUTCHours())+Ih+a(this.getUTCMinutes())+Ih+a(this.getUTCSeconds())+to};aa[y].qc=function(){return this.valueOf()};ha[y].qc=aa[y].qc;String[y].qc=ha[y].qc;var b=/[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,c=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g, -e,f,g={"\u0008":vh,"\t":zh,"\n":xh,"\u000c":wh,"\r":yh,'"':th,"\\":uh},h;function k(p){c.lastIndex=0;return c[gb](p)?je+p[A](c,function(s){var u=g[s];if(typeof u===ud)return u;return Ch+(yt+(+s[qc](0))[ab](16))[qb](-4)})+je:je+p+je}function r(p,s){var u,w,E,K,ba=e,ca,Q=s[p];if(Q&&typeof Q===md&&typeof Q.qc===S)Q=Q.qc(p);if(typeof h===S)Q=h[I](s,p,Q);switch(typeof Q){case ud:return k(Q);case sd:return isFinite(Q)?String(Q):pd;case xf:case pd:return String(Q);case md:if(!Q)return pd;e+=f;ca=[];if(typeof Q[v]=== -sd&&!Q.propertyIsEnumerable(zt)){K=Q[v];u=0;for(;u=0;e--){var f=b.Ba[e];if(f&&!f.xj){f[N][Nb](f);if(m.Ek){b.Ba[e]=i;b.Ba[Oc](e,1)}else{f.xj=j;c=f;break}}}c=c?c:b.hl(j);c.src=a;na[Mb][q](c)},0)}} -function Lt(){var a=0;for(;a0)p+=1;var s=0;for(;s30?this.gd():this.nd()}; -R.yo=function(a){if(a==vu){this.r.Oa(this.Qp);return this.r}if(!this.r.Kf()[v])return d;a=a+vu;var b=this.r,c=j;for(;c;){var e=b.Kf();c=d;var f=0;for(;f45&&k<48||k>57&&k<65||k>90&&k<95||k==96||k>122&&k<161||e&&k>126||(g+=a[Ab](h))}g=g[A](/-+$/,V);g=g[A](/^_+/,V);return b?g[Vc]():g}T("getValidWebspaceUrl",Ev);function Fv(a,b){var c=$d(a[B]),e=Ev(c,d,b,j);if(c!=e)Ba(a,e)}function Gv(a){if(W){var b=a.cloneNode(d);Sa(b,a.onclick);b.onchange=a.onchange;a[N].replaceChild(b,a);return b}else{Ba(a,V);return a}} -function Hv(a,b){var c=b[Tc](Kr),e=0;for(;e ',Gw=' ",Jw='
",Tx=' ",ay='

',by=" ",cy="Why are you reporting the content on this site as inappropriate?",dy=" ",ey="

",fy=' ',gy="This site contains nudity.",hy="
",iy=' ',jy="This site promotes violence or is hateful.",ky=' ',ly="This site is used for phishing.", -my=' ',ny="This site contains malware.",oy=' ',py="This site contains spam.",qy=' ',ry="This site contains content that is otherwise inappropriate.",sy="

",ty="Briefly tell us why you are reporting this content for review:",uy='

', -vy="Your email address:",wy='

',xy="Report Abuse",yy="Submit",zy="UNKNOWN",Ay="NUDITY",By="HATE",Cy="PHISHING",Dy="MALWARE",Ey="SPAM",Fy="goog-d-status",Gy="Abuse report submitted"; -function Hy(){var a=new wl;a.g(Sx,Tx,Ux,Vx,Es,Wx,Xx,Rx,Yx,Xx,Zx,Yx,$x,ay,by,cy,dy,ey,fy,gy,hy,iy,jy,hy,ky,ly,hy,my,ny,hy,oy,py,hy,qy,ry,sy,by,ty,dy,uy);webspace[Rb].guest_&&a.g(by,vy,dy,wy);a.g(Yx);Kw(xy,a[ab](),i,yy,b).q(j);function b(c){var e=kw(c[Xc]),f=zy;if(e.reason_nudity[pb])f=Ay;else if(e.reason_hate[pb])f=By;else if(e.reason_phishing[pb])f=Cy;else if(e.reason_malware[pb])f=Dy;else if(e.reason_spam[pb])f=Ey;else if(e.reason_other[pb])f=zy;else{Ta(e[Fy][F],V);return d}var g={abuseReason:f, -opt_contentPath:webspace[x][L]};if(e.violation_description)g.opt_abuseDescription=e.violation_description[B];if(e.reporterEmail&&$d(e.reporterEmail[B])!=V)g.opt_reporterEmail=e.reporterEmail[B];webspace.ho(g,function(h){var k=h[H].R();k.error?$(k.error):$(Gy)},function(h){qa(h)})}}T("JOT_reportAbuse",Hy); -// Input 119 -var Iy="goog-sites-pagefinder goog-ws-lp-list",Jy=function(a,b,c,e){this.i=a;this.se=rj(Z,{className:Iy});this.i[q](this.se);this.nc=[];this.Ql=!!c;this.Df=!!e;this.tk=[];this.ml();this.kl();b&&this.show()};R=Jy[y];R.zh=0;R.Ah=1;R.cd=2;var Ky="/system/services/loadRecentChanges";R.show=function(){if(!this.Ak&&!this.zd){this.zd=j;Uw(Ky,{excludeCurrentPath:this.Df,currentPath:webspace[x][L]},Dd(this.Yn,this),i)}this.Xc[ec]()}; -var Ly="goog-ws-clear",My='',Ny="javascript:;",Oy="btn",Py="margin-top:10px",Qy="",Ry="Search pages",Sy="",Ty="hr",Uy="height:1px"; -R.ml=function(){var a=rj(Z,{className:Ly});this.se[q](a);o(a,My);this.Xc=a[J];X(this.Xc,Ig,function(e){e[kc]==13&&this.Jj(this.Xc[B])},i,this);X(this.Xc,Eo,function(){this.Ij=j},i,this);X(this.Xc,Co,function(){this.Ij=d},i,this);var b=rj(ue,{href:Ny,className:Oy,style:Py}),c=new wl(Qy,Ry,Sy);o(b,c[ab]());a[q](b);X(b,Jo,function(){this.Jj(this.Xc[B])},i,this);this.se[q](rj(Ty,{style:Uy}))}; -var Vy="My changes",Wy="Recent site activity",Xy="Site map",Yy='it/name and not(util:isDefined(it/attach)) and it/path != "',Zy='" and not(starts-with(it/path, "',$y='/"))',az="it/name and not(util:isDefined(it/attach))"; -R.kl=function(){var a=rj(Z);this.se[q](a);this.oc=new Jp(a,0);X(this.oc,Vp,function(){var b=this.tk[this.oc.Gc()];b&&b()},i,this);this.ge(Vy,this.zh);this.ge(Wy,this.Ah);this.ge(Xy,this.cd);this.tk[this.cd]=Dd(function(){if(!(this.zd||this.$c)){this.zd=j;webspace.jh(this.Df?{forAll:j,filter:Yy+webspace[x][L]+Zy+webspace[x][L]+$y}:{forAll:j,filter:az},Dd(this.Oo,this))}},this)};var bz="Error finding recent changes."; -R.Yn=function(a){var b=a[H].getResponseJson();if(b.error)$(bz);else{this.zd=d;this.Ak=(new Date)[Pc]();this.Mg(b.myChanges,this.zh);this.Mg(b.siteChanges,this.Ah,b.myChanges[v]==0)}};var cz="Error finding Site Tree.";R.Oo=function(a){var b=a[H].getResponseJson();if(b.error)$(cz);else{this.zd=d;this.Ak=(new Date)[Pc]();this.nc[this.cd]={};var c=this.oc.Ec(this.cd).z();this.$c=Ow(b,i,c,i,Dd(this.No,this));this.kh()}};var dz="Error searching site.",ez="Search results"; -R.Fo=function(a){var b=a[H].getResponseJson();if(b.error)$(dz);else{if(!hd(this.ok))this.ok=this.ge(ez);this.Mg(b,this.ok,j)}};var fz="
  • Loading...
";R.ge=function(a,b){var c=new Up(i,a);this.oc.fe(c,b);o(c.z(),fz);return c.cc};var gz="No results found";R.Mg=function(a,b,c){this.nc[b]={};var e=this.oc.Ec(b).z();o(e,V);var f=e[q](rj(Lp));if(a[v]==0){var g=rj(rl,i,gz);f[q](g)}else{var h=0;for(;h0)return Pj(this.Na[0][Tc](rl)[0])};R.We=function(a,b){this.Qo();this.yb=a;this.kh();if(this.Na[v]==0&&!b)this.yb=i;return this.yb!=i}; -R.kh=function(){if(this.yb){var a=this.oc.Gc(),b=i;this.Na=[];var c=0;for(;c0){e=b?b:this.Na[0];e[ec]()}}};R.Qo=function(){if(!(!this.Na||this.Na[v]==0)){var a=0;for(;a1?Pv(webspace[Pb],h):Pv(webspace[Pb],webspace.homePath);webspace.tf({path:webspace[x][L],removeChildren:j},r,function(){c.q(d);c.h();$(nC)});function r(s){var u=s[H].R();if(u.removeChildren){c.h();Ma(m[Db],k+oC+da(webspace[x][L]))}else{Ta(e.confirmText[F],sl);if(u.onLandingPage){c.q(d);c.h();p(u.onLandingPage)}else if(u[v]==1&&u[0][Gb]==webspace[x][Gb]){o(e.lockedPageText,pC+(u[0].lockUser+qC));Ta(e.lockedPageText[F],ts);Ta(e.pageList[F],sl)}else{o(e.lockedPageText,rC); -Ta(e.lockedPageText[F],ts);var w=sC;w+=tC;w+=uC;var E=0;for(;EUndo";function rD(a){var b=a[H].R(),c=ra(sD+b[L]),e=new Cn(c,100);X(e,tn,function(){c[N][Nb](c)},d);e[wc]();pD(tD);$(uD+(vD+b[L]+wD))}var xD="attachments-total-number";function pD(a){var b=Y(NC),c=kw(Y(DB))[xD],e=b[Tc](Yp)[v];a==mD?o(c,e++):o(c,e-1)}; -// Input 123 -var yD="Comment deleted. ",zD="ERROR: Comment not removed.";function AD(a){var b=kw(a[Xc]),c=b[a[fb][Gb]],e=new Cn(c,500);X(e,tn,function(){b.comments[Nb](c)},d);e[wc]();var f=fa(b.numComments[xb],10)-1;o(b.numComments,f>=0?f:Ae);webspace.tf({path:a[fb][Gb]},function(){$(yD+(vD+a[fb][Gb]+wD))},function(){$(zD)})}ia("removeComment",AD); -var BD="
",CD='
',DD=" - Saving

",ED="

",FD="/system/app/forms/CommentForm",GD="Comment added.",HD="ERROR: Comment was not saved."; -function ID(a){var b=kw(a[Xc]),c=trim(b.textarea[B]);if(!(c==V)){c=c[A](/&/g,ce)[A](//g,ee)[A](/\"/g,fe)[A](/\n/g,BD);var e=b.comments[q](jw(CD+webspace[Rb].displayNameOrEmail+DD+c+ED));Ba(b.textarea,V);var f=fa(b.numComments[xb],10)+1;o(b.numComments,f>=0?f:Ae);webspace.Og({parent:webspace[x][L],form:FD,properties:{"CommentForm/text":c}},function(g){var h=g[H].R(),k={displayNameOrEmail:webspace[Rb].displayNameOrEmail,time:h.time,wuid:h[Gb],text:c},r=iw(b.template.cloneNode(j),k);b.comments.replaceChild(r, -e);Ta(r[F],V);r[tc](ow,h[Gb]);Jn(r,[255,255,136],1000);$(GD)},function(){$(HD)})}}ia("addComment",ID); -// Input 124 -var JD='
  • ";function MD(a){var b=kw(ra(a[Bc]));if(!b[a[fb][Gb]]){var c=JD+webspace[Pb]+a[fb][L]+KD+a[fb][Gb]+ws+pe(a[fb][cb])+LD;b.navList[q](jw(c));m.JOT_NAVIGATION_pageInNav=j}}T("JOT_NAVIGATION_addNavLink",MD);function ND(a){var b=kw(ra(a[Bc])),c=b[a[fb][Gb]];if(c){b.navList[Nb](c[N]);m.JOT_NAVIGATION_pageInNav=d}}T("JOT_NAVIGATION_removeNavLink",ND);function OD(a){var b=kw(ra(a[Bc]))[a[fb][Gb]];b&&Dj(b,a[fb][cb])}T("JOT_NAVIGATION_titleChange",OD); -// Input 125 -function PD(a){var b=kw(ra(a[Bc]))[a[fb][Gb]];if(b){b=b instanceof Array?b:[b];var c=0;for(;c0){var f= -0;for(;f=0?a[ab](16)[Nc]():Wn+(-a)[ab](16)[Nc]()}; -// Input 131 -T("goog.events.listen",X);Gd(Oi[y],"getResponseJson",Oi[y].R);Gd(kp[y],"setVisible",kp[y].q);Gd(kp[y],"getElement",kp[y].a);Gd(kp[y],"dispose",kp[y].h);Gd(Zf[y],"getDisposed",Zf[y].Bi);T("gsites.date.TimeZone.getFingerprint",xF);T("gsites.Xhr.send",nl);Gd(js[y],"getClientData",js[y].tm);Gd(js[y],"getLabelElement",js[y].Ae);T(dt,ct);Gd(ct[y],zu,ct[y].ya);T("goog.dom.$",Y);T("goog.dom.getDomHelper",dj);T("goog.string.trim",$d);T("_IFPC",_IFPC);T("_IFPC.registerService",_IFPC.Kg); -T("_IFPC.unregisterService",_IFPC.yk);T("_IFPC.handleRequest",_IFPC.Pi); -// Input 132 -var AF="xtok_input",BF="goog-ws-unsub-form",CF="goog-ws-unsub-button";function DF(){Qv(AF);X(ra(BF),Lr,function(){ra(CF).disabled=j})}T("JOT_INITJS_services_unsubscribeNotification",DF); - })() diff --git a/docs/i18n/localizing_files/note.gif b/docs/i18n/localizing_files/note.gif deleted file mode 100644 index 3394222..0000000 Binary files a/docs/i18n/localizing_files/note.gif and /dev/null differ diff --git a/docs/libraries/README b/docs/libraries/README index 1d47fe7..69e789d 100644 --- a/docs/libraries/README +++ b/docs/libraries/README @@ -45,4 +45,3 @@ Unsorted ideas from older times: - global unique identifier, so we don't load something different by accident - a library identifier unique per library - a signature per function to allow proper casts -- \ No newline at end of file -- cgit v1.2.3-54-g00ecf