[vlc-devel] [PATCH 1/2] new LUA HTTP Interface [Part 1]

Elminster2031 elminster2031 at archmageinc.com
Tue Nov 15 19:11:00 CET 2011


From: Elminster2031 <elminster2031 at archmageinc.com>

This is part 1 of the new LUA HTTP Interface. This patch includes new
files used as part of the jQuery interface. jsQuery, jQuery, and jsTree
are included to prevent 'manditory' internet access. Flowplayer will
remain CDN. I apologize for the size of these patches, but since this is
a complete replacement of the existing HTTP interface, it is somewhat
unavoidable.

Please see the previous thread:
http://mailman.videolan.org/pipermail/vlc-devel/2011-June/080717.html
---
 share/lua/http/css/main.css                        |  123 +
 .../ui-bg_diagonals-thick_18_b81900_40x40.png      |  Bin 0 -> 260 bytes
 .../ui-bg_diagonals-thick_20_666666_40x40.png      |  Bin 0 -> 251 bytes
 .../images/ui-bg_flat_10_000000_40x100.png         |  Bin 0 -> 178 bytes
 .../images/ui-bg_glass_100_f6f6f6_1x400.png        |  Bin 0 -> 104 bytes
 .../images/ui-bg_glass_100_fdf5ce_1x400.png        |  Bin 0 -> 125 bytes
 .../images/ui-bg_glass_65_ffffff_1x400.png         |  Bin 0 -> 105 bytes
 .../images/ui-bg_gloss-wave_35_f6a828_500x100.png  |  Bin 0 -> 3762 bytes
 .../ui-bg_highlight-soft_100_eeeeee_1x100.png      |  Bin 0 -> 90 bytes
 .../ui-bg_highlight-soft_75_ffe45c_1x100.png       |  Bin 0 -> 129 bytes
 .../images/ui-icons_222222_256x240.png             |  Bin 0 -> 4369 bytes
 .../images/ui-icons_228ef1_256x240.png             |  Bin 0 -> 5355 bytes
 .../images/ui-icons_ef8c08_256x240.png             |  Bin 0 -> 4369 bytes
 .../images/ui-icons_ffd27a_256x240.png             |  Bin 0 -> 4369 bytes
 .../images/ui-icons_ffffff_256x240.png             |  Bin 0 -> 4369 bytes
 .../css/ui-lightness/jquery-ui-1.8.13.custom.css   |  578 +++
 share/lua/http/images/Audio-48.png                 |  Bin 0 -> 4757 bytes
 share/lua/http/images/Back-48.png                  |  Bin 0 -> 2135 bytes
 share/lua/http/images/Folder-48.png                |  Bin 0 -> 1488 bytes
 share/lua/http/images/Other-48.png                 |  Bin 0 -> 3002 bytes
 share/lua/http/images/Video-48.png                 |  Bin 0 -> 5357 bytes
 share/lua/http/images/button_eject-48.png          |  Bin 0 -> 1936 bytes
 share/lua/http/images/button_ffw-48.png            |  Bin 0 -> 2100 bytes
 share/lua/http/images/button_first-48.png          |  Bin 0 -> 2036 bytes
 share/lua/http/images/button_full-48.png           |  Bin 0 -> 3022 bytes
 share/lua/http/images/button_help-48.png           |  Bin 0 -> 2180 bytes
 share/lua/http/images/button_last-48.png           |  Bin 0 -> 2018 bytes
 share/lua/http/images/button_pause-48.png          |  Bin 0 -> 1917 bytes
 share/lua/http/images/button_play-48.png           |  Bin 0 -> 1981 bytes
 share/lua/http/images/button_rec-48.png            |  Bin 0 -> 2014 bytes
 share/lua/http/images/button_repeat-48.png         |  Bin 0 -> 2379 bytes
 share/lua/http/images/button_rew-48.png            |  Bin 0 -> 2084 bytes
 share/lua/http/images/button_stop-48.png           |  Bin 0 -> 1717 bytes
 share/lua/http/images/button_stream-48.png         |  Bin 0 -> 2131 bytes
 share/lua/http/images/speaker-32.png               |  Bin 0 -> 997 bytes
 share/lua/http/js/common.js                        |    9 +
 share/lua/http/js/controlers.js                    |  311 ++
 share/lua/http/js/jquery-1.5.1.min.js              |  922 ++++
 share/lua/http/js/jquery-ui-1.8.13.custom.min.js   | 2422 +++++++++++
 share/lua/http/js/jquery.jstree.js                 | 4544 ++++++++++++++++++++
 40 files changed, 8909 insertions(+), 0 deletions(-)
 create mode 100644 share/lua/http/css/main.css
 create mode 100644 share/lua/http/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
 create mode 100644 share/lua/http/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
 create mode 100644 share/lua/http/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
 create mode 100644 share/lua/http/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
 create mode 100644 share/lua/http/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
 create mode 100644 share/lua/http/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
 create mode 100644 share/lua/http/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
 create mode 100644 share/lua/http/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
 create mode 100644 share/lua/http/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
 create mode 100644 share/lua/http/css/ui-lightness/images/ui-icons_222222_256x240.png
 create mode 100644 share/lua/http/css/ui-lightness/images/ui-icons_228ef1_256x240.png
 create mode 100644 share/lua/http/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
 create mode 100644 share/lua/http/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
 create mode 100644 share/lua/http/css/ui-lightness/images/ui-icons_ffffff_256x240.png
 create mode 100644 share/lua/http/css/ui-lightness/jquery-ui-1.8.13.custom.css
 create mode 100644 share/lua/http/images/Audio-48.png
 create mode 100644 share/lua/http/images/Back-48.png
 create mode 100644 share/lua/http/images/Folder-48.png
 create mode 100644 share/lua/http/images/Other-48.png
 create mode 100644 share/lua/http/images/Video-48.png
 create mode 100644 share/lua/http/images/button_eject-48.png
 create mode 100644 share/lua/http/images/button_ffw-48.png
 create mode 100644 share/lua/http/images/button_first-48.png
 create mode 100644 share/lua/http/images/button_full-48.png
 create mode 100644 share/lua/http/images/button_help-48.png
 create mode 100644 share/lua/http/images/button_last-48.png
 create mode 100644 share/lua/http/images/button_pause-48.png
 create mode 100644 share/lua/http/images/button_play-48.png
 create mode 100644 share/lua/http/images/button_rec-48.png
 create mode 100644 share/lua/http/images/button_repeat-48.png
 create mode 100644 share/lua/http/images/button_rew-48.png
 create mode 100644 share/lua/http/images/button_stop-48.png
 create mode 100644 share/lua/http/images/button_stream-48.png
 create mode 100644 share/lua/http/images/speaker-32.png
 create mode 100644 share/lua/http/js/common.js
 create mode 100644 share/lua/http/js/controlers.js
 create mode 100644 share/lua/http/js/jquery-1.5.1.min.js
 create mode 100644 share/lua/http/js/jquery-ui-1.8.13.custom.min.js
 create mode 100644 share/lua/http/js/jquery.jstree.js

diff --git a/share/lua/http/css/main.css b/share/lua/http/css/main.css
new file mode 100644
index 0000000..191d37f
--- /dev/null
+++ b/share/lua/http/css/main.css
@@ -0,0 +1,123 @@
+root { 
+    display: block;
+}
+body{
+}
+#mainContainer{
+	text-align: center;
+	width: 800px;
+}
+#controlContainer{
+	float: left;
+	width: 800px;
+}
+#libraryContainer{
+	width: 300px;
+	float: left;
+}
+#libraryTree{
+	height: 477px;
+	overflow:scroll;
+	white-space: nowrap;
+	text-align: left;
+}
+#viewContainer{
+	width: 500px;
+	float: left;
+}
+#mediaViewer{
+	min-height: 500px;
+}
+#player{
+	height: 500px;
+	width: 500px;
+}
+#seekSlider{
+	width: 90%;
+}
+#volumeSlider{
+	width: 100px;
+	display: inline-block;
+	margin-bottom: 20px;
+}
+#currentVolume{
+	display: inline-block;
+	margin-left: -70px;
+}
+#mediaTitle{
+	text-align: left;
+}
+#currentTime{
+	text-align: left;
+}
+#totalTime{
+	text-align: right;
+}
+#controlButtons{
+	text-align: left;
+}
+.button48{
+	width: 48px;
+	height: 48px;
+	margin: 5px 0px 5px 2px;
+	background: none;
+	border: none;
+	display: inline-block;
+	cursor: pointer;
+}
+.button{
+	cursor: pointer;
+	display: inline-block;
+}
+#buttonOpen{
+	background-image: url("../images/button_eject-48.png");
+}
+#buttonStop{
+	background-image: url("../images/button_stop-48.png");
+}
+#buttonPlay{
+	background-image: url("../images/button_play-48.png") ;
+}
+#buttonPause{
+	background-image: url("../images/button_pause-48.png") ;
+}
+#buttonPrev{
+	background-image: url("../images/button_first-48.png") ;
+}
+#buttonNext{
+	background-image: url("../images/button_last-48.png") ;
+}
+#buttonFull{
+	background-image: url("../images/button_full-48.png") ;
+}
+#buttonSout{
+	background-image: url("../images/button_stream-48.png") ;
+}
+#window_browse ol{
+	list-style-type: none;
+}
+#window_browse ol li{
+	list-style-type: none;
+	float: left;
+	padding: 5px;
+}
+.system_icon{
+	width:80px;
+	text-align:center;
+	vertical-align:top;
+	display: inline-block;
+	cursor: pointer;
+	padding: 2px;
+	border: 1px solid #823D0A;
+	margin: 2px;
+	height: 92px;
+	background-color: #E1E1E1;
+	overflow: hidden;
+}
+#window_create_stream table tr td{
+	font-size: 11px;
+}
+.footer{
+	text-align: center;
+	font-size: 11px;
+}
\ No newline at end of file
diff --git a/share/lua/http/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png b/share/lua/http/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
new file mode 100644
index 0000000000000000000000000000000000000000..954e22dbd99e8c6dd7091335599abf2d10bf8003
GIT binary patch
literal 260
zcmeAS at N?(olHy`uVBq!ia0vp^8X(NU1|)m_?Z^dEr#)R9Ln2z=UU%d=WFXS=@V?HT
z#xG*`>Yvsgk=}99w^d^D^d*@m74oMo<%#FcopJf?u00-~YVKV2wzrI*_R6;UORMea
zBFVSEnN~eiVA6V&z`E)YLz5Aok^D)In}Yn=OzDpgR5Wv0XfT8pOkmV{sKAJ-PO9#T
zZK}IXj&Q-V!U)!LcB_3K<j6=ku*!%uXjy#leKdQ?`ZvP&RiaPVOzxQ$`O)`M(6sLS
yN%J;Y?DO0<r7?ff#!c6LsA*2U`f2*?C%gsKpMo6zvorv`#o+1c=d#Wzp$Py>0&C*{

literal 0
HcmV?d00001

diff --git a/share/lua/http/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png b/share/lua/http/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
new file mode 100644
index 0000000000000000000000000000000000000000..64ece5707d91a6edf9fad4bfcce0c4dbcafcf58d
GIT binary patch
literal 251
zcmV<X00jSuP)<h;3K|Lk000e1NJLTq001Ze001Zm1^@s6jQ+T70002ONkl<ZScUD^
zT?&IR7(~(AY#^)6!n1<<Vj)fQYm^M-n at 5r1C}@~h2;ohZ7-N3vC*J$+J$LlEJIhL0
z?fU|%;UEDj;@||T;sBg74hkR1O4$<++XU{$LE{Z7;GhCj!9fA2go6yIhJysCh=UWT
ziUV-UI2ia*&y+p!utUI|$6*(^`>bvPcjKS|RKP(6sDcCAB(_QB%0978a<$Ah$!b|E
zwn;|HO0i8cQ<lay$(1s&O|n)t8rvkbvR?jjlN@>j@~)s!ajF0S002ovPDHLkV1oEp
BYH0uf

literal 0
HcmV?d00001

diff --git a/share/lua/http/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png b/share/lua/http/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
new file mode 100644
index 0000000000000000000000000000000000000000..abdc01082bf3534eafecc5819d28c9574d44ea89
GIT binary patch
literal 178
zcmeAS at N?(olHy`uVBq!ia0vp^8bF-F!3HG1q!d*FsY*{5$B>N1x91EQ4=4yQY-ImG
zFPf9b{J;c_6SHRK%WcbN_hZpM=(Ry;4Rxv2@@2Y=$K57eF$X$=!PC{xWt~$(69B)$
BI)4BF

literal 0
HcmV?d00001

diff --git a/share/lua/http/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png b/share/lua/http/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b383f4d2eab09c0f2a739d6b232c32934bc620b
GIT binary patch
literal 104
zcmeAS at N?(olHy`uVBq!ia0vp^j6gJjgAK^akKnour1U*q978O6-yYw{%b*}|_(02F
z at qbE9)0CJMo;*v*PWv`Vh2h6EmG8IS-Cm{3U~`<YvxSSFU3)<QP%DF{tDnm{r-UW|
Dvd<uf

literal 0
HcmV?d00001

diff --git a/share/lua/http/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png b/share/lua/http/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
new file mode 100644
index 0000000000000000000000000000000000000000..a23baad25b1d1ff36e17361eab24271f2e9b7326
GIT binary patch
literal 125
zcmeAS at N?(olHy`uVBq!ia0vp^j6gJjgAK^akKnouq+C2*978O6lYjjF{IFh)jg74>
zFlmZ}YMcJY=eo?o%*@I?2`NblNeMudl#t?<YIry`QK*OGr~otD9plAEGz`5G6d9zp
Wa55e{GUW=;JO)o!KbLh*2~7a@&m@!p

literal 0
HcmV?d00001

diff --git a/share/lua/http/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png b/share/lua/http/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
new file mode 100644
index 0000000000000000000000000000000000000000..42ccba269b6e91bef12ad0fa18be651b5ef0ee68
GIT binary patch
literal 105
zcmeAS at N?(olHy`uVBq!ia0vp^j6gJjgAK^akKnouqzpV=978O6-=0?FV^9z|eBtf=
z|7WztIJ;WT>{+tN>ySr~=F{k$>;_x^_y?afmf9pRKH0)6?eSP?3s5hEr>mdKI;Vst
E0O<Z9>;M1&

literal 0
HcmV?d00001

diff --git a/share/lua/http/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png b/share/lua/http/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
new file mode 100644
index 0000000000000000000000000000000000000000..39d5824d6af5456f1e89fc7847ea3599ea5fd815
GIT binary patch
literal 3762
zcmb_eYgiKKwx-=Q?P<E4nMM;$eWu2m#PU%`&Ae^LOv^6gctJ3vM8!lUG!aCxQ#0eJ
zq?xIqDJi9<fFp>di0+w!yaC|_1uvA>yaxz|iX3eB<LqajpXblFzRUBi^{w~$)_UKp
zpDz0D*=4#5008Vc>v#HR0ASmSVIKMS&kf`CSAV4g0DJLgPkRO79xj%J<(hH6`bTGj
zrr^$JeiHJI?;s&<5pRw-^kj}=E;X0OX+pgz+f5GVt0NQv_gbu0>-8J+F$O>HpW?Lx
z+YFO`CV&6VV9fsEwG#js0_-|v*!ujZ*M=jfo457?0Do-z<^}+8bI+qk+W~+$zz%Z&
z;L7&@&ns`l8Ofh*Wd<Cp_>U0pO%RP^?Xa_h7I}7K#}4Xt`s%-(m-enaPWX<H>$O&-
zX~a1aOzn?!r?5wJVBNPJ_o8-(9Fz<_c1LYGxUl(E+Wdx?wkNHH2T%eWq9Kz00h#RB
zYKI~=a<9_QqC^n<>hyWlS66waWgyAP#t&TfTWP=Sxa)ukRY%j7WH}(@r=B^W_;b&M
zRzPYsb*j^Kou%%`K6VP+dKtR at x~qEHq4rXMxoX-gcSf&->lMY%TMXF!Gw_A)(tp6}
z2A%kN3twbr%KyUrrmw24V3d%wzK<-q(M;MTr41}un`P!!xejADEv_CJ{CTif907B&
zEP`pDJIZHVgnmxh$EZnBOUxz~Ap+ZzKbFmg39_n-)$wY!Q at i~5aGmHbN7&*gk<HNQ
z!$-sS))5(#?qPW$1C^3#;cFvQMWTd)d(I_4awE^ZjGC%XcnSGez>q9zWgV|2(Zhxl
zoDqJp&MxW(qX#C at oF8L)*r$RdSjVFSc$%z?*9%YoZ6sOZ!vtxXtBM<*r82<p7}?1@
zveQI&tiNm{;57jipQbO}b?9l*l4nGAT4Y=-w()@*#J1?%2{)nY^{|NO=xM)s?jR6<
ziJ!fSOOPs*$8->vyC}_Eiz1PJ2L$bttko`=+fH{Ne at G#lMDxkKt_y)O(J5&Ak)w-I
znm!vzYX3$kLDG$hOp-KJg~7}M;73BFWA{!a61fe?NJkjR_}Xw+*`O0=AGg7&dU<kQ
zA;d%-zM*iwS2t8Y)Gu at JK&A)fV=HHvbW`6mV+EZrtJSauApMCndBS~F>A`A?9`whW
zM{fkFf`G`P^9j*|-q9KLvS<191z9a^mK3Lss}W8O=sZ}N$V4Fh*SWF5NbZQ>p{0>$
z0pe}d$*s!y<I6P at 1-n$GE>*R&NSXbjmld6{4Y;O89MuDTK0Hn0C?QdL9z1qGegXs!
z7$MIGkPkwdHF2os-Z-e85B?5An>yc|m<}>!Iirg%H-<NQ%ws0uIi51-a5phDmp{k5
zD(zjPC;t}@{w)+0&{l~FS*>%F11XY{{>@kgL>a#6fM9JzBE&an&F>eWh|b0^kJ<?n
zs=7WyuX=fIhvAjTTX`c}HUH)bTTI;OJGlyB{(NK&G;Htmn6^?c?TaAsOV}uBUtAa>
zNBM5*nCa~(xwn~rG~<cfPp*ub4V(WF)lGbJpS(|MvAA83yV}}9bfbt(>>GSG9mz3h
z9F~64y}giIrz^lfl|_5HpUsG}?Wpr*&f?bS=|9biqivN)-a~u>uK<{Lfcng{663QL
zLXzO@*N5)q4C=j6E8nC+P%lEwI#~0wkt;M4Y8!+DYzN2rBuYao1*HRIa^NC9nFeep
z+ns5$X9Bh48S-`ss!k&!J#Ddd=j1O-9}?`v(B|<M1 at -U18t+Js;ZNHIk3$u$U;Eyu
z3exyGipUQbO;S|Bzp(hX{&!NB at oq*gb}e^)68}5#!kH$BhK<@5!ubu^XDa&d1C#@|
z3yY}&(~QVLCVdv){)I_ECxKsIlmW8LZ!;=rtk4ZaX!xm*=*Z(|P+Uqf*Rg<I!Tau&
z85{4>>R7wD97BV;nK~quUHx^mj^G6K2GZ1*uSN?iLm!7vHB7_1^TGbKhmnK+K`GYA
zocp2=on8LxJH^`7^1ch0ft(MTU$vJB!R at gQ^R`qoX>(=iY#u++3K>oqSpG={?#YVw
zp3m99FXk^~<6#X9X1oKYXEH%8t2btG65(u0zF-J)^>8dj0Evc+9_Bd^Y)k9AfW~FV
z%iDV(ClS6)TC7eVzh{ml;p4cx8)$TV&qhRWp+dqiw>i32?1;5d>HLrNj=^OdJ<}L)
zWxqw8aFI<~_TkMDQHS?`z+KQ?+{ASoy%}RBu6i9?BXbh%OEx1OuZ}?n(VjrT(!B1;
zQ!#WA0NBx=^6rJrFVsDCuT4)OTG<Ikaz*O8tFTZ)QL^`qbYu)jq*kTD>zZ3$Z4Yqz
z&c9+7%g!%zxtv#p2fhHbo98KBwfE<e9Z<Yr%uRWj-5Hd3hTYY<&ve`je8y8RV)knu
zYCT0K`*JrRv<nx%jAf>&Y(&2#=}qEEU`ECEjlCp=X^_tIoMx>%kBT5k)^c=zyV5w3
zc>DLKY6%=y0igWi9B at 4hB}bR6K|+jYBt+}i6Ld|b`*s62c6Ge?zGYvdW)=p90~$Ad
zxGB>c<3Dy~hPJ#vNXierOl41xBn_0L<5NhK6JO-LvtS&Z{xjGKfIC6*9%*?tv*?+!
zv;Q{?mHN2b|3DEJO}R9w11ZT5QVC(H0u|0n9cVK_ at 2r%C<)OnZ(3aS0Ux^6G$ja*<
z9R~o~9XjhPL)w at vYi6r;H$tR>wW`0-Z&Qed`X0LZY9-~mfso!@dt?5Q;@|K6$mAB&
z$J41&y)<{N;QATPeU}BC{lM_<D4HZA)B)i-;gJ1pwusq$h>@-LlQ2hjX;}6~qdglT
zGm%qJm*F^in=w*?j;@C_P<fNuR>CMnXK5Fd^wXV**pZOdS1KbSJsC~s#R;tmXIMb`
zHB>sx<rNDl at 4+*>Qg&E5Yf@}d#~Z9D4R{}ZpLm7S=bY0x#k<=H?=R+=W$=Bm2aU*n
z)qgD*0#4>GGlHhQ`bx#k=Njc;+9D@{F5`xI^tMkBf{XIzwB=b9KbuuLF7jMTR~Mwt
zN#!)9J4&^V at JRe9Y!b2!;$rCLPWZfG`C;Qz`u~TJdCzv->e`=R8uHX_2{Fp&pWJ*h
z#A60&bY(j(^P at t_`_pktBV7{tFVoeNWlNA|zgNr&DMjJ_!k2%2s2~F at la$M6k%hWi
z7}}hoDuoaN7?lchVk at 4DunpEIS$72&uuF&F;&4uhC$L)6IzHHUryR9emzpxwsRXmj
zfc}pI#oRCB7Y1;t=*58Gsv7x3PGuW^spn6V&dWf#?*TQ0(|*rr=EeE1o~y1<q=XbB
zH7M1n6!fSD?pm#tnQqCt>wyQi%)e*oX6iX@$m0F1R<jp2X5!4xYkF7J+;bthC|!^_
zfGt{`v`5 at +vH^moN%0^eXsq^fv|D%^4d2~y%?^q=-Nv+wR>tKUT0vgg!8^fWhYLqS
zF at EOpFld7>f^kprb~YwMq=^<<pan6S!*H at g7t}eQJLhuWeLGTkT2P+Ck3!Te1lk%)
zt9TCz)oC3>e|gw?QFyf8ck|ZC^>)3c`b$^C>jCB4Fne_1e$Cqt=4Ud#K~~8Nfa91W
zwk17&D?X?4FRzR+5qCiIqPf0};K4$tW$}l~A?u_E=JSe;*f_DO>r{z=U4_<)dY)M!
z7O#mizC+GN&#;)k)vkBU<tXnqP_^|-tGmZcT8Dlxt6Pn?`uypBX at 1fVrNePVd#ALp
zF4$80+ at AG;7xl5W_sE^yNYES$<C6}`Zb1&JCZx~nYEbc%r#1d%Mn0pgS$5QlwG(ot
z!Za{>S at fZesb{v?YuFlCPRjsT5bxB4 at +sqdq}xvvBhTngZ(N1LUCS-ei=5sgE-Tbc
z7HK+A_O23MP at sUoc?I?*ZB|F)&%us|2<oRU<$~ApQ%f%RU*aE`VmGrB<J4ieMCirV
zP_~OQ;txr2WBgPQtAbapRV&BoULc}?@}z*gAAJEFNo(?(iOCZhqe)W78eZ*UvaN at 7
zhKKGvt0!}(rjB;qc0K^%h|5n7(;vc+uHx|Dg@=F~<I;s3VT_=D#he%5p2SoOly<_w
z*HKrz at ej3W?Y+xd+RJZ;9WZCGEGI{ETYg8h6;=d~Oi`<7 at VfdE&iUPi>O$#G7V$6z
zq>G%6!cu7OEf+_#^A=23Hd6Db9-yK*NQ#<PGnv3oz%Gl*Ib##q`dB%MvY>S+kjJI7
zhLiLz{>zKKtHH>H;B-cALzj`>@+-~?X2aP7ypf9WMf8q0m)wS!Nkf+&R&&zEjFOUx
zlq^>v#VAq}=)?dKRMe+010g9O;qAiaTA4dV+==mw%i3Re)DwZ$Wd5CK1m4Ivy&&Ef
zO8W!SpcgA>zfTGAE!{IPJMhdZ`T4{K#7ndDT8K2&*jf=J8O>H*iDJ}ZK}z|$C3U62
z$nZhk4v$QIYzMaV+0`B8S!=9RSYzi*QG#tp>ZY|lY_`}A-zI7)(tV$B9G-tC#zt8m
z<!M at MT<43;wMNmuo-kSmPm5UQboY7uH(`#(7slpt#=BnL_;t>re~pD7oIFkmIAM=s
zw+Iili%nSC?yks)t~q4lTlZW(#5^yUV at +^KvIuQzZDO^*TBz!<CtQh2rfO<z=TS{H
zzIH*$V56H0{EnCR^XrG!ZG7AjD4r}Q(t2l9(P&QU6M<44;NxCby12gE#~t-zco3A+
rQq8KZ5e*fKEaO{0Ke0s~Qmy6Xh5m%FO!wV}CE%>j#nX%*uiW|{x9q0w

literal 0
HcmV?d00001

diff --git a/share/lua/http/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png b/share/lua/http/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
new file mode 100644
index 0000000000000000000000000000000000000000..f1273672d253263b7564e9e21d69d7d9d0b337d9
GIT binary patch
literal 90
zcmeAS at N?(olHy`uVBq!ia0vp^j6j^i!3HGVb)pi0l%l7LV~E7m<R2d&AFo$qV`FPm
oboulDzr6KyA+fs7hb{~ZQx+&qVC9&67pR!Q)78&qol`;+0H8b=ng9R*

literal 0
HcmV?d00001

diff --git a/share/lua/http/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png b/share/lua/http/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
new file mode 100644
index 0000000000000000000000000000000000000000..359397acffdd84bd102f0e8a951c9d744f278db5
GIT binary patch
literal 129
zcmeAS at N?(olHy`uVBq!ia0vp^j6j^i!3HGVb)pi0l!vE_V~E7mtNjN#8yp0f)nD%C
z{k^&2ZZH4W#qke67#j$%IepV*`yn{#P|600IVRJjChwXe(ssyZ>xPQ=F85a&M at g_{
d|GeK{$Y5lo%PMu^>wln`44$rjF6*2UngE4^EGqy2

literal 0
HcmV?d00001

diff --git a/share/lua/http/css/ui-lightness/images/ui-icons_222222_256x240.png b/share/lua/http/css/ui-lightness/images/ui-icons_222222_256x240.png
new file mode 100644
index 0000000000000000000000000000000000000000..b273ff111d219c9b9a8b96d57683d0075fb7871a
GIT binary patch
literal 4369
zcmd^?`8O2)_s3^phOrG}UnfiUEn8(9QW1?MNkxXVDEpFin2{xWrLx5kBC;k~Gm<qS
zlCjL7i8RK}U~J#s at 6Y%1S9~7lb?$xLU+y{go_o*h`AV=spXY*!!T<mOmxZ~R9RL9Q
zdj+hrf&W^P#f9C!Zpp^V{;aID?ElVL?Rdohw{Ucz9r_YL7=D6<&8F>PmYTG^FX}c%
zl<zAi(m>GE{DS1Q;~I7<vD)$Yj(fd>-6ze&TN at +F-xsI6sd%SwK#*O5K|pDRZqEy<
zJg0Nd8F@!OxqElm`~U#piM22 at u@8B<<ecI*S<egUH7}csd8!)jLBD2s`p(8v&--KE
z71^q9MglFywkSt_5FCr2F%o&UR(5j7-O>moyKE%ct`B(jysxK+1m?G)UyIFs1t0}L
zemGR&?jGaM1YQblj?v&@0iXS#fi-VbR9zLEnHLP?xQ|=%Ihrc7^yPWR!tW$yH!zrw
z#I2}_!JnT^(qk)VgJr`NGdPtT^dmQIZc%=6nTAyJDXk+^3}wUOilJuwq>s=T_!9V)
zr1)DT6VQ2~rgd@!Jlrte3}}m~j}juCS`J4(d-5+e-3 at EzzTJNCE2z)w(kJ90z*QE)
zBtnV at 4mM>jTrZZ*$01SnGov0&=A-JrX5Ge%Pce1Vj}=5YQqBD^W at n4KmFxxpFK`uH
zP;(xKV+6VJ2|g+?_Lct7`uElL<&jzGS8Gfva2+=8A@#V+xsAj9|Dkg)vL5yhX@~B=
zN2KZSAUD%QH`x>H+ at Ou(D1~Pyv#0nc&$!1kI?IO01yw3jD0 at 80qvc?T*Nr8?-%rC8
z at 5$|WY?Hqp`ixmEkzeJTz_`_<!oE0dsO`po1=$i_1k<Um_}caMZcrpqA*x-}Rw(fX
z3Qyh8;-4^Fe)UICI at ayzmyV?48GbR;1*s>wsSRi1%Zivd`#+T{Aib6-rf$}M8sz6v
zb6ERbr-SniO2wbOv!M4)nb}6UVzoVZEh5kQWh_5x4rYy3<sHrHJLqL+DcLT5`t$L@
z5_J8#H;PWO1GW at oId1Y>c!871NeaM(_p=4(kbS6U#x<*k8Wg^KHs2ttCz<+pBxQ$Z
zQMv;kVm5_fF_vH`Mzrq$Y&6u?j6~f<juy`C^I0O`4mfXK0lrRY*VoeJX&k$9aL;Hl
zlp63sf~-1z_419)A8^j|LeQSmK&T8R7nA=Ki3^H;YaeL&hF6>tIV0Yg)Nw7JysIN_
z-_n*K_v1c&D}-1{NbBwS2h#m1y0a5RiEcYil+58$8IDh49bPnzE7R8In6P%V{2IZU
z7#clr=V4<zT-gP2u}DD>yyrRe at oXNqbqo^^LvlLE?%8XaI&N(Np90-psU}7kqmbWk
zZ;YBwJNnNs<m6GqjV2(cCX2e+#tSOgIGm~J&Djknhy!e`&p)NTq>$~d!mx9oMGyT(
znaBoj0d}gpQ^aRr?6nW)$4god*`@Uh2e+YpS at 0(Mw{|z|6ko3NbTvDiCu3YO+)egL
z>uW(^ahKFj>iJ-JF!^KhKQyPTznJa;xyHYwxJgr16&Wid_9)-%*mEwo{B_|M9t at S1
zf at T@q?b2Qgl!~_(Roe;fdK)y|XG0;ls;ZbT)w-aOVttk#daQcY7$cpY496H*`m at +L
zeP#$&yRbBjFWv}B)|5-1v=(66M_;V1SWv6MHnO}}1=vby&9l+gaP?|pXwp0AFDe#L
z&MRJ^*qX6wgxhA_`*o=LGZ>G_NTX%AKHPz4bO^R72ZYK}ale3lffDgM8H!Wrw{B7A
z{?c_|dh2J*y<H{`M3l!HEtOc{;H{lJx}(C|*lvPQ+RAcV`>8b04c37OmqUw;#;G<*
z at nz@dV`;7&^$)e!B}cd5tl<nF(??uM#|`*5pIKe!DEUl5-&9M=s_3Yn at -P(czyPQ~
zTU3I3bk%z<*w;9V(oQvt^2H`kBAW;=2oA<L1<qVIK(Z{Hk at 5&E&_2mS+|}+?g at FBu
zK+e=OWg<)e?RO;llNw00>0{g(Q>5_7H^@bEJi7;fQ4B$NGZerH#Ae1#8WDTH`iB&)
zC6Et3BYY#mcJxh&)b2C^{aLq~psFN)Q1SucCaBaBUr%5PYX{~-q{KGEh)*;n;?75k
z=hq%i^I}rd;z-#YyI`8-OfMpWz5kgJE3<X7ptj0dmPk5UrEf%nVD%<Giiw4wVh!K0
zFjy-VAnpOFJIDm=jqqahP0Wam<9qv4UMIazx8J<YJz>I!3ean6=UZi!BxG7i(YBk?
z02HM7wS0)Wni{dWbQMRtd-A)_Az!t>F;IwWf~!*)-Az4}yryNkz&9)w>ElA80Oc`6
zHo#9H!Y3*Qx9n at Jn)!w6G^hb;e_n8zpIyXCN`JFkPc)^Q?2MsLNFhMgrcZI-<#1ne
zjH;KFf?4eAT9<t<iUSC5BsF-<$q+H@@j%Yk>mQZ}ZfHLGA#d%s;SZK4p0FwZT2S^{
zQ2BG1xJsbK6?yrHTjJi|5C0u=!|r!?*4FL%y%3q#(d+e>b_2I9!*iI!30}42Ia0bq
zUf`Z?LGSEvtz8s``Tg5o_CP(FbR0X$FlE0yCnB7su<mcL>DPmI2=yOg^*2#cY9o`X
z;NY-3VBHZjnVcGS){GZ98{e+l<X|f4%S*+x526SE1mJ%6M<Nt*!}czEQf{?H1U0br
z^Y7cXNxH@=Ve^#j3H at BPU>q~O$u6pEcgd0CrnIsWffN1MbCZDH<7c^hv+Z0Ucf0{w
zSzi^qKuUHD9Dgp0EAGg@@$zr32dQx>N=ws`MESEsmzgT2&L;?MSTo&ky&!-JR3g~1
zPGTt515X)wr+Bx(G9lWd;@Y3^Vl}50Wb&6-Tiy;HPS0drF`rC}qYq22K4)G#AoD0X
zYw$E+Bz at Zr^50MAwu@$?%f9$r4WHH?*2|67&FXFhXBrVFGmg)6?h3^-1?t;UzH0*I
zNVf9wQLNLnG2 at q>6CGm>&y|lC`iCFfYd}9i%+xkl^5oBJ?<;aneCfcHqJh7Yl5uLS
z9Fx-(kMdcNyZejXh22N{mCw_rX1O!cOE&3>e(ZH81PR95wQC37En4O{w;{3q9n1<A
zPC{;HRD3#A!@Lk)+k!~onQ0|-U%#uGd$&L?ZhNC&R)V(mb`NhUqrYysoMQ;Z)sq!y
zW_WwV!+jO*nGT8-Hx_JVmFK^=>t&;p)D%&Z%Nw$gSPa!nz8Slh7=ko2am)XARwOWw
zpsz0~K!s{(dM$NB=(A=kkp>T(*yU6<_dwIx>cH4+LWl282hXa6-EUq>R3t?G2623<
z*RwTN%-fgBmD{fu*ejNn)1 at KG?Sg<bw3hQ~jCP9_dLp#J9Fi#nX3wGv<cLwQ;8x0`
zA<%pA%E0S;<5FJhw8e#?n&IA5g19Fv!v7YC%Gxqd<x1=+hht1t>*8z3hYtkQJQjB6
zQ|x>wA=o$=O)+nLmgTXW3<g>_6diA;b4EY{*i<HxX2Q~PA|R-tJ=V1~4KO3h7H~CG
ztNFL#J=a at 4Q5K7Ogvj-+3N_IJUjc}x34}a7 at bDE3!)Kj4s7ME<v)`yP${V~G_J at 6l
zp{&i)CGxx1)X`lnwc}#g;g<(rA1#7Ez8 at J}tuMD3bB{Wifbe~LWT0zYNjgb_qn|+G
z2TCDZw1rV|wPx@~-H8<4^MGxfR0aLq+_k+{JT<mckxWLsw*J%G%YH0>*R%6dO2EMg
z at 6g?M3rpbnfB at hOdUeb9<OD{Zt&T^7p>6=~I?OIA3 at BWAGmTwiQ{x5Cqq<8c10L!P
zd at Qk^BseTX%$Q7^s}5n%HB|)gKx}H$d8Sb$bBnq9-AglT2dGR2(+I;_fL|R4p$odJ
zllfb0NqI)7=^z~qAm1V{(PkpxXsQ#4*NH9yYZ`Vf@)?#ueGgtCmGGY|9U#v|hRdg-
zQ%0#cGIfXCd{Y)JB~qykO;KPvHu|5Ck&(Hn%DF~cct@}j+87xhs2ew;fLm5#2+mb|
z8{9e*YI(u|gt|{x1G+U=DA3y)9s2w7 at cvQ($ZJIA)x$e~5_3L<r=v~@?aZ+642@!3
z&nTpp8p^rR at IEsq`uhzfD&i>KFV~ASci8W}jF&VeJoPDUy(BB>ExJpck;%;!`0AAo
zAcHgcnT8%OX&UW_n|%{2B|<6Wp2MMGvd5`T2KKv;ltt_~H+w00x6+SlAD`{K4!9zx
z*1?EpQ%Lwiik){3n{-+YNrT;fH_niD_Ng9|58 at m8RsKFVF!6pk at qxa{BH-&8tsim0
zdAQ(GyC^9ane7_KW*#^vMIoeQdpJqmPp%%px3GIftbwESu#+vPyI*YTuJ6+4`z{s?
zpkv~0x4c_PFH`-tqafw5)>4AuQ78SkZ!$8}INLK;Egr;2tS18hEO5=t;QDmZ-qu?I
zG+=DN`nR72Xto{{bJp||`k}-2G;5#xg8E~xgz22)^_Z;=K|4@(E&5J)SY2of=olcw
z5)@L)_Ntcm!*5nEy0M9v0`S33;pO4T<mv%0Rx6?c2H~TA%zOO^T2$@D<Cut3{ae}|
zAT at Uzc>N;>4(Z+<j5j2DQ*r;U|6a;YfP1jST$I3mSn3aNn!?<=B-XkzG?hQH;@bu%
zmFYDDgbC%Wt{6LBrs%88L}deF9pse}dmIp4lmp at Tir9q)JKESa=h>19p_0>u#e-vE
zXCU(6gAvu~I7Cw(xd%0e59MNLw^U37ZDbsBrj%eDCexw8a3G`nTcXVNL6{B7Hj at i&
zbVB{;ApEtHk76q08DJ48dSxd$C(;$K6=FpU<~l9pVoT9arW^Vu{%Bcn4`eIpkOVC|
z$)AKYG_`ypM{0 at BUb3^9lqi_c?ONH|4UJMJWDowMVjacycX7}9g={O7swOB+{;+?;
zjBo!9?+nd)ie#x5IbFW-zBOo0c4q at 9wGVt5;pNt`=-~Zgcw#*`m($6ibxtZ`H=e=}
zF#GZ~5$%AUn};8U#tRem0J(JTR}<qii}wxmUzVwVIg2$uE2;GN{hhT&GE1i;_fi(_
z9KKXP)ds1Q)XnUhr?uXO-HbKE%5f%+-C>d4vR(dgK2ML~lZsPhayJ2h1%sD4FVst|
zKF)+@`iNzLRjg4=K8@**0=5cE>%?FDc({I^+g9USk<8$&^qD~@%W0i4b|yMG*p4`N
zh}I!ltTRI8Ex$+ at V{02Br%xq#O?UlhO{r8WsaZnZCZq0MK9%AXU%MDLT;3=0A9(BV
z9VxxxJd7jo$hw3q;3o?yBLmA=azBUrd9>-<_ANs0n3?-Ic*6&ytb at H~?0E(*d>T5n
z-HiH2jsDf6uWhID%#n>SzOqrFCPDfUcu5QPd?<(=w6pv1BE#nsxS{n!UnC9qAha1<
z;3cpZ9A-e$+Y)%b;w@!!YRA9p%Kf9IHGGg^{+p`mh;q8i7}&e at V3EQaMsItEMS&=X
plT@$;k0WcB_jb;cn%_Idz4HO$QU*abf4}+wi?e96N>fbq{{i|W0@(ln

literal 0
HcmV?d00001

diff --git a/share/lua/http/css/ui-lightness/images/ui-icons_228ef1_256x240.png b/share/lua/http/css/ui-lightness/images/ui-icons_228ef1_256x240.png
new file mode 100644
index 0000000000000000000000000000000000000000..c357355aa7bb9201f3d40b8996449ffa1035dd6a
GIT binary patch
literal 5355
zcmd^@=Q|sY*Ty4}Sg~tUYS%7WTN1nWh*^78OKq`<t!jR2)hMO3XweomBWjnJHB%!-
zQ7UF_etrIq=UnH-=YDtY`_+A&=f;NG)RgR$004mcp^k<r06_8&0ej at 2e^h4}=JQYd
zG1f<F@~0pD|5*f2KH;Bn!$4C*GXN`{G%2}pXWT0ZUZgMF-I1LE2jx*_R at 2eFZ6hdU
zDwZId6x025aI{}ugR`S0qNcGTt?J_!;j0pUA|(WvQSO}crp{}rSWDGAD$B!TLgxwq
zV03t>fk1{7{jsBR!8g%E26b)T=a*gPb38^(ip_l%42LO-Kay$NnyB5rx+#%a at xu}T
znLj3VQ;l-pbRYVX?gHpY6Ie+DOVqAdirXmAkq<y23eOt at pk~i<)d!}m2AbE|_g6Wy
zS0<*{OqJ;wP1r_iwSMuy%#JTIz7vad+*w5hTS8BY1DDJ+#kKdBPc!AWRksn9h0o at y
zT~jK~c4&B_Z1{G6b&v$mElkxt7!}$Xt9LgntcoxFAx!<LG=@`3pt*<7Us%J6(MpfG
z(j-p*i at k0k=#~gugI*2^wg;T{{Zkk+|1+Yip}uJ=>L%1x9Lc5s#O;v9tj0`O5B<A0
znUg(RnP+?3Ipz{yG(EhkDPY(-vM^{CH6!8BeBd(6--$CZcUBQq|8&2OtaeA0&QiSX
zgUx$+HFlk`dCt_7**sDHDB`W^{+d>xsN37Ly$`Hs3L*-9H*C7>BI_0!=OqN6!<>=T
z{sF%{c&kL*^y!nEkzq<~^_)*l_X?`gG|DVL1*}u?Ab80E)kW>XWj+*pKQ}ZF9>sQI
zI#bP^hT|KD=ql{&@J3(L-ua!5Inx~iD~`D4 at Fz)7_sGD#E!={O*92Y#ud4Df=8=q{
zu<P_2BeZ6H8>mAlgz&cU9rQbQTQr}T8^dvv9g at oLN^)>HH=@&J3BPudkDjV>e$C<T
z>$|=5!dd4YPz#WUHRJgn!2N-XHXEv+FeMD*jVo`h#`9To)xCHzW?X*v at G?XFfx7K2
zeg+Hi0z|_IKh4DS1dDSK^zTvznpp;GDw{v^>?nV~*-_iJu)g^vCaR9oMNwU1Y(39>
z)9Llwjex5lbvrp_IyX77_I6o{ck>g2OW*6J+02<}GNyVsEm?}*iN89>sdq9T4WQ)8
zx`UA60wSFa3TG3%qwAd(@jH`Y*94;;t)e9J7V=wQdBS+=U4V5|yC~bTz>3vJS)v)z
z$x>s%jK*?u!0l-eB!}L9a{T2(RwB-T_OYY`JB>kyj~nltV09GRGoCo170Q5fqnF8(
zmjB5ei6?xCUY=1(khx6=Id*6G`yaVnXt{qf`wu?#mf|&01s6{P7CVV!c|Yq^R#!gL
zj(x|>D?n%6+)4F at r<1w8XJ!0fzDr4Cm`G49e_vDv`RCEq6CG>L*!8C0FYZgnrA?Q7
z{k2Sv=326k_%+YL8G8mA+jGW;M>utf!8|c&O-WQQHZH*vq~A0Qn}Yz#eN>cOXF|L<
zX1PGLOjym4aK_G4gd)r-(?GhDU)wKHO*F at Ykt9hStQwf<=3qo3-}Pw^>w22 at UMkqw
zt4TA{5lelHKn%wAcR$*aD8UwFh0(h<Isq(t(35;dYqEleWX!)OJ&$0Mo0okSq)q6n
z70T2MvV&7cJM`RtK;vpQKEp&^IcsMYw|=>FF_6w9mQ8l8_tDZ#q_S?-)ooj5fEGIZ
z^N2TUf{cxJdb at O{+b at PH7@~Wdpa>RP<dNAb?g6Y|*CTuzc-7UQ at TDJm!rNtAOGGte
zAm6e63g+S5 at qT|$)t+3RFz?gofn3BFk{Bt at Sj**aqOkJq4W at a&dR}eIq4xy^>yE*=
zw-?)%orqOJ+s200FL4~5qtoPe4Zy9&uGpJ*jP;eXftp>ruju`X#ZHpwqAO~dB5gaf
z?sSQJAZw?Ps-e64i`{W#$y1Lm*V~lKFmFXSRS){90-kl!FKr^zrdehaMZN?KHWVN9
zi0R>*>TRo&kMU2QI&!-$FL8nVtufy?=m9L>6+)fn$Eqmb>z7ABMql5B=s&85BIUHp
z$t!=~Fk!!*m|ikskBu>O#;xi6Yab=07MRP=L{MfIKLahbD%;gHyYYZuZITda#c{SA
zkH9_s?6ff$`;<JplB$=oiJaETCTbCfV1s+%u>Wr5PJ<4Wa+rg5(^;`Ci$~u$ytE*~
zKdu7N572EeK>K!p*;b-04S?81b#`H4)ZN@!!C1S8vP8F#kR5dKzBKwVR!-e416~Mv
z+y3XeYpjPUTX4%N>@E0o_uWhg3L--WwGD=0gJCKVY2cuR?G$b5%t;Si;7zyR`+PiH
zi}O(pnNnpB_cg{`m@*n;I!kIV-yH9m3k%dsSh`FJ))j6dR$@qjxEFy08D#ziHHV&~
zXX at fvc2-vGR~lY574!m0$E(}IXyP~Pua~9a6+d|m+aj8#Kvq~C6=R;33Q}q5zv*3l
zgU5iw+Z-kMEuKi<V3m5J7chHSd1}e-GqPD6-RrWNrjtIL)*sL-SV{ko!c{p0dOPtR
zt2gfJ(!i-NET`nf^8Lel6AnpxP9s`nkf-?7nWn2E-G}5b0`^>zR%l;2;oBtBLzU&H
zHpUsT#{ohJ3-rGDfIG5p`SlSt5~nSVf`o(T#3HN^tZ#=8W*<NhNru*g&1#>n7Q^c1
zT4R`ciOc>FUW*wscp+Apyk_+%q6F4Z@*iC4KgEXP(bbd;?hi`f?$sl|1f|w<!t&IY
z4OAWFr at et?33+lKcY!c2Gjda--2s|JMxa)n)_6$j?w+9S7({+0jVJiV2y(zF{EOhQ
zpgjy4zTHSU+adlQHhGQapac7Dlm=I)^k+<2lTK)ZWz*)7qK52`GF3^bj at +$X0r88M
zkmU!1RkMsgBg1W;ob03qd6tfY7d1)>4|FF>*e}QT%gt=<!=U<Lu^_G1ONPMqA-zzK
zSh{1z$fv7wuKw=)>o}R8%7}YXN&O|^&|9p2swLaWGm7f2r3Dgsedb*`a~<Ieh>AL&
zr>2JSF%%UW^_d*;oS^LS5)%q`$PTkvY9|_8{0SgQXNMufSs?RD{Gb4b8Er_;_f-XK
zfF{39aPuhO&}oK!1ed{#*D_Dh;bZ7LpQ3Q%A=m!#>)xdeYjD|ug`8 at xx6`E2BRo#@
zJDRC$kk~29nWCe`P+e%x0jZ at 1%_PR;9$oYq)fu{X)OU0veZ!p2!F%jfeP|1~k)&iN
z^TC+epHVxr=!Ma=n&6O5q&I#(hPK*9dzFve at S1lHg6+gP*#*Qjrc4!WHvP4dqa1SV
zyDF!d-apq4N9~+`Ye?9FVJvF58Y~^U(nhqbaaB)5zncqX9WKgJS$tW6zP&Xjx56<d
z5K4=5+)k?YUnTkTCe7;1y~+qw0$CXGS$_-9Kydh|T3%3btVVl7q$~8IMHX1x`zsAj
zex(h1DAvej0!r`q8k~!cWpFiz#vA_KVN>o-F{aS>@tz%21wk`C6uJ9fp%&R6MkOe0
zZRE7-@!WTBrFPBV;OO}Za2ff#r1Dz6yh1@<hPI|fPxk2^3R1sIe^bdBie-FK5y1vW
zNx2v at CBzN?y&%qkXbT&w`cR_7Rri<@Eej^r+x&I$IAs-+;^JowtB+I&<E)TfVNfnY
zMxQkkTe+Y+wXA=ekicd|L7p)@pabF<svPWkpg8rB{S9~66WuG9N?M`p8+XB&=NVi2
z_=Uh%ML06RFe>t1_wM~k=x{_rcb`BZz9~&$S$b at r=%bF!ea5r8xbF~BZHxZ1=+bc4
z;s)fT^+iV6n^r3#7*gm&eOj7xn_Da|Au1m;HWUERJM>lAIXG5xo=!nkD%^X~<SpPb
zzPd|8BwQID4q0)?b1&~Ip}Eh0B3tj|si#rYG3;)W$mP`br%9C-s*F(m=tj})2OCYk
z=}f*jBpSh-E(`O4_X2<$v790O($e6)Q>U<GX<xn-Bm8Ov+#K2ZwYa}{|HkpsY?sSm
z)RqK8CFj1_g+3(NjgnigoS<%DW4p6=?YR8enz+brVoWE^b9sfha9PF(WM<LxEKJiJ
zA+521-0=7B=Aod|v1gXvF}nx>G?cUbQiDS{rQ0uaA7H|HaeeghY<uCY-TRpVX8W}`
zU5#DGvUP;ifiO=<^M46p^v$;kgWbT`0mSq0c(Ig{!Ff at 1J~~X4m9q3-k*9Jb{fh^O
zFe-<z4E&qT{>7Z-t7>Ic8sA5S^jYM}tv*6mluS;jNcTo#y`rR-6!5^c?y?Z~r#<qe
zbWuQ9gvYF}F-a;`Xb~(eEqz<D$sV;N9p{Mp87|})hbO(F*rSfMXNy#TXY%=`^b<!_
z4#b4&;X0%RQ1vJ)pboh2J2!otxm3iEv(ZX2Is)P{cu_azOQ8~zb>!)ShyE?Z1cOER
z_*UPPFTa!<kJeLVpnLw)r at v#26vS^kb~a0%&^M~JuJyubgctQH57+^X?}lXD_-4yU
z?PSuUwcdqs%9H7%1*LsywUbmkR;4VWtl~_%x`1&;pHDwT#n#;+)!d`J)c~$9gh~Z+
z at Xrr~r_fT8$97+`Mqg5DF-WC{gXy$JR?(@c8SLSIx?)~A+uRkitrS*nV{k;TVx<nZ
zeCksdSug^rIl7Bj3xvwa4WI6G$x<Tp<P}(-N)`~C+?EY^?PWwoBKfn%xu-e_di-42
z3jMqRAc(F{*!fv|272XK{Ca_v&8nZ<=75bo_=vXfUzF)Igtlo_5sk;pn3cP66dWZt
z`x{b8ObefW(kIM{eD(>_6;}DOHfOMvYfr-?{}61!6Dju5JsuEydJRla{U~||fKiRf
zffYb_5?kR79WPJaE}yEc<!Q(tT$B15jXFJcjo>uyN7nisj66QzA0PeOpFu1Cq~Pv&
zz+Wjb7WF6=TPj8KX^VmfNgL+Pl(xNFjt6pbgkO#p_o~)G at y9(ba8mbpL&><o>i$mm
z*LlgejlaiP*ok-)l>NX$Tek^$!4g>vfX%$JxNy1FCnP%CL6P6~TXel;im+R~mm6>}
zPX@~Ec>S1m=hi1 at 48Zjm7ECZcXGn+*9k3)Y4aI%{boKUXwt}(#bB$$Hp%2?dnoXlE
z0Mb#Kq<hH9sPkJYhU;6=jq+|&cPK={H^sE}#9N4ONcX4|C9E4Vy0{)QlJf`?Ujbj9
z_SoN%KtHWQb3$YX>>q%MDL)$j0PpAe(6Umno~uPhM4dkZP|w)a(krQ(H&Q-oH=VzW
z&Kh^B8Aqxf%B{X33`vH^>4gebap6Ya;=)agibq0!+|BCctLZN5sPn%bO=E~k-*URs
zC1{D^s at V>swi*4g^QI#WxmNLKra~FzftV4p2eu#0<viy7%98)8X)?DncAqQ^37-aG
z!p_feQ)bdO)va$B6(W&TJmyZP;+M4-!#d!KUv+E-I72y+g3P_?$78eil)U$cE*Kt8
zP`dk0sCf#Ieg-$6gMnkf6VkmGp(l5y-tpPNDXdya at 6W28)9&T%9$J2duQ)hqTBZsT
ze*X at FcaOg>D{@nBGyJ{L`1L{k9f0d!ZtJ!QZ7rccH1#pp0o~|rpg-byourlETCe-u
z at nmd?6<1)@e-;ky*B5HZy-N-ppK~lbea`Jq;<?196{s7Y9cC at DouuF8O4SpG%tVf#
zw53{gdnrazH4smHI5^bs>*h)Z-~;(RrkQRQ!@JjJD-MQKb(MCIkA=0p!~U*=IU~d>
zLawA?R#F}QAP_B6Q%vnJsMbMw(fHVA8bnG6Q{5nKH9h)1QNiud7EpL;$07^j#Xbkp
zqkS~juxT2Z8;D@@RyrhLK|WQd8q<=6nwszt2=KOL&?yS#A7}tvfArvdkrTGOF6-A}
z+PwEtDKzN5A`Esy3MYMMAtdn{73~${lH)}pC%3RuWIsB;VY!2$YR at h=d3 at 4>vk_;G
z7EHLm;IO3ucpV4Z*u1BCR+v at AkgQe)#v*}b8_-2YL*lL>#oX%wKi%h&K&tRk`<OZB
zt2=z%{oy<t!%;~FyKUiXoAn`*;$*tZal76JH)I at fcf0aUyo#QBst9oJFU!7XVQ!vz
zaKyS0S=x3z5r{dVJPEa`f0@>{DWf-#BB$|{OtGfs+1$i&8nG>UDV%<!{Z<kax<*R8
zy at X5}k2F8g$4>)|dlHHJR@`u&t(o))1HMlh at q0Crs4;LDGdE2P_nOtM#Vg+uWzKOP
z0lw8qvf<gC9tVL1&~252tv<<*3Twh}R&{v7G6go?+Mur4(;dq<D}Kv=7~ZX3`2C}+
zJbC7tlQuBv7QDJIRk;*E^Amgu-&$;gYxTwT$3?-s=5Stw{=}b>9}0uLvXH>ziEsKj
z%p4Q_iKZCu{eG?Xvac^KS)6|@Ap~AjzdU?+ at _43-z&Wz at t>bOiJD~#^1yh{;?-K)4
zl1+<G2h(q!12EHA^SPj{a&_vx- at T&qzow*0pA4wH8?ZKGV`D2JKaE7+IcMI&<2Hka
z at VU2vowR!-Vwo0_YHjzAic{*o5yhyBm<RW0B`(!JN04+7{LiuzE*eI at EzE3!GTWLc
zZ0waTCZv49f~zk*cvm3%T^X=}46ILVu3VIl*Ec5;Ux=7ji@$?;0l{g0bW}@+oZR+9
z13Jv(D!uI!aQTEJaZ^;=;h9?9qs68p^1Tay`q9+a|E~W&H49rfXsVErmWDV6_APFf
zCl%F9ZYiE#9K^pK4QIM_1*AJ_!LDjEW7Ubke?~6gH{qJ;lnJbgoFCb3C)cO0-rE<g
zPyi?|>0lxNC489zS`w|+f$(v-+~vem!uwgWuah6ap;vZ1CRZ7aU at xj5z`HYdPNi$w
Y^OOM2(oM+v|NSx_Y8q<PsyW8~52 at io)c^nh

literal 0
HcmV?d00001

diff --git a/share/lua/http/css/ui-lightness/images/ui-icons_ef8c08_256x240.png b/share/lua/http/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
new file mode 100644
index 0000000000000000000000000000000000000000..85e63e9f604ce042d59eb06a8428eeb7cb7896c9
GIT binary patch
literal 4369
zcmd^?`8O2)_s3^phOrG}UnfiUEn8(9QW1?MNkxXVDEpFin2{xWrLx5kBC;k~Gm<qS
zlCjL7i8RK}U~J#s at 6Y%1S9~7lb?$xLU+y{go_o*h`AV=spXY*!!T<mOmxZ~R9RL9Q
zdj+hrf&W^P#f9C!Zpp^V{wzI}^MB`Dm+sH{TR1w<4t)tA3_robX4CdCOHJC|7j+vW
z%J-EMX&`87enIluaSc0_SnYUx$GzUc?vrNXt&I`o?~7C3RJ>C-Ajq!3AfU8Dx90^_
zp3}MKjJzYC+`T(&egFXQ#9Ek{*oVAaa!zrZtmlRFnwQPRJXH<%pkK2*eP`pT=lwD7
zifq+4BY_rUTa+U|2#&?i7>PVvD?7R4ZfOLPT{e<z*9Sa%-q+JZ0`uF at uf^uR0+0eA
zKOCxXcaQOB0xyL&$7t}dfX{x=z?wHIs;&yo%nJr`+{Z2X98Hy3`tm$u;dhd<8yL(-
z;#Sne;Lpz{>9G~G!Ls3s8JtQE`jMM9w<tfkOhc;ql-3a{hO%LC#ZWVT(nn|vd<pzY
zQv5BF3Fy2~(>l2V9&Q+K2DHW0M+uQmEr%nYJ^7cK?uIpU-)=wn71ZZ-=@ar0;3^AY
z5+TI{2b(e%t{2PZ<B%x(nNg1>^HKF*vu at +Xr<l6w#|okxspftdv$I9rN_GQ)7q|*8
zs5y_rF at oIq1RoU``$~Uk{rhVB^2n_8t2HJSxDFflkb2zZ+{WSl|IoP?Sr2=Mv_tpb
zBhqwukeg|uo9qd8ZqP<?l)|%<*;D+JXWZi%on=Ghf-03Mlsz8h(Q+`v>&BAc at 2BC4
z_vCgww#i=)ea5Vo$glEEVBBg_VPBj!)OO>)f@}#dg6ULOeC>LBHz<;*5Y;YfE0lNx
zg{N+4 at lO~ozxpF69qV at VOGnc248Iuag4C1T)P^(hWkpP!{h!JekX}m^Q#b2B4f1oT
zIjsGz)4}-$rQ*-tS<w5Y%xt4vvDzNI7LjNDGL|1T2eU at 2@{VTp9rUuZlx!D2{rUJ{
z3A%pW8$~DC0b2^P95?wbyueB1Bn4o?``LnX$Uf9F<C;}N4GLdAn{SZSlT7_PlCs0I
zDBXb%F`GiL7)vk|BieTWHX3ScMxyQ_M+ at in`79A|2b?#r0AHuH>uc%qG>%<4xM#E&
zN)7lRK~^2VdiloY4>;#}A!yHOAXEmEi^+eA#05pawGXs>!z)gSoDuI#>bRCq-qjJe
zZ)r=A`*EMX6+)~er1kdv1L^)0-PsAEM7JF$O6G8>496$24lkO<m1%2pOjtWwevM#F
z42>SR^RTfUuIz%iSfn5b-t!##cs7sQI);gdAvqmn_v|%I9k;fCPl0Z)R1+hNQONJN
zH%3jT9sOq*a`LF*MiY=zlSSQZ;{_FL9M07A=In+O!~wR}=bzGEQpk2!Vc0p)qKAH?
zOk{(%06W#)DdICQ_S%Q@<0Y+!?9%#$gWJ%)EO-<BTe}-}iZ54sx|$u%lQFIs?k4-B
z^|c_dxJ&9M^?WcqnEWyMADUCvUrhIaT;pF-+ at vY1ij0*Jdz5c>>^YZP{<`oB4~9xh
zL9-0*c4 at B#O2ylYs_g`Ky$zb~v!M`NRaMNFYF*Gsu|7)=JyyMHjFC=HhGUE@{aI|B
zJ~ITXU052%7jFb5Ys#fhS_?4kqc7H0EU49B8(Chg0&JzU=Gka#xOz1)H0d4m7ZnRA
z=M^tdY|U6T!fmte{W?_r8H~qdq|q{5AMU_2It1I4143n~xL?4&K#BOB48<w*Teqll
zf9X0fz4bHZ-Y$~|BFf{9mP#ye at YYTq-BICfY&StDZDl#G{Ztz02J1kC%b`U^<5ZiZ
z__Fi!u{2kX`iENVlA~L2)^LW8=_9VB;|Bbj&#bO<lzgV3Z>l9_Rdm!(c^C?JU;tF0
zEh at o1y6Qa_>}#AwX{VY+`C^kNkxhgb1P5cB0%xupAXyg9NO=SnXrJUE?rQg{Lcsn+
zAZKctGLfbK_B#^&Nev|0^fB&?DN=ak8|0!np524LD25=s84BP8Vl(3=jflNp{X>e@
z637Ri5xx;&JNl+XYImA|{;XR~P*svYDEWYJ6I5!6uO~2twFC1ZQevB7#3z~(apxn&
z^J@>Mc`>PJair{yT`<jZrWX;x-v7*qmDxI3P+Mg!OC%kw(l;VOuzC|8#l%8Tv4(G0
z7_1cw5ch!89b^LbMtCv$CT7IO at xA>iuan-V+i%|Ho-pA<1?V-k^R2Q<5;Co%XxmL`
z018t4T0TTwO^w)Gx{9OSJ^9_|kgwX`7%0Rw!PO~@?xvnfUehvN;2Rc;^l>3kfbtk3
z8{j7p;S&{uTlTe9&HTc38q@%_KQFk<&n{vmrN7y&Cz{etcE->rq!6HL)2F!aa=0%!
zM%Bwo!7TQ5t;@a_#Q}sjk{UebWQZ8{cp&HN^$*JfH#8spkhk{R at CVBiPuP@yEhu{}
zsQfuhTqV%rioATpEphMfhyRYbVfVW`YwLFXUWm-===J(byMf!5;W^CV1g~2194Xx)
zFK|z{pm%n-)-DRe{Qhk(d!QaoI*y%Wn6h7<6A{i*Sob&B^y|Spg!&J$`kN>zwUJ3x
zaB$ciu<nSNOim3uYsQP5jc-?Naxj(j<)z};2hoFn0&u_kBM}O at VS5)nDYx1pf*RQR
z`S)$xBwb^buzAY%gnq7CFpintWEa)7yX44mQ(9Sxz=?kBxk*6p at w42$*>*0FJKg}T
ztgnh)ASF8njz5>h6?f#{c=<QigVeYbrKRaeqWoE+%S;th=M#iBteNh&UJyV9DiQ2h
zCovT3fv1eTQ at mSXnGo$!aqUldv6 at p0GWkoaEpG=8r)RRRm`|p~(T62hpEIu=ka-lH
zHFz2 at lD_Q*`R}K5+eNd{WnX-*hEHn`>*Yr4W_34$GmVIo8OLWjcZK4a0`+Yv-!*}9
zBwKm;DAsA(nDI-`iH@;`=gP+m{lgFLHK3m$W@?)&dGhDA_Z2xOzI0$p(ZJtH$vCxE
zj>+kYNBJzs-TlSx!tSH}%I9fQv)mc!C7X0bKlZv4f&}C3+O-4k7A<p}+mKlQ4rT=l
zCn2{pDn1>mVO|KYZ9ydP%(N1^uisV8y;~p`x4qFXD?!_OyN9=w(O<V*&M}1I>d6W;
zGrT?G;l2v at Ob5k^8w<9w%Jbjb^|H}PYKo}I<qcU#EQV?(-;CW$3_+TixaI#lD-xJT
z(AO6gph7h?y_UKm^jWi&NP`DX>~bobd!XrTbzp2Zp~H8lgJ)I3?l&(bDiWf8gE&6b
z>)9GB=Iu-6%I((+>=jGP>CzD8c0oWITFZGgM!Q7|JrUYq4#^Y(vuDu-a>OWDa4Y4}
z5a_*lW#IL_aVf8L+Ty}c&2VojLEIA-;eQK6Wo?<KawYbZ!!f3+b at 4Ui!v_Lt9t*qk
zDRw at T5NsTbrkFQA%ko%G1_Lb|ijKF_IU^teY$_8;Ght~t5fIeS9_!kg2AC0L3%DAp
z)%@G=p6e~2D2qisLge~Zg_>xAuK>i;1VWx3c=!s2;j_*iRHOsb*>6-C<qcj8`@=rO
zP}XMY68YV0>gcYP+Ho=L at XLd*j~2ln-;WHg)|cCixksH$K={5rGSD at yB%LI|(NCc8
z1Er8H+QO)~S~K{g?nH|2dB8SKs)BxQ?%G}}o*LV!NG2m*TmR|pWj~g`>)ClJCE#F$
zcj)fBg(dKOKmc$Cy}IRlasngIR>z~kP&WW~9cC951{AKmnZ~ZMsqup6QQf7J0T1;C
zK9*Qd5*(HxW=tl|RfjO>nkoW#AU3t>JkuzWxy4-l?xmTv15_r1X at p@dz^{&j&;{Mq
z$^0$0q&y?kbdZh)kZ+NfXfqLTG}Q^j>qHlUH4VEK`3y^-z6Y<6O88Hf4v^;}!{t-a
zDWg;znYu%6zA1~A5~<XNrYJBS8~snn$jIDO<y at mJydzi%ZH$Z$)QuZaz%45=1m~)~
z4Q`zYwLIYfLfxmU0o|G_6zFY at 4*h+3cz>w?<TWDm>fxO~i8-Ib(^02{c4pXjhDI^2
zXB1LP4dvWuc%PXQ{r!d#6>${rm+M8EJM8yf#!H$Kp8AxwUXm5`7Tu-J$mHe<eDz8P
zkinV!Ohb>CG>vw|&Ay415}_1w&*9K8+2d3v1N+ at a$|820o4u60Tj at u&kI!~q2V9X;
z>tMvQDI|O$#m+m2O**ZHq`_{#8)ry6`&5s~2k{O4Du16Fn0P;&_(0!e5%Bel){nU0
zJX~<8U6hoI%yx}qGY_1Tq7YKDJ)ETOCs&W)TiCrK*1%DE*vXdD-7hwE*LUgjeHRM`
z&@pkhTi&gtm#Kc+QIK+2Ybn9-sFVKNHyIgfob4H_77yYh))Rq$7Pw|+aD6&yZ|ki9
z8Zb6s{oBt1G+PgfIcxd}{m@~1nzhe;LH)5;!gS8 at ddyabpdBc?7JVl?tS+<#bPSMT
z2 at 0uYdsWN(;Ww)n-PlA-0r+62 at bYkEa`k{0s})fJgYZ#5=DmIdEvok7aZJRi{w-|}
zkea&<y#A2`hji}_#v2m7skndFe=lVxz&%)EE=piOEcJ&sO<`_b5^G%<n#vzp at oj^X
z%JiB6!h~{GSBxDmQ}k74qOt+84)V%~Jq`#i%7JivMeIU at 9c}EI^K40lP|4}S;=!@7
zGZ1<3!HDW~9HJ?Y+=H6KhjKBrTPh}kHZl%5Q%W!nlj+c4IFM2PEm3CsAj}43o5_VX
zI-!1a5dPZ9M=_Q046q0ky|R;>6X}ZA3b7&vbDb7)v8CuI(+zzSf3z&P2eOrPNP?D~
z<WE8xnp!@QBele5FWK2lN)$}!cCBpfhDIq9vIqZBv5sQ<ySQilLber3RTGpZf7ria
z#<%~5cZOy?MY7b3oG#yZ-x at S0yR!k5+6TUj at N(-|bnt#LJh2{}%jx9MIwuve8&6>f
zn0@)0h;~5F&BG5v<AsTOfLuEFtBLWM#rp>OFU!=woW&ZSl~nrs{?1w>nWfW_dnpTd
z4qvLDYJ*ft>Sp%M(^_xCZpNBn<v0_^?y$&i*)D%LpQp$0NyRBLxtjpMg2Bt27wV-}
zA7?@{eZ;cBD%L0_pT_h at 0b7Nob>c66JX}A|ZL9IENM`U>`ph7d<+RQiI}@E8Y)70s
zMC*_&))}GlmR}@{v9*nm)29-=rn`Q$rc^4G)GVQHlTr6BpGxtHuU(8AF7Ffh54?5w
zj+EYT9>x)PWL-iQ at RNm<k%46_xu3)RJlgba`xYU0%*_29yy1gU*1=vg_B;a at J`J7P
zZbtp1M*r&3*S1r6=Ez1EU)iWolOX*FyrcztJ`}_b+S&bhk>T?R+|c@=FOmj)5Za6_
z at DkVy4l^L>Z3#SI at s_eVwd3D)<^Ivq8a~J{|4mhOL^<7M4D8){ut;GIqqn`oqCk|x
pNh;Wa$C0(mdpqYz&F>xK-uVD=DT5%Jzh8ZT#aXmjr70%*{{RacS`YvL

literal 0
HcmV?d00001

diff --git a/share/lua/http/css/ui-lightness/images/ui-icons_ffd27a_256x240.png b/share/lua/http/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
new file mode 100644
index 0000000000000000000000000000000000000000..e117effa3dca24e7978cfc5f8b967f661e81044f
GIT binary patch
literal 4369
zcmd^?`8O2)_s3 at pGmLE*`#M>&Z`mr_kcwz5Nh&g=McJ3E!;CE1E0ryV5Ro;>nvtvt
zk&I==Xd;cVGZ@>q_xtnx{1u<ad7XP-_m_Llz31NZdcG2EQRlg#Vo(48z-?(^ZVvze
z|6T#B?4ZAvXnA4xuUoRUb~w8~68XP#e)ZtVe+x$i*`qE2L|`Xa*=^e&W~<9M_#tnj
z#rVH+Aq<7gEG|f0JFaQ38mE(h>%7-D)N|5YqOB>i;(bZ#o62{J2Y9&^D3~R^$o+X?
zwbxAEIb)xwCwK3TSR4QVym6N1rVgPmmt0caryBUceHP_&u}{?^Jn7f0PT$#h>UDqI
zr!q(F&1jJ2_!jxdAB<)7H$foI*2zuncvu;;$SoU7br=AiJ at 4=BC4vNO>DS`&UIB=K
z;2)0F*t^FBvVfPuT4FVMSwUw%Xksjyl+;#*DDy%=ocFOyzDLvLR(`zCSOuJ=?FWYn
z5ZD!UaoF>-$@=Vt?a&;UQYM$Oqe0ZB?Je?8ZnMxDe&uzzs*zlHd<n!{fcOy-3tIxc
zl9G6fU;?@>)V58nfJPc8S^({_4bj5HQ_B&EXHWj6wx at B;!mr04b_Mx)UFL)W7`V!c
zpMp#C!a!!sh3h491y}^qfimXVY%!+sYu0_D<P=jc<5*#|6V<{WZGN`6N7;T5 at B&-O
z4YA;LJcgH_nB=Dd<6apIuYX_dSRS2~d9}u*0 at tAvp3;xIUD`Q4{vSHeBHLl#uuj<i
zdw9AoFJd!YY?C9=-W}2;fmD2UGG|&~>WoJMqpN(FR9LM#jdZ{vJzEck`P^9(1N=4J
za9%u4$2J8TAkUaJk_FX%iHuv#svL_mMmp{SR}ifc#ZcXv%CFsT?*>N^6r(%D?1YnU
zAaT?UZGlOn<yU`%Wa8Y9e(6d%oe>a6UXXs0m)3YDp}d%hb@)@Y!lK_A&D6{OPlNnj
zYY*$b>vnRzL8=CDbQSi!DL3D!P^xhNtwrYByo?h-&OvQZYJ6ka{Re#<tfku}Pk%l>
zSc0ry_d(K$_Q2M{Y^O~DOK(szDOnMi_<pwV9HJlj%%pbJNR!N8!0s1p{Upoaj+ETU
zEK+aqL+qw7G}a0PL5uYtfQ*ORTM)>*h_Rx%eSRxA%n|FuC&=F=<MvvnBAs(r9_AGz
zj#LLeNR-pStzN#d`2)svUKrAQ8VHd^=b;OpBCx?RZykcH-tb9~qbL$x$(`2<NV~cc
z4z2Bp@;~m=w?YY3`1HQse<0qUrn at +UmFad91gTtZ)sci`wvk1%_;MW`&Pf|5tFMu4
zNntUAcOEu%z*Jn}7mF2zKzm-pAJ69V*u*k%Pz0Bw+ at 6D$nbX!5 at F~#!m0D7y2@>)B
z_Qsgmj8g!GA+LZOX)<MTZnmtSZMvX}iN~6m-JIQU20KF6`U6rsN{iU<Dvr1WS at zOz
zl#6cg6=J4)x<q{k$6xz$eY~XokVD3xXlNVKpABoKf9r6^O!Mc-%+zqecrz!IBHZPk
zw7nJrmUK)1q at E9fg^)g`{6kCX`iq%f7Po|#WOo_zsuE*m)B)+26L-$_R)8Mt!h_+m
zGL~5ePlt^60=e?-MYRsRhyDgl at 7ZuDwz@j at ON}1OXo&%9FFj79dYq9#Pl2J0tpZqW
zoj)^#YFt?xCl+r6r)bG%OxXxB9bzulRW7L4VwzZAtOD$$wddJsYuE;LaTM_#<QEkK
zsNj<*RBFpyHO6kU?fp7b`x$~mXQtCK-5&11GCPIZRRY80sMue?{vgSOolK=^)LZxH
zbARbRFuV0L_TDa&7c9o>gOW}vbo9|l8QW3iYw9qCD{o~xt^HIU>;dV5MJgc0#uHTA
z<b?9`^Kmpc&W4BD98zOjFt!MWuh}E+<l}|{o6oGTbC!N4qi(7vXIFMMOnVxMbfN)N
zpdB*NBc}R2H}q?~Wm%WHWyNB%7lB=rj|B!oI|os&8zNX2&PaO(73!SiCG6_-sewTO
z1Rz&hx(b1H;PyKr{Yfo2#_Tcnj2S{?^c(o11&+g0pg0yUvKa>80%Ee_r;G`GUjssm
z*AhtwpW%Ly;X4Lq1Zq#ZpuwzrZE$sR087dN{w7PA6|Mo#6wwJP085K+h7+D>NyeX#
zk|?M<oZ&;KrN<L<I(I=dD at q?cl4IbRF&ndOs<5uwMvg!{TBUD9u|OM4eU*}mSV}bg
z!o#6$7=VN)xc(puus6zwHZV0OG)?U7PkW#AIo)ydHqWFfKQd6ixr2X|O$wi7Elt~Q
zP6v<?64wgA8tUqVma<hW?e59%zK8rZ0VY6U?n&-05mXQLRLYvR*#iHFc$BXzkqlHo
z6W9SifpFjGSnRT&jat?h?$a!d5Qp<Z%K{vt*3t%>J^Es)JtP-2eNr0EQe*ZM`&}OU
zCD*uSSviE&p}uX|@1g_%|3*ra*MbBV#~cshdcFQ(dGLnTqaO-3{u==x1;Pp2im!#`
zuZ2`ThfAmiSzb|4h`c4?^ZoGOF*oXYcV}(ge!v@^bse?daA`Ma+bSZLIg;pIN17vM
zIOYfK=@s_Pj?~#lqnY2o?d1$MpoqsYQw%eX%X6Y4*^27{hMWGqILEMnVYUEMW#x7f
zu^I*nzXQ at 6HJ8n;<zUNvk-PEjs%<X1ioU#5GW#HA=uaT__dpa}F)w`Yq8IsAdt`7U
z`+&f{UAvT9oH8a~#Q{IST?fK4Gn(zAyLXqIIB&|RDC4<MkG(eWs67GJyEog<1 at R;p
zqErmjFbl*Kr=W at Fa@dm2f*UXY=6aA8pQ^kx6Gc!sOK_!BGj%_KX(L)0{_BN-RG>26
zo^1+Ewi$fN$Unum1(FTb8I#cYgcGklwIExt#Mb(D=x~OTeZ^ubJ)S-ywfdZS?SRCq
z<f6&jh?er}Ff4dKlh+}ZgDU^xdo^N4XGA|QMlZXk36y0_n94j(>Dm=eU<x+0r+(K0
z$`kDr6r$N?XyYa?y(T-y8=tEjFA9h_xYvk!0;klqRPh$f>+CCWO at 8S_m!W{alT)zj
zZJbjxm5&No5xe_~Jw-i7`&G}=r)POGGfFq<O8y-6Cxq}O+jVOPKCRjoSodM^fgSV;
z21Z0|XI6eXR7bxMS=$0j;+W~BbU**AT6?!xT;2D^zN`dq>+c at kQbB#)ay`coj&C3-
z(#&xV at Q3@VJd{qdH4g at 4ZJi&mx9e at Io7@~(o5vTrkW>QEO1T-gmlTRHH+3)gcUC0P
zk07rvDnf*7Y5J}8!>F_7D^Z3IoH^uGH}_a(ax{Q(IrvV$olf3WN&DY?<mf1{#tp*6
zbe~sSoVbr4l{;@hKd4VUJ-1s^jK>uYZfvXI(;Vv&EAoQtfH<X6 at yy;uSMU*|aKXKd
zS5vU>;+4VI_a>yh*J+Cj!?h!QX?O`QXk@@G7AjloJe51Cw*rPXQ>#y?B^^ExRQFui
zolmv*C5K|-p){rZiCNai^0H`1(Qr(Hz3v%7NnmriXu2tD>xsbN#*R3*wsZhRj6Lvb
zn0Cu=qkC?*e4{NF_3=^bTb1f!g?@ryFH<mSX7J%FD4O3UZ%By_%;30DZJa-JG5in5
zFhfO$wOjOepP7?~dRphj at WU?;zCKz6eSAMUwAxT%JMIyEG7;|g_Q+7rq>6Zw2tz%A
zzz&o{w`dDv66!6Wk9w1-dglS#Sm{doxw&h5Z8&ONmlBBte{J)puaDzc!LC==rPRQK
zQNH23?-rIo^MQdt3Tk!B at 8l#}fxVtrlc8Y<>ORaVE($DKc{77qV^`+`%_DotrUD=8
z4}L7QnZi3RgUy*tteY-=$SqA2 at IZWe(}mI`nzhAT{qC)my#rJsfoS*<ZNRV2gRlj?
z)v1Cl_T+qH<V>)xCXj!Tk6=3)cr at Jw#OcNqgS3pg7x|4!A$|w15X!huR*vB3q9Ya4
zF{xuzEQz{9YPl(gk`}Gffut%jotgqp$jZvzRO4EsExf~93vY~04AxH=lR>R3v3Qs2
zy$v4SN%ee at Kz#kDtARaQD`d!R%}#@T1=v8DAow*r>+0d1KS{ZtA~KMtgm)+$JHumW
zw=;@qWk&MuG at LKx#K3@&WMw?r=jD2_)(*$LmkCm4_@};QZI|SPe8hIC6xqBy!LQyK
z01_xmfNA9UlBU at Kzu7;zQYxHE>OCADA$gwaVqm`eN?XQF at NkrocB}lU4hcCf>wqir
z>Ya=PcE!Xm#JG8v at G0lj&~)hScM}X57vGw3g<$^SUls53f|Bk>5FQwqE&{%u(f$!1
zl8+53vyYZ`mEEp&YT<=(krhKrw?~pS{N)?q{0qBR#2Y!w4!hWMdj`a(@A at r$zVB+u
z06Hb at _9(cQ_AxbXI|-2w>#QUhp7k<+`z9+(jkh~v-Renr#C9U+&jL4vg6-E$f7 at UU
z(1fxB8{U2vq}h3rE!Z+n7=(>D&}@9~3mJ^R5}|WVG@!RSh3r{!>QHwg!t29YS&jiR
ztyn_q*k9H0efZ7hO*b(WR|G!TDY`rol~Ob4&1OwdM8kbGj`^$~L5gd<d7YB5YJW at H
z1El3`1FwJN#3DR;LU2X|A1e0W_1{a~3G at h&oQoFR4^R8yLsOhvm%`Xog{28ZResyx
zqB6ZHK&Wu;>WYceWwL=PB{~NX=cu3p-{S;hqaE?bSHv$g+SA6bxy+VU3YVTPDj6CN
zKLb_(9gM2Y#KW8ONxjH9To^Y)r?ql2cq8+WE438uIF$hjfdLs6-;!jv55jGcc3Ipg
z;}aT32NAEGeU;J}&j5=+u`4?%xlwL7?NDn%2={4WS39yn3f;&r=|}5=M-Y2yrxeSw
zv%*PmV{_{#Qk1sD>?M2KDapb~z3!E*-LPmCe9q86D%MGSe;4~~K-jKQxq6b^902_{
z%>4G>@Xqk8muR*|vGe5{@7sds<aRcI()+-dk>2i|i;g}oMkd!o^0=HG+vcPrcN54A
zLGv$PlTePRxp~-OSb_*aACO1qc{MpfS-fv(@UmRv%UO)cSt;ee at 9(S)f>|~bwU at eZ
z=kTS*sdjLclwMZ<Jgx0E^k$qnMxHBa{0^(!mfiA)^ZEJ=-!!ZelcyN~EF8Mbb)i9e
z^>G#?%U3)bq-uj?@@vj~6tq)ZS||Jxz`+di-M5<Fie`muWl)A7tfzIyIhd%F5PQPh
zAxf8Mxy}evu=*ltf~ji)pFWl7J=6W8EwxIyv~~%3n}ob~`BbWRLfvBgNJYQsf8eXf
zb*A=3 at G_1-qwA7#fS;_y%uEbp$>SXM=h3EL`?pB>W9A;`V2vM)vk&%KFy|TAh#AQA
zb_?<!HTqYNzP6jrw?H&O`OC+In}z5{pe1eS^Wk6)mYv;?7a6{vK#gr5`lD#T2VpIk
zLT|ynkZ?ny{+8hL6(4EaQ#%3OSMDDzt>J==3f@%LL{`vU$3Z at A2a9C3aC-YY43dR>
pI7J0n@;b3~`)ubvsr|iU(l;L{A#E6J`}eC4usn-0uQEf&{2ws1m(l<L

literal 0
HcmV?d00001

diff --git a/share/lua/http/css/ui-lightness/images/ui-icons_ffffff_256x240.png b/share/lua/http/css/ui-lightness/images/ui-icons_ffffff_256x240.png
new file mode 100644
index 0000000000000000000000000000000000000000..42f8f992c727ddaa617da224a522e463df690387
GIT binary patch
literal 4369
zcmd^?`8O2)_s3^p#%>t<I$5%B*(%$RifAlJDl()+*_W)tj4atJl`V!4ku}Mhk*o=k
zjAh1XB8{;#7~8k^`}6($6`#j>oqJ#RmwV2==ic*rz7lOw=eaq=H~;_ux21)-Jpcgw
zdj+hrf&W^f<%Qk9Zpqf#;q3n5{{POY;f!wmTR1An9(4&I0z1LNX50QSTV2M%4|y9c
z#{ZQIVJKu~aY5?ZaZP*GIGqGs=e at q6o|EPhZB3CC?@LnORK8O at z{{<0KtSn5?#~OW
zy=L;x8T&*%xqElS;s5~Pjk7d2bqIaA<dW(>)xZbovnZd7eX17WNxx=w`p(8vulwUZ
zl{so}MuRNJx5!8S5G;$o2?BApPHt+)!^#*Ww`?rcVE}mcyuY`X2o|uVUyI9o1t11O
zemGWR?;aD#0$vJhiPhv~0iXS#iLq!>Qd<?G%nJo^-p4Na9!-~9`SCtu5pb5a9~>$`
zU{}<|Vb9Md>$4TMbL7C3GP#r;4Wc$}Z;^j;n}yc!E3d;<jpV}POQ7Zg#E;Ne*b?}a
zl*C&E6VP>`wry$!JkmJP0%(tIh!!TET8=<Gd-5-}J&kJ?em(xME6C65GA9%uz*QFf
z6kM7Y1~y|ZTrZI;z#@<ilrhg{i!qH~v+ffmr<i&f#|opJs22Wc^RvZ0%JzeR7uZT}
zs0FX%F}(c5BtI1x_sU>+{rhUi^60G0t2HJSxXv-*DgC(HrJd8`|Dp3NvL5yg>xAvU
zho|fEA~w^-HrW&H-JwkqNX2I-bEXBR&Uhp+y2^)1h1IIlNCzC!v-Mz@&z&VPz+cl1
z=f&f6Y*U~C`ixm4Sy1hl$hg(4%Dy;bq~k7d1<@K&%%NLT`L+A)-QXyKVswX?op90(
zB#yeFEih at c{OXU8Oq~1CFI_38GXmns3(`;W(i+bslovCx4u7gvK>DrGOug*?G|1nz
z_OR}|ZYS3pq-p?rS7G0qa`TM}r5XqDT4cV>%Qyk#9ES}`jc+Ww|DcbZrF6UG>CeXp
zOVIV}K1e#z9 at tu#?X)Ri=?zXMB`X3G-_I7FL-Zq`nbfWtX_EO1*!+U6pJW-_k&+vk
zMd}THh}{(Ch_wPk(PI4vVB_KT76kGxVytLxpWg}&bHw`a3G#QzxV at ICNax&@hk3<_
zBh`Tq66G{-tCw$V{(y0v7l!tp20~@gdFX<t2yAf7TZbU4H+&N0D2hZ^a_6-I(yp$A
zLu-4Y{Ez$etx!T0KE1E^ABgv-=`PL?WxCx2K`NJ9btEB~b!5>jzFbF#bJE7i>T4ux
zQdrF3org^wFcnw$#bQMv at SfN3$Fuo7HnB_`2ZGB{ZqGr>%xP;2_!Q{=N-ZhU1c~^5
zdt=OO#wmcpkXJyCG?{{&n=R{Sn=Ytg;<09CH)l7TA&wkt{Q;>RrA2Ia6-QixEPLrU
z%0)N$3Nh0?U825&<F9?WK3>v($Sz}0G_(!v&xSSAzje4{rup+^W@^}ByqOb95$<wN
z+FlC*OS+|hQqPCLLP#G|{-Gsx{l!c#$SvU|*<FUbs>E0sbwK*%#GP}!6`%*Z at L;&C
z3^dE&>5%bWAXmP<sMdk^(BGixJsS?iR#(S<snG+CmKd<~(&IF$#~B&)6d2mrDuBh-
z`7=YP#+9XUV(~_Bik5uFl#L+MA?9LT<$`)GritanD!@)!d!CK9hHX$6M-ksae^D`j
z3O<QKrMApfW9&BT-mgQopCLGOW;!j??cokAvs0*DB`{2miv0!b50XsS$yAy~y>*X1
z_m}Pivs*u7 at 9i>qA!58fDCwj^M<1P(u^m;urVdlM@>aIf+E3-d9<VM%qyk!OJVCWh
zPAES=A4hZJY<Q^6E;Y6VV~t?=nmyu9K5i(m`ONw{XX$4$>ZW>fc4cS7w5O3sCmKKn
z+94A?VyfSBb9{}rEbCIYtXORJBCv__fnZ>?a}edaA%bP$jI?J^q0UKO!mduA8U!3b
z0CJ_Js}NWQZoebapVUHP%pPOUm?1<)zd<fq;MhF{ievF2n_&PhASNq*%9zmiH6XNj
zEs=Ea8SWPuzGGlUp!TE-8qB)a23IEsfKm?dH$i1qxCT5^L?@^KA}zidPI#gv8Gk-X
zqM+_ at h7X;V9#72a+y&FDD1Goq_JL={tjxBl!n$f3IRf!$mA(-L;%G4SRZ1!Xm1z2f
zhjX-H01}>%`hzUM-Y6g1z|@@3G_kio?S0bcbjQuxJd>vU$Uyz(4*peEDSVc-G;O;%
z9Y97%Tq}TRsH+oN%2u(oyC=W<9`e@&m;i;jC%L;sP(9RBDQnth3;ZMEQNFH3GEf0c
zU<3RF!hNG-vCDooYFS^nPlFnv4(ElI1=vNcr42TF^u<zpNG at plq%<5<WA+sLT^{=-
z*SKa`IfTWbzHQm>q67f{MoN>{f&>xA91r4pz5Zc&@P^i-9||`98v$Si!U@}ouZ88W
zg;YL=OQ;4}UQtkpyd~lD{qWy0H|lwJXKmenz#E=*9kt$YX*X!wDk7ITlIUGWnj>a7
z<_GQR752 at J)Y(U)ncu(d<qS5Uh{rKg3^Vr2bD|>Iit7P}oBq8x$FP85)&Nsw<#rOW
z8U_x(1J)Zgm(8tZXU%+(yYcO+Z7#ZszPwa2`ygiMPayX9KondtFMRK!7x`9uWN;(f
zfWW?8yOdj;GA3We0YAW92gWipn(d>zcbA+vZ_21B<GE0ey*BZvJpq=xH`~tz at gx|c
zR1DNG3&a$spo!;l*pkkI8!!LndXN^Ms=PE4MNl|PaHUi;bw5F9BU%~$>xF?-pfcW`
zbqY<k8GOpfKgG8NmJQVzlhFBu6R$nBAX~7++WL0raE6k7#bPQwo<1VA`kZ;~fW)ih
zqRHEcmh$T`EO<YY*CCdJD*xhpHDX3*L_aS^FT1A+oMlXy$~;c#+7(V<3O2N-e%AuZ
z6YUffqFHBX<0db?COgL)pQ{`%3Wzwk*NA!or_{An at fOVM>??6ie(6M)p at 6@WQ?Tl7
zoKrKEj|x~2yZehhMLkFRRnOC>XL&L+N;m0B{_OQ9gzzTYb!!Jct=bk?_hIpY9rOwY
zMnr69R(?8EN52qR+k!~qnCYc-KmV&*d$&NY?t5cjR)V+ncMor=puTRoo?{5dH;@!*
z<~RrV!+ljAN+;Qx2LraY&JWnz^|sYbZjP+Y;|pC#DuHUH+>F~x3PqTkx)=OAE0X9(
z(AO6gp~AH^{nq+n)LHYDD8mQN?DDFcd!U&d4PaajzSD1~lXq3p{x=^vItrq3gD^4O
z=hYS`?&C-0&KuAV>Jv}T?ba0IafL$~+bZ}p$9lwyyx=-uPN`Hpvv<)Ia>OWHa4+N4
z6zscrW$^XA32E<j+Ty}+?MPo5Uc!qbGT;`7%Gx?l<xc9YfT7LQ>Jw^7hYtkRJr{Q8
zQ|*1pp_q6Mno|D6EX!kgSv0h0I3~ef_l%$<u(@0`-IS&EL||}ZN1R(*I)Ea^7I-yG
zyXCjhJ-1uF(Uyz)_^9=*N_DY9KS79>DTFjL`0y16n%^dGNQn;2V82mqoIi9i{15vu
zLq&(BTl9CInUjZlTIa>^!!HlMK3W8Sd_Ow0+E8IT?h$=55$^Z)$WYIuig=O;Lp_1Q
z4wOT;XbWQ!>Mh`pdXuSo=K<ST=}P*!xodlEIBHy%5{U$VZS$wEkNsG|u2<Kk)WCyL
zzTvy?7M8&Cfq_5 at YIV!+<Rn^wt)5qtp<xK_KFldD3M^WAGlN-UQ|ANEBYVoG0w3xR
zek`?_!aFWQ%$ZEAn=XFHElm{gKzw at Bh0-LNwZ&Zh?yZ%*15_b_Y4{Osz^~4Oum!!<
zse&!G<a}e~Ot7vdkbjYnU^^LjG~ETn>Bba;wT!wK`Hf1Ueh04*%D7Kfj*#b~BNfvz
zsbf?uiMm5-xhaQ|7Om2OrYbU>ngUM9%F5nU<65IFyu(`yZ;Vb1)=wCd!L2K?c$ezE
z4IbS|^?Z>)eEp}ZfjwF)Waw?pPJ?{~*g%;e<TX6&>fxO~Nx7dQGLWZ)cPQ*T!((W-
zGm2?tM)K}7oG<0Xz<`ltWjxvE<$AH!4*R{A2~uYGr at m!vm*j+e#CE9^*}Oc#uihB|
z5;#kMY2^8mrr80%*+02bDx6B{Jsch(d7kQGV7~iGTgFZBu$Pf`tNf`B2{|t7fGhIq
zos0xF#l$bfxOtcGDd*MDbdKBaCKxg<zBS_t!TiI&D&FS>CEbr8JTNd_1bjWC{Ubgk
z9~)9;A1&=FyIt$l!VBXfD~6VCk0fjO%QwLJ7k00RH*%I8cCqF542VzP^;`OU-_?=<
zbV}OoQE)HqV`|)X5+WbgSxGWH>t+7-O;(l~Z+FJJ)sygu^+eF01#Suj+pnAcw!s>p
z$-xF}c>7t9X6H$^V9hvT5H{jKv+=zzWHA0pgw8e5fZpm9vIphVq3%S4*N3%&jsY^Q
zK%sSPuj=?d{ATs0o0y6#0w3%YT^@-_sTuTUwI(Q{;l3KjeAbVk#Wmi%PDxm`zoqQ~
z((<-}*FSP%5gt7uI3t1&75ne{@1^bpdW1;MMGNkSr~UAuDbB4+VQi|x(gdO^zin_)
zncfs2hj8xdiiy)@vVkfkItLKvsGtJh<Ah+N9r4Fk#4j}3)5fp4%$8OPm!2*v85$2i
z15p4UjH=DV!<+L-y~sIS7&k+wwQ at 3eBlD0ewG{0*l>rTb0T~tFl4Q3J!flauS==b&
z6B<Vc5wD$nmC_i`0E<AeD?2H<QEoWxP-{X6_i15QJF-Cv-N-NLN9%$|5L;=d6lmF5
z;UuK7x%Cq%N?T&~lD+MeWZ|S<_sZ68ShNa0XXqal>m<Ivi+wgAY*(pVJxOj3;P^Mp
z{Py4Q&hV_4XtqYN^W_`w+k)rhb~b?0`@olx-tL`?jy^9&Cf7sqxSSo^=A<Kc6UYof
z^DkeMP>!g%dDvlCf(St$kVofvH90|9yl-gmvRvcKS&Ye9DdoTK at 2m}iSvC{3m%4E0
z at TJD7c1V?!URM7+t?f3)%{X(6JXg~A9TvGQyX6n(^Yt0NX;>vDPcr~mICPooLWA_`
z<1A>FuXr|C)dtDr*PQt%Xs5WePWUB&gBj$zZ#BIY%?jDdpbSA-PV0`dGf^oa_Jp}Z
zlrGV7oe`#B^+nPIQ`ZDJeJas=ru#=*YL#+n?Go}f33>1GsZ{TTy2bdBihj}mz*mp!
zOzn%{WgLM=*CpiuKUs*GnHa{B$2siJqfNi|Z;|rH%stM*8b26kAMCYY&NHwPGtlYn
z7UVx_^sgR$Z8x27foS63FCP<b7NQ at 4m$W&a4+pb at c6L8rWcYppH@1D~kD>t|gtcG_
zy#@C|!VQV~TY}G5e57qp?F4jRxqq~@h6^?-cvD>ySwVLl2m7=gERtEn>Fw_ at ND%pO
oiVC*mbz<%I+0K1Z`+LWvZ$3~$+A!Gm?^hpSc@||}WrmLVKLvuzv;Y7A

literal 0
HcmV?d00001

diff --git a/share/lua/http/css/ui-lightness/jquery-ui-1.8.13.custom.css b/share/lua/http/css/ui-lightness/jquery-ui-1.8.13.custom.css
new file mode 100644
index 0000000..4c33c4c
--- /dev/null
+++ b/share/lua/http/css/ui-lightness/jquery-ui-1.8.13.custom.css
@@ -0,0 +1,578 @@
+/*
+ * jQuery UI CSS Framework 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Theming/API
+ */
+
+/* Layout helpers
+----------------------------------*/
+.ui-helper-hidden { display: none; }
+.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
+.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
+.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
+.ui-helper-clearfix { display: inline-block; }
+/* required comment for clearfix to work in Opera \*/
+* html .ui-helper-clearfix { height:1%; }
+.ui-helper-clearfix { display:block; }
+/* end clearfix */
+.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
+
+
+/* Interaction Cues
+----------------------------------*/
+.ui-state-disabled { cursor: default !important; }
+
+
+/* Icons
+----------------------------------*/
+
+/* states and images */
+.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
+
+
+/* Misc visuals
+----------------------------------*/
+
+/* Overlays */
+.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
+
+
+/*
+ * jQuery UI CSS Framework 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Theming/API
+ *
+ * 
+ */
+
+
+/* Component containers
+----------------------------------*/
+.ui-widget { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1.1em; }
+.ui-widget .ui-widget { font-size: 1em; }
+.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1em; }
+.ui-widget-content { border: 1px solid #dddddd; background: #eeeeee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x; color: #333333; }
+.ui-widget-content a { color: #333333; }
+.ui-widget-header { border: 1px solid #e78f08; background: #f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
+.ui-widget-header a { color: #ffffff; }
+
+/* Interaction states
+----------------------------------*/
+.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #cccccc; background: #f6f6f6 url(images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #1c94c4; }
+.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #1c94c4; text-decoration: none; }
+.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #fbcb09; background: #fdf5ce url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #c77405; }
+.ui-state-hover a, .ui-state-hover a:hover { color: #c77405; text-decoration: none; }
+.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #fbd850; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #eb8f00; }
+.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #eb8f00; text-decoration: none; }
+.ui-widget :active { outline: none; }
+
+/* Interaction Cues
+----------------------------------*/
+.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {border: 1px solid #fed22f; background: #ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x; color: #363636; }
+.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
+.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat; color: #ffffff; }
+.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #ffffff; }
+.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #ffffff; }
+.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
+.ui-priority-secondary, .ui-widget-content .ui-priority-secondary,  .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
+.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
+
+/* Icons
+----------------------------------*/
+
+/* states and images */
+.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); }
+.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
+.ui-widget-header .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); }
+.ui-state-default .ui-icon { background-image: url(images/ui-icons_ef8c08_256x240.png); }
+.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); }
+.ui-state-active .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); }
+.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_228ef1_256x240.png); }
+.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ffd27a_256x240.png); }
+
+/* positioning */
+.ui-icon-carat-1-n { background-position: 0 0; }
+.ui-icon-carat-1-ne { background-position: -16px 0; }
+.ui-icon-carat-1-e { background-position: -32px 0; }
+.ui-icon-carat-1-se { background-position: -48px 0; }
+.ui-icon-carat-1-s { background-position: -64px 0; }
+.ui-icon-carat-1-sw { background-position: -80px 0; }
+.ui-icon-carat-1-w { background-position: -96px 0; }
+.ui-icon-carat-1-nw { background-position: -112px 0; }
+.ui-icon-carat-2-n-s { background-position: -128px 0; }
+.ui-icon-carat-2-e-w { background-position: -144px 0; }
+.ui-icon-triangle-1-n { background-position: 0 -16px; }
+.ui-icon-triangle-1-ne { background-position: -16px -16px; }
+.ui-icon-triangle-1-e { background-position: -32px -16px; }
+.ui-icon-triangle-1-se { background-position: -48px -16px; }
+.ui-icon-triangle-1-s { background-position: -64px -16px; }
+.ui-icon-triangle-1-sw { background-position: -80px -16px; }
+.ui-icon-triangle-1-w { background-position: -96px -16px; }
+.ui-icon-triangle-1-nw { background-position: -112px -16px; }
+.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
+.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
+.ui-icon-arrow-1-n { background-position: 0 -32px; }
+.ui-icon-arrow-1-ne { background-position: -16px -32px; }
+.ui-icon-arrow-1-e { background-position: -32px -32px; }
+.ui-icon-arrow-1-se { background-position: -48px -32px; }
+.ui-icon-arrow-1-s { background-position: -64px -32px; }
+.ui-icon-arrow-1-sw { background-position: -80px -32px; }
+.ui-icon-arrow-1-w { background-position: -96px -32px; }
+.ui-icon-arrow-1-nw { background-position: -112px -32px; }
+.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
+.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
+.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
+.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
+.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
+.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
+.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
+.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
+.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
+.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
+.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
+.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
+.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
+.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
+.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
+.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
+.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
+.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
+.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
+.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
+.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
+.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
+.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
+.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
+.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
+.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
+.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
+.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
+.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
+.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
+.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
+.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
+.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
+.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
+.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
+.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
+.ui-icon-arrow-4 { background-position: 0 -80px; }
+.ui-icon-arrow-4-diag { background-position: -16px -80px; }
+.ui-icon-extlink { background-position: -32px -80px; }
+.ui-icon-newwin { background-position: -48px -80px; }
+.ui-icon-refresh { background-position: -64px -80px; }
+.ui-icon-shuffle { background-position: -80px -80px; }
+.ui-icon-transfer-e-w { background-position: -96px -80px; }
+.ui-icon-transferthick-e-w { background-position: -112px -80px; }
+.ui-icon-folder-collapsed { background-position: 0 -96px; }
+.ui-icon-folder-open { background-position: -16px -96px; }
+.ui-icon-document { background-position: -32px -96px; }
+.ui-icon-document-b { background-position: -48px -96px; }
+.ui-icon-note { background-position: -64px -96px; }
+.ui-icon-mail-closed { background-position: -80px -96px; }
+.ui-icon-mail-open { background-position: -96px -96px; }
+.ui-icon-suitcase { background-position: -112px -96px; }
+.ui-icon-comment { background-position: -128px -96px; }
+.ui-icon-person { background-position: -144px -96px; }
+.ui-icon-print { background-position: -160px -96px; }
+.ui-icon-trash { background-position: -176px -96px; }
+.ui-icon-locked { background-position: -192px -96px; }
+.ui-icon-unlocked { background-position: -208px -96px; }
+.ui-icon-bookmark { background-position: -224px -96px; }
+.ui-icon-tag { background-position: -240px -96px; }
+.ui-icon-home { background-position: 0 -112px; }
+.ui-icon-flag { background-position: -16px -112px; }
+.ui-icon-calendar { background-position: -32px -112px; }
+.ui-icon-cart { background-position: -48px -112px; }
+.ui-icon-pencil { background-position: -64px -112px; }
+.ui-icon-clock { background-position: -80px -112px; }
+.ui-icon-disk { background-position: -96px -112px; }
+.ui-icon-calculator { background-position: -112px -112px; }
+.ui-icon-zoomin { background-position: -128px -112px; }
+.ui-icon-zoomout { background-position: -144px -112px; }
+.ui-icon-search { background-position: -160px -112px; }
+.ui-icon-wrench { background-position: -176px -112px; }
+.ui-icon-gear { background-position: -192px -112px; }
+.ui-icon-heart { background-position: -208px -112px; }
+.ui-icon-star { background-position: -224px -112px; }
+.ui-icon-link { background-position: -240px -112px; }
+.ui-icon-cancel { background-position: 0 -128px; }
+.ui-icon-plus { background-position: -16px -128px; }
+.ui-icon-plusthick { background-position: -32px -128px; }
+.ui-icon-minus { background-position: -48px -128px; }
+.ui-icon-minusthick { background-position: -64px -128px; }
+.ui-icon-close { background-position: -80px -128px; }
+.ui-icon-closethick { background-position: -96px -128px; }
+.ui-icon-key { background-position: -112px -128px; }
+.ui-icon-lightbulb { background-position: -128px -128px; }
+.ui-icon-scissors { background-position: -144px -128px; }
+.ui-icon-clipboard { background-position: -160px -128px; }
+.ui-icon-copy { background-position: -176px -128px; }
+.ui-icon-contact { background-position: -192px -128px; }
+.ui-icon-image { background-position: -208px -128px; }
+.ui-icon-video { background-position: -224px -128px; }
+.ui-icon-script { background-position: -240px -128px; }
+.ui-icon-alert { background-position: 0 -144px; }
+.ui-icon-info { background-position: -16px -144px; }
+.ui-icon-notice { background-position: -32px -144px; }
+.ui-icon-help { background-position: -48px -144px; }
+.ui-icon-check { background-position: -64px -144px; }
+.ui-icon-bullet { background-position: -80px -144px; }
+.ui-icon-radio-off { background-position: -96px -144px; }
+.ui-icon-radio-on { background-position: -112px -144px; }
+.ui-icon-pin-w { background-position: -128px -144px; }
+.ui-icon-pin-s { background-position: -144px -144px; }
+.ui-icon-play { background-position: 0 -160px; }
+.ui-icon-pause { background-position: -16px -160px; }
+.ui-icon-seek-next { background-position: -32px -160px; }
+.ui-icon-seek-prev { background-position: -48px -160px; }
+.ui-icon-seek-end { background-position: -64px -160px; }
+.ui-icon-seek-start { background-position: -80px -160px; }
+/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
+.ui-icon-seek-first { background-position: -80px -160px; }
+.ui-icon-stop { background-position: -96px -160px; }
+.ui-icon-eject { background-position: -112px -160px; }
+.ui-icon-volume-off { background-position: -128px -160px; }
+.ui-icon-volume-on { background-position: -144px -160px; }
+.ui-icon-power { background-position: 0 -176px; }
+.ui-icon-signal-diag { background-position: -16px -176px; }
+.ui-icon-signal { background-position: -32px -176px; }
+.ui-icon-battery-0 { background-position: -48px -176px; }
+.ui-icon-battery-1 { background-position: -64px -176px; }
+.ui-icon-battery-2 { background-position: -80px -176px; }
+.ui-icon-battery-3 { background-position: -96px -176px; }
+.ui-icon-circle-plus { background-position: 0 -192px; }
+.ui-icon-circle-minus { background-position: -16px -192px; }
+.ui-icon-circle-close { background-position: -32px -192px; }
+.ui-icon-circle-triangle-e { background-position: -48px -192px; }
+.ui-icon-circle-triangle-s { background-position: -64px -192px; }
+.ui-icon-circle-triangle-w { background-position: -80px -192px; }
+.ui-icon-circle-triangle-n { background-position: -96px -192px; }
+.ui-icon-circle-arrow-e { background-position: -112px -192px; }
+.ui-icon-circle-arrow-s { background-position: -128px -192px; }
+.ui-icon-circle-arrow-w { background-position: -144px -192px; }
+.ui-icon-circle-arrow-n { background-position: -160px -192px; }
+.ui-icon-circle-zoomin { background-position: -176px -192px; }
+.ui-icon-circle-zoomout { background-position: -192px -192px; }
+.ui-icon-circle-check { background-position: -208px -192px; }
+.ui-icon-circlesmall-plus { background-position: 0 -208px; }
+.ui-icon-circlesmall-minus { background-position: -16px -208px; }
+.ui-icon-circlesmall-close { background-position: -32px -208px; }
+.ui-icon-squaresmall-plus { background-position: -48px -208px; }
+.ui-icon-squaresmall-minus { background-position: -64px -208px; }
+.ui-icon-squaresmall-close { background-position: -80px -208px; }
+.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
+.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
+.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
+.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
+.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
+.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
+
+
+/* Misc visuals
+----------------------------------*/
+
+/* Corner radius */
+.ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; }
+.ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
+.ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
+.ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
+.ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
+.ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
+.ui-corner-right {  -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
+.ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
+.ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; }
+
+/* Overlays */
+.ui-widget-overlay { background: #666666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat; opacity: .50;filter:Alpha(Opacity=50); }
+.ui-widget-shadow { margin: -5px 0 0 -5px; padding: 5px; background: #000000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x; opacity: .20;filter:Alpha(Opacity=20); -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }/*
+ * jQuery UI Resizable 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Resizable#theming
+ */
+.ui-resizable { position: relative;}
+.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;
+	/* http://bugs.jqueryui.com/ticket/7233
+	 - Resizable: resizable handles fail to work in IE if transparent and content overlaps
+	*/
+	background-image:url(data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=);
+}
+.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
+.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
+.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
+.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
+.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
+.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
+.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
+.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
+.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/*
+ * jQuery UI Selectable 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Selectable#theming
+ */
+.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
+/*
+ * jQuery UI Accordion 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Accordion#theming
+ */
+/* IE/Win - Fix animation bug - #4615 */
+.ui-accordion { width: 100%; }
+.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
+.ui-accordion .ui-accordion-li-fix { display: inline; }
+.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
+.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
+.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
+.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
+.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
+.ui-accordion .ui-accordion-content-active { display: block; }
+/*
+ * jQuery UI Autocomplete 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Autocomplete#theming
+ */
+.ui-autocomplete { position: absolute; cursor: default; }	
+
+/* workarounds */
+* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
+
+/*
+ * jQuery UI Menu 1.8.13
+ *
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Menu#theming
+ */
+.ui-menu {
+	list-style:none;
+	padding: 2px;
+	margin: 0;
+	display:block;
+	float: left;
+}
+.ui-menu .ui-menu {
+	margin-top: -3px;
+}
+.ui-menu .ui-menu-item {
+	margin:0;
+	padding: 0;
+	zoom: 1;
+	float: left;
+	clear: left;
+	width: 100%;
+}
+.ui-menu .ui-menu-item a {
+	text-decoration:none;
+	display:block;
+	padding:.2em .4em;
+	line-height:1.5;
+	zoom:1;
+}
+.ui-menu .ui-menu-item a.ui-state-hover,
+.ui-menu .ui-menu-item a.ui-state-active {
+	font-weight: normal;
+	margin: -1px;
+}
+/*
+ * jQuery UI Button 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Button#theming
+ */
+.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
+.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
+button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
+.ui-button-icons-only { width: 3.4em; } 
+button.ui-button-icons-only { width: 3.7em; } 
+
+/*button text element */
+.ui-button .ui-button-text { display: block; line-height: 1.4;  }
+.ui-button-text-only .ui-button-text { padding: .4em 1em; }
+.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
+.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
+.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
+.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
+/* no icon support for input elements, provide padding by default */
+input.ui-button { padding: .4em 1em; }
+
+/*button icon element(s) */
+.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
+.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
+.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
+.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
+.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
+
+/*button sets*/
+.ui-buttonset { margin-right: 7px; }
+.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }
+
+/* workarounds */
+button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
+/*
+ * jQuery UI Dialog 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Dialog#theming
+ */
+.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
+.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative;  }
+.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 
+.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
+.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
+.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
+.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
+.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
+.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
+.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
+.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
+.ui-draggable .ui-dialog-titlebar { cursor: move; }
+/*
+ * jQuery UI Slider 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Slider#theming
+ */
+.ui-slider { position: relative; text-align: left; }
+.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
+.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
+
+.ui-slider-horizontal { height: .8em; }
+.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
+.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
+.ui-slider-horizontal .ui-slider-range-min { left: 0; }
+.ui-slider-horizontal .ui-slider-range-max { right: 0; }
+
+.ui-slider-vertical { width: .8em; height: 100px; }
+.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
+.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
+.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
+.ui-slider-vertical .ui-slider-range-max { top: 0; }/*
+ * jQuery UI Tabs 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Tabs#theming
+ */
+.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
+.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
+.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
+.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
+.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
+.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
+.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
+.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
+.ui-tabs .ui-tabs-hide { display: none !important; }
+/*
+ * jQuery UI Datepicker 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Datepicker#theming
+ */
+.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
+.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
+.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
+.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
+.ui-datepicker .ui-datepicker-prev { left:2px; }
+.ui-datepicker .ui-datepicker-next { right:2px; }
+.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
+.ui-datepicker .ui-datepicker-next-hover { right:1px; }
+.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px;  }
+.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
+.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
+.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
+.ui-datepicker select.ui-datepicker-month, 
+.ui-datepicker select.ui-datepicker-year { width: 49%;}
+.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
+.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0;  }
+.ui-datepicker td { border: 0; padding: 1px; }
+.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
+.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
+.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
+.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
+
+/* with multiple calendars */
+.ui-datepicker.ui-datepicker-multi { width:auto; }
+.ui-datepicker-multi .ui-datepicker-group { float:left; }
+.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
+.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
+.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
+.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
+.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
+.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
+.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
+.ui-datepicker-row-break { clear:both; width:100%; }
+
+/* RTL support */
+.ui-datepicker-rtl { direction: rtl; }
+.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
+.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
+.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
+.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
+.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
+.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
+.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
+.ui-datepicker-rtl .ui-datepicker-group { float:right; }
+.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
+.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
+
+/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
+.ui-datepicker-cover {
+    display: none; /*sorry for IE5*/
+    display/**/: block; /*sorry for IE5*/
+    position: absolute; /*must have*/
+    z-index: -1; /*must have*/
+    filter: mask(); /*must have*/
+    top: -4px; /*must have*/
+    left: -4px; /*must have*/
+    width: 200px; /*must have*/
+    height: 200px; /*must have*/
+}/*
+ * jQuery UI Progressbar 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Progressbar#theming
+ */
+.ui-progressbar { height:2em; text-align: left; }
+.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
\ No newline at end of file
diff --git a/share/lua/http/images/Audio-48.png b/share/lua/http/images/Audio-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..cac34ee317e91d43f311efabbec1fa0407ec5e4b
GIT binary patch
literal 4757
zcmV;G5^C*<P)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm00004b3#c}2nYxW
zd<bNS00009a7bBm000XU000XU0RWnu7ytkgH%UZ6RA_<KT3e8u#dZEpcmKDUe=a+_
zvlnS~VG)*u5CUXNT#O0{3mapwjY);rkd#rC%izLgLRBhGp8Vi)#T7fQ<RP|Gd5H_h
zu>&ZsT!0`O19rGdTm@()Sgo|Hz0B^;&gH*%pFGTrSY#P6HmS;~>goS7)BSztoIZU{
z*AO$~|Fh8hIrzwD{}H8~e~hd(4={Z;jgy-!&%Td9_c1u=eNX25G5^!Qz~X_w{;lT_
zzgNU($l{}ahqQhYWO-m?KHNGvy(_9W?|`5`cnb)}0!jNl&GEhxh)+I;li&XobhHfR
z`_+*(PN8{xa&3EV;V(&u-2lLB(0=t%qziAnr#a;B74ca_H)jzXeH8i4dp|RF!O*t2
z6~!~h=Cb at ixsPn?VUxC#<KMUh at u`>I)A;YJ1$q*nIEZNaC5Ch$9Vv8 at rmeY!D<J4<
zfIyb_p2vPa2~f8Q05C!#V-3v=k|GNhm#lcX`DGTgiPP{sPojPoghB{%9LFMpecg4R
zSbzTc=Wlc!r%y;BEz7cm5F|(#p`)e!eC|1R9KsPSAlcGMk}OY7om<_w{yYATo4?$8
z>PJWZ&j>h<BS%L^t9$qE{lGQX?ER4Edc*72uXhTCf}=GHk|L8*X^_yClBU1p1ke6k
zP;7?*`dsByie6brAPB;^-wQwD-}b$KILhLV;OQT}{Js;|v17+M*Ijqrj!%B_hMl%;
zSCiBr)v)V<U72rjDP^nFie#zQP`P>_RognM!}6o8*BTf51vQEm#gZ*;NoAY7blp)O
zM8(!FbIZ5BcPxv)lpMPEdHp^R5W~a6{>?Yvyyuo%ZrS5F?ohoE2;IW4?e(oA<qc|*
zjsd`$00ImI3=5=e(9p|%Mgam&kch}JPTR?3mgz)9F_9UujksXIT;cEg_CHNMeBM`Q
zAOF$ANo^u|H^AO8jM|PZw{PFR@#|mz`serT*>iO(h^mQ}V}5CHhhOO5Af;V0+);#K
zfEmzC2qS?w6$sS~Lhmr98fzd?LD&iqv|>n02ng7f;k*!*1c6cYXeht&>Q5x=t{9Os
zFFq43PPg9)-`iTCTrRtxzVXvn-u}hgZw-R5&}fFMD%DjRZ6{ySnvrP at fItKgF^D?X
z0(?42Va~va!PLpQNDvqVh5$1|5Man4F&be8Q>L`E{en$jdcFMp_0BzaeP!nPUmP{>
z#R7#w!P~cQ-$%djg)jWce63b46#KTUS$oa}%CcN$#+x}HfxFr_OfZI^83-dnkO&0U
z3ADWzFxA`u$peU*0krMH9Vme<A8yWtMFhzj#uy5c%ut%7!~K1mtqVT3EmHm~!Q_jl
zki}=sI?qbLbzS?`TW{Ta+rE9DtJP|yRU at k}UbSlV8s at H#000Br(=w=Y&jbU24IxYf
z+L1s at O(4v_fK$sGp-ex5b_7|@<N9k)VcV7r!~F at O447*;V9gLlQ<P>Dwv%MIoIBUq
zc=-kG at h2V&XWv*j8`d*7G6EoX at 7}%R_S^6H!{vHCw`O$p#lyox!+-&SyY2#z03-pT
z+vtoYx+5EkVJHEpLyo9JcBm9$tlGl%^-K7pom1GiYZBFJiiiZ*ut?HKP0uZd>pZh_
z)#twPEpKRT>D^dBY~HkK-Cuq4oBPr<Ee#G1TrxB?G}_U8haRm+z^VJudEN1CqdS&}
zQi0__pkW<G=)a8F<!z9rA4wR49UC9o6vBr<o(VpHQ7^+~tC}c!grhYFI?^HtBT_;n
zgQKfABnC&9p8wg4T_k6>01>&LzwNe9_`W~lIM#;I)g$W(9c>ChkfL)f&(??`&{>p1
zFk6Z<OL77kW)K;J2!;tHC4`jlNFooQ0Kf-e8-a?@xM_F_9~^FB5jLbTYOdCheHN=t
zJ9po*esp92XVfq~3lIQt#T8dveCM5CzP?^xtZv%0;e)nqD`o}>f*^obM3>XjRS7d7
zgj~ow;;Dj*NBVQ|fpvXL4_Aden2+4a!;53X8h)PB46qe;Z(K${F$w_k1o+y(Z3f6M
zH?W0g at oHSgsg^<-#bWh{kHW|rxx=l!{@Aaccm=@ez;xOIp6B`3Uw{4fAZS&p)&BE}
z#i9!$NF^Ypgp>qJ3Rsd(Yh6h|N<b;3zH1#C_MLz3cllArw5D{pnChgRtEi&f$`{T0
zy1%YdG6b1P0WLF8?pmM_B`7S^k*_U6Ew-^fYT%1~M<H_-q!eUKCS1ww>u<Q>18di=
z9bIXK-aa7u`uc`<@7{e;y}smc-m-ZVBq1fhWWdZ|A`lq}!<}9;v|#`+j<8>J*nQgQ
zRJ4L*b((0)bv&CCSSYDY!8Puza%4*YMkZM%xM*OPh^>4xfVZ>^ry0PCHKYNIu&~{0
zVM8IttSTTejIrdz(uJ3AuWZ?}W%K0Z<VgS;0IMz=>$1x(TW5@^<nsBUVyR>qtwAIK
zK_CD|Fr>-Ah9L|=2m at g>M66~gQYSR)VQpA?ZXOv at dEgiSJ@f3rXO36;EB3BSKUgKP
zjhFz>Q6ey+rB7w!6?bu)Q)`eNq)<!{WC2Qoq=c&!E-kk3U||((5#i(BR9_m8=xeXN
zcI|-!2MS4&)K^--{rI)lZcWqF9$CG5SVF=GKoEnw!JZgk(Fr+hy5O}iaosGWQCPC1
zRF-9DaCCh4SH5!K{{8nq1E2vwez%YxsQ%ecc9z#&xQ2`tiUifC_$AwIuJO~XAJPUX
z1(G&MDv-1QDRIN91izdPu`6H4n9rlj!LoDJo~zfE%jN#Lxw++)7I2Hj(r_3>xnikQ
z002R<gBlWG1_59eoz*H0m=$!Gq|Ii7A&`p<w+70U at TU*{^p*Sf-~R}JNdO at LT5Pr_
zvf9FY-#G$AWGqWa$lOAT(yZl#{l at Y@$_A7LNDCwtAQi?W;cxOa6fJ_V3ck*=LZMiS
zrIdwk0OFnnY$1ggMUh)56zn$xEp=l(_2TU5$Rh~Q$n<jDXcvk()k<1H!Ev0!&pkB-
z;3$Blw*)Ifn1Wzi1Svqua~p{_xCAQ#DHo(HKq^4UHya6z`rV?AgfyCc+qUN|%gXf@
zvI0Pk<JcgQ%q%?H?(CTOb)nu<>Vz+;B-k~vn?oEsPWXJ?NcExXw|O7eH)v%W0=1Y#
z1B)kL6U8!VlR*jrlB9EvmAU1Lf+s=L11`GTxO`J#)D4tEfLm#v0KInY+T7&iq&U3>
zN~MzRIu0>&g5LoCY~p*i(z%@d!$~6^t$CN8Y9uf?|I+fOwtO^Xiw%j`u|zD>#-c6L
zwK_>6m6Hr`ns;rhFi`D>>)`Zea(ZII84my{kT#bb&Qe*eR_%^ix-PW1xTupPG5LHx
z;T1psO+o;`29M4p>Ti$aE*xJ>@qwzFziQAT-zL}u%m<l%>0~RIm<?0Mw$4d2itA|-
zj`(>SFj-$^V3pfHyb44Bn>TmE-psx0UM~ewUd)iD*7Vd=+QXs%P?lwx);jS#FN)(h
zaUI7#&3)xStO27D#WB9~a)_TyBx2WS&cAZ32&o8K1DP=#WsE^(i9P3+3ojJy<hkSR
zcBWYe5p$-EbaK)i8XDXKA#)6X=q!gLeEOq%YmjCp(I&Jfjvo(uCQ{vtB#z_2aqPHN
zUuwI9RU26f=&aLB3S<e8#n53J-yWB^ciP5HTlz4VmuSW*mLlR5#99NX22yR<fZ=-z
zmL(Az%~}W}C86kuk`SifumO{Ji_5;ni at J9NAWKb}=`4<-2*#KQ-E^WyAU=5L(1{J_
zows4()QQCbU-lsifh+~m7)U}Ojexj;#}^g8du%m6wZTQs24-6c63vL2DKLTqO~?#$
zW*8vC%yMkfObbD5<!x9cN4lwC8Ma%<kq4nH5DAcwICJ%_ylb`F%`DUL(eb0TAPAOM
z5&(d3|9$rzyYa>w_e{;s%x);jF{v{`8UaZJBq2C%A&uMEUmHWtXebFRh8fzaLCgk;
z24a(mP%~l;)(k{}!E`NBmVmM)iJYf|v<MZIAr2x$0<fG6Qd$sF077-kQUU5#dOad@
zbMsS5*=GO#{U_S(_F|U+_biZ}nmKjq=+R at -LnXhzHu-vUsNfVi3czUy&LVIcVKD)I
z8CT$f@#=hlHPswaW+a*r8-v&|V$H}jQ at xR(UQa<x%CZPb2vmI=ApsZ52qv)*L=rAD
zEZaaD1ri1%1q4Zu5C8~*1fn#_TCL_uW)5C>;e`owHb at 3m6f|j?=_HN^c75cUO>@V`
zvCc`VNLt{u4U<JMoS|t5|C+9c5Eg1din&&TAT?;D8uci{QY%BfnPRpUq7|m#UIixz
zMOUG}?17RN_U1yAJsU!*PON9{Mxt(yUNkZgLSS<8#2ZGNV+S67_{2T;+;adx9i3$E
zv<qnf!IMuu`P}%C*LDn*2mRx76HDjx*?lQ9SO8iOJQd^e^dx at 9n@|vhdYoaQsgY>Y
zJ!j}Hx^B6t1i at AU)trTLDTmjV+ZddmMV2ohGX$*}S_3H<hBYk15Jo^60}=+xQfMwO
zN45FdD+Ja*_`wgJUIG3s79ao|hGE)jwd~y=z3$xOGjrLnmk#7|LK+LuHX*YK1<}Iu
zNfC)vh9 at M503`{w6tI+lZ3%cvpy*nt<ZKL;JP1eP_!|@OCf~pa1AeiD^%WPEr679+
zH2^l;N!^(tgn-r=UORH^seI0#`|*$e<?y}t-unvx3jng7=d7%W830dAOf=W586DcX
z<I2kMsT0XaA6ISPqSR4{9UHF7P~rvrYB`5U_$cOV__jjPRVaBj3Z8|0&W4k7z|c5Z
zUq<ct1V(13u(psx|3Dv{ypOSp2hR}@LYzJb=<Q{M&autp$>|qK$Rp!Njx at gd)j$9D
zG)<3p{okC80J<;C(@#I$xNzG=BWpHYOw;qHvVp4VR|SU>+eTt3v=ZRNR2wt(CDfAy
ztvEzrQna%Ojj(~`Rt<AAvuGTfME}ewjFHChU=@P{RSfnOvAUGUXwia_5<*bteCD(v
z2+V}J*}0dqOg~qz*RwC(amRymb8{~OSYE09vk?G*EX%Ussi&S?zVz}B53f4!lJHb*
zKJfc!&@S4N9f4Qc1-!PLgU at X^@ghV#hpat~wD|_I#_Qn5NmQCC*2oe at D*YH4tYT!K
zg5gpDL!}(nl^ytYSNlC5rcT5$#+bR;nL`X5YPVZ_*Ijr0?C{~kPXL$)5Cd<`a?VD;
z0La2HY(M_^W6N8&UNpRM>y_d0sf9W6l8W7Dd$XLwL{xw*IB-iAaz%xF-XNDx;Q1-?
zc^d=nIT$Le!*IC|t1Cr}lzdcu4}*CJB}YI?0U>(FlHG6_MZxsciN}0DH$Fc<Pj}ya
z_ao0d^UVJMm<14>3H~<`06MEY34);Y;DZk=^!4?XckKL_Sz4mwwPsVRBFan3Q=GTp
zlqBpT!SXefpTY7pa#julVhpRC5e(&X7%I4^`Zh|A1<&dn5D22qrX>h$bXs4k9jPzR
zKQ>sc)Si9zU~uQ1cOE!=`0!HzW^jhzzZ(M7B at t__mmhiLk?DzvV{+$?U483 at woc1f
zj%R4=w#~jOYKNQ%$_XIs08+-tnLMi57zR}p6-S}$D)^3qr394h<opDN&f=imT09yB
zi%;Y{I$|lwfB*O2edB9i``SabTJ1Rib8iR!?FhWZ5&+uc<KuJp-FNRonrUb2#!IX#
z$1Wb<Sg5>eW!bz;+d-Tzh$LN-#so at +Wt8F#C}04#BsdDNqz0fP)^Wq=)}-Lpi?)gm
z6?}R<O~UBsKmYmSU3dNI;}1Rb(66#A>s55|+kx+C`kjQjL>&M{07I2ZW$jI$x#|2X
zF2B5T)rYS{|L~BSisy1C8`J($(9FkS&K1q7;<m6|3#gRcxZtVKw$Sz*id~nI#`2Or
zc<@km at ZiDL0}nj#^5MgWkD}u)OI at vJc>A*CT at zUOT?N2J=QOYkU~tps&8vq82M4dZ
z at +$wDkL=BtiY43iELM&nA<2%SSZi$%MzIdUke_|#VDKOR`CrZ1+1Z8h@$r-GcDo0<
z*#(~B&0OMLf%<JlpkomW9joNJt(42<%2G;C2w_VpZ6SnYW}~%EjWMy-Iu66IVT at S<
z(Cz|`&~a1UZSPbN{>}te5<!=Y>Ncy}_el1{tN at syqvZ^5<}`2X=Wi#!uYar1ik{AR
j))U6ByT<SQU!VU4^*O+3-jw5p00000NkvXXu0mjfo&Nd@

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/Back-48.png b/share/lua/http/images/Back-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..169f5239baba91c9d7087c2dc952c18818791fad
GIT binary patch
literal 2135
zcmV-d2&ngoP)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm00004b3#c}2nYxW
zd<bNS00009a7bBm000XU000XU0RWnu7ytkV`AI}URA_<4np<ofR~g5D=giE`t{vO4
zy-q at 6nkKaAEh2H^Ha3D6io_c)NQm+RNKhmS4?s~QE>bE4f(LHm(h>m at 52%%pDxMHL
z at Bjj)OVa`^w3J>FH_olu*m1nOvvWD;<6+nCuD#Cg&Kmlyjvr>{JLmtKbH4AKZ at fxG
z*e?6wpT4d?^X at O(EWSSob~84Xv|StWr+E5I3<BB}6beTxmX>^e^obV%aQhwT)Z>dc
z`SzptedEcC0YDtt`BM)}Kh<l$N(oxGU-R5N!$YeWqwsuiT}V?G5w(6#8^G^gt9Kn}
z{zS3k^`KOq^KvRUesltWGk?1loO*n5e*Q#p6U6%u<~RALM$k_CHP^{gERM5qu11<d
zzMxR5eZ_2G&SpWWjGI%z?93!*7vbz8%+5^W<x~)q%5%N+Ay(mPAFV-aa2yxko8<QW
z?;r|2!fFoB at mOBUZ7)DjD$lu|l6#xt*K7^K_2>!0_j9=R2)9mrm|Mm_$bpHEFzVmI
zaDE&|4G~8kBcl#h6hHpt3)=$_l*)6COE7z^U3?qFu_BJ!9im!`IRD1;lvftGURmJU
z>WeH at USc&|=KlM4apXvWa at mm2n>IhynuU6afmZR_A-L~&k#iSre($aO;IGe=v4;8i
z6UC=G#Q?y!|F{RoF(}^DBq+4XvvS?Vq?%J7cy(}qHSzZzE3$C0Cl~hbg{Pk>V=Wy6
zyOV7N+G>3-p`cWrQ<`A55AgsC7aPk-Y3Vtzd$GO%f>L=7MKC*4<n=zpui5LD;P}iG
zuze6c12hK=j?WZ1e>wYri<jZp%oIXz*{PfL1Q3+Ub5;mujuyFaWzZqv;u|n?q==Ql
zA-V=}P%6(EOK|LHkt^2*8EUglO~5~%yNXt-V_*lRG61I at nBKCFo6bN`D$f}s!I5`v
zzj%PFOK|v}DU8h?6I%iVrSe>A2o4{fqP(14WH(z{fxGXTB2BYFbOZ=W<+&s!xclxR
z%QprW+09leaK~L!BpDz!0R*M;T#~5Z&O3|TsBE9eZdR?q?T7lGi8g at JnZ@@cF~Mzz
zCaKgw<p0~kI^242ia72)JFV9Pk36yPt~e_Eaqsj9%ga$u^!Y-r`%NuY596-)guw2%
zjd11CYLLq at 58U+F;X*@vz3%>b|A7gN1;6_dgnB)u-)dBVe7-m6ef!5)Jhu|~{>>rO
z=N^6eM805qF8u&@@7+t982r4~j~h`vA?LeXTI_OsZ84D{!fI{odk-Dzm`+r`Mg8X=
zd*%G}{$0~zg`D3XKpZ7_IhV69Us(O_rw@(x<-CRUUDPWGMH<V&_6gtc0gy~@E;?D?
z03y<8kSPWLtZYv$4jBNT0f16ud8gFyk+%+DEoUqGp8=Y_2&(J7Jz9n*A&8X*h?TyY
z)*5L90blyX`TjPMEi7XUWSoJf`2|0 at v3w<Z=sTA(`CFUIKl<>|2r at 1qD}s{#v(TE2
zjgO99U%pD3r0dso^R?XA<Rs&ho!|b2)jBKJuEt{1^>-`%10YQRL1j#aN;_C1#8HA$
z3Y0=OUm4z5S^;V7FG{tC%J9e#2+3m)&#aU8pM^xg0$OEWLIAGkq3RJz={B(@O%dCC
zG8+IyEGA9c%El}+AXWrDfO at 4AUd}@)_2yG<5o^*E?KmBM1=`B1{<Dy%vuTnJc60`E
zzP}F8+E9?DF(S6DX-8qw1VmnFmD4wXHRkC!PQ*$h7P2%Ep)foQ9RQS47?Zxa<2Re@
zI;2Tzt+l0r07UHbNffOPG6Tj4h2bGIEyCA6N;P6&1Asr|6W5~}@La2&ENS##aTKR(
z8&VdFqljUzK(3G{i5f-DdIVU(NF$J2vykuSsI9JA;4iIxW!Z^eFecSWl4PF&Ye`eX
z$k at pG3`p~{7R<(&^{1~LO*8dh29^c_c=QWL1(Dx}wHnsiO>4DVv({p*C5{rtCdSuy
z_Qo7E_5_r|wg3!|4pUjJSP_1`QBS5*p*8l2q#o7cD9W(@4Pu3Q7%{YC7%!Jw(@Zl7
zp#W>s^$aw+bA*-hQU&Dar%%qdX~}S$20?xs$93x^1*{Fxj)T^E{W!4cei5uO7;CW2
z3<D5WLw4`m!-aE;u;G9zfVGy<@iF2!##s9r at Y2S<GtIzHzId#H$j{<>%^H)E#1T<F
zB&<~k!z%T9je1xmtW~I0R|#tsq9`Oy;<jaX{n`pUixV3++%;-UnlQ0zf=lNv+(6`O
zowQ^wEUYo#jO$^tDGsb{JZ)pT#z>l4(j?`U+YWXdV`5j4uu>z5<5z(vH!h!n08XEr
zy{xqUWgLalS)lFOK)7=8Dx(vlj7^R=du~L*(8vxZ_Y}Fbuy_Ob*j73+#lV``H2oCt
zA^gG)*-)qVT5c-saP{&vrVqTGobPkJyo7c%`wmQV?%%IgthJv#eRB4>E&T`mt;B=h
zI&+KG`q>@D;zWMONTyOztl&t@&dHs)o{Ke>voF3<39GfQoIW}G{hRp?1fY}}1N`If
zd+^}V`#=6uE%u()u2G;Ge}u*{K|qOeoK%59DFZ4+DGw;5QJgAASuysX|9SQ|U;V?c
z9{D>EiO9<T3SbW~N+XtX2M)h?#>)?Tj^nvXYps-{wRSu=mly4LS}CQ{q at E;EEv{Er
zqIz{Xs at GQH>dKX<UcH`r{*Y@;YD^lR1yUN7M at 2-o{KwY7OX#h({{nn+qrmBH2|)k=
N002ovPDHLkV1i{f2rK{q

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/Folder-48.png b/share/lua/http/images/Folder-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..d37b8b2129f860aff928029f4f6eef2afaf7ccba
GIT binary patch
literal 1488
zcmV;>1uy!EP)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm00004b3#c}2nYxW
zd<bNS00009a7bBm000XU000XU0RWnu7ytkTa!Eu%RA_<iS-o-`MG*dacJ{VTl21ZN
zq6#Q*l?kjs0TDzLffIf*3Lb(7AfQNi0E&pv84<6*8&D)fI0A!=^@C)~k`CSN?sOB}
z&Z%!Svv()EEUU_0H8ry{voqh<-P654BqF%ZVy+s%)5=Q%S1s3`0Bvn;MF)&A$g&I~
z@@Y{N-{yH<5D^m*f+7Hjh(-%Gb<;LyXJ=>qe*bG@%+JQ0>nj#Kbf0cJ=fKR-du$s!
z5qXD*eyFPIt*WY$^EBw#m@(!X0KWooXsqt<nK26X0Ym|$2z;LB`B%o6Th6&xm^rz!
zh_n&_fNr<@L7wOL01N<3O!fpsBwCo+7-Noy!{J>3--T<_=H_MyXtmSn{FdkWn{{1}
zCQSi2O`bN_WLXAgmcd}~J`w$*$E*kGg_&Qs*1l2KHQF@)Jf*P)RaJG<7&A$rEX#?>
z&bcLPE%_T?6k%qRW!cq%0EiQ~Q4|G?F)s`OB0^o)D9f^&W!c1-9SjBlMqv{e5vc3h
zhtTH^HYP*_=N!tiT<|#kA-7)B!{HDBP}lXs($Z2g?uIf;6q;vVYHs5~i_L*XQ53M&
z!mh5af`~924sm#R2xeYjW;o|w7z+UK3hg=Pu)e;IUavQ at fCss-uz)Pfu(!9 at WoFcM
zJrSd0GH-vI#H^$HL<CuuEv>DsVP$1yoSiKI7-L=o at TIl(#>U3Rds&vjTI;juh1&a}
z at AD<RjsO4=MU$6zS>0yladFOJd3pK6qA0#+W(VLdfZwe#=2ZYc_WS)i0MO}l#+!uC
zHyTvrnP>uRxQ1_cyWO^|djWhv<aSk6x1Dn!qR)&mUsxjgxT>l<KJt`h*{aRhb;<>_
zhzN`^SX^8jUx(uWCX#0xNdPyEF&|lGt~FEd9=`22o>yXoyesHXm;xL2g)Y{Jv(CBu
zBJxB;mh}zB7%(%4Xk2TzXtRL!^N>JUmgsakN$@GnN5F%bA6e(zu815k^Rfn at L8siP
zjX+F91XWc{B*_qXtS?po2!MSnA_o8-0=T6oTo(K^0?Z6+?S=lBB~k<$<vs!Mz&htn
zjWLH_;~GFn<XI2^fU+!Mt&IXr5sFyg5Wv1=W+9 at -T0<e|(C>AaoR@%iBY(zHR!Fr~
zuz4sV2etuxq$kaybswR^!yS?cbAgD!hwKpeG$KJc1kkq)qobIqwWh<+m(qUQW4I3v
zK17FeXF1p^N<J15wv8Eg!#ogzXtG~ayP8DmElw+A9xJ2>G4qi~^DxKE+rbGR1C41@
zYd;*H_0d|t%BHLk>r;E569BLivWz_sg<xakW+f0N$2I~n5=68kBJhWJS457PxfdSF
zRK%GUDrXUG?P;2i?6VDEWC0O51#l`NJ%2+AeCqJFk%~#%Iw>Wnei4zKF#(J|IGyM)
zIt~0~-A98F5ri-4F#-`woQTLC0Qe|W6VYkx49o+59`^yxBUbn>ks_nor%f3X01=(U
zd@=-<a-Dg>>pj{&`X&gRVB|ID1e(-*A)}^zH6%F83r%c|)W?G<5$^;*4V<3=F!Mic
zVbqIGRN+}k<%G+)+!O-GzF`&U`{5xD7f5M3NH7=3wpmZl)8i at fK5vZ)sGGM#3xweO
zrr}uIA#5Wbt~<*)YSww+=V}6v^dhsE_c8}JC9$mBvj1PcZPg9^&=pd}kB9ZN7oBGF
zsdcKTHTGi!{sr&{5xot-5s@?nH2M$bCr<P!u)ZxJnLw+g`u%5oA|g`rNEJViM1(}-
zKLCGEET-fW0PoUh_Y$N3QnjjmajIrj`?e?S{gW{IH|A>tAXBw2HYj;hIt__G0sPe9
q13gPWz6!ba|A}7`xN5of1pWtnTsLgH5-&Ue0000<MNUMnLSTaaV40Bs

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/Other-48.png b/share/lua/http/images/Other-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..d739c919da3e5dd8f88d87ad5435c42bc6998ce3
GIT binary patch
literal 3002
zcmV;r3q|yaP)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm00004b3#c}2nYxW
zd<bNS00009a7bBm000XU000XU0RWnu7ytkZTuDShRA_<iS=(=ART=+%>$3Mg*Phe%
zv^_oT^h`Ua%(MdpBw&n*8lMoOJ{TYT6L|7TgNYE0^28G{F(g0`G$Db&m>8omk`Of*
z<TeaAAPhHQ3PU?Rou2EytmVVL at 3UJ97>S9iU9;BOJ+r%h-}n1|-?vstYmNWq#y;x}
zeA at PZ0H1ZE?1R?QvBo2ho%!8#ZK~>d3Lrpx3fgl)(g;4KgYS6M8qiut9RO5vt#x9Z
z{%p1b{?9q**xuRM`o+)hzS(i?VIBaHeITW{dh=xGhH9l8KXhH7-v_3q4z)(O0j1*2
zDy5*6hSDl{uAr5Ir~IG!JvsNgrxX|wOw(L{;rVAbwm-b|?2!O0EHsyi2zz^b&;S@?
zaCUd0T at NPbKti?rsZLp1tF$%!4JQEwptO!RuQNabuv%+KA+XYJuN(wmA_f*0n=70V
zT-Ss0JSeSU?{=YypabhnxIEbrP#~P?@CgEXWMw;C69 at nifr2@pVVMS|r)OHZF3<D8
z$&(wK#bObrWq}cah#)Nsh2{d7WgYaM^p+y)>&TL^)itzET3ZK(2|VE`coFp!tU?jX
z%gbv=1;DR5dDZ%GIK*f)1~CF-3?rqWY#Zcypdjpt((xY!uF4P0R7`~H6on?&A;1%z
z_01yzV2sz>?e?PMxNtoWOc4}$(40d7fae1UH=he4;7#@m355yirn4La0E*uM0G{h&
zb#?6oW2~r at 8XO9sT&c{r7Ms;Vu?WL7!59M^2ey<bRjYv36PrG)X~aRTbb6kmQW)rg
z#gpnJxWGcQ*(g`4jVpWIw+{tSuh(0qX<7UG`@Rkf0k7MIyWazi#(?MgL6+!&*^tB)
zQ)g1|CsiqqjXWSOIjEM)#d5hkmj at uFLaVDMP8CZfIF1tqlilkBQo>W-gjUCjq*B~J
zuu-5j3Gn{t8-T(wR3aj1tx>B@(ZWKro%hO=2TpBlY?O*c3;-}j;8KE26GpWHDGiYD
zDMXASg*pnQvfhaDM#9nuDwNic(m-c@{o3cA{re+_0$5vJZQHhu(Rc*TIJl?aC=Wyg
zH5!2kV8lSo-#Ci^gcd|#-7v`!0G*+fg4SV~k?>qnjiT7_K?)&p^3>+FALRkF)mmKW
z_xl(PN8p@;2 at dDVK6JSZ9t1FB6oUZ8<00x4dm&$1{oqEFg|jii>@n8Y*Vh4<0LHlh
zIOj97jk$RtB?<r-=YD`VE{f#}82M!dW6ZaFL?aeZDSzX6Ef0W7dLfk~{BmMxsWo3L
zmZk at T{#Gu4nc2p%dVP9!Z*LFK8cYh%XasvSgcy%NN(BJ?O{Y8&1RY~BoeuXzo;t-b
zkyR(xaZs<-%GGLh{y+fj<Ex!Qp};R+-Ua6jTu5NhgXSE1Zx5t3Sh(@X3n8FSN+;w{
zDjCpmFBS`YwlTN#{`*@m<N{b(SvfvEU5AhYf^!Hdp`--o9A>=^hJZqxfd>E>V?Kyb
zkytXYkJfaOQc*ysJplk*NSx?&PQP^S>~C`cG at H%k;b?^6aOeZ at Jg8m|qELVu4#9&B
zhn)wbUoU0oM4#3ZlU`t)<J89H=`)W#ntDeFfEtatcDLKbU at -6j7zV~$TPQRaV1%1w
z96T5!Dy4!t9TPsK(jda*6ppzu0X=bs0Dz^XrIoA^g#ThzU1=Zh2x*{HB5=+jga8pk
zrB;V94RFT5IrlBkCq0pkiDaVtc<SWmiddC=5SD3Td1+}5fCXTb0#L0^HCwHvX0O)+
z5g at pLYuj)+gRK<2(b(TSXW*O#o(O;ti_|F^Luq9P(`nKZNLfEyJK2n3vDuun3WdgK
zIQ&-%!2H7eQmIrlcDr3jDImB2(+VI4>h=7xf`tHhY<Zsa0E^BKDN03NK*}2*HzvmR
z7_*Jp+Tvns^^FU!rvc2)%q|OQz%VTsQbI at pvTcy1VHJwtgunwl;RzmZJ_%%kPAn)v
zl5|Q}uaiI~^8^Sem#gTkU$ybZh1Z`<1DKmz9gfCuY{x%n5TLqy;G99Y4mc4+RL3hQ
z#r-T9Zd|c=9(JXm83U05F at mDdBbbPbyn|5|1hj at B4YXRVR3HlgXdhp@dVhZ(gFzos
z2uR0-v%L+gUW3}-2PdEVV!{JFwtgzG!)%@KMk=TiASkU=A%Jj9N~u-w&}y}ovj9Y=
zvwlJYkWxYj2`MEYC9G-{QX0Oj2AdZm7_(H$P%4a*umB{=$rU-9&!>}L!E(;fInik&
zEOP+}DUF#%qtWR12VfNQPZ7h|Q}9M3NG{+78Cq)*-5B^(Qc#?OYYi0!xAp<(0FY8X
z2u&KKGo^S2#KCk@(3-HiwzevSn08%v2LJ>S)iktq>Cz=ILSRLL>h)029;A>k3>gHs
zgdqi_l#oKiK^=M^w0tP9oPj4O#8 at n^si01HBQL;15R4HP7Ut*X7Z#7b_wGAB0NWn-
z&%SVW>xLU|te!vr3JlYPK?F7!K-TNvOa+{zU~>Xe8ZZn4hLHin)5(rAp2-mhN$jM|
z9 at L~^vDw+##rNKQ=Xn6&0EXwzou$v+_=PWSZk#d({XRxly6_wuuuM3P4dr?8lour$
z&+`Ci|JEWriTSn)PGUN^8Hp}cQr1jf4(s?1Z^Gia0Hnm3Gr#%sg$u7g1NcGg>~(h^
zzVjzPYTS1F&wjAlJ|-5fzYaohRLUh(DrIoaU>F8C<9PSIi+JkkXHczFP$*b1O#?y*
za4v#!V=~!A>U02|(gonbMWEIig<=tFYiphGSy;?{aOwSv_uhTiowZxP_x)SBkYpJg
zhH0QCBsc+6)hYo0ENfW>l*?rlOC?yA2}2r?f`7bZmsbQL0SE`H)2WTk)8U*ao_D*u
zmtXtvgAZm-p1$rH*KuGPCWsMS*MVsokW%8 at OaH*--7X9%;}U`hI<#8S_Y=QAQojUW
zkRe&(Q;Bya!CdL}*smUX at E!ne_HOjG7oL0iu3tZJZ|&RP`R*;IWkH%IOhcet8G~_-
zi(6Z`a^(s*BRH-Ldpw3|nn4cXan;HvYbSqBhk9Y6ijC9>K~7<qotc>~6id^Ce(&PM
z?KFV1Pd at ScI|Ov;Tep1U%W7vEwR#Qac#L7Gh<<+vAte|We$q4i8p<>zxJV?tqtYoj
zriQiCq&iK;#8RtOsZ=WSgMRN~-rvYHfam`7#2;>d;%`sAxJMFQ$3 at Rm=(`?9<1rk^
zf#bSxT^C-UP_E~}^OWCJ+>?KCQK{R9V4hSgJwdSWvMEKQ>3WT|TCL+iItH?B>z}W_
z{MJ-`=7#yDl^G!oNJHY4S6+oZ9!IX$0JKtY9M=ctIB+wg<2bM#8 at BDhacnrY9jt?S
zVr?hZj-7dC+i)BQM1;Tm^{MkOoqO at gJPL))QJ(k5habA{hn(}fzVwx^wx!@OO%r3=
z2IB%;NEn6*Ati(m5Q0aEO$2pQno4=ej!hm>!(uQivq1^M7{kWq=H^Fv002DC^WJ&&
z{L9<3bIqHUj;)jp$?@U#4hn?=EUN%1WpJ&SE(JnO2c<^}C_&L3QjiHV=LMFyTS|T*
zxPN-{t+%^p9)Ilqj{*Pyj_WvYzWDqzTT|1G>#x4%nyKxb9Z17Kp;(A$6g5guV^|sp
zHkX#ySY^UVyr%d at JJA?pxO{nc{NOJixbH9uCEK2Dj~~DPp1aMt#_W%8`ut6e?VZc8
z3I+fCASI*}eis5lgrk2sAUHojp>oRcFmq>dX4=Na#!7Xn);uZz0N5RmhL8UAj@#Uu
zzxMTSp6GNImDW5ZdpSBD$zXymAuZxLV!e+>|DU9H!WCnT#<mS9MC0gJXmP6oXalH!
wg8%!UYz)AKPXYh{rT`R?BisMQ#sKvG4OJjs@?4~+sQ>@~07*qoM6N<$g194Q at c;k-

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/Video-48.png b/share/lua/http/images/Video-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..e3b1be817a8a1baa2a407202e5b3d943ff4c9697
GIT binary patch
literal 5357
zcmV<J6cX!+P)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm00004b3#c}2nYxW
zd<bNS00009a7bBm000XU000XU0RWnu7ytkik4Z#9RA_<intPBO^>yz*-P1ii at 7M0k
zK4(|EtJSV{S7K$0hY_)ef-n#S2<rkaL$2Z0y(YQl8aZ-Nc5r|I!KCiBom?9`1dNOU
z32dY&NCw3S3xU9ru#nJ$eMnkqUz*vSotd3i&-8TnFMmi{ON7+5s}iSNb-z_zQ(e>b
z`~5!iJHK;IpEHsWg5PH;LqkJzH at 0n4tyYm`nd#|iKKHrLQ7V<l<#NB(pg;Q2k65u{
z1*KAHZd}W<ux%S51h#Dh1QbQ-RTQO9QIr}XglSpUlxdp7wrvmCww;k>8A+1nE?JgQ
z6lHFn&dyGhk6*%njBMM+>2&^4I2>LZ3Wb)qT&~9RzZXJaSr(RMr3!_ at Ksud%M%VS9
z0C`E0K6cFC34jm+Aw)}EUESZ-*Vo?!P%4!e85yBaC}3F at s;c7m`H*B8pU+nt3Wcty
zsj0bQc6Rn_iA3UShGG0vmgV0KfWzUqVDXY9b+@#%{8Jzh=*;Ky3=Iu2Ha3P30;khS
z*)aHUa2SUKH(Y-mx~`MY=Lv;E1cSl(e!u at GV`F0v6$*t1KRVaHM*4Tq at bEB_Bw^b&
zwr#h@<ME$){r=8 at fdO8B{dGo1N6|D5uh+}Mg$ucP^=j_ at U-wWns%(ArHG;t)4u=E7
zFvw&wl*?sWTU#Fp1OiW3mUY2gip%AiyD<y{!!TSz2-`GGBbUojE|-66fWwCmW7{^S
zX*!ykntp6U+q>_)%gBl2%w)1mPEK;k#Y>sj+KSifW8dDrq-SRM<l;rVvv)6=rcpIb
zw!QWmWxdSBpIAaeV<Yi+{7*+lM#gkqf9#w&IWD{GGRDWp86O|Vw(ZNiySrZxhr?fT
zyWF2?YHDhUL?V8d%jH*9MHC8!;&0-1L!l6>SFgtJ_dVe8djDka-hCt{##yvz5lfdY
zB~lw@{g0ocr at M<s9)6g0>(=qybI<X!ZQJ;>yT6Ff>tT9onv44T*}Zo!JKubhmgXkB
zUN1E at HJ{F8GTUw2o`}U_7f$@0?|kQRA%rk2TUg at PvV{<OsW3Y-baemg+h2Y5yZ`s^
z9$mL?-95M6cH3u{FJImtkH>3ORh=8Budk2M(a{?!l}h#1pT90%dg&#xW5<rU at qV^#
zn~2rbi|;=1gxI%lpSb0gTg0{3UMqh1!ygLEvc!G&-6w*9fY`iglMq6Pd)9qbyz<H`
zV&A^K!Y~YR`t<3Y2M->Ug%B4W;*R$AZh&7Mc%SFiuO}R-Arc9*=Chw=&){_6<mv2^
z{??`?t5#h^Lo9^qc7j#KtQzU$RBEbF)HCA~6IrL`GUM_1RRhP4Daq5P2?cz3y<Pxz
z?b^i+H{M8dJWgM4FD)%CJoC&ma|b`2PGeaXdb!N4x826pty{VLQ=h^g at KY{Vn4FxX
zp`l at UDwX;}V8<MQ+wE36=Fjg0IC}Un2lwyCsc94oc@}rh=Ph>+PcLbwcA|ji%_1>N
zCuT~7DmnbdbfhILBHi<%%%6V|eviU*GRe+2cTryx!R_`SgrHn5^S$qVk9a)J{rBI`
zlKy_unGA;xA10YhQeRg`Q&ST+-gqMi4<6*up+h|X!V5g|$Ri{ZiMc}^kH>Ml-B(`#
z5DW$*k#M+C0E2^r$g+&X;lShZ5(!61Mf`Lx2oP at zAd+CsKrRjWEQnb+Je%j|?`CoD
z&fs+js7%q~n4)KXJGOvh$4 at XmF~I{5JU}22z~k{SF)_)87hhyxVBnm`qOZ4?Yp=bA
zhaP$eNs<Tzg6!F|heDyi;zf(FZJSc5gr;d%1NY4Vgu~&mKM?R(woP3$iqGdGo6X|)
z`S3 at gOjs6PKz0B!s0w&opoKvVf?M|EmHlWA at Oq(~G^wAA;C8#gp<=nRtl#iF3p+aa
z%DrF4vP^cp{Whbcr|6vDfyeEpT&^%aG0woi0DZl^IGs+`uV2q(GC{PVks}`t at cG+r
zrBbQja=Dt}yg(L-L_!|7Tdi0Ye{$!YtX{K*spJ%ju&4-)@v=cXAOV&P!Uo9(TYwM{
z)u3R4>;z8?il<KEQWR=xqqMiTbMYrX!M<O-&XZ66J-7UqHMBIxnMx+<oIjuXx;hj^
zL6RgQH4%)efu?D^_uhMa``h2*wp(xI+uwYQd)9rG<0nqg($a!uS at s10?d|O?ND@=2
z8ScI3OGtn(5a7n^t|8RbLecL8z$k)L2C5)iXFx0)Qe|+vK=MIj41`%iAQ1|M=A1;a
zSR at n-;`MqlEsIbnh^i>K-EI^`LDMwcZa12y;cz%Oefl&)2o8Sm0r&sK{RI61!jT9L
zhl6A?IbB;@i*m;ucVOE#D_5 at U0T?+s!tvo at WLYMg$xt8i^NF6TPy-&&p;`c~42~*@
z>X~0(mO*lYtU*^ZT<L<BBpJP8aDL?M?dzkvyPL*_2BxQ{X^F>4BocFr*E9{c$3wvH
zr&6h~eED*^y1KA!o55p4+<E7JV}5%(vMe(`K0esp-Hoz#?OIIJq^_>64`6U$h- at Z<
z&+kVFL2pkFNlC*ls3>JHGiP=|ErP=YhXR at kXmD{GEDOT~5N>Ybz`=u<)haVHGx&Ty
z{`Bs<$>;M-Pft at S7OAhV$LsZC7zV1U;`90Ncsz5-T|+|yPe1)Mi9~{VZEZBv*OAW`
za5|kN5{X{{$hlmOd_Iq&sBzo2S=`&h)t~tcb#-+(olX`mT*#rZBD2RNrjA4IG}uMJ
z1jzy{sM>Hz8!V2(5dmon9Bm7k%4W}{C!|s-lF2E4{M_^0a_enu*}C<d_oJbqf#_Ms
zVObU~my5mo_Hp|icks90dxBs%Oe`9uSS;amI*}v^x7$4gAWM>j!{Ja}E-h#aK{#5=
zm)EW12TwiCPd9I7!NNWUPvw!PCGz8t9)r^-U}_SK3J9RT3l>G;0|N>MB&NU>2_t+#
z4j(>@)9IvIt<u=s#I at I5i)og5<dKIteDo-DInCKX=5o0>c<>-=@4c7A<Y|^&zKmyI
z*g&aNLRD3~UN6~fHuu(BZ|wz;&!)RxRaL{bB=Oa?Ygu{am8`yD6%T&n8;qrLj3u17
z^PrSKsemYfo`LZ(2-HGr2;MvmIRj1(fSiZIY3TaY_59<ut>k8Bv27cd(@9518-MfQ
zQ(V at +g49e3WZ3%ZHtv7$FZst;wxDSmZ|r!3_O^Dqx)$)p&$nY+7Pc*rWtng|%$_}a
zc5m3QVH7~IZ5yA@*Qly$Br`jECaJS5CdMbw6q%wWp&LOQxidaXGQlB07BH_1qV at 3H
z>rfj8c?O!oFzEn~0$2RuWt at EbWnSLAi5phk0N50#-PF4;=KileN}$nT?86D3|NG}j
zXJ$F@%fo1zo5#QTHw+C9vi7TMDV9pyw0bq6a0p at B$g<47ef!=$w`0nqk3P!nx8L5i
zbm>xM at W4Ti9yx-rZ7P)teSOy;d1B<!5OaW#Kt20r7pa4$CK%dv#urbV0L_533_&+6
zT>|w^iLd<mSGe~}YpJcN!R2zI*|l``dkB^z6be~BHE%iJ{hyo3BrRr3IR;Zd!=g%U
zT`f1SzL}n$9+oXzMxj_F7L779GgIEaefv+&C6CIE9Xsgn at 9&i)iN5YGzW at Cn@XkBC
z`PF;xam5vvlT4eGr({$wfWVR<5R{13z^Q%U6kuk-p at S_1m9l{u(MTm=W*SoCjeP#U
zeuK>$AHpyVmR){1Qw1BnR7Q2Hc*8Dyb~ly+-f)8EE0<F$m2kOS+<o`m$g)f(lfmQh
z;B-1Ubm-9V$jHdxIoGTJ%$ql_5n$-V2*pa7+wZ)SFMau57A|Pzz9$E;QxS}sT1;CI
z at VfB%Rmv0K5}?>N#Wc7i(2IG(ArBD`#2aDn+c5SaTz_33t5$xK4V(Uw$>ccK{L!_9
zLJ_J~m9&x|zOb2^lmqP|H_p~xs$~<Grcp5rP8>gu+vTRAp at B-d!o<YHo=Y#iRLq$W
zfTAc302^L-fxr7d{~G{RRoT3CGbc~^VWLPXEaO*QgaUr at Q)hCaLcyk-Euc9Ra+Mqb
zr;DIlr8Wp=3PwJF1<i0|4-9<J#HSa2pUJW3c;d<REbgCA-@;y$mR3TSP7>4H7*sLJ
zRkE`=J{%Ze_wL=i_UfxNH#YO^KRgQ_NF)-w8XFtu$}5VdX`YJ~FJ3Ts>=--W*fAG1
ztJNx=NG&H1oq|&`C2xeP&q;B%L}SDz-r-|xWCqK$@KDC7NYu2&@JmqZhm%La<AAUW
z4jm{`(Nh#=8kryZGbDeC{E4^Oc3>EH%>XX1iRRRh${xb58hSrn$D at xvO5*fss%Djj
zXai2wNwHcao6R2Ab$!nLDyC^lKYjV-p)Y>%i#>n!;Dbzzk8|Y65sn@?%=lQ6sllyK
zaUkALW5`_?KEXs&Bd6Zgkv!n_sst41YHh(O%S2p|n}o?xo8D%bOafA=1e()<Z5A0h
zRiVZmr7?07ey at RENFg#h<w}Op<Hzak57N^)pG-PUu~;Nu%;Wd at QC%wKOxdhdDp^%k
zIaeoAEX(qI>s#OY(blb7m-YAeM=!bL60X1gde*F2gF{i-u>OBwnlgg}1&$n=V00`?
zE_axr;WU$D8oJto9seZGW*>GIYMS80F!%-3Dsbf3EQLZ6NvlIr3aF}tqFPL*43fDI
zP*n-HOQmcinbs#!!hUM&>e=|hMn+GK^8SJMS-NN`CMG4lRMa#rT~kx at Yk)I(CF!xT
zv6np_&wo!Qla7-oPhwdXLqmh8s!CVa0v0apWW~xDu~;w7&2gg9D8G8|7<b+E6EfLP
zQqDp&2BaZ3W6>6qFmy;vPheX*E{8&?JcCE|V=6YqYLb$Xz$F3{^&(YAilV90+F8e&
zzj%WmJoyhS>Rm*vF2<ryEW*NKCN(orDwSp&4hQFo3kpyIMs!{OMX6NkXm4*{naN~W
zv0?>FmMme{u3a2DbcFr;4`5jqhEc(`ZLYrhY94#+F|NNM$xF{zgaypkV0sc1TM&~S
zq>?7Z;uKEBg<Unzgm5cJxmu!7nZ}aJn6`#t7s=`~qzf53y6X9-pTEMUO`F)ZZ5t)M
z#6NHTXIA|23X;j>;PCKp_51>Yd?p<u1-w5rH1uLRo!+Zy8gIY-HZ?UheBldU;Ihju
zqphutj*brE at fJYh#TQ>9ot`9<3DB<9(yoAG7RDwFWW9>4LpohRR&-=jLD!2QOdKd!
z)iPx(kBNaPRdKi_aN5W&K|^DZ(XnwH4hO2L5)Oum)<zLRFg7-JM3SU)rOG(~`>YvF
z0KeS1bLX>}Oy-Ew>14~6E#z`JZo26vdU|^1a(1WFNo{QnRZHUZuue4RCXfXq4~4u*
zy`o~5VYZOQr8q!<tyIt}#u*QXfshR>st8$7sg|i&Rq7fe1cPpznug!+N7r>EB*LLE
zRkMm=7~>v~2cOS}&*z&15NCJ608RnBw`|$+!(1*m<n#I1v}qH=!^2#4)m8NN_F`EU
zl}d$BC_pN0lOM2&$!_LHVRjZIvr5e6KvW at L$dJpFak*7YGlwNAnAI|-sbgAYEMcB~
zBa$$xRe}*Wic4bMpRZ&0uHC%**1Np2`4wvFYtYL&Gcz;Eb1i^swK at mDc@SmbxNX}z
zUwrY!Co`GMpx^Ij%a$$d- at l(rFTIrR?rtiT3c-+<<hV^N?Wf7 at pr!~jS%E`1 at K_Rx
z0hm=(WMpir<s#T7mT6#B4NS|#cGx%^D&U|}5i~YMId*J_<yT(Gnp at WJ@Lxa7)btdp
zPo-EW+Pbcv at _0PB-R?8R0xqmhi?imW1H-m$OB*+C<mQ`izB3pM_HN(4opd@)b8|DX
zSd3_W9U>{{5<!|YP^y5#BB;n{6)+5NYl3P?py!HIg^r8^+i}K>Bq32X%b-Z8vKzfD
zXo`n9dGZ9Kqoa(Dj&ksWgS0iZvFhek%;sjNBuP3^TU*Qd`e=FGKKrQygF*=7<(FSB
zEL*nh^Y!)hf3S1sPQu|Zk|fc)xDPD}O$5*cs1>NB4IE($rv#R1W0?jv7G|Z0kS#2!
ziXj(JR5yz3Mp!0gD~IBAVGD(YUCo>tedmG&wa;q at V0wCbIFU%qp5LMQIDm5y;w;2*
zK;ON4cebgiX*?E-{qgwtcp#I>&_1u7 at n23dQRl*Mg(;4EC`vYF+NP{S)hUzHi&PaI
zmnI`*3#TSwJFDPup~`M7Q&2Q#h&WqtJG?a4*WmYdv+BB43=I!4J~2*vYdZ*-NzF{;
zayfnzfb-3%0*nFr#Kc4 at kw^^s{r($uUGKNcvebQ(8>4%Wkenkk?WezBF}@c at 6B?<U
zlhcJUD%CQI;lWT1 at Dzvz6#|-#;*n5g4;7I{bGD+|PC|YkE?*rF{nbN6BT;P2rna^g
zy{wbXW)tUnZNCY?`4ClL3Mg2XHIdC`e+jhSyY}AJuYdjPS9Y|w^>!`n^m_a*#p8A(
zA;^^Sq^8qcpShT9s>0M*k&$Cb29M7$HF*%T*n~CfCtJ=jt{-Mn70hew28Yh_Wml4%
znkF0$bIr<Yc>2kwF)fp9Hai>+hcD><{J#LsL7cntoQc|#z at B5rj%Dw<>n_>r_0|Uh
zflxRcu4`#&=~%E}L0 at lgZ%=o3S8GFkLv-Ha24CP0{HjYk<26d<0=ayFe6~V5RbcSg
z0*)R&NkFmC6q&16Uc>OvFr#Cmq>?E#S)))cFfcH1U}|cLkM_wvzV-L<`slL~zdrOI
zC#TQn3;O;3kl*jGZ*On!?Ck99>F)0CXlQ7N#bUL!(P%W*(9jU_`+b0oZ90$@87#=n
z<}eKtm(RsaW~T7iV~=%IDwV18yOmEp_0(?#@b4|v<MGtg*Vngobab at G<MGyLELv9=
zt7~p=Z*OmHZEdNmtBZKN9=5->edptkKYo=E;(`OPfB*jfRDgd=o|>AP#-^sGwyv(O
z_C<>pMK^BTxc%tSqx(Mkpb!G-_x-O1{~>MG-=+RPz<;)W?*aY=4%Mz`Metm<00000
LNkvXXu0mjfScO|`

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/button_eject-48.png b/share/lua/http/images/button_eject-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..f8a6f2e8701c05a43c6b6cd32a9e78dc1d6cafbf
GIT binary patch
literal 1936
zcmV;B2XFX^P)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm000M5Nkl<ZXo2ln
zU2GKB75>ir0BghA1{`RJO&S~lp`{W=!V&)xnDzlw2!vKq<(DRL`xHkZQKU2|AySk)
z^{H(ll?o||AZkKHt2U4yAcXK2)9_H6mMHB)76Zm!+dIo*@7(kCVRvm~&#b++sT9ed
zbT!}AojLcMIp^MU<_<84NlfB94VfrGPdwQe>Fw>U^O9a21dB+{17Q;c07D`U^5WEK
zQ%~ELefphu-bzozyyG&UvGLcg=XvY9y1N_7%A#B5%$YNN?%cVosHhOfabSF(Mpb;@
zM_*qb)9JJ%5(%`mUGox&#39#p_Sv>`^u0g7oB6*Q at XN=auv4kjYR^l(I`7_lYnLo}
z$SE%`m(D~2@%UA?x8IQ4w|ilXp{fx8uq>O7ZA&B)LB-4px~?nj?d_Rs*RD5{`n-so
z`0HN|nY(VlV~_o!tfRB@^;xrKHmq8?YDy$B4K1w~5sSr;P8SyyC6Ne9N=xB+USA at S
z*k at Vt?BNgp-d&80q72x%^XH4ZySv_7zI^%Og^L#Q!dDmM-<K|dBnQbVmV+dXF=C8q
zRn at H@e{|$u6K=rv9gi+cd8zj|Zro69S(bcp>NGvile`LmjFIR25LHDclZlbs_UR`d
zpPw)Twr$(KFm)?+xW2x=+Dj&J_S}~+zCW5ri-u8!pUGS%x#`%kPe=5`hz4xk_DETG
zch9L!^&1x_5?yFMe?IU2 at r2DCA#`V-G)5(p$+VLC at aHE!E4U`?LW7TN-(h!jbo{oq
zcG-_f;@p?#psFA#BnMx|%kSs|6o8e+n2P!H at BiE7%Q1%O=oB)*^SsqFW<(plH+L=%
zANdHGOn=yL$aTCtU`zm@!Km2};8>WBp&_(+^A at +WGx6D`P4z3zo;@eYWODFCBZd%3
zJn+Ex2|&L2=06aTQHIa}_l-|K<DU^r)|@`|MPRZE^?;X3t*^YNviAD*>*(t43cD>3
zB(ZAcN<8=6vjBkCUV9y%pF9bXQEz$!5Y!rD)&n>aG#qL`GMQ}n(bA>vR~IhOnBo%T
zgEbGLsp%=$wha+MQ`1vuYiq-$ufHx%`7B&xOanp;2z(`L)~t&Vys==xg3{L3*3nNz
zV0Ptfyzz(MBN~n779=1d=;`Ufla0T^&Gwr`rB9MDzMoR^o`0Ng9+v8 at poe<<dh5!{
z%BII+F;P{hstjrva_#4(r6scG<(CkRMg=)FB^x&qjYhHO<(H(iw4{*CVVp`KFkMww
z1nC-R!0mLpP5|`u^gxXnRRe%syPiQ!O-<;Vtf{HNu3gUnz^LUKHBeQkF?B(51M@&-
zW#!|RWi7p(E6#@O*Tb5s;_0WGuyMnN{;&x{b#*l=$}4d4<jGOVX4WGxs#n|FZ+tLR
zUf?1&#@v at kBy!#d at 7O-bY=7X2ojV`pmd%^{x554g$w0nk%Vx%6|CIv=-p!Uod0B(y
z58^ow%nQ;r&;V7nd}Cl)fe|(U5^LA4MPp-Q;roU?Ml?1yA|Ahr<HwKRS=R;LuTW}W
zv;=Bsi~&`dYlHdVKB}s!xO?}DbQ}lFA*bMo+;JT4-u)u0s;Y+0F^sEGs?k8>!aSg=
zD*1U4oHdzDCS~v5Kf!g~F%@%teSJtKlQ71NnAKG^Fd2mz5I3qLX3lHZui=e1-z-Mw
zVcfPYh!hUhoB{D-3}_K!C?fgz99DR#Dt`0A3*5T(r}?!~bTOx at IC$^_?0MxCSe6xh
zA4$y`&=RC;;47}Gs$M4|M+Yf3EQEaDXG_aJ3+^_f<XE!g2Xq`K)K$3>e*KjzmyZqA
zHOvENAn*uI4;lvmrNVI>_~ZOCb6poog$WLEfPhis0XP#h92k7 at __t}}n?uGoRHL9~
z{g`W at GQTSnwey7Vp>y<eHJUw|F?#4~JRW%D5n7Fsy3ZKyuq?|#KnSTSeczW{P8)Lw
zWilD4DvdG2LMUgWPjFwDo}tU1#8G2Rvu}JDHNzS~?BBm1B;mR)9LIs<I7M-iIB?(q
z2nNn!jDazJGsvT1dKTO#XU&?u4&a9(G9 at Tm=4+MlKrAb8yUx`@y#o13N5{=$Vb2%*
zsE<S<S4h1Nz;Y4-P^j6DZYm+!YFPluk}+}g%LKD>$s8yD2*~f!>2zp?IO3;8d3kvm
ziBlr7XyVSYM*snm7e(-JS65fTW0g^<6pcm~k~|EN`GY>r at 5;GQZsA_GL^k#G^o;*t
zE05_jW-O!X`yx_(mko%CSlc`=IdMmed6bltE+q9JAd4s701Am#%aX0PZrvL7;cmf2
zJQSHsro(mJw^Vf|$sdxm2lN?RBNZh3Nba>P`B^%h4lLTjFs5ZWb?P*m)YT+k1yGA@
zLL7?+G6b3}k>^F^L~n0z(LXrGg(*{}xQ^r0+qV6-Wm!qfvS?YB=B|Z!(zfll9mlD6
zUDq9t4imO9+O{1bxq at UJfQJCg!$7820N(;=6_L{-a>f`lAwT&hF^Nfh$MHY2rW)a7
Wqb~UX0000<MNUMnLSTY1IWsbSpR$$!

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/button_ffw-48.png b/share/lua/http/images/button_ffw-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d57bcf3ee72d3650ca241aa54eb6c1501cc8303
GIT binary patch
literal 2100
zcmV-42+Q}0P)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm000N~Nkl<ZXo2ln
zU2Igx75>iLU7NLy|0ux(6w?YYB<e%41BL)fr2r{XC??P}iYmV}fcjucT7{nk`d}w0
zRFF!jJfulgqJXN>1c_Dwk~DP##SnhfJYbtfNZ5%ng_`xxHOqQ;&ew<CwRi2k_8OZ?
zk^D)cd+yG;XU=!$o4GTyzyu~Rfp0WqyaH|9v^fwChb!G4w-SPRBxitd2m*j5(FU?P
zds6l}$2jMX9C<G^9_@~az~;?A^SiG5{m!ng>Vks&HPfa|%PT1<VNp?$_<TOtXp~k}
zqR}Y&`uZ3Og(MgZqP_j58w>`I`~AK{j^q3L`+xpZ<o`<Gr!Q`FdV719xo+>C84o{P
z{@7!W`U(pR<xVh&wzeC*efyT&yBCJFma0|&z!--<$B{rFfTH3e`u%>nefxIg=FR_H
zB6Wv|oc`-yj at t)L;Dr}{QqXbd&fY0gimR7Cu{0|Xn1sfrX0)`lAQT#%Dsln=<mBeU
zb=|&TFnGuqdHK}I6J4W;F)9MjJ@@?luCC7aD=I4Hm(45V7ytS~{{7{bAjzayqqRYj
z)>^UFHmPdWCm(-wb=(Q8-|(Xay>9OZD^@)9h%rXaHk_mDx{^o%ko&X~_YhS at Bob*M
zx$e`yeR6r+2&`MTzO46d at 2Qn5S3ctQ^x*Rg7h$8(OdcIItSX|BNGr)z_4S{Q*b^fX
zs9N`IL04CI!>W}l<_CkFxODk)qWi}pn-mG9-jmj<L?V$UQWu{&{n at Z%!Wpje+4UQo
zj*gDsl$S4fnj|h<yZ}`NNg<hh9jl#k4^RM3wbmAumd^UHwY7y_Ir at ep;JWUz$&>S|
zr<auQ)JGp966u!>2VKW%r>PSFsJ3eV2%z38N8?rT%rk5JZjZZX;o}uq_4WUdzHnHm
zDpW;oPC%xYOoNR^`+tjHQ|xFYg718LmKY<RK3>m*6cNc*t9vRJFY$Zj=_#QZGiN?k
zJf--T#u(Gm+LF at UPp?`fJ9qBD_3PKA^{ZA8>E#jb3*+5Ge~>w|=itJH&k^nmXC$G7
z4FF0lQPqYUZEe>^)dM{}J=L>HOZ`_G8)2<YDaHu0va+yq=MGe at U5jWmI>g6X3sr^V
zI9RywaqQju1`6`?)B1T8RRsXQwYJ(T&$I-VFMl!+2n5!2c6Bin3PDwwR1zO9IF7 at O
z8(-wlx70vH`s at 3Btp#G=DVCO&;^4vGvaD<_ZPX5l>1C6o0BgRtpgfQ<fpA~AvY?<K
zucf6$;sGV8fQ*eW5fK2gdi84T-nC0|a&l7rV>~79hoYh)+4K7AvUKSau-2x;^s=cG
z0(q*sC}RTmLZM0l(B0h)wRT8J=raM5Sh8d>e!ce%6c-nz_zp&HZZ3B1dKFb`e;AX=
z2*qklN@{Io#ssXj^SZjaXrs}=U78{x#*wh+&YjEOz4aDm&z{ZLN>uyZlKqV_sHv&p
zmMt|jjx(%;)LN>ww5sz*Ltthw7!*|%Yb~s*^cQPEuwOz6c_idiSXhWR-`p?DmM at by
zffS#FO;W1Xu9es7Y9%W>3)b5H_{nW48IzN>GcqQiswNr>6f4QIL#zkVJ%)H<$ji&a
zuXgXo>^XBh{Sv6Gti<+h+XmW6ZZB>t6-rGz<){4;TWcXA$!Vr!OdXI!QsOB#NvMsc
zRHgG5k%Y!60}IrYuX3zj)4qVT1T==k$0W_divoa2a_F}K&~;s at t*t|I^Hn0Qu4JEN
zyP=^0b#<>%RXrDdB%!KlcWYh*+N>%>(l1trlTfg;6E!t8xN_wRZ2C5V7%Ln-dKCNi
z??*V?=joSdPgUDSL!eO-T^fIBg8~kb5CAqcHQ}X~eu4J(c0wf4?I{ux5m;-nZ{I#1
zK70foG99o<YK%Z*#so;7v(}0+CJ{_ht5YQefM?E}kyl=M6~SPz-(OXSNXT_v)YjGU
z#D^z5_5(xh_|$zqV*;vr9s-wOo(I8{`(wwBp|-XT;l6Nc9HtJuJ9qA2>(;Hfc=1x^
zn^^)@tqUM?0&Q(yhe}GOAE)8-A_5UfE1^gv!UG2m;O)2Hi8qzpEczt`0N1Wv!^TaU
z*nXouHnup at egKJ;DOL6O&719Mk32j#G^8G~mK%&QJ`9pjG- at Rr4s-kV?Q-J8NzYRW
zRi(97{(1H+w!OTK9UUDRY$*rq_;eg4c*rYH&yIZPp=o|q{Y;E3lGN#lQ>RXq;^Jan
zZN4h;2<bIUu)LyNni?B%Hx$ZnPn<+RNm9=nW0v2#bt~=Z-LOiWGUZ!O0z4 at qS@4)r
z9~9#92 at B*09UcFz_wpNdQy&Nfz9MxdfQr}>nnI0jx)WD$Y<9XjCVnU10pwsP)_Z9&
z;%hA|EG!_=AR_a|?<{)+5Fptsg2kPkox>ihWRy~VetsFrQxGYQ&qxpKTqr(pTaC!7
z?(XifA8aL%H+k{`s(v6Mk33)kEh1)}>-LP_(P9EQIk{z|9s^|l_!FRzXfj5s?%utd
z@!{^UgLp6^kw}N%?|)BKi%EW$q%)Au{S{I{vXA8NjgcRRLZP&aHZR=Qu*}Y$<dC|I
z<Q at R!h<y<6rw1YgE*X&>B62z$4v+c|jxixCE6eZm`BplPbJ!TuV~n9OM&sAv>>kH)
z4*Pt*m43h9^VBU9jN8QMI8K1%B9fH=9tAK116x)F at HK!Y5jiI!=dHEl at +aQ}CNP0-
eIQ|DWuM25jmz6XC0000<MNUMnLSTY2FgZ4&HuT2;

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/button_first-48.png b/share/lua/http/images/button_first-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..d1bae6b8936d9119f9a56fcc7ba3451d96ae29c9
GIT binary patch
literal 2036
zcmV<Q2MhR#P)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm000NKNkl<ZXo2ln
zU2Ig>5&q`hyWlkjY^Vzj5jIjIAhfB9k#N+2VioL$1|$e+ifCgM+LRXOC25c%%434s
zJS0zTURnt$i41L0iMA974JcH>Kuj at IKnoHwjT0!f*K4o6toP1*eb^uN=kD6Zrcxx2
zbav<NopWa9%y(waISWkD6iw0Rnq;yDdhW+N!ihwpF*X=$gkTBD1t4640H7p#Kwg<%
zF}=fe+>UqNc`H5{dMD(-jvYS@#bU9h{%Evy_Uu_3=FOW|HGlqm*3{I9=Xp at yr<#fH
z`xqG+VLTp}NF;*KKD!x<L?Q=6A#b1SddJ`W{ek5F)qx-W=s9<2XlPX|Hnexa0}nJT
zTlTP5U0p4GkqCNvKIQG(|B*X)5>Qo|sQ`fExb$3C!r?G#=F~703d!x;x05$--s&Xn
zWf3{~r#~Ll`|iNjt>2&B+t>HYxpU{VKK6~rriH^5xODjny1Tm(kB<)(mEkZdXUsq>
z78{8~BKsUib{#qVm*{xL7?%UjJhNqKG}`~}iWMuCE?%;jUFW;xUstb!By+|ZFAtJb
zRZ-Q;X14Lz`$zvd=?-ju`a8>qVngq(UAtzX<2drssSd_sG0B(!$UX9zXNZ|0nM`(*
z-1Na;kDZ$|2R3cmym)AM=ty&O^TOERAkLiq80!0D={jywGx*8m4U#P<PJA$GBt~^$
z<EE!(N23F$TAJ4`jYRs<dG1^${1bsq9)$9rNmY|%GI^P_NB?&6!?J6_E%)-N%}=|%
zy}fTVG%WuXNu2%oEX)ifg=FscMESgDfC8{qRcq?%>JQzx(almedgUC5#bT>w&Yacy
zrTO!D<mmfICbO_fRVP*YelqVj&kMnI-CTuZ;RD_Y0JN%UJAf0VY%B?(_3Jl;`uZXt
zwzM>_Jagu(3=R(FDiT$nJASf5zP)Z8M1%l at B>sHp5a0auo8r1&RyMa^h9 at Z%6%}~s
zp)aGW>jGWZEt2!qr=RpsizBN$PJI+u?3_{##D<2NYQI?9aO>7B^hf)lrg<$fGJ*~3
z*TZ#PhzK0Vf$O?h|KyWMjEoe?=eDGu#KO9Tc<r at cVDH{nkr+t?%B82cK~<Yd*;x`o
zgM)*uUwh<{(D|+|sumYWGlS=O at C&k0C=`O3A*c at k(1<l_zKQ3bZ$mg7hUa-@<pG3L
zwH3h8F*~q&_2XfJ8~USBrmJfaUM;0CUBhx10H#Va%gSaxD=Wj?xpOC4TAE>I*)FCE
zGYecFBq_j#uP<*1|NUHNQK=7fATg3?tgWrB>hA8&3|y4*EM0v?B&9^Mg^5N=+JWra
zSX5unJ$v>@eSICwELR>z(#(R>Eg=M|%xonB7IUBjcjECz0WdHykS>zNWTiu%n$h%o
zl32HH9opJ<qO!7bRQW<8QgAiZ#xXmfs!O8LDAo6oo~U97rDr%0LS|G|R8>`B*RGe?
z)YO!zA9>KokuM7&GlQBf4YIYA0}n<b5y={#6K;@%h-9D at 1R+(GWnWo_pYPtyMT-_m
z+SaU0fqcs04206-7wCeiE*P@|X6E>+aGa7^7J7G)7ExV&J>GczbyQVVfh8bVIF?fe
zlBB_CfxCuM5rBx~sxE>M%Rq=Za3}?v0{Of?1^SqZK=6bGPO+s((tC8Izw at 6{g+?+^
zkTe0nwQJX;t*uS2U%w8=aROy>cu~vKQN){>m|0+mN;%M at sfAOrSs4f!i3=D1fgfz!
zhGWN$<t?ES`pW7`>+2bh1D8ydnSx|y%xS4-%|eJ-Ce5e&vA;ix7k~B=UwP%#Y(Wf=
zr)i#!d|s8Qv$b6svjZeMvY|`mXvt}*=Trm&;gRl_m2Gctm+jlPqr3Y?AcWF}=8vD@
z(_ at i5J)Q`hR?}Fy4VkeVgse#Z!o`c&`n|0<eE4utb_<fvHdXlQ$JBJ}4)pYV5?5aj
zs;@LP(8!zy8b^VU<;iCFzTQ5*@WPASy?Zx?hlhz&wkgz+<xMShHKTU$)1IEdE02<i
zp0s_c>Zf;#MOnzq;QM|NB$CM_N at TDsf8fCH@a(g#a`oy}@qJ$kbQJQw(e{<Hvy1~c
zuBx5B`hlS(i1zk&kVGgHg6DZ4iT(TcgJ9Y7fYETi>pZq>*@A7`wwIPyg{t2P@^~pb
z%jUPabHDI7z{4Uk4FRc;Bv_D6#c at VWn`5E$`8XkvCwhDTd!m$F*+YFe9R4?H4+2<0
zLI4Uab?BxMlFdSrg-~YO1KyP_#|OP*=6CWpfcz>RkC)t!j5<}-)zz~}oDz{GlXsUr
z3K1ZAMFfxb_xG2*RvD8?vu4d&O!5ds>M{p-+^2h?bTYf)h_nn03{3oDD??Q?XD+AN
zdm^&%K0DAY;%th=1}E=oF+-J=GZvHf2SAoiz5^5zmmNno4i68H`Es}HA}*w4GT9pn
zh2Ao=IV8VI(!FcXy*1K6a)jh>9Y?+!kH-TyZKdd*mgV&66)tJ3NbUvDfYiC-ULuer
z(CLW0EFvcpiNv`7;Fu6in>H=vd0w;Yx^Fv<Gw3)D9mlcscR7C0b=|i;&ub2aLZOM+
zFlmX=b=@$@l_VPhJPcp~?pAsO at Cks+BGMrur&V=Q{^XmYDVn0sIsFfGic8MiUOx^1
S0000<MNUMnLSTY2Ff%f`*XWY~

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/button_full-48.png b/share/lua/http/images/button_full-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..07b6b1eecb2edbc6f843e54e8444e5480f27dc1d
GIT binary patch
literal 3022
zcmV;<3o-PGP)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm00001b5ch_0Itp)
z=>Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipb$
z5<3XIuWNGv01Hk at L_t(&-tAdya9q`q{`%gzGjnIgk}QoL_UMIU;|C_NVAit1GD>XW
z1W5$h*leY?sLE>z$^P4r%HRA5kIIh}BpYg-P-Pa|yIXc3hFIX31*|Nwj7`Nze#kPi
zUZasTlE#{c?mX`4-XEh8dL at y}Bb6%m)T!I|*1f0uJKd*GcMourZqiNqyC(XyCi>35
zJZ`2^shW5!UIW595eYz`3j_d^2!ar~>~gzK>zaQ0(4m*Dzd3-%AAiD#$K!R^Cng at t
z&(CWrEiLtxm6gfz<;%(8a6s9%C}y&48|idfEX$%uB!W<AC?1JKjv0pIfUY~<K6>PT
zGM_7eZ+-hadLoh77LO;M3angt_ieXra1<02(0C+*U~o{v;SowEQy?O-?F=z9G))(W
zu9In+SYEhX48x#sIGh<88a^k&KO&;m*IzrPK63zH|N1}YkByH%TU1o|*nRij=QK?>
zE?&Bf-rinV*2iAq_xo|zUH^c|#3Vj!Z$~s5oi~@qG~w}j5s$~ykx1l#rqPpczR@!A
znE}|h at 1NFBOk6*@Y15|lYuBxn^M5)|SGu|&A~ItxDK7TY1N9H!OJAykWm#xxc>||f
zTO}HePQNo#wup#Qij-29nEBz8zdzBrSe^96zPRU+y?4c9 at z?6>cYeX^_0n5!y^Y}D
zATbL>7$P7ML0M at D8Xjz*?b~bN^ZDTMcn}Dz1ON;UhG=rqn)QBe5D at _=R!TMAa?7ey
z*RFMkJ~aT%&3o3y6Y<w~*6*y0$6{#x!~Y>^S(vGSh#(LM;A>xdh-z!M!Rz%-fA95r
z5m>pB91aJ9!Js4(iFw~<jR*jg&r0p8uD+$Er{~((CkF6v^X~kKiRkZl?)dWRv9WP#
zJ97p~sod(()IfDr746>LO!wZq6>hhChC);R?(rZH2*BlbQE(uLSUgTMzt8c2K!5^U
zsV`SnR=(WV*PFUw0K4}*qK}P@{p{|$@7g6Ic>nDCU}nq|3IMBDe*t^<?xC8R%`glD
z%$!|IqMVOIMBsM2P*GkEuh&BZ!62g1iJ2Clk1ZhtNU>6Cc~w>Q at xH!Zxgh|Rl~vnK
z)AQ5YH{Pbdd#V+gj6Kif<>di9)YL?G-gyU7sWdEW5}AyRR4Ro;B7syYg>*WNWHO1#
z$w`O^{QhD%bR9iCy^?!2dt~J^tBoxDhk^e7o+U at 2#>OUNd^~dMfd}e0pE>hB#bPnc
zi6Elu8dX+SVdKWzL?9##R8*A9+O at Y*AP|6QngW0<%R+E)P&zMPrvCl`kVaxnCh5Y3
z3kZitz$}up=FA9XD_iW0-9{SKp8n%|nI%~uP+q>Hu&D6gG)>cb`+8~4Dp6tKa`=49
zsIR{dSGu~uO405;yRl_U4T_42$S{oQ=wcWK3JVLddi84Z`Ie!jr3L3cI7iWF6jfDK
z at cMk1n3y0Ip5;yez`|wB{Kvsy at S`OG at cWB@{KeaEzq7rg1DQ-_7J%~da%ya7Ag5uV
zySp3f*RR7<Klur*C at ahP{<LLtyof;4G%7Ckqpt3Lod57c3WvkE at 4kCcyRDW+!eNBN
z;d%Q(M0DG>^-yT=H;V>PTYJChFdV<~csxcZ6q at CqWo2d9w|6gX-MST>ot<JUg=e0A
z8ZMV>(FdZ#;lTFowK#kB9Q;LoJow;OsidSBy?uQ$K0ZEwPcW}4Te0G2L!pp8cP?!q
z0jYGVCO<#l*W24m%nW8GW+uPiPtDB_Q(fKtaJyY#X8PU}PmtT~22D|J)&CmrcDw0`
z?|zp=n3x$`wrs(pkM5(2ii&A@%nV^60esB7c_CdF1dz0>8UhfFM!`yfmBR9Z0zA~z
zh at Crj!0YuwDTT_)N~~MAc3#Y1EUjO^4iy!Z5D_>W4%BYjhJAbY(#jPprsXPDU}msV
zHH&tk;^N|OYnt}O<WzE2P>_$NrY1BtHd0|>Aw&epWD*{aDSp5I#&dZh=(>iyygYI`
zoiGd|d)T?0=<e>8SS$v~dH at vjU^qPT>Y at M?75V=)oldU;Km`Q_*!7iN)ZE-mB_$=(
ztDQ=vP*6}nhG8t)ZRYX-$m8))_K<S}0Gv)I0)YT at U8kO&9>n5tVrEiGjgF3vzO*P8
zVrI=&3LwI!dp2S3Bafi8v~*f|A_6nRG|f+3QJJQROeQny)XvMxLsL^Dwr<@DP1C at _
zVBrN9+p*9?r4)!r2!PM)o0XW&00|<JT-qQrHo{VPB7&xA^A6NRB7tZ$3T4~EiouGp
z=uOO7qGU2j at 4ovkUU}seM5EDJtK at JvkVqt!>^5`x$;nC5G;Nl3hlYl5=+I%j_uhL*
zr_;HJq?Q68sInUe1Hm8;9sVyIZ)rgykpK}*3+wOi|HLlT-`_tg`3r}`IC}IqICkt9
zM#sjG(}S6VO960^l at eA;m>B~D1M<>K|0!?2c>>8~5}KyLwr#YxcSz0^WQvx;Gqbd}
zcgU1GA`*$<)mMLuBS(+Q=-8M{g-=mgJuWU9fQXz{N at Y!#jmOk;?HaxK;)^(W^5pcU
z`{<*q)X~vFM07(gbm77Ux_b30>AH at 1JdW31dmV=lAC}>vA!4Pnva>pnh_o%m0&R*_
zTygdw$&D*rSMVSE_scu)yaP?spqTN at GtbT{<`+wrW#Q?kp8>OiWm)*$@#8q~(g6$v
z2WH7sO2JlkT(N3f^g$MjMQyLgyAgtokQqs?0Hfhi3=H&R*|Izu85x$7C*Q)K&Ywqp
zeLW1rSk&Q_OeXQY?|&a3ocjQ)R;|L=*f<?Lcu;zKdZ*<;0AayYDswax8vO4iWusoN
zH!dQN0?=lZek39o9v-Id?rsT%LNq))Ou>O5+S<<0t+(DvB_+ksG;N;S<Zj#B+vx{C
zcoOH%o+I0~DHe;<*|TS*zrTN8c{!!LEs!535{ZwNRM3=^lp4%@iZt3hGd-SJ&;X!{
ziVFPWJ@<&m>m`i{Yu2ohJMOrHDl04D^?C&WB at zkr_4Ud5^XIAS>ecBs%$YN1(ACui
zrPQppOpX^85#csX(`rXXMlwt83l$al?+4@!B65Njezml;6yN;DH>jbZ0j6ofwr%LT
zp4}taO*rjZnM?+nra{v*{O{Xu<AoPqkgHih3k4F0NQyvT85<jY=Z0!x(=_`<xE#PH
z5fC6GoGrR@*LXZm!Qi0y{YA84!v+)<7Q!@5n5GG@*9)J|2e;b|x7&?n%a+0EbfUGj
z75n$^$EAxGNtmbSf at J3vnc_u$4bZ<^mUUxAy=7VAcDq}d<skrm!PHM?TtzTGK8`C_
zuE6PXQFV3oywqbVT|hFK#POCEJonsl@?m>BSmw`_<C*0$fJY;dNb(c)g_6l+%H?vN
zWacIjDVQ?vyuQ%&>({BXvlE)8;g;%Z_<X)u0OIjDetYZ~o`3#%T)K1#a|6SijoU{+
z!^Ffy at Kfo`rBbOer^|Ipn0G-We~!@UIyO2nfzHlOVP>kXu0~#79suC__3Jot<OqK8
z^Pl5twwF5h+mG*=`v}w=i^V!V)!t}2oemj>vxS*=h at f~O03w1|ERN33E0jzov1ZL0
zhzMSO`5=Dz%NL}lr-v45WMu~vvs at xVLn4vrSgc-4Zm*lBna|A60(cC7lm1L}^85X$
ztE)p^ULH=IIPqr_zo`h625>;rv?ndg`s~{4IdZw&x(II*k*5IMJyloCi{rYki>~XG
zPN(O#)N_1BfO8trkBF!>l}agmp5$~o4Tr-~uj~3jP19nUrirF$Jazp`d`#E%gARwI
z-dIfj at p=5or|Y^YBAZ2|2EYaYff>mn0~i2siHJ at UQJYfA!cDqKH|Zw*Kl2)x;t;5`
QQ2+n{07*qoM6N<$f?cNA^8f$<

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/button_help-48.png b/share/lua/http/images/button_help-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..7f13cb5577eb1c5e98953db574b0ca1fd1b4d42d
GIT binary patch
literal 2180
zcmV-~2z&R5P)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm000O_Nkl<ZXo2ln
zU2I&%75>iLT{~;%$9C+1y@|o_U<XJkaTGh0&>}VFiBtq=s7RHU77#_^tx{epirOOe
z1@)y5Rj8Ce5L6_UXr&TxohSy!Noz;65JN*7{Ffgm at p{*Hz23b$=j+4nI=lAX&DwD*
zA>~-BIdkvaGv~YKn{&o<fm?D*ZpqhLWVsAI``q)PWHQ<5PP?5Dw2=%0a7Y4xB{2^2
z^U4*K{f=?^-+JrK#B$7gQvjZS{)M3Hx{pjnqkGq^S-tbN+iqKV`|Y>0wzgIRfdJH6
zrmdB9I*n8+#Y7?@kw^p=FJ5vZk;r?&VBmn`1dbhk_YdCx6~K>v{G1byyW3qi{%W|X
zsr}x2?+Mh@)W~Ecg7NVSymDniW at nSI)>73902t#i;5ZTrg-}~p%V01lSFT*~E?v4j
zK<Yjb>HYJc-n0L60M9)0!!_3?Cx5+mZQb67zV%Q=D6|4+hd#&f at GugI#j&C)6hc*X
zHC)$CMIw;{#>h{PzW<l#Vr(o5!0z2Y*cgpY9p18K%f{BWR(|ryKjhrGb5K?0*;=d)
zlC;)}wRT8VAMgI~gD;jHz>`mXe{<Z8AK9_vyUoTJ={wm^*L5Z50w7D&bA5=a!t=ag
zlDm5T+C8{z0Cw$qvNb*vKibvR)$C4B<MiMD4x3Id7)JosrjbrtWU~*95d at q79LFhV
zDp*ydJ#U2MqsNc;+%OV11n~H-C)Pxxv6GK>?bsNJOkrSfFc<zg8mL+}H8#qF4?c+d
z at 4ugS-+h-<R#pN4W7E^}uP?qpU*Adg^_>)}7Jw8`2nCcPtyS?nZ-~@wAN8Inxh6^i
zc;d;YoU2!_{<gin{n_fOD)gT^mCyINNn2Z6`O42<mWqms0%u54WR5C4fBw9 at _S$bS
zGCGofeI9_!W7b-Dp7%Q==7o<wI^mn0Oep}a>uz7QYW3cx#zyv^I!(_@(^`eKn%7#k
z+<7O0!637OIVI~&uG`Ym!k1tE8SB at s&Dmg~t&FZpW}~#%s at -17M_*z-_Snu~G#Wef
z?T5GD@$tufl9-thkOC6<EtPWD-7V<s=#a_DNjZJ`G>#oRE@#f1k*TREgu`J81Ofs8
zA|jzsNW$Uu=>D)<jL3YO*L6ThIyP<FHZ(UM92*<eVtxjE-+ny)NW;2 at _RE(qV=6jT
z>LuW0-$~fC#fjct#N%<~*g+C4?;ggle)$X3)YQz4-?F70wRN?anksD<03c|$);<E@
zgJQRRBT!%8 at X9wfZTjXvKm8P*=Sh|txu4{>Gl>Mwefg!NQmLHdlFLGqlapf87F)M&
z&A0<VL@;!ANWK~#E at pGS?xfRc=i<c+M~eAbGy)Gl{GAZNom0^$v(=UJhHze6QXd!`
zgoxx407#;?u9j*wKaCW9o+Jg>`M~D((3!!31*N_yfMhD!+0f9ia(H-newED`FUUeS
z(z7+AAS0!{w5Zx#J at bE_5CSVzwFAKMvH;8`5}g7d7K>$z<jqNQ^M-=HF$SZfBTy~6
zE(?SJR26D%C&~q2t!;}&qqOOCZb2 at ILL^aLUCljv_P|;@cYS7N1_OhGoCm;{LaGX@
zy0MtAegM`-A`zK$KELRYnSQR#zXpJ+Y`LpN)-^Psv9Xc6ckh<w=H`N;_U55OOr^Z*
zjPkLS)3Xr>mkmHwP1;%*Q?kw#mG$8;-Z*#=j^oT_n4E|RdU|^B#=$qrqEAjpg;I-V
zOuq;~MDp2RHihcyYT-Bzvy_1`h9ogIHioy~euqbn9La(5v$;UeM4&iezX+(RO5Q|e
zXQ9kC0Fq at HuU@?>FTL~<zWQpIv$L}z3$xDr{sNsORJG`S$Pd7{RYl=`t2~KJMGBsa
z#bWsK-~U0b$SozSWdV#AyXObstXNAC$<NaTHs`f-dMcU9&Y8J2J3C7+mCAA6k0$>2
zNNNVa*|GtU?6=lRb`dX%LNhaQCK3s$sHlLda%_BDQmGU~#E&NP`wMhc1<6yzd at ah6
zaCm(Pf(c{H%Eba8$(B1?q^4#KthF2-8If2lR?5lJ00^;aT>$GYjE^taN)$~^)6=nZ
zbyf9!Anq$5OBp|ca9tPHTDY!@$Ycbhmi>HzEoG((s~*01 at xnXBeD&Q<lX}2fK4pvv
z_`I#6Z>_$*p0B^YUp8#m0FwOdv(MxwFTRNB*z}?!ko`v}P4Ix9pCtg`n5rF6YR6)-
zQCHUvw6(QmZ4leGZNugVHlycQPuVu+d{Bba0b|TDzcIc5CMGU>YuDEAqt*9CqymK?
zif17bO-)VLQ&0v3Yies2orSVhJSmWU6B84 at M~}V$vQ~OYJs={_0s;|$1VtdZHZyMS
z8b(LQ=Jq_f{m<mJYf!5T#$TVO&=vs6ybm6Lm=mRZEO}UyNF=yo#fn~4eh)xBk^N&{
z%ff4;qoe5P*ot-Q)`29tySuS}|9&J>$%W&K^|QJvKL_x1Bodh|<zrdoUcGvCE6Jk}
zxg#&1`=&msN|q0lj4T)fpGBNqxFbg7(O4{Y^9NfwS-EP}W~v?$k>(o#SfoB5z_5tf
z<+{_$ceI$3s;cT%QvV3Z#^nb<Au(i(JU%lsQ}*F*c?XtR at jUNZFc^GORqIG at BI#WB
zXK6oDK{7 at 1_r}Q6iA194rp-^5^ns(Ya)m?cc9O3GXh$ZSEhPdTfdM13Pegi?$>gFx
zaNLwsR8#~5fk2nzIERce)5aJYV>H{A(x)BAITQ#4x`M%A at Me5iQUr>L<2WIb9V9ye
z+yfwt>u0YDU<|;Ji1drdDQoSreB`?&x8#<5&E>!Cw&w*GR->^10000<MNUMnLSTY2
GF*i0Z6Eo`o

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/button_last-48.png b/share/lua/http/images/button_last-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..68c1685f4ea296c1880d9a4673b956eedf849549
GIT binary patch
literal 2018
zcmV<82Oao{P)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm000N2Nkl<ZXo2ln
zU2Igx75>h>yV%R0Z79VF5nf*SNz_KgNH}UhMk=NyfCPckD5|VfZA$w}ln7oL)Cj9d
zq?$^ld1)o2B!Z-&5~MUFG at wug0|6Bz46TtY)3`vXS+Don%X;rQUmteY_Ws=U8cd}~
zKGNu(*?Z>9`R;r(XJ!_dk|~*zue8WyIePJ at J0hu6s>w at uO%N<4xd4Pq5CD`!FUV_E
z)m0s?<959J?%T=9==XsD?AY=1u;+Pe`s4A|nwr_0=Fgu$v%bEbb#-+T3WcD)Pc;+Y
z_c1&?%w#etu~-Z at Z{G4^vDlGtICQ{uLnlA@<9q4<D}W#W<VAOIaB!994Yn<K^wGvA
zo_IV|TU#r4V=?sh{+oC1{73HHOF>m>rUC$t<1*yB5{X1mH>Zx_a9Hl#xs$$i>-GiG
zc8SR8504(vhYsNR=YLq!clYk=bLY-!efrx^Pm4sV(RuY6dU|@0Oiqjy(<2c~pD_cT
z=MBeVu>+1HFCYKtFY$@^m=J*N+n-w&kN1DDV#SJOOO`I-rN3X2e|B|&B**xgs1A};
zRZ-QeX14jnCm;V~(gAGU_Wk99-r(W2YrnJ5aUA*lOb0#BlUxXZ+^3$aL(B~6bh?M+
zmQVkB;^L$M*s^8olEI<D<1H;M3%x`F=gxlt_5DhkPFU0oemZ at F<hoO*J{@-?#s#o>
z%d<7{_`sQUEo+y>V*R*q at nUZHAA~k}6w0rYswU}l`YLHp{q6K;W#@!j?&Y&vx4C_N
zeeI2n%fCw!=f5})GXqH>IrjOWdR`r%0Gy|)bqx*CV>fQ}Fet`QIRKvLt(rA!cIzYc
z^*sLZCrGD9Xv2bMMY^ie_tSa5heBbvu3Msw06?pn9t3bID8 at hvZQQsieD`kbvvuoQ
zR-QX|UJ{AK*p5Y2`Q($|l&<U7aW8p~B2tzrsy=u8Y==Cvemz8l0E8s|eC!zB`rTV}
z-B3{*Uw!&%|ExH&y5r2}C6k>K1i%{{Tr=<M^BQm8zK#BPKh!j at q=r*yYuk%AUjG#u
z8WzG=zsM%vei)lJZiMT)5D_?z1J`x2al;0rhKEbG$$sKSRb3MlXCQz?BGDRcXb4~F
z?1ZWo6*EI96vCoKi}2=~Z(vPxGyJq)(srzUp at hR>m|0*O0AW>aoe+T4tD7T{NMuug
zJkDe?2{YrElBuf#nH<FG>T105%FBG|rJby<s)A{OZGruWlAW=Z3AVURX2GBUo4&QY
zF;X#r)Nrb)rlw|QPfw3z9m<%Jsb}Jl9QR2|OUqi>x33-1MGc~=`E3jAB`W~LNEG?c
z>NE<0nP#@KVgUD&$tD3XFfag94J at T38ja#N`}SeOGwY$gKdwE1vVEv!sAQ^56$4P!
zrSW*2>idO5I<}tu at cEP=iR$WV?%cVPufF;VL?RJpcBQ550Tj_DPgkX>Qq7i41i)jl
zSWL`JR26C_BPCnU22_d?5D_6M&CSi&zyG(gc=2M<%m|dGkQoa7=X4`8bW&YVF#t1j
z{EVYa8M`{<>KOoKg(RZUDB9b9jfQA6&@Qi!61ve~w354ql9^alAtD@;8Vgf7IZ6rS
zDFu42ZCQIW&@3>MXQ)*AgOvne8Ic at aQDWnzrbLDbnWb)YHOkA%-QC@?XU`s7zka=>
zJpiaF9d!aTIWwzN$yFc-K(CrXBygvZOEQ5XA~<p41b+G2YZw?vz!+?wodbdIvjBQa
zy$b at +DXJ8a+_|HOLfIiLqJ)TGXlRJ-?fdZF`|ppm4YJR at GbeyTB(r&<vtj at wJ5*I1
z$H_S>qL5`cTSSTO?r!ehy<4ta>C9^zWS at Iys(}>BX5_OK12D6*5O at S<mU<7Mh!P@#
zqeqWo at 7^}V2a3-iWhq1(-MkeF0X6jiR1ToG_se8`{Ub-{@Hr95ZGZFJ<|qLG$z&3H
z_qOry;lpFPMV>w$g&c8;SFX$fhh}!<)~%Z*uRH<|G^8C+<u=E0LI|Lcs!CT^7k2I1
z&C8cBk1Rw$@p-_^==**Vh0^IXa=r at NWRtZ|@IX+UWdPu$nO-p3%2KNlLA>z7k8t_&
zCG^MRqg at C2199-+L2Tc?9pP{ox!?~SIs}3xDMTYkyWlv^$soUF5A}2BeythcM<Ox}
zWtP-Rg=8+FjRxR2C70_geNqDXUSHpTPX+lbd#H~@BL5=oF#sz_2tc7_4&AvYSh+4E
zdm+i&3l-XtS)KenAp4WaWZ>A2`&nyiYimfH5s{^ncb7em5FmL?1W)z%_m{m^sVJn`
zvu7_Mc^o1QxdS;K(!Ef2;@)sX)(s2{Jov>{PG-)UwVY;$MP%Va2GAqoZ1KFr<XtW1
zWcu_OOGx_ at Aj>8n0ENU=$C1rLLqio`?v|azg_2IE`@-Sy+h#V0<TpsVqw(BdAq^yl
zN&dlc<Oj)QvgD>MNbYM|R#jEIq^%;^2A~m{d~!b{kS1`!5!odor&Foag#X}pAelC8
zS~wI6wYaYPj^j89$8qR5j%A<a^n~lW?}S33mT)es-KR|2!sxnggyc$+O#mJTumGb+
zRs--QfU6?XAtGm0byEK1o02J+lCQY at 4=v;5B-^a_BLDyZ07*qoM6N<$f-*2MH0{3M
A8~^|S

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/button_pause-48.png b/share/lua/http/images/button_pause-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..002a55b50f1d0c9fd65d947e339dcbfdbaa1e6be
GIT binary patch
literal 1917
zcmV- at 2ZH#CP)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm000L-Nkl<ZXo2ln
z-)|Jx75>hh8N>3+KQM(t1bG7z^`V#qM-3=Q#k6Taf<V(Ms{GQXw0}UQDC$!cMe0+Z
z+Pt(9QW8Pcq!MjuNaBD(6$}KFJk+MmlW9!A)LyT5%(A<4&ew;XU3S at -^%|Q>k$j}l
zp4mBj?)m0^_ndR at 0!y+aOY)T#Su95{{q$I-SS<F3`LG{?Z6r5=@CX8ck{AbhZQ1f=
z!=Ceo-+Jqf!eWfOAOOdX{X7W6aPM?3H`v*^=HUAE>sM{quz}s(-QxQ`G>WKZ5=9Y8
zr4kE;f at HH<eEH?gFq_Su3IhMQ=lN&f{?i}J|5pG%{>e+;?Ck9BFr0mD)5eW`k3asH
z-__M6Q`s!W$8YfV?FqSiw+L0GnF;_n=h62($z(F<?&)R_1akZK?efi=x2}-(vWT4j
z>t9akLkIBUi$Cg|oSORe+O<7{Pk-y_j!b4bMn<n;Y-|jL!u(jVB9p<2l`9d3VJVx<
z9(PWDapv8>=jP*MUI1Qr;fLFEx#_oe?%cV3>$a`@?9<QW-=BXDlC1MJUmYZ=s-mi+
zW_IX<_uu>1q60W`^!qzz!`XNC?fdp-=bU_eVVGeUN;L#P9#F5|L(B~2a(Rs8;SYyC
zxVmTn4j(?Ub at tBenSp_U&0#)|OP4=^Mo~LIowukNqH_5<$^GZfeK_Y#%n9Jo;paPZ
zxtR<52lj2xW~XuG>ecG>FN8J?6l%ODRZYs}@+fIf{p0*cE!TwC>f!T8j(U at mlfUWf
z+wmQexctdwm>Eb4$@<TQ>J9e*1>ibW?cTEG(bLzjk1;JqzZHNm40o?yy=L(18#eIF
zd+(!MuF<Aaom3e`<%aJ7Kt$Nlv8>_yQmI&7><!=hegMz&8h&5V1po%s^aOx&X)&f!
z=)i%4!PHdtqy75_c3rx3S at QXO{lKCc at z~Ff$@iXp79!F>kEy9CdF7Q~;>L{|1RxtX
zZp5pv{)#<4Jq;8hiNBpbjn{woIz7*CqF1C5qjGdnoa`CC at Nr_Xb7=s=+1b78zP7IK
z)~#EZ&P_v28?Iuhgo6hT!1Fwa2%K|p&Ot=b+uMsLpM0WbyKC1I=<V%ouyM}8^E at 1Q
z?l}}or6&JsT7AWRs=7BV&Qt*Te17oJEn9+rj*LK6n=Uhh at 24{`2>hC@?+0jPPrY3L
zGfN!<K%lCF^8&DE&oh}!CUbB)mt&z&fSIxGs@$srl^VpFa-UwcZDj+1RtdJzf2@<F
z00+Ohqc77ofMTiG-`Ux at YHVywVuw<9RqiWsh)AU%Ni0>JM9sDmL$gh+i;-yZAL}#<
zfmLR<D=F4Q4%{si`USwu%uHM)n<busR3TZjNuy7_uQY!IU}iAYek5e0L;$L~Etktt
zqX_W}yFUWP{H$fh`V?7Z$6Piw05NUui at RoLW>B;3NwKB at cqE(6N-cP)>sv at dMB)KO
zL at GS38pk?8s45Zb0Ge#-08q`O-v51L!BjW34ZzG?qzdO!lN7Y_c2k99&1NnNsTo`g
zN|FYnC3X#IGl0rEyyv6Y=N$APQMJJw6rvfJLLtO-HBEkDX)|DP_NY2*YP{66HH8>c
zD6Y6 at K_NAzQ<vKG#p@|?iqZg#t62l}6KqnS#X+`Bp?HzD^krt_Nzc*%jEE{lq`L2D
z&O*9~Sx61$QYb_+t`j3|10Xr9suC~aL<-HBg(`KREegezJ(WUnMZVZJ05iJ?K}c{_
z(sKYXwnL#d3mNTR^VZ}DP}2}VB7np^IX?bHK_fk-k<!#atIT73fyR0YrSv(d*|J&)
zQhT9>F>1Q0RgPxVPTd$EPdxHSZ6`@PuF9j%IUgw$ilQi$LZwo%mW4{CV#A)H-o9Ke
zR|;7Ig<^~m!Q*LhrdBEvXI1q|q)}q8P7o(foB&A#K>*+P;rl*<Ai%`L1cru&YPLf|
zL%20D(O~2IK1kx^$&(<MI7X$dj;??_n-*uwP5s)nz0UxAS429HkWzWCST#BoL0tv|
z>h``(w($lh(KlHX$ag0v|9dVi#+IA<OeXUm(jEb at lY{^iT4mEsBc#?&OI>>`5P<-w
z*#eNtNsuJi*V(b+myC7t_kjGiP$;BkfjN&=y1KeLNn8+-ZHsr7J%<n=c})aQO;1m^
zJXUEdq%~{SY$bUHB3tSf<3l+YiWly6C$fKLW at h0BTUA-Ldi4&Py(1!<A2NV35qCHY
z^NV-1Sd|qkR&FKj&wy-Sd;k;@qt3~pJ9qB1eYo3l5#KN6a(OZcf;Y^phvYX%diUaa
zu!}U1ERp<!bMk{ip^(_LrO5*=%Vo=!d!+3q`5J&eR0`sQ%s`pI6({nth at 3ALi}U`2
zV?ol<(GmE*Kj3-Zo6fnsbB at kAi$7cGdC&9S^nHII2!dcCF)UhQ^gJ&^au>;d0FMFK
zgnO0V0DJ*pR78eF<f5uB%Ab5ovLs9L6_@`35-6Etlz9zD00000NkvXXu0mjfF*z|a
DQ5Ugj

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/button_play-48.png b/share/lua/http/images/button_play-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ed65b3354d2274a80e865aefdcbbb6a44b77f17
GIT binary patch
literal 1981
zcmV;u2SWIXP)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm000MoNkl<ZXo2ln
zU2Igx75>iLUCbK%vo_S`*HNX^kO-s_B%36rEeW<C3K9egQB?fWQk17usw(l&CXMn_
zQbGNIsuHRyG!QjW<4Ck>LmL7rO)zncKv32+$%8459Xs}V?dx6EyK}xi?5?rR-Syg-
zN|F3YM|0-R+_Uq|eD~bBv%nnYFo&-+WVQnB{n5TaJRYxghuvBTR*_r=!XXF%mP8lG
zj)M6Gt&VY8-+1GAY&L%Pt_bYg_q5-2-R}%WB26VF#ak;XDi&5&Rx%h2iqGeRO(tno
zC7DcObaa%lSWLp<FuJ>Y+;BL2((m^ja~$89xBv83;{QtE2S42FjEs!bx$elz%a$&E
z=)ngc at RgR9%0M`buCCA7*VikzZpC4(rK%MGFvg+JaU>83AXpZp-|v^czP?0H&ll~a
z?iZ1BfBExCd(R0x_0;!E`UeJHDK9T;di0S;=LG`uaV^w=&dyH6V$)MaVIY9Q1q<N1
z?r1n1K4y&k^whh5i%ciRv<U3l^<;G<GWgE=_3Kwxud3$dOPA$8pL_z692aZ4K1kA9
zE7sbOs&0GlAAi3->jZY}{NB0|ccf+W=EqkWW8}m0t#n;iGD84lhJL0FQB@=oiB6K+
z-#`7{#aSb;efy5;k?6>&`uh5n?(i@^YWo;Anat<bX~U`_nMm9q*>Lvk`%|vOlmxbI
zf1)H389Lukzj<{yJc#y-7c<L$H?o-^p^0_UT9rg15h8WNzs~(L=QH8tYJ6hHPN%=W
zzj at udZ#IHN+sAECRge^tP*o8Ts9FH2YiXOVKcNm#04}!H2CJ&>`|FJxoy;~ylZ$}s
zx^+cG#Z60>EMe<~kC;d#X|2LqrL~I1ix%-$uN>fGn>Jx|bd;Iv=`vscjy6>i5CUkj
zYB$bk1-5M2>W at T*PJC-)UDXF4d?>MKR6q(yWXk0$R><z%yQHS325Z)=k?Ys5OE^3L
zflTh3%lB>rgrsAWcGZfNEB|ow=6`is1ePsd{&-n=*-wlyrt?Op=W;Jzv`88n>Y=Kr
zsHl*~Hf at 4q3__uhB$F1z%p{cY0YIshs(SwOuCC9##+g+@!^6W(_f=K-|9$NmthJt|
zoH!|gKmdF8?7^W!2XX&5?nfe#$a-%+rm6tox7Idg8>i<AY~1+mfY0yyU14FNzq`8|
zlV)nnzP5NV8XFstnJoYyiC{2@#>NH&gF#%mas}~te5`Foruy~DB}<xny1Vbl-JUBD
zAC1?Rl$0#&?Cca(g{sOp!&pfbq|=|IG2Y*@<-0g?<hSz3!w-*Ttw}Mw>Jxk_g}_2p
zt??SGCxKhBSgimU8XAIHo7JdUv)kB=S5#Esx#yn6vp at eCii?U;(wK%>O-V_ut<9T&
zwRTk`5}{2dnVu1jGmI~hdI^DPc=-TWS67D<CysOL)-6oEJ3M3F>03*+mR5E3bO<aD
zhr^<(Vy%T$l`+fItp(HR4)B)Hc%LK+3k&7P&pac|&A&!fRh3w4C&u*fl}yRW+GTkY
zP*sym1xnfY?2xIao&m4hb3#P0cI{fc`sxvE*sx(@%q+fAp;XU=<IA!F5Rq}Y1(U^|
zl84^zl95b4etK~-5*e#cj-T;U{k$j3lYpj>d6{I}cu`fyHfI^hkj&|m#HCA at dEme=
z<<n0;n;g^APiHXCueEFhx~ytuX0l>@{+|jWf{|zxhYue{%iAqTOk+EqCeY>8mW{wQ
zv6do|`R?$PP&x}`ek7-V_Uu`__|i-KvhT~BG4Jq6YKp+Mya|wOwbqI;CKJq4LS$|U
z0bqA`w;Vip2&Ye<rnNSY?}0o0^cMa?-UL+j0t7C>g<kDr{c=c%BwAWp(A?aNfp9oi
znA{*>)w%%kC(zY(Ggeu-<RlHB6cLC>-dV^PgN}|4zVO0}XlrYOF(zwv at rpSierhj7
zRXy3$)9rcW;YlEMvmUdSJB=|u<SC(OG>X?=JI13&k4iKe1%Pa_$xA}%7kZN5v25ea
zK>%k|ZM#xyvSp*pGi;1OdwV;6@%;0+diCm**(+aA2~yjQF=w*%$x5KN_lrb%`J(-_
z`mTt~!^A-`-G`x22!DL at O&ovy^)W?pVt$>Ggwpbf3uJ$9Z*SJ4$DC7DR#xti`Wq41
zi`0iANKgclDGLe;a4R0Cj4gZWdcM9_TWVYc$s;1>>4Aa%tb3Lz*SfT{w1mWY5m_~R
zXW3JL0Lcy!Y#1CI%z3Pm*N}>fi>pbVf=E?5Bi*xeq4a}$!-zBt4GrD>!Bz$fi;C7!
zwM9f$-eUrtB4)em4$t1vVg`kU3#v(d2awgXPk=%qWQ=T!Mx%Kj?&dt1n~X#v(eL;B
zkE?1K$u%UM+vAy;kqVNdB!6#=?2g4^o}0F8n9*ZdP%z&iwT|S=03Jdr9nWM15(L_f
z$bJzy7mvrM{RhWgVcxuXexJ`*?>Np0W6ZEIhQ=68m%035$8k>he7<_W-|xShG0a+G
zbQ~u at vW8?WfCm69!|hL21#lBUNJLsi<bt(!R{rFh!yM-D703SoXy6MgAHcAE00000
PNkvXXu0mjfF*!FkfX3cJ

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/button_rec-48.png b/share/lua/http/images/button_rec-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ab41ea9b7a3b3c267e10a21998473c680ab1f13
GIT binary patch
literal 2014
zcmV<42O;>0P)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm000M}Nkl<ZXo2ln
zU2Igx75>h>yS5ht_F@}5A%X-RYzI at f*b<H!j45E+2O>d8lPaosX;aivATO=*S`nq`
zOH&E;t(77rQCk%%g^C1{2Fp}nFt(f8!lY4%>=tZ8m-WwG*6Vxce0|tmvup0Iy<jRu
z at +Xb%nZ0vo&Np-B%sI2b5|*%puQX(_I(p?t2SbTOqQ#kVS|F$+xdwzy5C9B`8z8S0
zmlSu|mfiK<d+)>-W88-#aPZ)dgO1~DAD@^wP*%3`x$5fb<ux at m42Q!K2n1j}k49BI
z&%?~j4CC>*M59rRjEp+bX!QMHFz~i*2hN at N^Pk-RD}f*U at D)22i*0qB*c)pef4phq
z#-{`2<>hiG8pVwpH+lQ^Et#H9z!*bSBLHAoHUqXTp->3nRbd8$LAibVwmUjH)<f!R
zB69w(r`|V at oWRR3f4?kp=gzMxDpnnM_M6WZg+e8`I(Q93Lqmwi3$u!4p%9jpmcntI
znP at cnwq?oB&V2a6L?L|?MBv32zgIsoF at B=Cxw*c!u9lzv<5T(9=bwWlGx{o221y!Y
z#27QEs(U~F=<H{UPGJ8F-`yN at VkdX)+PT)UEV*#8i;m++S_MEJP)^q&stVV2he+=G
z<ZmDME*gP-`}Wty?#9lvx3{l#rlxSY`wEQbE#%XJVN~I{?l8&S9UY&{yAtyf*t_rf
zvWbbwi at V!*)kmY_=;`fEFaN`sO_m8|*GXekT-O~W^_jn)@65X=?0heu-~WOgiA3IN
zYTEp5lIXtD4OIn6A({DnSUIZ>PykjLW5Vm!J$ZU~c!;@l4CEu=IL_7;D^?zOtfq!%
z&VB^foi!WId1lF~O3(8^DgaQ#LLd-;Wm&%M{reICIAGNL0YFDC9dnw{o;}Y6 at 7#%Y
z?%v(L<?`ijnVOo)9Oyn1A}E$v*u420Y}?)@n;IGr4u=UqqR}Y&2L{-2u0wiz`=C at x
z)+Y8hFVA at NT<?-t(%N<Lg70CMa|N7OY<tz}s;05AF^o@)=W3SHo>>3XQ#ka~L#V5*
zg`{*N2 at yd>MFrZnZNs+KR$ROG8IB)6j_Y53IomET1Wm at 6?EudDz0SD at Dl4mg@wH8x
zzTQ7D0M~VM*{i538X7j@%{PB3kJZ#9$IQ?yEvLvxRaGT+?D!V?`v+unbkuhb%#m%+
z^X!q4n<xGG`JlD6Eky9vh7B7^2L}gp&klk08`k4DZ~Yp@#l^YX`5=)<;K<Qeas7+y
zd3_;C7|)9-xw@~n=f0!f^6h*k(Nb1cwtQ%4NK_T7Dj6kRhX~}z;lol=QUXZ<z=GtG
zk`g&`_^^mz?ig7zl|o>-s&4Vq)tA6 at Jl-MzCMPGM#^fx`&CRH<uS>bU!ckvehvw$y
zyki(OP*tcgEej at KjH#QLn4s}Ire=g0W!6pZ+_{4yLLeE>q++54%Ob*^J9p6YJk0HX
zRyKxe42^2NpRT at M$QbiPG#Z`Ve_8G#wHrOxWn*LGtn16ztOd!9jg4?!mw{j~+jV8g
zDI#kYOh8pF&lp&i?*ah;JYx_JhjYGPD8k_|JYyhv#v&C;_4Sy!RsbTBY1#Lknp91;
zNwu049z<3JRdb!vDN|Bka=BJORaMgF3ZKABRT+syq_VQIV6(}TBasMHmByHyK_5w|
zs&BUDyKbs_!>A%(fe8Bg`g~`l5cKu+0U~+FGRcj7qYwgD)4M;H7b1z%r#~pz^URe~
zedP5*$=q76E|>txE at MpcFiHAj$tdYMIy*aMU|>K*q~L>0L}XxKKsq}+=Z=vrCv^~#
zmkL>dOGb at jG<lHZD$|K+96R=U!O1)T#N%-sJN7!J6VrLeFvh?$o at 3Pb67Y3RQ&W>(
z>9W!W5Di(8zfTz(8^b^Q`_bOsj$kl2ui_$t>FH_w<j^7XT<OW%H<d`4)QORin}1v|
z0RSj1Ep<q~1i(r~hv_mmBa`8wVO+RyLF(%2rMh~xui2!l{r&xN^ysVT?(P;OJxo?#
znQ}^bkKoT^vDg>B6OxO->ebajRqYf at wq%CK$dS+hkfNd at Y;SAho;`b{si_GS6%_;^
zkw^qRJv}^i>Xe-8=)la(OrD(ho=hc4y<}Nd>#bY2d=r|y8AU}!WgEZ`MWiS at ftm*y
zxdV_i8xcVveWbom2;@7F$bUO>wac5-heDx$lllaJW)cEWsL7-|{RI7FNU}&ep-CO<
z_qX@^p6TDo-vRR5cs!mn+?{ty%FD~kNL&<=y2ZQ8o(BX-UK7DH<KyFbuT>VL(#n-9
zYe}Ag$huVc{K)QwQs>*SC9->Ra`NFXw$fO>V#Q{vo)nR_kC?!ah_%mgrWWsNF^y%*
zN^42|3n2B2Pk=&V(6VIj-Me=ee7T!<6VHX~x{+Wo_>QWsBDsmAeNUeUE2M(t49VYH
zmb?^?$9;pgTzH^uSzKIVle(4U8vvS+49g#61zZ9>mdI-&az2qr6#NIrL!qdsC>RI?
z+HKo@*RrfB%d%)$mZqNh<SE;>-wgx;?ZJh_A9=87j?uR55XmhhTL3%_U=8jCiwfXB
w00u>*OGGXiV;1F4z9lSS314yi4|g8Bc(5f&5C8xG07*qoM6N<$f-*2MFc$*iNdN!<

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/button_repeat-48.png b/share/lua/http/images/button_repeat-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..4664f415387c7d859021b3ef3b5248f561919cfe
GIT binary patch
literal 2379
zcmV-R3AFZ!P)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm000RNNkl<ZXo2ln
zeQcH08UH=+{eYIz?@CLJtV;+V>Oxu)+RYD!S{fI-2`XC*@{c+rWRkfo0Twh1gk at P5
z784DNTT)X$;%1FZJ4?k9QCmdJ%#d~vO>W1fwWYni?QL&w-}gMf{c%6Iw|!eE)Fmc7
z$;o@(_nzmR=XcKUJkL4L1+L3=xh~&ok@@QA at t;4D6^q5HBcqXO2v(9T2jL+I0ER>m
zWcPxF3pzcPr}LFpnxgYD?ll2;;)y4Hkx1l+!{P9 at yu94{B}<m%l$MsVprAm!UN4N}
z(5Q;zIGCKAWHcI;P$-1n-o8jE6guqlc^f?*Z~Gg6f8GAS0(kVX$30_XW4A{lV+YEY
zF0H!x=GET({CpV-g%Av0;J`q?OiaXJjG?L#0I)0%y&jKbWo4nDuz)_FPX-1C?7qIQ
zPm#JyM2^4xkHh902k`L2Tk{5ohJIgERJiT7AKd28%36psUEK%-0*FTE#)|B$EMzZQ
zgh(VZ8486OElYmg`tCo&bLnGF0Jd!T*{X1O_>Hw|*REQzas at yC*XMHf+&PeBT3>Um
zgCvbHVvOlh)%)LTJMy1-2k^jy4^@su#+vWB=kA*<%aV^fIvI&XBxwR5S6NTKLsS*E
zZ3jqhdjIHqpUoS9O`9HAF*ZKdT3cItQ)F}$pPc*@#&NDhb<Sc`;n;Q$$&JU3y?@!2
zxGaGCH*L-fhetX#*50!!6dJ~<&pt~o|FzI2gF>0_q%kVCZFiAc^WpIiX5AB>*?!#o
zz=NK_!NG%7Rh4xlaq`oXP*so=lIhQBbz=-Hv5=LWB?}h#;rII>0<moystO>ZeTF_j
z0a#*;DOk4bJ1spu0nTKjcQyc#NaXg#i*vV?m6o#gNE>WBMH^0ers}E&Wo4!O(Y^O#
z&6+hRD=VYl?@#u}VDJJuJ3G<R(!%IO4035JOzBGiV4G3%8h~Rn**GJG?z^wvH#8Lb
zVB^Nxb)S54QbtEd(+8SHA%c>%a3LOf<Pp}_-<O<CO2WeQIsi^gOh{wnOL+U8cL2K6
z%P|fe+c_bY+|k+bv1_oKkwWD+-gtLmQQ at yF%d!GJfti*&^}QfJU-s|chwAF;jEPAz
z8fjqQ^ZBHzsuJbpOYzZ1A3>?p=m-ExEmhTy3&G%*a{^FYT=LuR-FoYqf1f at L+qP!~
z;PZOX(C`PTsHgx*SEJqPB7%yF3KSO?;p2`DN$jtw`^n=tj;FWxLh}^^xZ{rXSze#_
z#q8{CUvF<OrWil1JpJ at 9QCV4u<gCp_NMiZ&<>>#qA7{^=O?}HKs^2XwD?8ZN+dIv7
zTW+1kCS%okd3ia3KtNO#sw!y(>CffMm&=9?8&Z>+HoGDs7#tds)2B~MS63It$H(2;
zh^k`i)~%AAojr9tP$>j*RCS%3t*%~ZA{wn003#zKi6H4Ns*0cdxE_`@eIAT4c=5%*
zpt-pj(P$I|a6?H69((Lj)Ya8ZYk$KHCHQ_#4O&}UGrlu1jv7-97jNXc0>+q?;c%G7
zahRA9rj_J7d_Etms;ZduIEgb6M1%(q{)tUZO_-RNpoq{C!NrRgdEmhB*w)qtAf>|O
z%lh@}={OED#xjO#42|k4H(O@{aAPPG5>*vr42-IzO7h(pEGb<gxw*L+lmLL9o*rpw
zX%Uie(Ua$2cp-yAiD6~s$`vwc+Zj4a#_42Cxtp!76jD{oF=iSyR26sKwITI=*|KHu
z`~8W?dPzn{BdDpVNjcMV=gy(0=fA1n&z}!saBvWXg at qY<xw*M8F5{94rMfyCR{+Ks
zh)6p7<5AWatgTv$&6_u+B5~65FwF(6UcHL at _wNG$3=9l#`}Q4R9Aum>ad(-nlG3Lt
zsG1R#<5bF=q*(!IT#~^g<KWfM(7>XiLb>zKJ2RqZdc*}FBr!HN#+^HN%9me#1xf3t
zw6v7P#l?~iUPNSgco?cmV at yU=CJ9w_y{)<K0aXneRk)St#02&}^9;JXyIp4_DPv<}
z*tv5j&UAG{)AR{o$Byl;F{7)i3lO-DtE$1d063G}{cc_;91e5)_8sW!>m!o1NaI8_
z8s+ZYyLs~Dr%+Wojzh<`QBqROXP<qBb#-- at T+k&XJkr)i64Sg;{BEsh+-!BF5Xnws
zj3hRb>)Cx^V1U1P>M8m2p+m^e&rh{6#&FM`J<{HOEY-HYz8+h)Jj9BM3dzaInR>7T
zN%r^m%hC6aLXDYruuB{<PRwNmP8c;2qXx5;FTVH!yLaz_ZO0Faj^kk8zI|wIJ(AI`
zynHEcx#bq*<m9*w2g|Z>=+Geyg@&e&V+<VQM2wm%2M`RNj~d4uHjbeh1(i%INPo7s
zw{!2_y|8VY4Gn+ftFOKmr$>5QPN!M2E+TyEt+(*{>wlZtKh<bFHDmPfg<#M%<uT)h
zhSWx5_ at HH3UbtWXQcK<3{3efo_ at NA5yqL-`WVVglJoRos67ROQV$Yu6aB^~T+I=8_
z(IMD4lby2wK)b3rrPOtjo<NvE`uh52{B5eo5fO}!kK?)Lo<n2fOPI7L-Sw0p^^|2<
z?Q;gu-~Y8;R8+i+M&A_?KQckgc%^i!8xwco;c%FNKmbRN9z|1A6GNd;dUhp4Cvm=t
z31nA)fB%fB$62Sgu&~HO>hmJ<I3N&7+#Lmye8xwcy}oEs4svrBGZu@<$jAt6+ex)?
z(?NoEBoB#LPYw+Yx`*M*0RVvf{QNu;9U`)F{&Lxu5dtK;MNl(5JUnY!<%&$o&COjw
zvK1oBMC2RI3neygk0r8kWMt&p6I)5iS-iNCs?8#D(>DwtAYyHbL`LT?wV0Ib>_sa`
zeG`yX^ACVRqRX=6{_*kgD^Bjtnwgs_wrvmke7+`CEhKp>NzWyFuC9;@l9MF=YFYBr
zXf*12Xq!o{YFjQ?u+T&5?IaHXs6yNwU(E{G1Ws8ZyF}!8EEb#d9~{>te!t)6^?GYP
z9?#2`WsO>vMa!}@@tmzb>hXA9_IkawKA+EbEjG-XWAu1DStQqytOl?eKshd*wG_a4
x09_)|DIzC~G4t{#-*vez*X3I-{{z*cH}u(>L>~YE002ovPDHLkV1hC;H#Ij$lR*Fg

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/button_rew-48.png b/share/lua/http/images/button_rew-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..b10c0da42f5486114d0eb1aa5104165a231fd426
GIT binary patch
literal 2084
zcmV+<2;29GP)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm000N)Nkl<ZXo2ln
zYitzP75>i5u3>EhYrsH41hi@}1~pYN4GWDaNCjG?AYq^>jT);_n-ZWzY8oB|ku-%^
z!V;<)sXtP+63s(ZMS?_78y-z*Ks7JZ&`6jx{4r${z}UNM&$3?c-1GIvKJYF(eqa+R
zl0WI{o|${@x#!IN?sI?<j9>&`XvlCGdgiC=1Ic7E<a9Y92xgI-3c at A`0ER>u<mFML
zN1e7U`}A9Hy^$D>c83(e`t=+9j^iwe#$xs3#*JM$dGh4)DO0AfqM|~4J|B$h(x{5-
zy6EZYVIq-`NF;*KKD+KjB9TLWzi+>7`~LCvfxo0a*8qO}lV|LBJYMTK at rJ1nK3Fqn
z&TL;W7?h4k1mW<fY-_tI-Q7tTW2kBb04&R<&$cBH2%uto1^s@%w6(RRu3x{=OzL(K
zIeGZqL*~8*@Z^&}9M|5_v3J6R@%4{=^RbdZU^FhZTt;haD-wypv7$5(KxtVS9LMR2
zL?ZhwOST+&?{Bfe*cem*Pdu@%Iu?t*J#XH;>Z(~)y!hco`R^y6fFyg_8mtVGG{%TA
zrbSg(9Y1#T<6#eA&D!tHjXUvomM;DFG|RH&Urnd!IF4jp0OTI!>@!4FkxHdnN!Gpp
z_v06aEr7bZHC6H3 at gvKYEt}?ab>Zx}^DwSEkg9`*QH7gIT_w5v#EJL&?TLN^SXH-r
zTrAevw0zmp>PRGt<_j0H-9HrC<WVU9nKVWvl}fdcy5Q8w5BeMvc3*|7*Q~YM+uMIr
zQ#1EFBysNiIjAZ~3d!F2Q02U5fC8}67*jEQ`i#F`z1m7IAANlV;5bh0m@#APADA+Q
zM~)stDwU%R3-Y1LMal#K>W!K|132O3qvcib_~R at 6PM6d0=r`t-oH+4M=}9JqszOy1
z<V9u668Z9%X24CQJawol#&zX^DU(rF8ptaHDIzjTjW&c9Ec6dL04E+_QaP!z=EjX1
zh{mEYY6hGFfzkNo_U&kF+>2yS(o at ehF6M_G#jCIW7K;~u>#lMDfS|@0v&73!PYQK)
zb=80Ekw^R=Uc5+S2EIU!uc$yn!z-9EV+K?es)}OuNn*|F)p+{pAHnDIK`g7N9ss{F
zrXIl20SB;X(c%EXmC;y?nbp;cuetYBa`v2R{OYBb5DW%0Ya5`(P*wBl*|v at 6Hvfz(
zR;)l)59D2Xnb#Cx<=5xd1pa-Y`L3nDXaLEcWT>*Tvb?pm6{_kr<>lU!<f7VIdEtd$
zpscJc at 4b?eaf|?@yu2J+w`}3Ug$o1#M6#;L)62C*2!V1{osS}exo800i9|>Mbar-T
z7D;aq!0NhH*sx&(Y}-zI(rb}bW1tyoOst%UJ-c^f=FFLQ+aYs$h4xhyYD{Rr0T^Ru
z#bPlU*Uf#QB6i{P`?+b;M%1lZ1y#+_CMTpDr!fXqRaIzg+{<7vn59ilM?^rXCxuiM
zMzy+_uU-K>6p2J6=X~!^n%TGoN(21$%P&hP6oRT!?r<SbR#mB8REzD~wz0gtJVy=b
zZ8Jk5ql&yP%*dG at m^$D9RMm2gfn|Blve>qDD?*`=XL%N1dH7+xxN8^ue$S~q=d0Ij
zM=F$Bbl2e30}zqk?9ZbR at 5~rQX_H4G<MykQrVz;@6av6>4=9SE=qJ`RB(q0HCeJ;q
zs_fpq2Te^)lBI%VP$*x%{ITrX^`gY%@uE6+c*<h!!5AZ|Dymwvd%OY&oAki(OkIwH
zpFjUR4jeepC)JE9jvYUSXE$s>G#d5PBiUzrsu~_l0GHGlW)~q<Wv`TdMk3M8J$qi^
z-o{3_u1jRPo*4kyg^c{@KObS;x*xEmrG+`l^wP`Fvamg<F-)JW_0oU?AbC31b?JFr
zdL{JEjWP22pI*m~ojb*G91)Q`s$^`4sv;Z?%lh at t%BfSQ?xGOLLi=esQ=jCS!Suix
zqsAG`2JY~?hp}<vCbV~S<lCa=>D_9-h0U9v!@+|G3qM+M+s42(u4B{;Jb-ZcTEe*I
zkZ}#wD5&W at K_;OfPs=3Fo;}O8YuDn+l`A<qsnNoE?C$QyjvYI>Z{I$qQmH$%E6`J;
z>8lx|hdvF5i(Ywnjy_WN8)MweZc++o2Cvy7d at YQpo~oCVr%vT&EHC}nUi-al*|J5F
z$s}CY_0n^dy5GxB&ol9)Nt6Am`hi$7zi`#W0M5jvfdHy!&t~)aX33Nk*C$XltBM^R
z9n#j;mRCk4Nj+m()}os?Zx+41>+?`QVZy}40N)dllDu1x&jFe9aZ(`PZEwGI!b`8u
zLwz6+_#dec0hmWZ017pI=+5Tg(Bxue%)Tf80LbqWiG=5txZlqj3<k%MXcCcG!*`e6
z4+xOFEP at 5mXtd93l>xalcI?<Hl1CsiT}1Bdy-;RtyK0Fn at 9gXx`o&fj<zvRorRqB(
zGVMMG&?;ipIZoH`T`gu&T3S{`>OnxNhd%%ci5AO}Rkv^79`NOEpM$s%sZ^@n at Ato<
zs^dw1m85;gpL<KBf at BZLKU$W2Kaofj-L!e(o`&V9QKM~AYe_Z$s6qN%aW6fPBG7D!
zY!{J}$z*cSKRAYjl9Cd?&*xia+xDB5Wp!DWMa!}@llLWe*|z<r&*xj_ at 9(JA4~A`G
zv~4>;az4orfY|`1;?7n at 0bB#nA|j_n<cu+9Sbp-2U<4!hg5&=k=14uc)s&3 at 0000<
OMNUMnLSTY2FgP$x9~KAz

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/button_stop-48.png b/share/lua/http/images/button_stop-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..2a814e43967945e85b914097a2a4daddd08eb71b
GIT binary patch
literal 1717
zcmV;m21 at yfP)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm000JfNkl<ZXo2ln
z-)|Jx75>hh8N-6{4=9B|1bH(g>O*WK95tXI6}wGiOE}Q9iYmXfsoOuGQvQNSed<%2
zmsUbbBB<I#qAd+c8c?W$ffzLpwQ2KY8YfWKUaxn|vYt8T>%-3a=gi`@mr9ZRNmqNu
zclO-#?fvdO=UxMw*u*Bj(vU_udgUiWxpKMO9TvlG2o90l55gk|07_y4<n1k6w+wsE
z8-DApH%g5dcS8h*hJF@=VR&MuP#A1&ZRy{$XHWCqy?fc--Y&lHL*tlgCUG2Netw>%
zQc3dpJih$$ZkW&KF9d;q*7N+!fB60HqW>#_AN}|hZ*FexSQyT|wtwHguBV=Q(r;^P
zlj(dO6BA!>a`Hd&;6WLxN;4GzaL%Led6LWJ(7v;sK at iB~<YaXB?!6JxUKNq6fBNGE
zedGjQe))&3Q`6JG*tKit;IrR+wkem}iqWy#7#|-;sZ^gTw&ilzwtYLoFr3fl^Jkrt
zpI>_SFNJ!1)J5Q>mwwPuD9pTb<j9f39fvyj>EAz<e|`2DNOFm<dTo%Ts*0+Pnc1li
z-hc0(4JUB=%=bFy!nwCkp8VDU=bU_eZJ1#gN;L#P)@fItA!ddsipEI}eE8Q7ZZ(X+
zz`*H_x%+dMdU|>egvBCm-24O@$7}g&-B2^cQFMo7 at 0BYbK6EA?O5oJMi>-yi?6uyW
zlZW&98I0VzRh|Bg$Yz;@mOqoKCQ%fPk at n2ru6|T=O?b6BUp#%ro0^*XWoPHp-v)`B
zpWK9*fuxXJ`ngei*)u=^xLZ}*4<3Bt;+;F=%!<*kMIa2rV>@=V4DNgEF<yG_eMHfM
zY%1AFm2n&``&+%X?+5TaFQrcaU{FoZ0l1PCW2S`q`uc<E>HJ5%y*)>7+_)*lVsYuf
zq8fAPr$h4H=bwj&tV=>9@#l*d@%pb{r|0>r-itM69L3kg$?@T9AEzcemqj3)n>(@l
z>$|(|-MfdG!VJ`OSu4-aqra~Yp65YC;GBbVt}fg2JoLTr0?PCAtNg2J^(XF9)e~89
zW)dhCi-S)bJQ)0AbQG$(s+k#lzor7$gdhlDW|?CE2vl{jE&|7oKbOnpa{V)f0!yV5
z%#2G~<yjS|<RC5>>$7Q<V3+$(Y?2h9|LM-I+?olL=gZx#t*y=D<KvPzlqIe5T!}+O
zDhWvvtiu)~vC4m9(<lU*&FpAetf?A!P%3o`fZ5sEBuTDDG6M~Psb=~k05gNBb|Yms
zN+qDGhYE!PHI9+|U at KWL(Pvc=i^e+as%%!oz3`ryLCp at Q#hOLn at q9in3&G2hx`iY}
zBpFadq at vU6%XQib0jilS^}k{)nCkvD6EHIutHQa=O$u6>frdcM;A%*cG#D+lYRH-a
zh{#g)uaXcOC?T4G84^MwSJU(#ENceL%%r;GA*JwA(}qb%P3hFt%-Cj at Iz?FoCe&=1
z^i$r+?5h{aBF*ei2u!5)Wf2$^Rf<UU+_8EW(gyBAYA}}}A(Ba+7+o^~lEbPh$s$gb
zP@{JtQ_Yl6l98{knShyHhae=_oYoHj#s*4=wphHa1OYV-0i+U0-6tm|J}+sk7c^Fy
z8fcYyOd4ohDxn6{Ld(WjuuZLUHKTUni;0QUE04 at _lC-m`JmZ}6ks+ZtjyEi!D2ghH
zEJZ>I$C%*RtT;0>6^YBLIudJ~TB{SpxpU`05<w8a_kH-jUzbf1=g*%9!PGG-Wpz9P
z@^V(3H4pW>c75$RfbWV(6H>NRlHdlnQ%MduslLgwK)y3I_1`O5->-S7&*gIeChc(m
zM at R@jp;ZpuG(r~2X<1Sp*K1?JCs^@ICN}vSKz>y!l`;?Y54~1tYinyIaZN-HHSR9^
zAs|5Vwg{e?nVG41t+J+&T3T8<NM3 at -L0LS&KazW)WZ~X%BE7S-vm3wIs-k(vj!v4r
zEg}aVF at bRrHxP!!#$7E|v2EM-4$|HM<Z$B&P)Lk9C#UY;zrW_o-I|MdC88*r3WDGb
zGuuh>8zjBOc-GfQ1Ic-kzjaQ&Un-SSi?%GRYgumDvehH)7|GWFbfJ<E*E0hVfe|P2
zs)$@Im&=ViXs-oLO-+IC`#qlLz3H4QI_Kz|v*fduUGzNfP2cx>f*=Ss5<|l_M$hwd
zB#)Bp2Jj?+{aDQO2H<l5V<IvvBG*;5A^+st#3nZJ703So)%gz>$ljGX00000NkvXX
Lu0mjfF*h+YLe^6F

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/button_stream-48.png b/share/lua/http/images/button_stream-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..5737084c0f4d26232ee4503c95685b4fe06288e7
GIT binary patch
literal 2131
zcmV-Z2(0&sP)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm000OUNkl<ZXo2mS
zO^jtl6~}+)-uJqv=L;k_EEI5 at 5fGh#CNK;}Kw=Pyh8PJe7wXoPD|9tsMO?|!og3W{
zh*3yfxKJQEP9QTzWq}R~jDik{d=1RIx9Xg~i at Nu{+ug6bU-uZ?%t>C~Q=g|!)%o~W
zHC&=gbWvpUD!=}~gZqKce86kjicUZA_+#&^tsKqkX=aa_*|)l)SgmMZ9 at bwBzfeC(
zKL)<NkOC2Lup2xSz?||%eYVRl((mBBwQi&UY`t3_=m~5 at n<>!K8Q`Y?W`?BW0OLJ-
zx#Gr~Q8gkYJitB3A>0Fxz+L3-Tk1sazV1%;Aadrw`BzzrrmWbihfP!Y-vAEpKmiA=
zKe{tdJ^Ay8`?jxq_5S04K6=MJTzS(iifT*_XtUI`PLrHAxh8F<O-{6~l$?|@lQyeu
zok?<<Hfb_xX(kiiuJ-WB|C|!QQ&0YEDC;P2sFc=P+$IXR2WB?+=z8<ob=l=w*|*;`
z-bD^mox-Z*SnIMTo03DD6|GyenP{^{OK#pcb(>U=lGRm9rJ6L_t%&H&awyA~Iq~8O
zC<4u_aD2~~?!644sz-!-nX)qK at feNAL>3lcF02ZysxS-8x^Gntc*Cl?^s8&AYLL29
zhr7Rg|7D}joWgyy${Q9wfwIf}klTUN0G{(yM=-3aM1N3110k!UNWXjQ`WToYfqMv`
zra9eram7^|FMSgQIv?nDUtx6!>mq|>n5hILVOY0Y>!V1SYJDFoO+vj10eo!T_;q`-
zr2;X3jzL-4Vrv#5&3?1Uw^>A8Pn(6&e#E=L-v-S$0g?hKHZhL at zhR$Jq2dF5%O3`-
z{y4C2?#ee+z=P>w!*8E`=IQ(Tw$I;jX8<M-Mb3sf5(3$DP16vdp$W`*Nl2y$2uF%(
z6ngfVr$0N8^-JL1bz8Ef0;?0*dgTC5i8Ps at EV7K0MQ)v(oZLFzW;{8bGLf7}naG*Q
z9iI|P4N5JzPv at N{Yctv)3i*Zu`nI#DPO|UX!^{#{(4?SEPLpz<&?w2RB(>E2ih>Dm
z5}I6K-<xOV%G_)nn<@|y*enxYf9tKcJpz=FSE8N%dFmwR&;3hSO%yX%bS at E+LP8-z
zQdb8dElG?7D-qf+5gshRcMf%#>XxIoKhi at 9g|4GB9__%1dmlIme6P$n{cG3X^EDm1
z`#$q(L=My at S(}0;xtf%%DNsU9a%+;)v{_AZO9e`(X_GZgqPZ|(@7d>c<v&jL@*dLE
zS9S{K7O=f5t~toc{{3jQOpc0C4(jAoZTVT7vDQ)B*?gPv)`>PVYBPD9sOtt(&1BD2
z3&~tq0T0K_R)@mXB&%yi%e%yQ1zcov)p9Cjs;E?jQAI at +rYfMSjjA?TZP=)y3S=X&
zQ7W6(+2$O1#e}wvg=R;00{AX~)irWIK?$;|s at hZ;_?#@ufS;R*yEJSSk`(R+DC(tS
zmACy;eh3_!yYkHx at YP}Ttr!0Mr;~l*Q=dLEZ7?%5z1!@BdMGiI`NAKc8_Ifns~I-%
zfpsP{C3RW4JJMlZ-BBj)p at bsV$?NL2Z$cpztXAmq>#o1yC_q)!{Z3gy0A2Q-2h<qw
z8-Y3c^-JDm;!oUo<fwV^3y-**okgKl3FJ25_uYiOOd`CX*4ZX)lT^@!0wQ{uhWiQ4
zl-qLR4Sm3D^B083PMS<47akR!L!P2Qg`5 at cglEFDA{SoSrSc_mQsf5Z7KJYmg|?x<
znkY0EPyhSOi~8^lN6ZV9P at 7|x$l7fE-MDStQp%)qH at 1S6vb;?e9h9ivdQIUmPu|WF
z*%}P;cf%e7y4zDc1n~S5KjGz5CrcQlSW<z-A~b~*J)G!x2E3>wmffk}dTl1N8vVdJ
zUg$vzq~4waQ7-lUp}qL(*;l^bw_SbpH4gzgbnH%!ee*j~y+jUZa;Q52+LYBni4IzH
zuNCc(PfAUqy>Nm0^e<RCTW*qPUwLUL>n6I};5MUB&;|H))a{fVzWpxk`Op=n(K1=4
zQI?Hcr%tZA$yOz&YO`qF=w2w)W{ZME<!!Qh)MB<o`p6O0uROmlp?LW8RbnIBHWupJ
z>hXy2u3fOSf;k2An=>-URg=xBsi|=)GL<SS)l~BCTVq~fqYPI4Z|?(Z9=1Mr;J{U<
zW^H{aHR{n=s%k8HFR-#-Q}dgK`qjJ{n8~UNs=D)?5{1^tIy4)<{Y!m+72F3lcxqRN
zW00Ad>>^$zX7|>?tAuVI$ku at 0wgQ6@YduIkJh*r$VP*DM1tm0x-=+eCr^WYybA#q<
z0V^sD-tTq_C3>WzX&!iaAnO3IyX&zX1vEPV at jKuFfO<T}Q+l)PT9kyRVCQJGK#9%=
zO2yLdn`z$fJ3Nl@#lGt{6j+tW()sh}r?7VK-o2%dJ2 at qwCc=>S3aKc!_Dgiwr(1M5
zatHSUB|7|d{*Bj%vNBuHA`e at 0+unKO9Fuq7QB)VmVYE5a^ogw8e`(v2)Kd4{lG>~e
zN|anMX^G|ndjIV;J}{NFB~o1EQh#`PdHFb$3ryeks~<h8*I)XpQI82p9x`{~A-TKd
zo{zBXfqUV*e|pG0%yW=aOa99Vsf$9(E4z==SwKV_W{X5Nw{g6*^lRX*t~eLWG0$0d
z#xL6MH>qvEuy(DBn$S8pJ*WO+_(l5FqtVE6&a1|4q`=EacMT@^zn_4az2tNJWUdLB
z*?x)%tw>_{-=@AitiKq3!G7<V+0zm6?!5J0qDyoU^k2=6`rg|p3?2Xg002ovPDHLk
JV1hC+GB@{VDNq0a

literal 0
HcmV?d00001

diff --git a/share/lua/http/images/speaker-32.png b/share/lua/http/images/speaker-32.png
new file mode 100644
index 0000000000000000000000000000000000000000..14a81dc4906603c16834d5fe328bcc21506282fd
GIT binary patch
literal 997
zcmV<B0~-8^P)<h;3K|Lk000e1NJLTq001BW001Be1^@s6b9#F8000B2Nkl<ZScUDE
zzi%8x6vw}_KTmfXythB@)|ZQHp~NRSy7Y%clp^A9009L8S`bAVsHy0Pgg_}$06nyb
zmeNQRrU2nsatiEQ-&wx>aXYg+kHRsrb9?8t0v93iq*v^`+4ny4=FRL|;D7lSB?yAo
zTdme-OAqY(ey7!HeWz&}*|z;?slmJ5?z^_#92<r~hGCH7x(flce=6|W+S+<i6c3J%
zkM9x at Ow$Aa=-T2C&keBA>oHjrAEasesSu)3tJTig4Z~RYKAUH7UAIdFl}Lgy21QYd
zFbp4`ozw5%>T#Yu<U$M>SgALs*%X7pD}(#@Ki?{gqm&H>L2xgMqP-}Z?8b4t8%5FX
zWHQ-XU0uBg0Gl^&s{MZdW2UfQ>h;E;X*XfpHtdyIwX7 at ptG91|G;g7$Tfi9G)N~!}
z+>!`V%J*BX)+UJ79ml<+=^7R!5dfi9tHE*H*DeK6uQy=UYEanI1Q7_+bb4bn8r|5~
z=pk5L1!IeX14IN6!7z0H>u<ij_V!zE?o|S4Hk+`nSWp%996&f6!ZZyyu8VfNeK7!l
zB#KZ-2~|}$08|6;JP$8lzYa}3YbNaM`~fK?JkLj`a}~G%03aOf??Z47DP^~8Mk#>Z
zY@*-41zp$A_#&vP3deDgBr!TyI~BG7n5HSX5D-Fml>wq?g55_u(6pxj1VTEUqF%2f
z42KBA!wVBY1VmAUEX%;Tuqp!_hKJbR-iE54DMA90B*F0D0E_`eAu9n)Cdc3z2j{$W
zPAS0A(GlV}hN7ImCh|PT{{EkE90z$`R5}GxN at P5{96%h$$a67MWC~-*IETU%2$3(m
z0f3WJU>N%4Gr)O<BuQq*bzMi2B#2&$z(u*kXT`FtlMDzRRR$13U^<<aI?OVTX__LN
zW|aUmRee%~Jgf{Lr9__RGvh^3K*|D~a}-im0;o6Y$g&J+l0Gi8mjav?&pZ)%j$DXJ
z073|)Ns2g*f2#~Iuewds{M|IopG?zSAEoIX5M2n6=Q$>m$?&T$znHm(fjOUJP1Alg
z3<J8Z|E*7+AB;w$cR1&FJ=gt2*Y&I at 3M|w-$1n_km<PD9ApxKg5g21&jLkG8zVG*l
z=;3%g9?+a at c%Co1*SdqBx3)?flIIrNwpqK~{;<(#M2s<dR+rWld!D!M`~HuLq7Y8*
zAOf)bwmb-e_bkgAp8~9`tSlD*0365Zc%JvYs;Vyr;8cPjc;kiqn*FEbFB&Pl5(Ewc
T_W%F at 07*qoM6N<$f;l-fZjHm3

literal 0
HcmV?d00001

diff --git a/share/lua/http/js/common.js b/share/lua/http/js/common.js
new file mode 100644
index 0000000..bfc24b1
--- /dev/null
+++ b/share/lua/http/js/common.js
@@ -0,0 +1,9 @@
+function format_time( s ){
+    var hours	= Math.floor(s/3600);
+    var minutes = Math.floor((s/60)%60);
+    var seconds = Math.floor(s%60);
+    hours		=	hours<10 ? "0"+hours : hours;
+	minutes		=	minutes<10 ? "0"+minutes : minutes;
+	seconds		=	seconds<10 ? "0"+seconds : seconds;
+    return hours+":"+minutes+":"+seconds;
+}
diff --git a/share/lua/http/js/controlers.js b/share/lua/http/js/controlers.js
new file mode 100644
index 0000000..ba4eb9a
--- /dev/null
+++ b/share/lua/http/js/controlers.js
@@ -0,0 +1,311 @@
+var current_id	=	1;
+var currentArt	=	null;
+var current_que	=	'main';
+function updateStatus(){
+	$.ajax({
+		url: 'requests/status.xml',
+		success: function(data,status,jqXHR){
+			if(current_que=='main'){
+				$('.dynamic').empty();
+				$('#mediaTitle').append($('[name="filename"]',data).text());
+				$('#totalTime').append(format_time($('length',data).text()));
+				$('#currentTime').append(format_time($('time',data).text()));
+				$('#seekSlider').slider({value: ($('time',data).text()/$('length',data).text()*100) })
+				$('#currentVolume').append(Math.round($('volume',data).text()/5.12)+'%');
+				$('#volumeSlider').slider({value: ($('volume',data).text()/5.12) });
+				$('#rateSlider').slider({value: ($('rate',data).text()) });
+				$('#currentRate').append(Math.round($('rate',data).text()*100)/100);
+				$('#audioSlider').slider({value: ($('audiodelay',data).text()) });
+				$('#currentAudioDelay').append(Math.round($('audiodelay',data).text()*100)/100);
+				$('#subtitleSlider').slider({value: ($('subtitledelay',data).text()) });
+				$('#currentSubtitleDelay').append(Math.round($('subtitledelay',data).text()*100)/100);
+				$('#seekSlider').attr('totalLength',$('length',data).text());
+				$('#buttonPlay').attr('state',$('state',data).text());
+				if($('state',data).text()=='playing'){
+					$('#buttonPlay').css({
+						'background-image':'url("images/button_pause-48.png")'
+					});
+				}else{
+					$('#buttonPlay').css({
+						'background-image':'url("images/button_play-48.png")'
+					});
+				}
+				if($('random',data).text()=='true'){
+					$('#buttonShuffle').removeClass('ui-state-default');
+					$('#buttonShuffle').addClass('ui-state-active');
+				}else{
+					$('#buttonShuffle').addClass('ui-state-default');
+					$('#buttonShuffle').removeClass('ui-state-active');
+				}
+				if($('loop',data).text()=='true'){
+					$('#buttonLoop').removeClass('ui-state-default');
+					$('#buttonLoop').addClass('ui-state-active');
+				}else{
+					$('#buttonLoop').addClass('ui-state-default');
+					$('#buttonLoop').removeClass('ui-state-active');
+				}
+				if($('repeat',data).text()=='true'){
+					$('#buttonRepeat').removeClass('ui-state-default');
+					$('#buttonRepeat').addClass('ui-state-active');
+				}else{
+					$('#buttonRepeat').addClass('ui-state-default');
+					$('#buttonRepeat').removeClass('ui-state-active');
+				}
+				if($('[name="artwork_url"]',data).text()!=currentArt){
+					var tmp	=	new Date();
+					$('#albumArt').attr('src','/art?'+tmp.getTime());
+					currentArt	=	$('[name="artwork_url"]',data).text();
+					$('#albumArt').css({
+						'visibility':'visible',
+						'display':'none'
+					});
+				}else if($('[name="artwork_url"]',data).text()==""){
+					$('#albumArt').css({
+						'visibility':'hidden',
+						'display':'none'
+					});
+				}
+				setTimeout( updateStatus, 1000 );
+			}
+		},
+		error: function(jqXHR,status,error){
+			setTimeout( updateStatus, 500 );
+		}
+	});
+}
+
+function updatePlayList(){
+	$('#libraryTree').jstree('refresh',-1);
+}
+function sendCommand(params){
+	if(current_que=='stream'){
+		$.ajax({
+			url: 'requests/status.xml',
+			data: params,
+			success:function(data,status,jqXHR){
+				updateStatus();
+				updatePlayList();
+			}
+		});
+	}else{
+		$.ajax({
+			url: 'requests/status.xml',
+			data: params,
+			success:function(data,status,jqXHR){
+				updatePlayList();
+			}
+		});
+	}
+	
+}
+function browse(dir){
+	dir	=	dir==undefined ? '~' : dir;
+	$.ajax({
+		url: 'requests/browse.xml',
+		data:'dir='+encodeURIComponent(dir),
+		success: function(data,status,jqXHR){
+			$('#browse_elements').empty();
+            $('element',data).each(function(){
+				if($(this).attr('type')=='dir' || $.inArray($(this).attr('name').substr(-3),video_types)!=-1 || $.inArray($(this).attr('name').substr(-3),audio_types)!=-1){
+					$('#browse_elements').append(createElementLi($(this).attr('name'),$(this).attr('type'),$(this).attr('path'),$(this).attr('name').substr(-3)));
+				}
+			});
+			$('[opendir]').dblclick(function(){
+				browse($(this).attr('opendir'));
+			});
+			$('[openfile]').dblclick(function(){
+				var tgt	=	browse_target.indexOf('__')==-1 ? browse_target : browse_target.substr(0,browse_target.indexOf('__'));
+				switch(tgt){
+					case '#stream_input':
+						$(browse_target).val($(this).attr('openfile'));
+						break;
+					case '#mosaic_open':
+						$('li',browse_target).remove();
+						$(browse_target).append(this);
+						$(this).css({
+							'margin-left' : -40,
+							'margin-top' : -46,
+							'float' : 'left'
+						});
+						break;
+					default:
+						sendCommand('command=in_play&input=file://'+encodeURIComponent($(this).attr('openfile')));
+						break;
+				}
+				$('#window_browse').dialog('close');
+			});
+			$('[selectable]').selectable();
+		},
+		error: function(jqXHR,status,error){
+			setTimeout('browse("'+dir+'")',1041);
+		}
+	});
+}
+function updateStreams(){
+	$.ajax({
+		url: 'requests/vlm.xml',
+		success:function(data,status,jqXHR){
+			$('#stream_info').accordion("destroy");
+			$('#stream_info').empty();
+			$('broadcast',data).each(function(){
+				var stream_div	=	$('#stream_status_').clone();
+				var name		=	$(this).attr('name');
+				var loop		=	$(this).attr('loop')=='yes';
+				var playing		=	$('instance',$(this)).attr('state')=='playing';
+				var file		=	$('input',$(this)).text();
+				var output		=	$('output',$(this)).text();
+				var time		=	isNaN(Math.round($('instance',$(this)).attr('time')/1000000)) ? 0 : Math.round($('instance',$(this)).attr('time')/1000000);
+				var length		=	isNaN(Math.round($('instance',$(this)).attr('length')/1000000)) ? 0 : Math.round($('instance',$(this)).attr('length')/1000000);
+				$('[id]',stream_div).each(function(){
+					$(this).attr('id',$(this).attr('id')+name);
+				});
+				$(stream_div).attr('id',$(stream_div).attr('id')+name);
+				$('#stream_title_'+name,stream_div).append(name);
+				$('#stream_file_'+name,stream_div).append(file);
+				$('#stream_pos_'+name,stream_div).slider({
+					value: 0,
+					range: "min",
+					min: 0,
+					slide: function( event, ui ) {
+						$( "#stream_current_time_"+name,stream_div ).empty();
+						$( "#stream_current_time_"+name,stream_div ).append( format_time(ui.value) );
+						$( "#stream_total_time_"+name,stream_div ).empty();
+						$( "#stream_total_time_"+name,stream_div ).append( format_time($('#stream_pos_'+name,stream_div).slider('option','max')) );
+						sendVLMCmd('control '+name+' seek '+Math.round(ui.value/$('#stream_pos_'+name,stream_div).slider('option','max')*100));
+					},
+					change: function(event, ui){
+						$( "#stream_current_time_"+name,stream_div ).empty();
+						$( "#stream_current_time_"+name,stream_div ).append( format_time(ui.value) );
+						$( "#stream_total_time_"+name,stream_div ).empty();
+						$( "#stream_total_time_"+name,stream_div ).append( format_time($('#stream_pos_'+name,stream_div).slider('option','max')) );
+					}
+				});
+				$('#button_stream_stop_'+name,stream_div).click(function(){
+					sendVLMCmd('control '+name+' stop');
+					return false;
+				});
+				$('#button_stream_play_'+name,stream_div).click(function(){
+					if($('span',this).hasClass('ui-icon-pause')){
+						sendVLMCmd('control '+name+' pause');
+					}else{
+						sendVLMCmd('control '+name+' play');
+					}
+				});
+				$('#button_stream_loop_'+name,stream_div).click(function(){
+					if(loop){
+						sendVLMCmd('setup '+name+' unloop');
+					}else{
+						sendVLMCmd('setup '+name+' loop');
+					}
+				});
+				$('#button_stream_delete_'+name,stream_div).click(function(){
+					sendVLMCmd('del '+name);
+				});
+				$('#stream_pos_'+name,stream_div).slider({
+					max: length,
+					value: time
+				});
+				if(playing){
+					$('span',$('#button_stream_play_'+name,stream_div)).removeClass('ui-icon-play');
+					$('span',$('#button_stream_play_'+name,stream_div)).addClass('ui-icon-pause');
+				}
+				if(loop){
+					$('#button_stream_loop_'+name,stream_div).addClass('ui-state-active');
+				}
+				$(stream_div).css({
+					'visibility':'',
+					'display':''
+				});
+				$('#stream_info').append(stream_div);
+
+			});
+			$('.button').hover(
+				function() { $(this).addClass('ui-state-hover'); },
+				function() { $(this).removeClass('ui-state-hover'); }
+			);
+			$('#stream_info').accordion({
+				header: "h3",
+				collapsible: true,
+				autoHeight: true
+			});
+			if(current_que=='stream'){
+				$('.dynamic').empty();
+				$('#mediaTitle').append($('[name="Current"] input',data).text());
+				$('#totalTime').append(format_time(isNaN($('[name="Current"] instance',data).attr('length')) ? 0 : $('[name="Current"] instance',data).attr('length')/1000000));
+				$('#currentTime').append(format_time(isNaN($('[name="Current"] instance',data).attr('time')) ? 0 : $('[name="Current"] instance',data).attr('time')/1000000));
+				$('#seekSlider').slider({value: (($('[name="Current"] instance',data).attr('time')/1000000)/($('[name="Current"] instance',data).attr('length')/1000000)*100) });
+				$('#seekSlider').attr('totalLength',$('[name="Current"] instance',data).attr('length')/1000000);
+				$('#buttonPlay').attr('state',$('[name="Current"] instance',data).length>0 ? $('[name="Current"] instance',data).attr('state') : 'stopped');
+				if($('[name="Current"] instance',data).attr('state')=='playing'){
+					$('#buttonPlay').css({
+						'background-image':'url("images/button_pause-48.png'
+					});
+				}else{
+					$('#buttonPlay').css({
+						'background-image':'url("images/button_play-48.png'
+					});
+				}
+				setTimeout( updateStreams, 1000 );
+			}
+			
+		}
+	});
+}
+function sendVLMCmd(command){
+	var commands	=	command.split(';');
+	if(commands.length>1){
+		sendBatchVLMCmd(command);
+	}else{
+		if(current_que=='main'){
+			$.ajax({
+				url: 'requests/vlm_cmd.xml',
+				data: 'command='+encodeURIComponent(command),
+				success: function(data,status,jqXHR){
+					updateStreams();
+				}
+			});
+		}else{
+			$.ajax({
+				url: 'requests/vlm_cmd.xml',
+				data: 'command='+encodeURIComponent(command)
+			});
+		}
+		
+	}
+}
+function sendBatchVLMCmd(command){
+	var commands	=	command.split(';');
+	$.ajax({
+		url: 'requests/vlm_cmd.xml',
+		data: 'command='+encodeURIComponent(commands.shift()),
+		success:function(data,status,jqXHR){
+			sendVLMCmd(commands.join(';'));
+		}
+	});
+}
+$(function(){
+	$('#libraryTree').jstree({
+		"xml_data":{
+			"ajax":{
+				"url" : "requests/playlist.xml"
+			},
+			"xsl" : "nest"
+		},
+		"themeroller":{
+			"item_leaf":"ui-icon-video"
+		},
+		"plugins" : ["xml_data","ui","themeroller"]
+	}).bind("loaded.jstree", function (event, data) {
+		$('[current]','[id^="plid_"]').each(function(){
+			$(this).addClass('ui-state-highlight');
+			current_id	=	$(this).attr('id').substr(5);
+		});
+	}).bind("refresh.jstree",function(event,data){
+		$('[current]','[id^="plid_"]').each(function(){
+			$(this).addClass('ui-state-highlight');
+			current_id	=	$(this).attr('id').substr(5);
+		});
+	});
+	updateStatus();
+	updateStreams();
+});
diff --git a/share/lua/http/js/jquery-1.5.1.min.js b/share/lua/http/js/jquery-1.5.1.min.js
new file mode 100644
index 0000000..41ca757
--- /dev/null
+++ b/share/lua/http/js/jquery-1.5.1.min.js
@@ -0,0 +1,922 @@
+/*!
+ * jQuery JavaScript Library v1.5.1
+ * http://jquery.com/
+ *
+ * Copyright 2011, John Resig
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * Includes Sizzle.js
+ * http://sizzlejs.com/
+ * Copyright 2011, The Dojo Foundation
+ * Released under the MIT, BSD, and GPL Licenses.
+ *
+ * Date: Wed Feb 23 13:55:29 2011 -0500
+ */
+(function(a,b){
+function cg(a){
+return d.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cd(a){
+if(!bZ[a]){
+var b=d("<"+a+">").appendTo("body"),c=b.css("display");b.remove();if(c==="none"||c==="")c="block";bZ[a]=c}return bZ[a]}function cc(a,b){
+var c={
+};d.each(cb.concat.apply([],cb.slice(0,b)),function(){
+c[this]=a});return c}function bY(){
+try{
+return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){
+}}function bX(){
+try{
+return new a.XMLHttpRequest}catch(b){
+}}function bW(){
+d(a).unload(function(){
+for(var a in bU)bU[a](0,1)})}function bQ(a,c){
+a.dataFilter&&(c=a.dataFilter(c,a.dataType));var e=a.dataTypes,f={
+},g,h,i=e.length,j,k=e[0],l,m,n,o,p;for(g=1;g<i;g++){
+if(g===1)for(h in a.converters)typeof h==="string"&&(f[h.toLowerCase()]=a.converters[h]);l=k,k=e[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){
+m=l+" "+k,n=f[m]||f["* "+k];if(!n){
+p=b;for(o in f){
+j=o.split(" ");if(j[0]===l||j[0]==="*"){
+p=f[j[1]+" "+k];if(p){
+o=f[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&d.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function bP(a,c,d){
+var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){
+f.unshift(i);break}if(f[0]in d)j=f[0];else{
+for(i in d){
+if(!f[0]||a.converters[i+" "+f[0]]){
+j=i;break}k||(k=i)}j=j||k}if(j){
+j!==f[0]&&f.unshift(j);return d[j]}}function bO(a,b,c,e){
+if(d.isArray(b)&&b.length)d.each(b,function(b,f){
+c||bq.test(a)?e(a,f):bO(a+"["+(typeof f==="object"||d.isArray(f)?b:"")+"]",f,c,e)});else if(c||b==null||typeof b!=="object")e(a,b);else if(d.isArray(b)||d.isEmptyObject(b))e(a,"");else for(var f in b)bO(a+"["+f+"]",b[f],c,e)}function bN(a,c,d,e,f,g){
+f=f||c.dataTypes[0],g=g||{
+},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bH,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l==="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=bN(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=bN(a,c,d,e,"*",g));return l}function bM(a){
+return function(b,c){
+typeof b!=="string"&&(c=b,b="*");if(d.isFunction(c)){
+var e=b.toLowerCase().split(bB),f=0,g=e.length,h,i,j;for(;f<g;f++)h=e[f],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bo(a,b,c){
+var e=b==="width"?bi:bj,f=b==="width"?a.offsetWidth:a.offsetHeight;if(c==="border")return f;d.each(e,function(){
+c||(f-=parseFloat(d.css(a,"padding"+this))||0),c==="margin"?f+=parseFloat(d.css(a,"margin"+this))||0:f-=parseFloat(d.css(a,"border"+this+"Width"))||0});return f}function ba(a,b){
+b.src?d.ajax({
+url:b.src,async:!1,dataType:"script"}):d.globalEval(b.text||b.textContent||b.innerHTML||""),b.parentNode&&b.parentNode.removeChild(b)}function _(a){
+return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function $(a,b){
+if(b.nodeType===1){
+var c=b.nodeName.toLowerCase();b.clearAttributes(),b.mergeAttributes(a);if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){
+if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(d.expando)}}function Z(a,b){
+if(b.nodeType===1&&d.hasData(a)){
+var c=d.expando,e=d.data(a),f=d.data(b,e);if(e=e[c]){
+var g=e.events;f=f[c]=d.extend({
+},e);if(g){
+delete f.handle,f.events={
+};for(var h in g)for(var i=0,j=g[h].length;i<j;i++)d.event.add(b,h+(g[h][i].namespace?".":"")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function Y(a,b){
+return d.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function O(a,b,c){
+if(d.isFunction(b))return d.grep(a,function(a,d){
+var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return d.grep(a,function(a,d){
+return a===b===c});if(typeof b==="string"){
+var e=d.grep(a,function(a){
+return a.nodeType===1});if(J.test(b))return d.filter(b,e,!c);b=d.filter(b,e)}return d.grep(a,function(a,e){
+return d.inArray(a,b)>=0===c})}function N(a){
+return!a||!a.parentNode||a.parentNode.nodeType===11}function F(a,b){
+return(a&&a!=="*"?a+".":"")+b.replace(r,"`").replace(s,"&")}function E(a){
+var b,c,e,f,g,h,i,j,k,l,m,n,o,q=[],r=[],s=d._data(this,"events");if(a.liveFired!==this&&s&&s.live&&!a.target.disabled&&(!a.button||a.type!=="click")){
+a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var t=s.live.slice(0);for(i=0;i<t.length;i++)g=t[i],g.origType.replace(p,"")===a.type?r.push(g.selector):t.splice(i--,1);f=d(a.target).closest(r,a.currentTarget);for(j=0,k=f.length;j<k;j++){
+m=f[j];for(i=0;i<t.length;i++){
+g=t[i];if(m.selector===g.selector&&(!n||n.test(g.namespace))&&!m.elem.disabled){
+h=m.elem,e=null;if(g.preType==="mouseenter"||g.preType==="mouseleave")a.type=g.preType,e=d(a.relatedTarget).closest(g.selector)[0];(!e||e!==h)&&q.push({
+elem:h,handleObj:g,level:m.level})}}}for(j=0,k=q.length;j<k;j++){
+f=q[j];if(c&&f.level>c)break;a.currentTarget=f.elem,a.data=f.handleObj.data,a.handleObj=f.handleObj,o=f.handleObj.origHandler.apply(f.elem,arguments);if(o===!1||a.isPropagationStopped()){
+c=f.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function C(a,c,e){
+var f=d.extend({
+},e[0]);f.type=a,f.originalEvent={
+},f.liveFired=b,d.event.handle.call(c,f),f.isDefaultPrevented()&&e[0].preventDefault()}function w(){
+return!0}function v(){
+return!1}function g(a){
+for(var b in a)if(b!=="toJSON")return!1;return!0}function f(a,c,f){
+if(f===b&&a.nodeType===1){
+f=a.getAttribute("data-"+c);if(typeof f==="string"){
+try{
+f=f==="true"?!0:f==="false"?!1:f==="null"?null:d.isNaN(f)?e.test(f)?d.parseJSON(f):f:parseFloat(f)}catch(g){
+}d.data(a,c,f)}else f=b}return f}var c=a.document,d=function(){
+function I(){
+if(!d.isReady){
+try{
+c.documentElement.doScroll("left")}catch(a){
+setTimeout(I,1);return}d.ready()}}var d=function(a,b){
+return new d.fn.init(a,b,g)},e=a.jQuery,f=a.$,g,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,i=/\S/,j=/^\s+/,k=/\s+$/,l=/\d/,m=/^<(\w+)\s*\/?<?vlc print '>'?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=navigator.userAgent,w,x=!1,y,z="then done fail isResolved isRejected promise".split(" "),A,B=Object.prototype.toString,C=Object.prototype.hasOwnProperty,D=Array.prototype.push,E=Array.prototype.slice,F=String.prototype.trim,G=Array.prototype.indexOf,H={
+};d.fn=d.prototype={
+constructor:d,init:function(a,e,f){
+var g,i,j,k;if(!a)return this;if(a.nodeType){
+this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!e&&c.body){
+this.context=c,this[0]=c.body,this.selector="body",this.length=1;return this}if(typeof a==="string"){
+g=h.exec(a);if(!g||!g[1]&&e)return!e||e.jquery?(e||f).find(a):this.constructor(e).find(a);if(g[1]){
+e=e instanceof d?e[0]:e,k=e?e.ownerDocument||e:c,j=m.exec(a),j?d.isPlainObject(e)?(a=[c.createElement(j[1])],d.fn.attr.call(a,e,!0)):a=[k.createElement(j[1])]:(j=d.buildFragment([g[1]],[k]),a=(j.cacheable?d.clone(j.fragment):j.fragment).childNodes);return d.merge(this,a)}i=c.getElementById(g[2]);if(i&&i.parentNode){
+if(i.id!==g[2])return f.find(a);this.length=1,this[0]=i}this.context=c,this.selector=a;return this}if(d.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return d.makeArray(a,this)},selector:"",jquery:"1.5.1",length:0,size:function(){
+return this.length},toArray:function(){
+return E.call(this,0)},get:function(a){
+return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){
+var e=this.constructor();d.isArray(a)?D.apply(e,a):d.merge(e,a),e.prevObject=this,e.context=this.context,b==="find"?e.selector=this.selector+(this.selector?" ":"")+c:b&&(e.selector=this.selector+"."+b+"("+c+")");return e},each:function(a,b){
+return d.each(this,a,b)},ready:function(a){
+d.bindReady(),y.done(a);return this},eq:function(a){
+return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){
+return this.eq(0)},last:function(){
+return this.eq(-1)},slice:function(){
+return this.pushStack(E.apply(this,arguments),"slice",E.call(arguments).join(","))},map:function(a){
+return this.pushStack(d.map(this,function(b,c){
+return a.call(b,c,b)}))},end:function(){
+return this.prevObject||this.constructor(null)},push:D,sort:[].sort,splice:[].splice},d.fn.init.prototype=d.fn,d.extend=d.fn.extend=function(){
+var a,c,e,f,g,h,i=arguments[0]||{
+},j=1,k=arguments.length,l=!1;typeof i==="boolean"&&(l=i,i=arguments[1]||{
+},j=2),typeof i!=="object"&&!d.isFunction(i)&&(i={
+}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){
+e=i[c],f=a[c];if(i===f)continue;l&&f&&(d.isPlainObject(f)||(g=d.isArray(f)))?(g?(g=!1,h=e&&d.isArray(e)?e:[]):h=e&&d.isPlainObject(e)?e:{
+},i[c]=d.extend(l,h,f)):f!==b&&(i[c]=f)}return i},d.extend({
+noConflict:function(b){
+a.$=f,b&&(a.jQuery=e);return d},isReady:!1,readyWait:1,ready:function(a){
+a===!0&&d.readyWait--;if(!d.readyWait||a!==!0&&!d.isReady){
+if(!c.body)return setTimeout(d.ready,1);d.isReady=!0;if(a!==!0&&--d.readyWait>0)return;y.resolveWith(c,[d]),d.fn.trigger&&d(c).trigger("ready").unbind("ready")}},bindReady:function(){
+if(!x){
+x=!0;if(c.readyState==="complete")return setTimeout(d.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",A,!1),a.addEventListener("load",d.ready,!1);else if(c.attachEvent){
+c.attachEvent("onreadystatechange",A),a.attachEvent("onload",d.ready);var b=!1;try{
+b=a.frameElement==null}catch(e){
+}c.documentElement.doScroll&&b&&I()}}},isFunction:function(a){
+return d.type(a)==="function"},isArray:Array.isArray||function(a){
+return d.type(a)==="array"},isWindow:function(a){
+return a&&typeof a==="object"&&"setInterval"in a},isNaN:function(a){
+return a==null||!l.test(a)||isNaN(a)},type:function(a){
+return a==null?String(a):H[B.call(a)]||"object"},isPlainObject:function(a){
+if(!a||d.type(a)!=="object"||a.nodeType||d.isWindow(a))return!1;if(a.constructor&&!C.call(a,"constructor")&&!C.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a){
+}return c===b||C.call(a,c)},isEmptyObject:function(a){
+for(var b in a)return!1;return!0},error:function(a){
+throw a},parseJSON:function(b){
+if(typeof b!=="string"||!b)return null;b=d.trim(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return a.JSON&&a.JSON.parse?a.JSON.parse(b):(new Function("return "+b))();d.error("Invalid JSON: "+b)},parseXML:function(b,c,e){
+a.DOMParser?(e=new DOMParser,c=e.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),e=c.documentElement,(!e||!e.nodeName||e.nodeName==="parsererror")&&d.error("Invalid XML: "+b);return c},noop:function(){
+},globalEval:function(a){
+if(a&&i.test(a)){
+var b=c.head||c.getElementsByTagName("head")[0]||c.documentElement,e=c.createElement("script");d.support.scriptEval()?e.appendChild(c.createTextNode(a)):e.text=a,b.insertBefore(e,b.firstChild),b.removeChild(e)}},nodeName:function(a,b){
+return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,e){
+var f,g=0,h=a.length,i=h===b||d.isFunction(a);if(e){
+if(i){
+for(f in a)if(c.apply(a[f],e)===!1)break}else for(;g<h;)if(c.apply(a[g++],e)===!1)break}else if(i){
+for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(var j=a[0];g<h&&c.call(j,g,j)!==!1;j=a[++g]){
+}return a},trim:F?function(a){
+return a==null?"":F.call(a)}:function(a){
+return a==null?"":(a+"").replace(j,"").replace(k,"")},makeArray:function(a,b){
+var c=b||[];if(a!=null){
+var e=d.type(a);a.length==null||e==="string"||e==="function"||e==="regexp"||d.isWindow(a)?D.call(c,a):d.merge(c,a)}return c},inArray:function(a,b){
+if(b.indexOf)return b.indexOf(a);for(var c=0,d=b.length;c<d;c++)if(b[c]===a)return c;return-1},merge:function(a,c){
+var d=a.length,e=0;if(typeof c.length==="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){
+var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,b,c){
+var d=[],e;for(var f=0,g=a.length;f<g;f++)e=b(a[f],f,c),e!=null&&(d[d.length]=e);return d.concat.apply([],d)},guid:1,proxy:function(a,c,e){
+arguments.length===2&&(typeof c==="string"?(e=a,a=e[c],c=b):c&&!d.isFunction(c)&&(e=c,c=b)),!c&&a&&(c=function(){
+return a.apply(e||this,arguments)}),a&&(c.guid=a.guid=a.guid||c.guid||d.guid++);return c},access:function(a,c,e,f,g,h){
+var i=a.length;if(typeof c==="object"){
+for(var j in c)d.access(a,j,c[j],f,g,e);return a}if(e!==b){
+f=!h&&f&&d.isFunction(e);for(var k=0;k<i;k++)g(a[k],c,f?e.call(a[k],k,g(a[k],c)):e,h);return a}return i?g(a[0],c):b},now:function(){
+return(new Date).getTime()},_Deferred:function(){
+var a=[],b,c,e,f={
+done:function(){
+if(!e){
+var c=arguments,g,h,i,j,k;b&&(k=b,b=0);for(g=0,h=c.length;g<h;g++)i=c[g],j=d.type(i),j==="array"?f.done.apply(f,i):j==="function"&&a.push(i);k&&f.resolveWith(k[0],k[1])}return this},resolveWith:function(d,f){
+if(!e&&!b&&!c){
+c=1;try{
+while(a[0])a.shift().apply(d,f)}catch(g){
+throw g}finally{
+b=[d,f],c=0}}return this},resolve:function(){
+f.resolveWith(d.isFunction(this.promise)?this.promise():this,arguments);return this},isResolved:function(){
+return c||b},cancel:function(){
+e=1,a=[];return this}};return f},Deferred:function(a){
+var b=d._Deferred(),c=d._Deferred(),e;d.extend(b,{
+then:function(a,c){
+b.done(a).fail(c);return this},fail:c.done,rejectWith:c.resolveWith,reject:c.resolve,isRejected:c.isResolved,promise:function(a){
+if(a==null){
+if(e)return e;e=a={
+}}var c=z.length;while(c--)a[z[c]]=b[z[c]];return a}}),b.done(c.cancel).fail(b.cancel),delete b.cancel,a&&a.call(b,b);return b},when:function(a){
+var b=arguments.length,c=b<=1&&a&&d.isFunction(a.promise)?a:d.Deferred(),e=c.promise();if(b>1){
+var f=E.call(arguments,0),g=b,h=function(a){
+return function(b){
+f[a]=arguments.length>1?E.call(arguments,0):b,--g||c.resolveWith(e,f)}};while(b--)a=f[b],a&&d.isFunction(a.promise)?a.promise().then(h(b),c.reject):--g;g||c.resolveWith(e,f)}else c!==a&&c.resolve(a);return e},uaMatch:function(a){
+a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{
+browser:b[1]||"",version:b[2]||"0"}},sub:function(){
+function a(b,c){
+return new a.fn.init(b,c)}d.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.subclass=this.subclass,a.fn.init=function b(b,c){
+c&&c instanceof d&&!(c instanceof a)&&(c=a(c));return d.fn.init.call(this,b,c,e)},a.fn.init.prototype=a.fn;var e=a(c);return a},browser:{
+}}),y=d._Deferred(),d.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){
+H["[object "+b+"]"]=b.toLowerCase()}),w=d.uaMatch(v),w.browser&&(d.browser[w.browser]=!0,d.browser.version=w.version),d.browser.webkit&&(d.browser.safari=!0),G&&(d.inArray=function(a,b){
+return G.call(b,a)}),i.test(" ")&&(j=/^[\s\xA0]+/,k=/[\s\xA0]+$/),g=d(c),c.addEventListener?A=function(){
+c.removeEventListener("DOMContentLoaded",A,!1),d.ready()}:c.attachEvent&&(A=function(){
+c.readyState==="complete"&&(c.detachEvent("onreadystatechange",A),d.ready())});return d}();(function(){
+d.support={
+};var b=c.createElement("div");b.style.display="none",b.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var e=b.getElementsByTagName("*"),f=b.getElementsByTagName("a")[0],g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=b.getElementsByTagName("input")[0];if(e&&e.length&&f){
+d.support={
+leadingWhitespace:b.firstChild.nodeType===3,tbody:!b.getElementsByTagName("tbody").length,htmlSerialize:!!b.getElementsByTagName("link").length,style:/red/.test(f.getAttribute("style")),hrefNormalized:f.getAttribute("href")==="/a",opacity:/^0.55$/.test(f.style.opacity),cssFloat:!!f.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,deleteExpando:!0,optDisabled:!1,checkClone:!1,noCloneEvent:!0,noCloneChecked:!0,boxModel:null,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableHiddenOffsets:!0},i.checked=!0,d.support.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,d.support.optDisabled=!h.disabled;var j=null;d.support.scriptEval=function(){
+if(j===null){
+var b=c.documentElement,e=c.createElement("script"),f="script"+d.now();try{
+e.appendChild(c.createTextNode("window."+f+"=1;"))}catch(g){
+}b.insertBefore(e,b.firstChild),a[f]?(j=!0,delete a[f]):j=!1,b.removeChild(e),b=e=f=null}return j};try{
+delete b.test}catch(k){
+d.support.deleteExpando=!1}!b.addEventListener&&b.attachEvent&&b.fireEvent&&(b.attachEvent("onclick",function l(){
+d.support.noCloneEvent=!1,b.detachEvent("onclick",l)}),b.cloneNode(!0).fireEvent("onclick")),b=c.createElement("div"),b.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";var m=c.createDocumentFragment();m.appendChild(b.firstChild),d.support.checkClone=m.cloneNode(!0).cloneNode(!0).lastChild.checked,d(function(){
+var a=c.createElement("div"),b=c.getElementsByTagName("body")[0];if(b){
+a.style.width=a.style.paddingLeft="1px",b.appendChild(a),d.boxModel=d.support.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,d.support.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="<div style='width:4px;'></div>",d.support.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>";var e=a.getElementsByTagName("td");d.support.reliableHiddenOffsets=e[0].offsetHeight===0,e[0].style.display="",e[1].style.display="none",d.support.reliableHiddenOffsets=d.support.reliableHiddenOffsets&&e[0].offsetHeight===0,a.innerHTML="",b.removeChild(a).style.display="none",a=e=null}});var n=function(a){
+var b=c.createElement("div");a="on"+a;if(!b.attachEvent)return!0;var d=a in b;d||(b.setAttribute(a,"return;"),d=typeof b[a]==="function"),b=null;return d};d.support.submitBubbles=n("submit"),d.support.changeBubbles=n("change"),b=e=f=null}})();var e=/^(?:\{.*\}|\[.*\])$/;d.extend({
+cache:{
+},uuid:0,expando:"jQuery"+(d.fn.jquery+Math.random()).replace(/\D/g,""),noData:{
+embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){
+a=a.nodeType?d.cache[a[d.expando]]:a[d.expando];return!!a&&!g(a)},data:function(a,c,e,f){
+if(d.acceptData(a)){
+var g=d.expando,h=typeof c==="string",i,j=a.nodeType,k=j?d.cache:a,l=j?a[d.expando]:a[d.expando]&&d.expando;if((!l||f&&l&&!k[l][g])&&h&&e===b)return;l||(j?a[d.expando]=l=++d.uuid:l=d.expando),k[l]||(k[l]={
+},j||(k[l].toJSON=d.noop));if(typeof c==="object"||typeof c==="function")f?k[l][g]=d.extend(k[l][g],c):k[l]=d.extend(k[l],c);i=k[l],f&&(i[g]||(i[g]={
+}),i=i[g]),e!==b&&(i[c]=e);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[c]:i}},removeData:function(b,c,e){
+if(d.acceptData(b)){
+var f=d.expando,h=b.nodeType,i=h?d.cache:b,j=h?b[d.expando]:d.expando;if(!i[j])return;if(c){
+var k=e?i[j][f]:i[j];if(k){
+delete k[c];if(!g(k))return}}if(e){
+delete i[j][f];if(!g(i[j]))return}var l=i[j][f];d.support.deleteExpando||i!=a?delete i[j]:i[j]=null,l?(i[j]={
+},h||(i[j].toJSON=d.noop),i[j][f]=l):h&&(d.support.deleteExpando?delete b[d.expando]:b.removeAttribute?b.removeAttribute(d.expando):b[d.expando]=null)}},_data:function(a,b,c){
+return d.data(a,b,c,!0)},acceptData:function(a){
+if(a.nodeName){
+var b=d.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),d.fn.extend({
+data:function(a,c){
+var e=null;if(typeof a==="undefined"){
+if(this.length){
+e=d.data(this[0]);if(this[0].nodeType===1){
+var g=this[0].attributes,h;for(var i=0,j=g.length;i<j;i++)h=g[i].name,h.indexOf("data-")===0&&(h=h.substr(5),f(this[0],h,e[h]))}}return e}if(typeof a==="object")return this.each(function(){
+d.data(this,a)});var k=a.split(".");k[1]=k[1]?"."+k[1]:"";if(c===b){
+e=this.triggerHandler("getData"+k[1]+"!",[k[0]]),e===b&&this.length&&(e=d.data(this[0],a),e=f(this[0],a,e));return e===b&&k[1]?this.data(k[0]):e}return this.each(function(){
+var b=d(this),e=[k[0],c];b.triggerHandler("setData"+k[1]+"!",e),d.data(this,a,c),b.triggerHandler("changeData"+k[1]+"!",e)})},removeData:function(a){
+return this.each(function(){
+d.removeData(this,a)})}}),d.extend({
+queue:function(a,b,c){
+if(a){
+b=(b||"fx")+"queue";var e=d._data(a,b);if(!c)return e||[];!e||d.isArray(c)?e=d._data(a,b,d.makeArray(c)):e.push(c);return e}},dequeue:function(a,b){
+b=b||"fx";var c=d.queue(a,b),e=c.shift();e==="inprogress"&&(e=c.shift()),e&&(b==="fx"&&c.unshift("inprogress"),e.call(a,function(){
+d.dequeue(a,b)})),c.length||d.removeData(a,b+"queue",!0)}}),d.fn.extend({
+queue:function(a,c){
+typeof a!=="string"&&(c=a,a="fx");if(c===b)return d.queue(this[0],a);return this.each(function(b){
+var e=d.queue(this,a,c);a==="fx"&&e[0]!=="inprogress"&&d.dequeue(this,a)})},dequeue:function(a){
+return this.each(function(){
+d.dequeue(this,a)})},delay:function(a,b){
+a=d.fx?d.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(){
+var c=this;setTimeout(function(){
+d.dequeue(c,b)},a)})},clearQueue:function(a){
+return this.queue(a||"fx",[])}});var h=/[\n\t\r]/g,i=/\s+/,j=/\r/g,k=/^(?:href|src|style)$/,l=/^(?:button|input)$/i,m=/^(?:button|input|object|select|textarea)$/i,n=/^a(?:rea)?$/i,o=/^(?:radio|checkbox)$/i;d.props={
+"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"},d.fn.extend({
+attr:function(a,b){
+return d.access(this,a,b,!0,d.attr)},removeAttr:function(a,b){
+return this.each(function(){
+d.attr(this,a,""),this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){
+if(d.isFunction(a))return this.each(function(b){
+var c=d(this);c.addClass(a.call(this,b,c.attr("class")))});if(a&&typeof a==="string"){
+var b=(a||"").split(i);for(var c=0,e=this.length;c<e;c++){
+var f=this[c];if(f.nodeType===1)if(f.className){
+var g=" "+f.className+" ",h=f.className;for(var j=0,k=b.length;j<k;j++)g.indexOf(" "+b[j]+" ")<0&&(h+=" "+b[j]);f.className=d.trim(h)}else f.className=a}}return this},removeClass:function(a){
+if(d.isFunction(a))return this.each(function(b){
+var c=d(this);c.removeClass(a.call(this,b,c.attr("class")))});if(a&&typeof a==="string"||a===b){
+var c=(a||"").split(i);for(var e=0,f=this.length;e<f;e++){
+var g=this[e];if(g.nodeType===1&&g.className)if(a){
+var j=(" "+g.className+" ").replace(h," ");for(var k=0,l=c.length;k<l;k++)j=j.replace(" "+c[k]+" "," ");g.className=d.trim(j)}else g.className=""}}return this},toggleClass:function(a,b){
+var c=typeof a,e=typeof b==="boolean";if(d.isFunction(a))return this.each(function(c){
+var e=d(this);e.toggleClass(a.call(this,c,e.attr("class"),b),b)});return this.each(function(){
+if(c==="string"){
+var f,g=0,h=d(this),j=b,k=a.split(i);while(f=k[g++])j=e?j:!h.hasClass(f),h[j?"addClass":"removeClass"](f)}else if(c==="undefined"||c==="boolean")this.className&&d._data(this,"__className__",this.className),this.className=this.className||a===!1?"":d._data(this,"__className__")||""})},hasClass:function(a){
+var b=" "+a+" ";for(var c=0,d=this.length;c<d;c++)if((" "+this[c].className+" ").replace(h," ").indexOf(b)>-1)return!0;return!1},val:function(a){
+if(!arguments.length){
+var c=this[0];if(c){
+if(d.nodeName(c,"option")){
+var e=c.attributes.value;return!e||e.specified?c.value:c.text}if(d.nodeName(c,"select")){
+var f=c.selectedIndex,g=[],h=c.options,i=c.type==="select-one";if(f<0)return null;for(var k=i?f:0,l=i?f+1:h.length;k<l;k++){
+var m=h[k];if(m.selected&&(d.support.optDisabled?!m.disabled:m.getAttribute("disabled")===null)&&(!m.parentNode.disabled||!d.nodeName(m.parentNode,"optgroup"))){
+a=d(m).val();if(i)return a;g.push(a)}}if(i&&!g.length&&h.length)return d(h[f]).val();return g}if(o.test(c.type)&&!d.support.checkOn)return c.getAttribute("value")===null?"on":c.value;return(c.value||"").replace(j,"")}return b}var n=d.isFunction(a);return this.each(function(b){
+var c=d(this),e=a;if(this.nodeType===1){
+n&&(e=a.call(this,b,c.val())),e==null?e="":typeof e==="number"?e+="":d.isArray(e)&&(e=d.map(e,function(a){
+return a==null?"":a+""}));if(d.isArray(e)&&o.test(this.type))this.checked=d.inArray(c.val(),e)>=0;else if(d.nodeName(this,"select")){
+var f=d.makeArray(e);d("option",this).each(function(){
+this.selected=d.inArray(d(this).val(),f)>=0}),f.length||(this.selectedIndex=-1)}else this.value=e}})}}),d.extend({
+attrFn:{
+val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,e,f){
+if(!a||a.nodeType===3||a.nodeType===8||a.nodeType===2)return b;if(f&&c in d.attrFn)return d(a)[c](e);var g=a.nodeType!==1||!d.isXMLDoc(a),h=e!==b;c=g&&d.props[c]||c;if(a.nodeType===1){
+var i=k.test(c);if(c==="selected"&&!d.support.optSelected){
+var j=a.parentNode;j&&(j.selectedIndex,j.parentNode&&j.parentNode.selectedIndex)}if((c in a||a[c]!==b)&&g&&!i){
+h&&(c==="type"&&l.test(a.nodeName)&&a.parentNode&&d.error("type property can't be changed"),e===null?a.nodeType===1&&a.removeAttribute(c):a[c]=e);if(d.nodeName(a,"form")&&a.getAttributeNode(c))return a.getAttributeNode(c).nodeValue;if(c==="tabIndex"){
+var o=a.getAttributeNode("tabIndex");return o&&o.specified?o.value:m.test(a.nodeName)||n.test(a.nodeName)&&a.href?0:b}return a[c]}if(!d.support.style&&g&&c==="style"){
+h&&(a.style.cssText=""+e);return a.style.cssText}h&&a.setAttribute(c,""+e);if(!a.attributes[c]&&(a.hasAttribute&&!a.hasAttribute(c)))return b;var p=!d.support.hrefNormalized&&g&&i?a.getAttribute(c,2):a.getAttribute(c);return p===null?b:p}h&&(a[c]=e);return a[c]}});var p=/\.(.*)$/,q=/^(?:textarea|input|select)$/i,r=/\./g,s=/ /g,t=/[^\w\s.|`]/g,u=function(a){
+return a.replace(t,"\\$&")};d.event={
+add:function(c,e,f,g){
+if(c.nodeType!==3&&c.nodeType!==8){
+try{
+d.isWindow(c)&&(c!==a&&!c.frameElement)&&(c=a)}catch(h){
+}if(f===!1)f=v;else if(!f)return;var i,j;f.handler&&(i=f,f=i.handler),f.guid||(f.guid=d.guid++);var k=d._data(c);if(!k)return;var l=k.events,m=k.handle;l||(k.events=l={
+}),m||(k.handle=m=function(){
+return typeof d!=="undefined"&&!d.event.triggered?d.event.handle.apply(m.elem,arguments):b}),m.elem=c,e=e.split(" ");var n,o=0,p;while(n=e[o++]){
+j=i?d.extend({
+},i):{
+handler:f,data:g},n.indexOf(".")>-1?(p=n.split("."),n=p.shift(),j.namespace=p.slice(0).sort().join(".")):(p=[],j.namespace=""),j.type=n,j.guid||(j.guid=f.guid);var q=l[n],r=d.event.special[n]||{
+};if(!q){
+q=l[n]=[];if(!r.setup||r.setup.call(c,g,p,m)===!1)c.addEventListener?c.addEventListener(n,m,!1):c.attachEvent&&c.attachEvent("on"+n,m)}r.add&&(r.add.call(c,j),j.handler.guid||(j.handler.guid=f.guid)),q.push(j),d.event.global[n]=!0}c=null}},global:{
+},remove:function(a,c,e,f){
+if(a.nodeType!==3&&a.nodeType!==8){
+e===!1&&(e=v);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=d.hasData(a)&&d._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(e=c.handler,c=c.type);if(!c||typeof c==="string"&&c.charAt(0)==="."){
+c=c||"";for(h in t)d.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){
+r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+d.map(m.slice(0).sort(),u).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!e){
+for(j=0;j<p.length;j++){
+q=p[j];if(l||n.test(q.namespace))d.event.remove(a,r,q.handler,j),p.splice(j--,1)}continue}o=d.event.special[h]||{
+};for(j=f||0;j<p.length;j++){
+q=p[j];if(e.guid===q.guid){
+if(l||n.test(q.namespace))f==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(f!=null)break}}if(p.length===0||f!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&d.removeEvent(a,h,s.handle),g=null,delete t[h]}if(d.isEmptyObject(t)){
+var w=s.handle;w&&(w.elem=null),delete s.events,delete s.handle,d.isEmptyObject(s)&&d.removeData(a,b,!0)}}},trigger:function(a,c,e){
+var f=a.type||a,g=arguments[3];if(!g){
+a=typeof a==="object"?a[d.expando]?a:d.extend(d.Event(f),a):d.Event(f),f.indexOf("!")>=0&&(a.type=f=f.slice(0,-1),a.exclusive=!0),e||(a.stopPropagation(),d.event.global[f]&&d.each(d.cache,function(){
+var b=d.expando,e=this[b];e&&e.events&&e.events[f]&&d.event.trigger(a,c,e.handle.elem)}));if(!e||e.nodeType===3||e.nodeType===8)return b;a.result=b,a.target=e,c=d.makeArray(c),c.unshift(a)}a.currentTarget=e;var h=d._data(e,"handle");h&&h.apply(e,c);var i=e.parentNode||e.ownerDocument;try{
+e&&e.nodeName&&d.noData[e.nodeName.toLowerCase()]||e["on"+f]&&e["on"+f].apply(e,c)===!1&&(a.result=!1,a.preventDefault())}catch(j){
+}if(!a.isPropagationStopped()&&i)d.event.trigger(a,c,i,!0);else if(!a.isDefaultPrevented()){
+var k,l=a.target,m=f.replace(p,""),n=d.nodeName(l,"a")&&m==="click",o=d.event.special[m]||{
+};if((!o._default||o._default.call(e,a)===!1)&&!n&&!(l&&l.nodeName&&d.noData[l.nodeName.toLowerCase()])){
+try{
+l[m]&&(k=l["on"+m],k&&(l["on"+m]=null),d.event.triggered=!0,l[m]())}catch(q){
+}k&&(l["on"+m]=k),d.event.triggered=!1}}},handle:function(c){
+var e,f,g,h,i,j=[],k=d.makeArray(arguments);c=k[0]=d.event.fix(c||a.event),c.currentTarget=this,e=c.type.indexOf(".")<0&&!c.exclusive,e||(g=c.type.split("."),c.type=g.shift(),j=g.slice(0).sort(),h=new RegExp("(^|\\.)"+j.join("\\.(?:.*\\.)?")+"(\\.|$)")),c.namespace=c.namespace||j.join("."),i=d._data(this,"events"),f=(i||{
+})[c.type];if(i&&f){
+f=f.slice(0);for(var l=0,m=f.length;l<m;l++){
+var n=f[l];if(e||h.test(n.namespace)){
+c.handler=n.handler,c.data=n.data,c.handleObj=n;var o=n.handler.apply(this,k);o!==b&&(c.result=o,o===!1&&(c.preventDefault(),c.stopPropagation()));if(c.isImmediatePropagationStopped())break}}}return c.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){
+if(a[d.expando])return a;var e=a;a=d.Event(e);for(var f=this.props.length,g;f;)g=this.props[--f],a[g]=e[g];a.target||(a.target=a.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),!a.relatedTarget&&a.fromElement&&(a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement);if(a.pageX==null&&a.clientX!=null){
+var h=c.documentElement,i=c.body;a.pageX=a.clientX+(h&&h.scrollLeft||i&&i.scrollLeft||0)-(h&&h.clientLeft||i&&i.clientLeft||0),a.pageY=a.clientY+(h&&h.scrollTop||i&&i.scrollTop||0)-(h&&h.clientTop||i&&i.clientTop||0)}a.which==null&&(a.charCode!=null||a.keyCode!=null)&&(a.which=a.charCode!=null?a.charCode:a.keyCode),!a.metaKey&&a.ctrlKey&&(a.metaKey=a.ctrlKey),!a.which&&a.button!==b&&(a.which=a.button&1?1:a.button&2?3:a.button&4?2:0);return a},guid:1e8,proxy:d.proxy,special:{
+ready:{
+setup:d.bindReady,teardown:d.noop},live:{
+add:function(a){
+d.event.add(this,F(a.origType,a.selector),d.extend({
+},a,{
+handler:E,guid:a.handler.guid}))},remove:function(a){
+d.event.remove(this,F(a.origType,a.selector),a)}},beforeunload:{
+setup:function(a,b,c){
+d.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){
+this.onbeforeunload===b&&(this.onbeforeunload=null)}}}},d.removeEvent=c.removeEventListener?function(a,b,c){
+a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){
+a.detachEvent&&a.detachEvent("on"+b,c)},d.Event=function(a){
+if(!this.preventDefault)return new d.Event(a);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?w:v):this.type=a,this.timeStamp=d.now(),this[d.expando]=!0},d.Event.prototype={
+preventDefault:function(){
+this.isDefaultPrevented=w;var a=this.originalEvent;a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){
+this.isPropagationStopped=w;var a=this.originalEvent;a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){
+this.isImmediatePropagationStopped=w,this.stopPropagation()},isDefaultPrevented:v,isPropagationStopped:v,isImmediatePropagationStopped:v};var x=function(a){
+var b=a.relatedTarget;try{
+if(b!==c&&!b.parentNode)return;while(b&&b!==this)b=b.parentNode;b!==this&&(a.type=a.data,d.event.handle.apply(this,arguments))}catch(e){
+}},y=function(a){
+a.type=a.data,d.event.handle.apply(this,arguments)};d.each({
+mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){
+d.event.special[a]={
+setup:function(c){
+d.event.add(this,b,c&&c.selector?y:x,a)},teardown:function(a){
+d.event.remove(this,b,a&&a.selector?y:x)}}}),d.support.submitBubbles||(d.event.special.submit={
+setup:function(a,b){
+if(this.nodeName&&this.nodeName.toLowerCase()!=="form")d.event.add(this,"click.specialSubmit",function(a){
+var b=a.target,c=b.type;(c==="submit"||c==="image")&&d(b).closest("form").length&&C("submit",this,arguments)}),d.event.add(this,"keypress.specialSubmit",function(a){
+var b=a.target,c=b.type;(c==="text"||c==="password")&&d(b).closest("form").length&&a.keyCode===13&&C("submit",this,arguments)});else return!1},teardown:function(a){
+d.event.remove(this,".specialSubmit")}});if(!d.support.changeBubbles){
+var z,A=function(a){
+var b=a.type,c=a.value;b==="radio"||b==="checkbox"?c=a.checked:b==="select-multiple"?c=a.selectedIndex>-1?d.map(a.options,function(a){
+return a.selected}).join("-"):"":a.nodeName.toLowerCase()==="select"&&(c=a.selectedIndex);return c},B=function B(a){
+var c=a.target,e,f;if(q.test(c.nodeName)&&!c.readOnly){
+e=d._data(c,"_change_data"),f=A(c),(a.type!=="focusout"||c.type!=="radio")&&d._data(c,"_change_data",f);if(e===b||f===e)return;if(e!=null||f)a.type="change",a.liveFired=b,d.event.trigger(a,arguments[1],c)}};d.event.special.change={
+filters:{
+focusout:B,beforedeactivate:B,click:function(a){
+var b=a.target,c=b.type;(c==="radio"||c==="checkbox"||b.nodeName.toLowerCase()==="select")&&B.call(this,a)},keydown:function(a){
+var b=a.target,c=b.type;(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&B.call(this,a)},beforeactivate:function(a){
+var b=a.target;d._data(b,"_change_data",A(b))}},setup:function(a,b){
+if(this.type==="file")return!1;for(var c in z)d.event.add(this,c+".specialChange",z[c]);return q.test(this.nodeName)},teardown:function(a){
+d.event.remove(this,".specialChange");return q.test(this.nodeName)}},z=d.event.special.change.filters,z.focus=z.beforeactivate}c.addEventListener&&d.each({
+focus:"focusin",blur:"focusout"},function(a,b){
+function c(a){
+a=d.event.fix(a),a.type=b;return d.event.handle.call(this,a)}d.event.special[b]={
+setup:function(){
+this.addEventListener(a,c,!0)},teardown:function(){
+this.removeEventListener(a,c,!0)}}}),d.each(["bind","one"],function(a,c){
+d.fn[c]=function(a,e,f){
+if(typeof a==="object"){
+for(var g in a)this[c](g,e,a[g],f);return this}if(d.isFunction(e)||e===!1)f=e,e=b;var h=c==="one"?d.proxy(f,function(a){
+d(this).unbind(a,h);return f.apply(this,arguments)}):f;if(a==="unload"&&c!=="one")this.one(a,e,f);else for(var i=0,j=this.length;i<j;i++)d.event.add(this[i],a,h,e);return this}}),d.fn.extend({
+unbind:function(a,b){
+if(typeof a!=="object"||a.preventDefault)for(var e=0,f=this.length;e<f;e++)d.event.remove(this[e],a,b);else for(var c in a)this.unbind(c,a[c]);return this},delegate:function(a,b,c,d){
+return this.live(b,c,d,a)},undelegate:function(a,b,c){
+return arguments.length===0?this.unbind("live"):this.die(b,null,c,a)},trigger:function(a,b){
+return this.each(function(){
+d.event.trigger(a,b,this)})},triggerHandler:function(a,b){
+if(this[0]){
+var c=d.Event(a);c.preventDefault(),c.stopPropagation(),d.event.trigger(c,b,this[0]);return c.result}},toggle:function(a){
+var b=arguments,c=1;while(c<b.length)d.proxy(a,b[c++]);return this.click(d.proxy(a,function(e){
+var f=(d._data(this,"lastToggle"+a.guid)||0)%c;d._data(this,"lastToggle"+a.guid,f+1),e.preventDefault();return b[f].apply(this,arguments)||!1}))},hover:function(a,b){
+return this.mouseenter(a).mouseleave(b||a)}});var D={
+focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};d.each(["live","die"],function(a,c){
+d.fn[c]=function(a,e,f,g){
+var h,i=0,j,k,l,m=g||this.selector,n=g?this:d(this.context);if(typeof a==="object"&&!a.preventDefault){
+for(var o in a)n[c](o,e,a[o],m);return this}d.isFunction(e)&&(f=e,e=b),a=(a||"").split(" ");while((h=a[i++])!=null){
+j=p.exec(h),k="",j&&(k=j[0],h=h.replace(p,""));if(h==="hover"){
+a.push("mouseenter"+k,"mouseleave"+k);continue}l=h,h==="focus"||h==="blur"?(a.push(D[h]+k),h=h+k):h=(D[h]||h)+k;if(c==="live")for(var q=0,r=n.length;q<r;q++)d.event.add(n[q],"live."+F(h,m),{
+data:e,selector:m,handler:f,origType:h,origHandler:f,preType:l});else n.unbind("live."+F(h,m),f)}return this}}),d.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){
+d.fn[b]=function(a,c){
+c==null&&(c=a,a=null);return arguments.length>0?this.bind(b,a,c):this.trigger(b)},d.attrFn&&(d.attrFn[b]=!0)}),function(){
+function u(a,b,c,d,e,f){
+for(var g=0,h=d.length;g<h;g++){
+var i=d[g];if(i){
+var j=!1;i=i[a];while(i){
+if(i.sizcache===c){
+j=d[i.sizset];break}if(i.nodeType===1){
+f||(i.sizcache=c,i.sizset=g);if(typeof b!=="string"){
+if(i===b){
+j=!0;break}}else if(k.filter(b,[i]).length>0){
+j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){
+for(var g=0,h=d.length;g<h;g++){
+var i=d[g];if(i){
+var j=!1;i=i[a];while(i){
+if(i.sizcache===c){
+j=d[i.sizset];break}i.nodeType===1&&!f&&(i.sizcache=c,i.sizset=g);if(i.nodeName.toLowerCase()===b){
+j=i;break}i=i[a]}d[g]=j}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){
+h=!1;return 0});var k=function(b,d,e,g){
+e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!=="string")return e;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{
+a.exec(""),i=a.exec(y);if(i){
+y=i[3],x.push(i[1]);if(i[2]){
+o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{
+j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{
+!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){
+q=g?{
+expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(f.call(n)==="[object Array]")if(u)if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&e.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&e.push(j[t]);else e.push.apply(e,n);else p(n,e);o&&(k(o,h,e,g),k.uniqueSort(e));return e};k.uniqueSort=function(a){
+if(r){
+g=h,a.sort(r);if(g)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},k.matches=function(a,b){
+return k(a,null,null,b)},k.matchesSelector=function(a,b){
+return k(b,null,null,[a]).length>0},k.find=function(a,b,c){
+var d;if(!a)return[];for(var e=0,f=l.order.length;e<f;e++){
+var g,h=l.order[e];if(g=l.leftMatch[h].exec(a)){
+var j=g[1];g.splice(1,1);if(j.substr(j.length-1)!=="\\"){
+g[1]=(g[1]||"").replace(i,""),d=l.find[h](g,b,c);if(d!=null){
+a=a.replace(l.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!=="undefined"?b.getElementsByTagName("*"):[]);return{
+set:d,expr:a}},k.filter=function(a,c,d,e){
+var f,g,h=a,i=[],j=c,m=c&&c[0]&&k.isXML(c[0]);while(a&&c.length){
+for(var n in l.filter)if((f=l.leftMatch[n].exec(a))!=null&&f[2]){
+var o,p,q=l.filter[n],r=f[1];g=!1,f.splice(1,1);if(r.substr(r.length-1)==="\\")continue;j===i&&(i=[]);if(l.preFilter[n]){
+f=l.preFilter[n](f,j,d,i,e,m);if(f){
+if(f===!0)continue}else g=o=!0}if(f)for(var s=0;(p=j[s])!=null;s++)if(p){
+o=q(p,f,s,j);var t=e^!!o;d&&o!=null?t?g=!0:j[s]=!1:t&&(i.push(p),g=!0)}if(o!==b){
+d||(j=i),a=a.replace(l.match[n],"");if(!g)return[];break}}if(a===h)if(g==null)k.error(a);else break;h=a}return j},k.error=function(a){
+throw"Syntax error, unrecognized expression: "+a};var l=k.selectors={
+order:["ID","NAME","TAG"],match:{
+ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{
+},attrMap:{
+"class":"className","for":"htmlFor"},attrHandle:{
+href:function(a){
+return a.getAttribute("href")},type:function(a){
+return a.getAttribute("type")}},relative:{
+"+":function(a,b){
+var c=typeof b==="string",d=c&&!j.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){
+while((h=h.previousSibling)&&h.nodeType!==1){
+}a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},">":function(a,b){
+var c,d=typeof b==="string",e=0,f=a.length;if(d&&!j.test(b)){
+b=b.toLowerCase();for(;e<f;e++){
+c=a[e];if(c){
+var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{
+for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&k.filter(b,a,!0)}},"":function(a,b,c){
+var d,f=e++,g=u;typeof b==="string"&&!j.test(b)&&(b=b.toLowerCase(),d=b,g=t),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){
+var d,f=e++,g=u;typeof b==="string"&&!j.test(b)&&(b=b.toLowerCase(),d=b,g=t),g("previousSibling",b,f,a,d,c)}},find:{
+ID:function(a,b,c){
+if(typeof b.getElementById!=="undefined"&&!c){
+var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){
+if(typeof b.getElementsByName!=="undefined"){
+var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){
+if(typeof b.getElementsByTagName!=="undefined")return b.getElementsByTagName(a[1])}},preFilter:{
+CLASS:function(a,b,c,d,e,f){
+a=" "+a[1].replace(i,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){
+return a[1].replace(i,"")},TAG:function(a,b){
+return a[1].replace(i,"").toLowerCase()},CHILD:function(a){
+if(a[1]==="nth"){
+a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){
+var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){
+if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{
+var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){
+a.unshift(!0);return a}},filters:{
+enabled:function(a){
+return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){
+return a.disabled===!0},checked:function(a){
+return a.checked===!0},selected:function(a){
+a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){
+return!!a.firstChild},empty:function(a){
+return!a.firstChild},has:function(a,b,c){
+return!!k(c[3],a).length},header:function(a){
+return/h\d/i.test(a.nodeName)},text:function(a){
+return"text"===a.getAttribute("type")},radio:function(a){
+return"radio"===a.type},checkbox:function(a){
+return"checkbox"===a.type},file:function(a){
+return"file"===a.type},password:function(a){
+return"password"===a.type},submit:function(a){
+return"submit"===a.type},image:function(a){
+return"image"===a.type},reset:function(a){
+return"reset"===a.type},button:function(a){
+return"button"===a.type||a.nodeName.toLowerCase()==="button"},input:function(a){
+return/input|select|textarea|button/i.test(a.nodeName)}},setFilters:{
+first:function(a,b){
+return b===0},last:function(a,b,c,d){
+return b===d.length-1},even:function(a,b){
+return b%2===0},odd:function(a,b){
+return b%2===1},lt:function(a,b,c){
+return b<c[3]-0},gt:function(a,b,c){
+return b>c[3]-0},nth:function(a,b,c){
+return c[3]-0===b},eq:function(a,b,c){
+return c[3]-0===b}},filter:{
+PSEUDO:function(a,b,c,d){
+var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){
+var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}k.error(e)},CHILD:function(a,b){
+var c=b[1],d=a;switch(c){
+case"only":case"first":while(d=d.previousSibling)if(d.nodeType===1)return!1;if(c==="first")return!0;d=a;case"last":while(d=d.nextSibling)if(d.nodeType===1)return!1;return!0;case"nth":var e=b[2],f=b[3];if(e===1&&f===0)return!0;var g=b[0],h=a.parentNode;if(h&&(h.sizcache!==g||!a.nodeIndex)){
+var i=0;for(d=h.firstChild;d;d=d.nextSibling)d.nodeType===1&&(d.nodeIndex=++i);h.sizcache=g}var j=a.nodeIndex-f;return e===0?j===0:j%e===0&&j/e>=0}},ID:function(a,b){
+return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){
+return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){
+return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){
+var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){
+var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){
+return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){
+a=Array.prototype.slice.call(a,0);if(b){
+b.push.apply(b,a);return b}return a};try{
+Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){
+p=function(a,b){
+var c=0,d=b||[];if(f.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length==="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var r,s;c.documentElement.compareDocumentPosition?r=function(a,b){
+if(a===b){
+g=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(r=function(a,b){
+var c,d,e=[],f=[],h=a.parentNode,i=b.parentNode,j=h;if(a===b){
+g=!0;return 0}if(h===i)return s(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return s(e[k],f[k]);return k===c?s(a,f[k],-1):s(e[k],b,1)},s=function(a,b,c){
+if(a===b)return c;var d=a.nextSibling;while(d){
+if(d===b)return-1;d=d.nextSibling}return 1}),k.getText=function(a){
+var b="",c;for(var d=0;a[d];d++)c=a[d],c.nodeType===3||c.nodeType===4?b+=c.nodeValue:c.nodeType!==8&&(b+=k.getText(c.childNodes));return b},function(){
+var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){
+if(typeof c.getElementById!=="undefined"&&!d){
+var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!=="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){
+var c=typeof a.getAttributeNode!=="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){
+var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){
+var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){
+var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!=="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){
+return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){
+var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){
+k=function(b,e,f,g){
+e=e||c;if(!g&&!k.isXML(e)){
+var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){
+if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){
+if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){
+var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{
+return p(e.querySelectorAll(b),f)}catch(j){
+}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){
+var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{
+if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){
+}finally{
+n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){
+var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector,d=!1;try{
+b.call(c.documentElement,"[test!='']:sizzle")}catch(e){
+d=!0}b&&(k.matchesSelector=function(a,c){
+c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{
+if(d||!l.match.PSEUDO.test(c)&&!/!=/.test(c))return b.call(a,c)}catch(e){
+}return k(c,null,null,[a]).length>0})}(),function(){
+var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){
+a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){
+if(typeof b.getElementsByClassName!=="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){
+return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){
+return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){
+return!1},k.isXML=function(a){
+var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){
+var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g<h;g++)k(a,f[g],d);return k.filter(e,d)};d.find=k,d.expr=k.selectors,d.expr[":"]=d.expr.filters,d.unique=k.uniqueSort,d.text=k.getText,d.isXMLDoc=k.isXML,d.contains=k.contains}();var G=/Until$/,H=/^(?:parents|prevUntil|prevAll)/,I=/,/,J=/^.[^:#\[\.,]*$/,K=Array.prototype.slice,L=d.expr.match.POS,M={
+children:!0,contents:!0,next:!0,prev:!0};d.fn.extend({
+find:function(a){
+var b=this.pushStack("","find",a),c=0;for(var e=0,f=this.length;e<f;e++){
+c=b.length,d.find(a,this[e],b);if(e>0)for(var g=c;g<b.length;g++)for(var h=0;h<c;h++)if(b[h]===b[g]){
+b.splice(g--,1);break}}return b},has:function(a){
+var b=d(a);return this.filter(function(){
+for(var a=0,c=b.length;a<c;a++)if(d.contains(this,b[a]))return!0})},not:function(a){
+return this.pushStack(O(this,a,!1),"not",a)},filter:function(a){
+return this.pushStack(O(this,a,!0),"filter",a)},is:function(a){
+return!!a&&d.filter(a,this).length>0},closest:function(a,b){
+var c=[],e,f,g=this[0];if(d.isArray(a)){
+var h,i,j={
+},k=1;if(g&&a.length){
+for(e=0,f=a.length;e<f;e++)i=a[e],j[i]||(j[i]=d.expr.match.POS.test(i)?d(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){
+for(i in j)h=j[i],(h.jquery?h.index(g)>-1:d(g).is(h))&&c.push({
+selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=L.test(a)?d(a,b||this.context):null;for(e=0,f=this.length;e<f;e++){
+g=this[e];while(g){
+if(l?l.index(g)>-1:d.find.matchesSelector(g,a)){
+c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b)break}}c=c.length>1?d.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){
+if(!a||typeof a==="string")return d.inArray(this[0],a?d(a):this.parent().children());return d.inArray(a.jquery?a[0]:a,this)},add:function(a,b){
+var c=typeof a==="string"?d(a,b):d.makeArray(a),e=d.merge(this.get(),c);return this.pushStack(N(c[0])||N(e[0])?e:d.unique(e))},andSelf:function(){
+return this.add(this.prevObject)}}),d.each({
+parent:function(a){
+var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){
+return d.dir(a,"parentNode")},parentsUntil:function(a,b,c){
+return d.dir(a,"parentNode",c)},next:function(a){
+return d.nth(a,2,"nextSibling")},prev:function(a){
+return d.nth(a,2,"previousSibling")},nextAll:function(a){
+return d.dir(a,"nextSibling")},prevAll:function(a){
+return d.dir(a,"previousSibling")},nextUntil:function(a,b,c){
+return d.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){
+return d.dir(a,"previousSibling",c)},siblings:function(a){
+return d.sibling(a.parentNode.firstChild,a)},children:function(a){
+return d.sibling(a.firstChild)},contents:function(a){
+return d.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:d.makeArray(a.childNodes)}},function(a,b){
+d.fn[a]=function(c,e){
+var f=d.map(this,b,c),g=K.call(arguments);G.test(a)||(e=c),e&&typeof e==="string"&&(f=d.filter(e,f)),f=this.length>1&&!M[a]?d.unique(f):f,(this.length>1||I.test(e))&&H.test(a)&&(f=f.reverse());return this.pushStack(f,a,g.join(","))}}),d.extend({
+filter:function(a,b,c){
+c&&(a=":not("+a+")");return b.length===1?d.find.matchesSelector(b[0],a)?[b[0]]:[]:d.find.matches(a,b)},dir:function(a,c,e){
+var f=[],g=a[c];while(g&&g.nodeType!==9&&(e===b||g.nodeType!==1||!d(g).is(e)))g.nodeType===1&&f.push(g),g=g[c];return f},nth:function(a,b,c,d){
+b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){
+var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var P=/ jQuery\d+="(?:\d+|null)"/g,Q=/^\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,S=/<([\w:]+)/,T=/<tbody/i,U=/<|&#?\w+;/,V=/<(?:script|object|embed|option|style)/i,W=/checked\s*(?:[^=]|=\s*.checked.)/i,X={
+option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};X.optgroup=X.option,X.tbody=X.tfoot=X.colgroup=X.caption=X.thead,X.th=X.td,d.support.htmlSerialize||(X._default=[1,"div<div>","</div>"]),d.fn.extend({
+text:function(a){
+if(d.isFunction(a))return this.each(function(b){
+var c=d(this);c.text(a.call(this,b,c.text()))});if(typeof a!=="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return d.text(this)},wrapAll:function(a){
+if(d.isFunction(a))return this.each(function(b){
+d(this).wrapAll(a.call(this,b))});if(this[0]){
+var b=d(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){
+var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){
+if(d.isFunction(a))return this.each(function(b){
+d(this).wrapInner(a.call(this,b))});return this.each(function(){
+var b=d(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){
+return this.each(function(){
+d(this).wrapAll(a)})},unwrap:function(){
+return this.parent().each(function(){
+d.nodeName(this,"body")||d(this).replaceWith(this.childNodes)}).end()},append:function(){
+return this.domManip(arguments,!0,function(a){
+this.nodeType===1&&this.appendChild(a)})},prepend:function(){
+return this.domManip(arguments,!0,function(a){
+this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){
+if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){
+this.parentNode.insertBefore(a,this)});if(arguments.length){
+var a=d(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){
+if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){
+this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){
+var a=this.pushStack(this,"after",arguments);a.push.apply(a,d(arguments[0]).toArray());return a}},remove:function(a,b){
+for(var c=0,e;(e=this[c])!=null;c++)if(!a||d.filter(a,[e]).length)!b&&e.nodeType===1&&(d.cleanData(e.getElementsByTagName("*")),d.cleanData([e])),e.parentNode&&e.parentNode.removeChild(e);return this},empty:function(){
+for(var a=0,b;(b=this[a])!=null;a++){
+b.nodeType===1&&d.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){
+a=a==null?!1:a,b=b==null?a:b;return this.map(function(){
+return d.clone(this,a,b)})},html:function(a){
+if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(P,""):null;if(typeof a!=="string"||V.test(a)||!d.support.leadingWhitespace&&Q.test(a)||X[(S.exec(a)||["",""])[1].toLowerCase()])d.isFunction(a)?this.each(function(b){
+var c=d(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);else{
+a=a.replace(R,"<$1></$2>");try{
+for(var c=0,e=this.length;c<e;c++)this[c].nodeType===1&&(d.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(f){
+this.empty().append(a)}}return this},replaceWith:function(a){
+if(this[0]&&this[0].parentNode){
+if(d.isFunction(a))return this.each(function(b){
+var c=d(this),e=c.html();c.replaceWith(a.call(this,b,e))});typeof a!=="string"&&(a=d(a).detach());return this.each(function(){
+var b=this.nextSibling,c=this.parentNode;d(this).remove(),b?d(b).before(a):d(c).append(a)})}return this.pushStack(d(d.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){
+return this.remove(a,!0)},domManip:function(a,c,e){
+var f,g,h,i,j=a[0],k=[];if(!d.support.checkClone&&arguments.length===3&&typeof j==="string"&&W.test(j))return this.each(function(){
+d(this).domManip(a,c,e,!0)});if(d.isFunction(j))return this.each(function(f){
+var g=d(this);a[0]=j.call(this,f,c?g.html():b),g.domManip(a,c,e)});if(this[0]){
+i=j&&j.parentNode,d.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?f={
+fragment:i}:f=d.buildFragment(a,this,k),h=f.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){
+c=c&&d.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)e.call(c?Y(this[l],g):this[l],f.cacheable||m>1&&l<n?d.clone(h,!0,!0):h)}k.length&&d.each(k,ba)}return this}}),d.buildFragment=function(a,b,e){
+var f,g,h,i=b&&b[0]?b[0].ownerDocument||b[0]:c;a.length===1&&typeof a[0]==="string"&&a[0].length<512&&i===c&&a[0].charAt(0)==="<"&&!V.test(a[0])&&(d.support.checkClone||!W.test(a[0]))&&(g=!0,h=d.fragments[a[0]],h&&(h!==1&&(f=h))),f||(f=i.createDocumentFragment(),d.clean(a,i,f,e)),g&&(d.fragments[a[0]]=h?f:1);return{
+fragment:f,cacheable:g}},d.fragments={
+},d.each({
+appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){
+d.fn[a]=function(c){
+var e=[],f=d(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&f.length===1){
+f[b](this[0]);return this}for(var h=0,i=f.length;h<i;h++){
+var j=(h>0?this.clone(!0):this).get();d(f[h])[b](j),e=e.concat(j)}return this.pushStack(e,a,f.selector)}}),d.extend({
+clone:function(a,b,c){
+var e=a.cloneNode(!0),f,g,h;if((!d.support.noCloneEvent||!d.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!d.isXMLDoc(a)){
+$(a,e),f=_(a),g=_(e);for(h=0;f[h];++h)$(f[h],g[h])}if(b){
+Z(a,e);if(c){
+f=_(a),g=_(e);for(h=0;f[h];++h)Z(f[h],g[h])}}return e},clean:function(a,b,e,f){
+b=b||c,typeof b.createElement==="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var g=[];for(var h=0,i;(i=a[h])!=null;h++){
+typeof i==="number"&&(i+="");if(!i)continue;if(typeof i!=="string"||U.test(i)){
+if(typeof i==="string"){
+i=i.replace(R,"<$1></$2>");var j=(S.exec(i)||["",""])[1].toLowerCase(),k=X[j]||X._default,l=k[0],m=b.createElement("div");m.innerHTML=k[1]+i+k[2];while(l--)m=m.lastChild;if(!d.support.tbody){
+var n=T.test(i),o=j==="table"&&!n?m.firstChild&&m.firstChild.childNodes:k[1]==="<table>"&&!n?m.childNodes:[];for(var p=o.length-1;p>=0;--p)d.nodeName(o[p],"tbody")&&!o[p].childNodes.length&&o[p].parentNode.removeChild(o[p])}!d.support.leadingWhitespace&&Q.test(i)&&m.insertBefore(b.createTextNode(Q.exec(i)[0]),m.firstChild),i=m.childNodes}}else i=b.createTextNode(i);i.nodeType?g.push(i):g=d.merge(g,i)}if(e)for(h=0;g[h];h++)!f||!d.nodeName(g[h],"script")||g[h].type&&g[h].type.toLowerCase()!=="text/javascript"?(g[h].nodeType===1&&g.splice.apply(g,[h+1,0].concat(d.makeArray(g[h].getElementsByTagName("script")))),e.appendChild(g[h])):f.push(g[h].parentNode?g[h].parentNode.removeChild(g[h]):g[h]);return g},cleanData:function(a){
+var b,c,e=d.cache,f=d.expando,g=d.event.special,h=d.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){
+if(j.nodeName&&d.noData[j.nodeName.toLowerCase()])continue;c=j[d.expando];if(c){
+b=e[c]&&e[c][f];if(b&&b.events){
+for(var k in b.events)g[k]?d.event.remove(j,k):d.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[d.expando]:j.removeAttribute&&j.removeAttribute(d.expando),delete e[c]}}}});var bb=/alpha\([^)]*\)/i,bc=/opacity=([^)]*)/,bd=/-([a-z])/ig,be=/([A-Z])/g,bf=/^-?\d+(?:px)?$/i,bg=/^-?\d/,bh={
+position:"absolute",visibility:"hidden",display:"block"},bi=["Left","Right"],bj=["Top","Bottom"],bk,bl,bm,bn=function(a,b){
+return b.toUpperCase()};d.fn.css=function(a,c){
+if(arguments.length===2&&c===b)return this;return d.access(this,a,c,!0,function(a,c,e){
+return e!==b?d.style(a,c,e):d.css(a,c)})},d.extend({
+cssHooks:{
+opacity:{
+get:function(a,b){
+if(b){
+var c=bk(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{
+zIndex:!0,fontWeight:!0,opacity:!0,zoom:!0,lineHeight:!0},cssProps:{
+"float":d.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,e,f){
+if(a&&a.nodeType!==3&&a.nodeType!==8&&a.style){
+var g,h=d.camelCase(c),i=a.style,j=d.cssHooks[h];c=d.cssProps[h]||h;if(e===b){
+if(j&&"get"in j&&(g=j.get(a,!1,f))!==b)return g;return i[c]}if(typeof e==="number"&&isNaN(e)||e==null)return;typeof e==="number"&&!d.cssNumber[h]&&(e+="px");if(!j||!("set"in j)||(e=j.set(a,e))!==b)try{
+i[c]=e}catch(k){
+}}},css:function(a,c,e){
+var f,g=d.camelCase(c),h=d.cssHooks[g];c=d.cssProps[g]||g;if(h&&"get"in h&&(f=h.get(a,!0,e))!==b)return f;if(bk)return bk(a,c,g)},swap:function(a,b,c){
+var d={
+};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]},camelCase:function(a){
+return a.replace(bd,bn)}}),d.curCSS=d.css,d.each(["height","width"],function(a,b){
+d.cssHooks[b]={
+get:function(a,c,e){
+var f;if(c){
+a.offsetWidth!==0?f=bo(a,b,e):d.swap(a,bh,function(){
+f=bo(a,b,e)});if(f<=0){
+f=bk(a,b,b),f==="0px"&&bm&&(f=bm(a,b,b));if(f!=null)return f===""||f==="auto"?"0px":f}if(f<0||f==null){
+f=a.style[b];return f===""||f==="auto"?"0px":f}return typeof f==="string"?f:f+"px"}},set:function(a,b){
+if(!bf.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),d.support.opacity||(d.cssHooks.opacity={
+get:function(a,b){
+return bc.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){
+var c=a.style;c.zoom=1;var e=d.isNaN(b)?"":"alpha(opacity="+b*100+")",f=c.filter||"";c.filter=bb.test(f)?f.replace(bb,e):c.filter+" "+e}}),c.defaultView&&c.defaultView.getComputedStyle&&(bl=function(a,c,e){
+var f,g,h;e=e.replace(be,"-$1").toLowerCase();if(!(g=a.ownerDocument.defaultView))return b;if(h=g.getComputedStyle(a,null))f=h.getPropertyValue(e),f===""&&!d.contains(a.ownerDocument.documentElement,a)&&(f=d.style(a,e));return f}),c.documentElement.currentStyle&&(bm=function(a,b){
+var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bf.test(d)&&bg.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bk=bl||bm,d.expr&&d.expr.filters&&(d.expr.filters.hidden=function(a){
+var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!d.support.reliableHiddenOffsets&&(a.style.display||d.css(a,"display"))==="none"},d.expr.filters.visible=function(a){
+return!d.expr.filters.hidden(a)});var bp=/%20/g,bq=/\[\]$/,br=/\r?\n/g,bs=/#.*$/,bt=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bu=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bv=/(?:^file|^widget|\-extension):$/,bw=/^(?:GET|HEAD)$/,bx=/^\/\//,by=/\?/,bz=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bA=/^(?:select|textarea)/i,bB=/\s+/,bC=/([?&])_=[^&]*/,bD=/(^|\-)([a-z])/g,bE=function(a,b,c){
+return b+c.toUpperCase()},bF=/^([\w\+\.\-]+:)\/\/([^\/?#:]*)(?::(\d+))?/,bG=d.fn.load,bH={
+},bI={
+},bJ,bK;try{
+bJ=c.location.href}catch(bL){
+bJ=c.createElement("a"),bJ.href="",bJ=bJ.href}bK=bF.exec(bJ.toLowerCase()),d.fn.extend({
+load:function(a,c,e){
+if(typeof a!=="string"&&bG)return bG.apply(this,arguments);if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){
+var g=a.slice(f,a.length);a=a.slice(0,f)}var h="GET";c&&(d.isFunction(c)?(e=c,c=b):typeof c==="object"&&(c=d.param(c,d.ajaxSettings.traditional),h="POST"));var i=this;d.ajax({
+url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){
+c=a.responseText,a.isResolved()&&(a.done(function(a){
+c=a}),i.html(g?d("<div>").append(c.replace(bz,"")).find(g):c)),e&&i.each(e,[c,b,a])}});return this},serialize:function(){
+return d.param(this.serializeArray())},serializeArray:function(){
+return this.map(function(){
+return this.elements?d.makeArray(this.elements):this}).filter(function(){
+return this.name&&!this.disabled&&(this.checked||bA.test(this.nodeName)||bu.test(this.type))}).map(function(a,b){
+var c=d(this).val();return c==null?null:d.isArray(c)?d.map(c,function(a,c){
+return{
+name:b.name,value:a.replace(br,"\r\n")}}):{
+name:b.name,value:c.replace(br,"\r\n")}}).get()}}),d.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){
+d.fn[b]=function(a){
+return this.bind(b,a)}}),d.each(["get","post"],function(a,c){
+d[c]=function(a,e,f,g){
+d.isFunction(e)&&(g=g||f,f=e,e=b);return d.ajax({
+type:c,url:a,data:e,success:f,dataType:g})}}),d.extend({
+getScript:function(a,c){
+return d.get(a,b,c,"script")},getJSON:function(a,b,c){
+return d.get(a,b,c,"json")},ajaxSetup:function(a,b){
+b?d.extend(!0,a,d.ajaxSettings,b):(b=a,a=d.extend(!0,d.ajaxSettings,b));for(var c in {
+context:1,url:1})c in b?a[c]=b[c]:c in d.ajaxSettings&&(a[c]=d.ajaxSettings[c]);return a},ajaxSettings:{
+url:bJ,isLocal:bv.test(bK[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{
+xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{
+xml:/xml/,html:/html/,json:/json/},responseFields:{
+xml:"responseXML",text:"responseText"},converters:{
+"* text":a.String,"text html":!0,"text json":d.parseJSON,"text xml":d.parseXML}},ajaxPrefilter:bM(bH),ajaxTransport:bM(bI),ajax:function(a,c){
+function v(a,c,l,n){
+if(r!==2){
+r=2,p&&clearTimeout(p),o=b,m=n||"",u.readyState=a?4:0;var q,t,v,w=l?bP(e,u,l):b,x,y;if(a>=200&&a<300||a===304){
+if(e.ifModified){
+if(x=u.getResponseHeader("Last-Modified"))d.lastModified[k]=x;if(y=u.getResponseHeader("Etag"))d.etag[k]=y}if(a===304)c="notmodified",q=!0;else try{
+t=bQ(e,w),c="success",q=!0}catch(z){
+c="parsererror",v=z}}else{
+v=c;if(!c||a)c="error",a<0&&(a=0)}u.status=a,u.statusText=c,q?h.resolveWith(f,[t,c,u]):h.rejectWith(f,[u,c,v]),u.statusCode(j),j=b,s&&g.trigger("ajax"+(q?"Success":"Error"),[u,e,q?t:v]),i.resolveWith(f,[u,c]),s&&(g.trigger("ajaxComplete",[u,e]),--d.active||d.event.trigger("ajaxStop"))}}typeof a==="object"&&(c=a,a=b),c=c||{
+};var e=d.ajaxSetup({
+},c),f=e.context||e,g=f!==e&&(f.nodeType||f instanceof d)?d(f):d.event,h=d.Deferred(),i=d._Deferred(),j=e.statusCode||{
+},k,l={
+},m,n,o,p,q,r=0,s,t,u={
+readyState:0,setRequestHeader:function(a,b){
+r||(l[a.toLowerCase().replace(bD,bE)]=b);return this},getAllResponseHeaders:function(){
+return r===2?m:null},getResponseHeader:function(a){
+var c;if(r===2){
+if(!n){
+n={
+};while(c=bt.exec(m))n[c[1].toLowerCase()]=c[2]}c=n[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){
+r||(e.mimeType=a);return this},abort:function(a){
+a=a||"abort",o&&o.abort(a),v(0,a);return this}};h.promise(u),u.success=u.done,u.error=u.fail,u.complete=i.done,u.statusCode=function(a){
+if(a){
+var b;if(r<2)for(b in a)j[b]=[j[b],a[b]];else b=a[u.status],u.then(b,b)}return this},e.url=((a||e.url)+"").replace(bs,"").replace(bx,bK[1]+"//"),e.dataTypes=d.trim(e.dataType||"*").toLowerCase().split(bB),e.crossDomain||(q=bF.exec(e.url.toLowerCase()),e.crossDomain=q&&(q[1]!=bK[1]||q[2]!=bK[2]||(q[3]||(q[1]==="http:"?80:443))!=(bK[3]||(bK[1]==="http:"?80:443)))),e.data&&e.processData&&typeof e.data!=="string"&&(e.data=d.param(e.data,e.traditional)),bN(bH,e,c,u);if(r===2)return!1;s=e.global,e.type=e.type.toUpperCase(),e.hasContent=!bw.test(e.type),s&&d.active++===0&&d.event.trigger("ajaxStart");if(!e.hasContent){
+e.data&&(e.url+=(by.test(e.url)?"&":"?")+e.data),k=e.url;if(e.cache===!1){
+var w=d.now(),x=e.url.replace(bC,"$1_="+w);e.url=x+(x===e.url?(by.test(e.url)?"&":"?")+"_="+w:"")}}if(e.data&&e.hasContent&&e.contentType!==!1||c.contentType)l["Content-Type"]=e.contentType;e.ifModified&&(k=k||e.url,d.lastModified[k]&&(l["If-Modified-Since"]=d.lastModified[k]),d.etag[k]&&(l["If-None-Match"]=d.etag[k])),l.Accept=e.dataTypes[0]&&e.accepts[e.dataTypes[0]]?e.accepts[e.dataTypes[0]]+(e.dataTypes[0]!=="*"?", */*; q=0.01":""):e.accepts["*"];for(t in e.headers)u.setRequestHeader(t,e.headers[t]);if(e.beforeSend&&(e.beforeSend.call(f,u,e)===!1||r===2)){
+u.abort();return!1}for(t in {
+success:1,error:1,complete:1})u[t](e[t]);o=bN(bI,e,c,u);if(o){
+u.readyState=1,s&&g.trigger("ajaxSend",[u,e]),e.async&&e.timeout>0&&(p=setTimeout(function(){
+u.abort("timeout")},e.timeout));try{
+r=1,o.send(l,v)}catch(y){
+status<2?v(-1,y):d.error(y)}}else v(-1,"No Transport");return u},param:function(a,c){
+var e=[],f=function(a,b){
+b=d.isFunction(b)?b():b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=d.ajaxSettings.traditional);if(d.isArray(a)||a.jquery&&!d.isPlainObject(a))d.each(a,function(){
+f(this.name,this.value)});else for(var g in a)bO(g,a[g],c,f);return e.join("&").replace(bp,"+")}}),d.extend({
+active:0,lastModified:{
+},etag:{
+}});var bR=d.now(),bS=/(\=)\?(&|$)|()\?\?()/i;d.ajaxSetup({
+jsonp:"callback",jsonpCallback:function(){
+return d.expando+"_"+bR++}}),d.ajaxPrefilter("json jsonp",function(b,c,e){
+var f=typeof b.data==="string";if(b.dataTypes[0]==="jsonp"||c.jsonpCallback||c.jsonp!=null||b.jsonp!==!1&&(bS.test(b.url)||f&&bS.test(b.data))){
+var g,h=b.jsonpCallback=d.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2",m=function(){
+a[h]=i,g&&d.isFunction(i)&&a[h](g[0])};b.jsonp!==!1&&(j=j.replace(bS,l),b.url===j&&(f&&(k=k.replace(bS,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){
+g=[a]},e.then(m,m),b.converters["script json"]=function(){
+g||d.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),d.ajaxSetup({
+accepts:{
+script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{
+script:/javascript|ecmascript/},converters:{
+"text script":function(a){
+d.globalEval(a);return a}}}),d.ajaxPrefilter("script",function(a){
+a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),d.ajaxTransport("script",function(a){
+if(a.crossDomain){
+var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{
+send:function(f,g){
+d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){
+if(!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){
+d&&d.onload(0,1)}}}});var bT=d.now(),bU,bV;d.ajaxSettings.xhr=a.ActiveXObject?function(){
+return!this.isLocal&&bX()||bY()}:bX,bV=d.ajaxSettings.xhr(),d.support.ajax=!!bV,d.support.cors=bV&&"withCredentials"in bV,bV=b,d.support.ajax&&d.ajaxTransport(function(a){
+if(!a.crossDomain||d.support.cors){
+var c;return{
+send:function(e,f){
+var g=a.xhr(),h,i;a.username?g.open(a.type,a.url,a.async,a.username,a.password):g.open(a.type,a.url,a.async);if(a.xhrFields)for(i in a.xhrFields)g[i]=a.xhrFields[i];a.mimeType&&g.overrideMimeType&&g.overrideMimeType(a.mimeType),(!a.crossDomain||a.hasContent)&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{
+for(i in e)g.setRequestHeader(i,e[i])}catch(j){
+}g.send(a.hasContent&&a.data||null),c=function(e,i){
+var j,k,l,m,n;try{
+if(c&&(i||g.readyState===4)){
+c=b,h&&(g.onreadystatechange=d.noop,delete bU[h]);if(i)g.readyState!==4&&g.abort();else{
+j=g.status,l=g.getAllResponseHeaders(),m={
+},n=g.responseXML,n&&n.documentElement&&(m.xml=n),m.text=g.responseText;try{
+k=g.statusText}catch(o){
+k=""}j||!a.isLocal||a.crossDomain?j===1223&&(j=204):j=m.text?200:404}}}catch(p){
+i||f(-1,p)}m&&f(j,k,m,l)},a.async&&g.readyState!==4?(bU||(bU={
+},bW()),h=bT++,g.onreadystatechange=bU[h]=c):c()},abort:function(){
+c&&c(0,1)}}}});var bZ={
+},b$=/^(?:toggle|show|hide)$/,b_=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,ca,cb=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];d.fn.extend({
+show:function(a,b,c){
+var e,f;if(a||a===0)return this.animate(cc("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)e=this[g],f=e.style.display,!d._data(e,"olddisplay")&&f==="none"&&(f=e.style.display=""),f===""&&d.css(e,"display")==="none"&&d._data(e,"olddisplay",cd(e.nodeName));for(g=0;g<h;g++){
+e=this[g],f=e.style.display;if(f===""||f==="none")e.style.display=d._data(e,"olddisplay")||""}return this},hide:function(a,b,c){
+if(a||a===0)return this.animate(cc("hide",3),a,b,c);for(var e=0,f=this.length;e<f;e++){
+var g=d.css(this[e],"display");g!=="none"&&!d._data(this[e],"olddisplay")&&d._data(this[e],"olddisplay",g)}for(e=0;e<f;e++)this[e].style.display="none";return this},_toggle:d.fn.toggle,toggle:function(a,b,c){
+var e=typeof a==="boolean";d.isFunction(a)&&d.isFunction(b)?this._toggle.apply(this,arguments):a==null||e?this.each(function(){
+var b=e?a:d(this).is(":hidden");d(this)[b?"show":"hide"]()}):this.animate(cc("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){
+return this.filter(":hidden").css("opacity",0).show().end().animate({
+opacity:b},a,c,d)},animate:function(a,b,c,e){
+var f=d.speed(b,c,e);if(d.isEmptyObject(a))return this.each(f.complete);return this[f.queue===!1?"each":"queue"](function(){
+var b=d.extend({
+},f),c,e=this.nodeType===1,g=e&&d(this).is(":hidden"),h=this;for(c in a){
+var i=d.camelCase(c);c!==i&&(a[i]=a[c],delete a[c],c=i);if(a[c]==="hide"&&g||a[c]==="show"&&!g)return b.complete.call(this);if(e&&(c==="height"||c==="width")){
+b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(d.css(this,"display")==="inline"&&d.css(this,"float")==="none")if(d.support.inlineBlockNeedsLayout){
+var j=cd(this.nodeName);j==="inline"?this.style.display="inline-block":(this.style.display="inline",this.style.zoom=1)}else this.style.display="inline-block"}d.isArray(a[c])&&((b.specialEasing=b.specialEasing||{
+})[c]=a[c][1],a[c]=a[c][0])}b.overflow!=null&&(this.style.overflow="hidden"),b.curAnim=d.extend({
+},a),d.each(a,function(c,e){
+var f=new d.fx(h,b,c);if(b$.test(e))f[e==="toggle"?g?"show":"hide":e](a);else{
+var i=b_.exec(e),j=f.cur();if(i){
+var k=parseFloat(i[2]),l=i[3]||(d.cssNumber[c]?"":"px");l!=="px"&&(d.style(h,c,(k||1)+l),j=(k||1)/f.cur()*j,d.style(h,c,j+l)),i[1]&&(k=(i[1]==="-="?-1:1)*k+j),f.custom(j,k,l)}else f.custom(j,e,"")}});return!0})},stop:function(a,b){
+var c=d.timers;a&&this.queue([]),this.each(function(){
+for(var a=c.length-1;a>=0;a--)c[a].elem===this&&(b&&c[a](!0),c.splice(a,1))}),b||this.dequeue();return this}}),d.each({
+slideDown:cc("show",1),slideUp:cc("hide",1),slideToggle:cc("toggle",1),fadeIn:{
+opacity:"show"},fadeOut:{
+opacity:"hide"},fadeToggle:{
+opacity:"toggle"}},function(a,b){
+d.fn[a]=function(a,c,d){
+return this.animate(b,a,c,d)}}),d.extend({
+speed:function(a,b,c){
+var e=a&&typeof a==="object"?d.extend({
+},a):{
+complete:c||!c&&b||d.isFunction(a)&&a,duration:a,easing:c&&b||b&&!d.isFunction(b)&&b};e.duration=d.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in d.fx.speeds?d.fx.speeds[e.duration]:d.fx.speeds._default,e.old=e.complete,e.complete=function(){
+e.queue!==!1&&d(this).dequeue(),d.isFunction(e.old)&&e.old.call(this)};return e},easing:{
+linear:function(a,b,c,d){
+return c+d*a},swing:function(a,b,c,d){
+return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){
+this.options=b,this.elem=a,this.prop=c,b.orig||(b.orig={
+})}}),d.fx.prototype={
+update:function(){
+this.options.step&&this.options.step.call(this.elem,this.now,this),(d.fx.step[this.prop]||d.fx.step._default)(this)},cur:function(){
+if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=d.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){
+function g(a){
+return e.step(a)}var e=this,f=d.fx;this.startTime=d.now(),this.start=a,this.end=b,this.unit=c||this.unit||(d.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,g.elem=this.elem,g()&&d.timers.push(g)&&!ca&&(ca=setInterval(f.tick,f.interval))},show:function(){
+this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),d(this.elem).show()},hide:function(){
+this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){
+var b=d.now(),c=!0;if(a||b>=this.options.duration+this.startTime){
+this.now=this.end,this.pos=this.state=1,this.update(),this.options.curAnim[this.prop]=!0;for(var e in this.options.curAnim)this.options.curAnim[e]!==!0&&(c=!1);if(c){
+if(this.options.overflow!=null&&!d.support.shrinkWrapBlocks){
+var f=this.elem,g=this.options;d.each(["","X","Y"],function(a,b){
+f.style["overflow"+b]=g.overflow[a]})}this.options.hide&&d(this.elem).hide();if(this.options.hide||this.options.show)for(var h in this.options.curAnim)d.style(this.elem,h,this.options.orig[h]);this.options.complete.call(this.elem)}return!1}var i=b-this.startTime;this.state=i/this.options.duration;var j=this.options.specialEasing&&this.options.specialEasing[this.prop],k=this.options.easing||(d.easing.swing?"swing":"linear");this.pos=d.easing[j||k](this.state,i,0,1,this.options.duration),this.now=this.start+(this.end-this.start)*this.pos,this.update();return!0}},d.extend(d.fx,{
+tick:function(){
+var a=d.timers;for(var b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||d.fx.stop()},interval:13,stop:function(){
+clearInterval(ca),ca=null},speeds:{
+slow:600,fast:200,_default:400},step:{
+opacity:function(a){
+d.style(a.elem,"opacity",a.now)},_default:function(a){
+a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit:a.elem[a.prop]=a.now}}}),d.expr&&d.expr.filters&&(d.expr.filters.animated=function(a){
+return d.grep(d.timers,function(b){
+return a===b.elem}).length});var ce=/^t(?:able|d|h)$/i,cf=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?d.fn.offset=function(a){
+var b=this[0],c;if(a)return this.each(function(b){
+d.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return d.offset.bodyOffset(b);try{
+c=b.getBoundingClientRect()}catch(e){
+}var f=b.ownerDocument,g=f.documentElement;if(!c||!d.contains(g,b))return c?{
+top:c.top,left:c.left}:{
+top:0,left:0};var h=f.body,i=cg(f),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||d.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||d.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{
+top:n,left:o}}:d.fn.offset=function(a){
+var b=this[0];if(a)return this.each(function(b){
+d.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return d.offset.bodyOffset(b);d.offset.initialize();var c,e=b.offsetParent,f=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){
+if(d.offset.supportsFixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===e&&(l+=b.offsetTop,m+=b.offsetLeft,d.offset.doesNotAddBorder&&(!d.offset.doesAddBorderForTableAndCells||!ce.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),f=e,e=b.offsetParent),d.offset.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;d.offset.supportsFixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{
+top:l,left:m}},d.offset={
+initialize:function(){
+var a=c.body,b=c.createElement("div"),e,f,g,h,i=parseFloat(d.css(a,"marginTop"))||0,j="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";d.extend(b.style,{
+position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),e=b.firstChild,f=e.firstChild,h=e.nextSibling.firstChild.firstChild,this.doesNotAddBorder=f.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,f.style.position="fixed",f.style.top="20px",this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15,f.style.position=f.style.top="",e.style.overflow="hidden",e.style.position="relative",this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),a=b=e=f=g=h=null,d.offset.initialize=d.noop},bodyOffset:function(a){
+var b=a.offsetTop,c=a.offsetLeft;d.offset.initialize(),d.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(d.css(a,"marginTop"))||0,c+=parseFloat(d.css(a,"marginLeft"))||0);return{
+top:b,left:c}},setOffset:function(a,b,c){
+var e=d.css(a,"position");e==="static"&&(a.style.position="relative");var f=d(a),g=f.offset(),h=d.css(a,"top"),i=d.css(a,"left"),j=e==="absolute"&&d.inArray("auto",[h,i])>-1,k={
+},l={
+},m,n;j&&(l=f.position()),m=j?l.top:parseInt(h,10)||0,n=j?l.left:parseInt(i,10)||0,d.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):f.css(k)}},d.fn.extend({
+position:function(){
+if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),e=cf.test(b[0].nodeName)?{
+top:0,left:0}:b.offset();c.top-=parseFloat(d.css(a,"marginTop"))||0,c.left-=parseFloat(d.css(a,"marginLeft"))||0,e.top+=parseFloat(d.css(b[0],"borderTopWidth"))||0,e.left+=parseFloat(d.css(b[0],"borderLeftWidth"))||0;return{
+top:c.top-e.top,left:c.left-e.left}},offsetParent:function(){
+return this.map(function(){
+var a=this.offsetParent||c.body;while(a&&(!cf.test(a.nodeName)&&d.css(a,"position")==="static"))a=a.offsetParent;return a})}}),d.each(["Left","Top"],function(a,c){
+var e="scroll"+c;d.fn[e]=function(c){
+var f=this[0],g;if(!f)return null;if(c!==b)return this.each(function(){
+g=cg(this),g?g.scrollTo(a?d(g).scrollLeft():c,a?c:d(g).scrollTop()):this[e]=c});g=cg(f);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:d.support.boxModel&&g.document.documentElement[e]||g.document.body[e]:f[e]}}),d.each(["Height","Width"],function(a,c){
+var e=c.toLowerCase();d.fn["inner"+c]=function(){
+return this[0]?parseFloat(d.css(this[0],e,"padding")):null},d.fn["outer"+c]=function(a){
+return this[0]?parseFloat(d.css(this[0],e,a?"margin":"border")):null},d.fn[e]=function(a){
+var f=this[0];if(!f)return a==null?null:this;if(d.isFunction(a))return this.each(function(b){
+var c=d(this);c[e](a.call(this,b,c[e]()))});if(d.isWindow(f)){
+var g=f.document.documentElement["client"+c];return f.document.compatMode==="CSS1Compat"&&g||f.document.body["client"+c]||g}if(f.nodeType===9)return Math.max(f.documentElement["client"+c],f.body["scroll"+c],f.documentElement["scroll"+c],f.body["offset"+c],f.documentElement["offset"+c]);if(a===b){
+var h=d.css(f,e),i=parseFloat(h);return d.isNaN(i)?h:i}return this.css(e,typeof a==="string"?a:a+"px")}}),a.jQuery=a.$=d})(window);
\ No newline at end of file
diff --git a/share/lua/http/js/jquery-ui-1.8.13.custom.min.js b/share/lua/http/js/jquery-ui-1.8.13.custom.min.js
new file mode 100644
index 0000000..554563b
--- /dev/null
+++ b/share/lua/http/js/jquery-ui-1.8.13.custom.min.js
@@ -0,0 +1,2422 @@
+/*!
+ * jQuery UI 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI
+ */
+(function(c,j){
+function k(a,b){
+var d=a.nodeName.toLowerCase();if("area"===d){
+b=a.parentNode;d=b.name;if(!a.href||!d||b.nodeName.toLowerCase()!=="map")return false;a=c("img[usemap=#"+d+"]")[0];return!!a&&l(a)}return(/input|select|textarea|button|object/.test(d)?!a.disabled:"a"==d?a.href||b:b)&&l(a)}function l(a){
+return!c(a).parents().andSelf().filter(function(){
+return c.curCSS(this,"visibility")==="hidden"||c.expr.filters.hidden(this)}).length}c.ui=c.ui||{
+};if(!c.ui.version){
+c.extend(c.ui,{
+version:"1.8.13",
+keyCode:{
+ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});c.fn.extend({
+_focus:c.fn.focus,focus:function(a,b){
+return typeof a==="number"?this.each(function(){
+var d=this;setTimeout(function(){
+c(d).focus();
+b&&b.call(d)},a)}):this._focus.apply(this,arguments)},scrollParent:function(){
+var a;a=c.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?this.parents().filter(function(){
+return/(relative|absolute|fixed)/.test(c.curCSS(this,"position",1))&&/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0):this.parents().filter(function(){
+return/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,
+"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0);return/fixed/.test(this.css("position"))||!a.length?c(document):a},zIndex:function(a){
+if(a!==j)return this.css("zIndex",a);if(this.length){
+a=c(this[0]);for(var b;a.length&&a[0]!==document;){
+b=a.css("position");if(b==="absolute"||b==="relative"||b==="fixed"){
+b=parseInt(a.css("zIndex"),10);if(!isNaN(b)&&b!==0)return b}a=a.parent()}}return 0},disableSelection:function(){
+return this.bind((c.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",
+function(a){
+a.preventDefault()})},enableSelection:function(){
+return this.unbind(".ui-disableSelection")}});c.each(["Width","Height"],function(a,b){
+function d(f,g,m,n){
+c.each(e,function(){
+g-=parseFloat(c.curCSS(f,"padding"+this,true))||0;if(m)g-=parseFloat(c.curCSS(f,"border"+this+"Width",true))||0;if(n)g-=parseFloat(c.curCSS(f,"margin"+this,true))||0});return g}var e=b==="Width"?["Left","Right"]:["Top","Bottom"],h=b.toLowerCase(),i={
+innerWidth:c.fn.innerWidth,innerHeight:c.fn.innerHeight,outerWidth:c.fn.outerWidth,
+outerHeight:c.fn.outerHeight};c.fn["inner"+b]=function(f){
+if(f===j)return i["inner"+b].call(this);return this.each(function(){
+c(this).css(h,d(this,f)+"px")})};c.fn["outer"+b]=function(f,g){
+if(typeof f!=="number")return i["outer"+b].call(this,f);return this.each(function(){
+c(this).css(h,d(this,f,true,g)+"px")})}});c.extend(c.expr[":"],{
+data:function(a,b,d){
+return!!c.data(a,d[3])},focusable:function(a){
+return k(a,!isNaN(c.attr(a,"tabindex")))},tabbable:function(a){
+var b=c.attr(a,"tabindex"),d=isNaN(b);
+return(d||b>=0)&&k(a,!d)}});c(function(){
+var a=document.body,b=a.appendChild(b=document.createElement("div"));c.extend(b.style,{
+minHeight:"100px",height:"auto",padding:0,borderWidth:0});c.support.minHeight=b.offsetHeight===100;c.support.selectstart="onselectstart"in b;a.removeChild(b).style.display="none"});c.extend(c.ui,{
+plugin:{
+add:function(a,b,d){
+a=c.ui[a].prototype;for(var e in d){
+a.plugins[e]=a.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:function(a,b,d){
+if((b=a.plugins[b])&&a.element[0].parentNode)for(var e=
+0;e<b.length;e++)a.options[b[e][0]]&&b[e][1].apply(a.element,d)}},contains:function(a,b){
+return document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!==b&&a.contains(b)},hasScroll:function(a,b){
+if(c(a).css("overflow")==="hidden")return false;b=b&&b==="left"?"scrollLeft":"scrollTop";var d=false;if(a[b]>0)return true;a[b]=1;d=a[b]>0;a[b]=0;return d},isOverAxis:function(a,b,d){
+return a>b&&a<b+d},isOver:function(a,b,d,e,h,i){
+return c.ui.isOverAxis(a,d,h)&&c.ui.isOverAxis(b,e,i)}})}})(jQuery);
+;/*!
+ * jQuery UI Widget 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Widget
+ */
+(function(b,j){
+if(b.cleanData){
+var k=b.cleanData;b.cleanData=function(a){
+for(var c=0,d;(d=a[c])!=null;c++)b(d).triggerHandler("remove");k(a)}}else{
+var l=b.fn.remove;b.fn.remove=function(a,c){
+return this.each(function(){
+if(!c)if(!a||b.filter(a,[this]).length)b("*",this).add([this]).each(function(){
+b(this).triggerHandler("remove")});return l.call(b(this),a,c)})}}b.widget=function(a,c,d){
+var e=a.split(".")[0],f;a=a.split(".")[1];f=e+"-"+a;if(!d){
+d=c;c=b.Widget}b.expr[":"][f]=function(h){
+return!!b.data(h,
+a)};b[e]=b[e]||{
+};b[e][a]=function(h,g){
+arguments.length&&this._createWidget(h,g)};c=new c;c.options=b.extend(true,{
+},c.options);b[e][a].prototype=b.extend(true,c,{
+namespace:e,widgetName:a,widgetEventPrefix:b[e][a].prototype.widgetEventPrefix||a,widgetBaseClass:f},d);b.widget.bridge(a,b[e][a])};b.widget.bridge=function(a,c){
+b.fn[a]=function(d){
+var e=typeof d==="string",f=Array.prototype.slice.call(arguments,1),h=this;d=!e&&f.length?b.extend.apply(null,[true,d].concat(f)):d;if(e&&d.charAt(0)==="_")return h;
+e?this.each(function(){
+var g=b.data(this,a),i=g&&b.isFunction(g[d])?g[d].apply(g,f):g;if(i!==g&&i!==j){
+h=i;return false}}):this.each(function(){
+var g=b.data(this,a);g?g.option(d||{
+})._init():b.data(this,a,new c(d,this))});return h}};b.Widget=function(a,c){
+arguments.length&&this._createWidget(a,c)};b.Widget.prototype={
+widgetName:"widget",widgetEventPrefix:"",options:{
+disabled:false},_createWidget:function(a,c){
+b.data(c,this.widgetName,this);this.element=b(c);this.options=b.extend(true,{
+},this.options,
+this._getCreateOptions(),a);var d=this;this.element.bind("remove."+this.widgetName,function(){
+d.destroy()});this._create();this._trigger("create");this._init()},_getCreateOptions:function(){
+return b.metadata&&b.metadata.get(this.element[0])[this.widgetName]},_create:function(){
+},_init:function(){
+},destroy:function(){
+this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")},
+widget:function(){
+return this.element},option:function(a,c){
+var d=a;if(arguments.length===0)return b.extend({
+},this.options);if(typeof a==="string"){
+if(c===j)return this.options[a];d={
+};d[a]=c}this._setOptions(d);return this},_setOptions:function(a){
+var c=this;b.each(a,function(d,e){
+c._setOption(d,e)});return this},_setOption:function(a,c){
+this.options[a]=c;if(a==="disabled")this.widget()[c?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",c);return this},
+enable:function(){
+return this._setOption("disabled",false)},disable:function(){
+return this._setOption("disabled",true)},_trigger:function(a,c,d){
+var e=this.options[a];c=b.Event(c);c.type=(a===this.widgetEventPrefix?a:this.widgetEventPrefix+a).toLowerCase();d=d||{
+};if(c.originalEvent){
+a=b.event.props.length;for(var f;a;){
+f=b.event.props[--a];c[f]=c.originalEvent[f]}}this.element.trigger(c,d);return!(b.isFunction(e)&&e.call(this.element[0],c,d)===false||c.isDefaultPrevented())}}})(jQuery);
+;/*!
+ * jQuery UI Mouse 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Mouse
+ *
+ * Depends:
+ *	jquery.ui.widget.js
+ */
+(function(b){
+var d=false;b(document).mousedown(function(){
+d=false});b.widget("ui.mouse",{
+options:{
+cancel:":input,option",distance:1,delay:0},_mouseInit:function(){
+var a=this;this.element.bind("mousedown."+this.widgetName,function(c){
+return a._mouseDown(c)}).bind("click."+this.widgetName,function(c){
+if(true===b.data(c.target,a.widgetName+".preventClickEvent")){
+b.removeData(c.target,a.widgetName+".preventClickEvent");c.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){
+this.element.unbind("."+
+this.widgetName)},_mouseDown:function(a){
+if(!d){
+this._mouseStarted&&this._mouseUp(a);this._mouseDownEvent=a;var c=this,f=a.which==1,g=typeof this.options.cancel=="string"?b(a.target).parents().add(a.target).filter(this.options.cancel).length:false;if(!f||g||!this._mouseCapture(a))return true;this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet)this._mouseDelayTimer=setTimeout(function(){
+c.mouseDelayMet=true},this.options.delay);if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a)){
+this._mouseStarted=
+this._mouseStart(a)!==false;if(!this._mouseStarted){
+a.preventDefault();return true}}true===b.data(a.target,this.widgetName+".preventClickEvent")&&b.removeData(a.target,this.widgetName+".preventClickEvent");this._mouseMoveDelegate=function(e){
+return c._mouseMove(e)};this._mouseUpDelegate=function(e){
+return c._mouseUp(e)};b(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);a.preventDefault();return d=true}},_mouseMove:function(a){
+if(b.browser.msie&&
+!(document.documentMode>=9)&&!a.button)return this._mouseUp(a);if(this._mouseStarted){
+this._mouseDrag(a);return a.preventDefault()}if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a))(this._mouseStarted=this._mouseStart(this._mouseDownEvent,a)!==false)?this._mouseDrag(a):this._mouseUp(a);return!this._mouseStarted},_mouseUp:function(a){
+b(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){
+this._mouseStarted=
+false;a.target==this._mouseDownEvent.target&&b.data(a.target,this.widgetName+".preventClickEvent",true);this._mouseStop(a)}return false},_mouseDistanceMet:function(a){
+return Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(){
+return this.mouseDelayMet},_mouseStart:function(){
+},_mouseDrag:function(){
+},_mouseStop:function(){
+},_mouseCapture:function(){
+return true}})})(jQuery);
+;/*
+ * jQuery UI Position 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Position
+ */
+(function(c){
+c.ui=c.ui||{
+};var n=/left|center|right/,o=/top|center|bottom/,t=c.fn.position,u=c.fn.offset;c.fn.position=function(b){
+if(!b||!b.of)return t.apply(this,arguments);b=c.extend({
+},b);var a=c(b.of),d=a[0],g=(b.collision||"flip").split(" "),e=b.offset?b.offset.split(" "):[0,0],h,k,j;if(d.nodeType===9){
+h=a.width();k=a.height();j={
+top:0,left:0}}else if(d.setTimeout){
+h=a.width();k=a.height();j={
+top:a.scrollTop(),left:a.scrollLeft()}}else if(d.preventDefault){
+b.at="left top";h=k=0;j={
+top:b.of.pageY,
+left:b.of.pageX}}else{
+h=a.outerWidth();k=a.outerHeight();j=a.offset()}c.each(["my","at"],function(){
+var f=(b[this]||"").split(" ");if(f.length===1)f=n.test(f[0])?f.concat(["center"]):o.test(f[0])?["center"].concat(f):["center","center"];f[0]=n.test(f[0])?f[0]:"center";f[1]=o.test(f[1])?f[1]:"center";b[this]=f});if(g.length===1)g[1]=g[0];e[0]=parseInt(e[0],10)||0;if(e.length===1)e[1]=e[0];e[1]=parseInt(e[1],10)||0;if(b.at[0]==="right")j.left+=h;else if(b.at[0]==="center")j.left+=h/2;if(b.at[1]==="bottom")j.top+=
+k;else if(b.at[1]==="center")j.top+=k/2;j.left+=e[0];j.top+=e[1];return this.each(function(){
+var f=c(this),l=f.outerWidth(),m=f.outerHeight(),p=parseInt(c.curCSS(this,"marginLeft",true))||0,q=parseInt(c.curCSS(this,"marginTop",true))||0,v=l+p+(parseInt(c.curCSS(this,"marginRight",true))||0),w=m+q+(parseInt(c.curCSS(this,"marginBottom",true))||0),i=c.extend({
+},j),r;if(b.my[0]==="right")i.left-=l;else if(b.my[0]==="center")i.left-=l/2;if(b.my[1]==="bottom")i.top-=m;else if(b.my[1]==="center")i.top-=
+m/2;i.left=Math.round(i.left);i.top=Math.round(i.top);r={
+left:i.left-p,top:i.top-q};c.each(["left","top"],function(s,x){
+c.ui.position[g[s]]&&c.ui.position[g[s]][x](i,{
+targetWidth:h,targetHeight:k,elemWidth:l,elemHeight:m,collisionPosition:r,collisionWidth:v,collisionHeight:w,offset:e,my:b.my,at:b.at})});c.fn.bgiframe&&f.bgiframe();f.offset(c.extend(i,{
+using:b.using}))})};c.ui.position={
+fit:{
+left:function(b,a){
+var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();b.left=
+d>0?b.left-d:Math.max(b.left-a.collisionPosition.left,b.left)},top:function(b,a){
+var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();b.top=d>0?b.top-d:Math.max(b.top-a.collisionPosition.top,b.top)}},flip:{
+left:function(b,a){
+if(a.at[0]!=="center"){
+var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();var g=a.my[0]==="left"?-a.elemWidth:a.my[0]==="right"?a.elemWidth:0,e=a.at[0]==="left"?a.targetWidth:-a.targetWidth,h=-2*a.offset[0];b.left+=
+a.collisionPosition.left<0?g+e+h:d>0?g+e+h:0}},top:function(b,a){
+if(a.at[1]!=="center"){
+var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();var g=a.my[1]==="top"?-a.elemHeight:a.my[1]==="bottom"?a.elemHeight:0,e=a.at[1]==="top"?a.targetHeight:-a.targetHeight,h=-2*a.offset[1];b.top+=a.collisionPosition.top<0?g+e+h:d>0?g+e+h:0}}}};if(!c.offset.setOffset){
+c.offset.setOffset=function(b,a){
+if(/static/.test(c.curCSS(b,"position")))b.style.position="relative";var d=c(b),
+g=d.offset(),e=parseInt(c.curCSS(b,"top",true),10)||0,h=parseInt(c.curCSS(b,"left",true),10)||0;g={
+top:a.top-g.top+e,left:a.left-g.left+h};"using"in a?a.using.call(b,g):d.css(g)};c.fn.offset=function(b){
+var a=this[0];if(!a||!a.ownerDocument)return null;if(b)return this.each(function(){
+c.offset.setOffset(this,b)});return u.call(this)}}})(jQuery);
+;/*
+ * jQuery UI Draggable 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Draggables
+ *
+ * Depends:
+ *	jquery.ui.core.js
+ *	jquery.ui.mouse.js
+ *	jquery.ui.widget.js
+ */
+(function(d){
+d.widget("ui.draggable",d.ui.mouse,{
+widgetEventPrefix:"drag",options:{
+addClasses:true,appendTo:"parent",axis:false,connectToSortable:false,containment:false,cursor:"auto",cursorAt:false,grid:false,handle:false,helper:"original",iframeFix:false,opacity:false,refreshPositions:false,revert:false,revertDuration:500,scope:"default",scroll:true,scrollSensitivity:20,scrollSpeed:20,snap:false,snapMode:"both",snapTolerance:20,stack:false,zIndex:false},_create:function(){
+if(this.options.helper==
+"original"&&!/^(?:r|a|f)/.test(this.element.css("position")))this.element[0].style.position="relative";this.options.addClasses&&this.element.addClass("ui-draggable");this.options.disabled&&this.element.addClass("ui-draggable-disabled");this._mouseInit()},destroy:function(){
+if(this.element.data("draggable")){
+this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled");this._mouseDestroy();return this}},_mouseCapture:function(a){
+var b=
+this.options;if(this.helper||b.disabled||d(a.target).is(".ui-resizable-handle"))return false;this.handle=this._getHandle(a);if(!this.handle)return false;d(b.iframeFix===true?"iframe":b.iframeFix).each(function(){
+d('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({
+width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1E3}).css(d(this).offset()).appendTo("body")});return true},_mouseStart:function(a){
+var b=this.options;this.helper=
+this._createHelper(a);this._cacheHelperProportions();if(d.ui.ddmanager)d.ui.ddmanager.current=this;this._cacheMargins();this.cssPosition=this.helper.css("position");this.scrollParent=this.helper.scrollParent();this.offset=this.positionAbs=this.element.offset();this.offset={
+top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left};d.extend(this.offset,{
+click:{
+left:a.pageX-this.offset.left,top:a.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});
+this.originalPosition=this.position=this._generatePosition(a);this.originalPageX=a.pageX;this.originalPageY=a.pageY;b.cursorAt&&this._adjustOffsetFromHelper(b.cursorAt);b.containment&&this._setContainment();if(this._trigger("start",a)===false){
+this._clear();return false}this._cacheHelperProportions();d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,a);this.helper.addClass("ui-draggable-dragging");this._mouseDrag(a,true);return true},_mouseDrag:function(a,b){
+this.position=this._generatePosition(a);
+this.positionAbs=this._convertPositionTo("absolute");if(!b){
+b=this._uiHash();if(this._trigger("drag",a,b)===false){
+this._mouseUp({
+});return false}this.position=b.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";d.ui.ddmanager&&d.ui.ddmanager.drag(this,a);return false},_mouseStop:function(a){
+var b=false;if(d.ui.ddmanager&&!this.options.dropBehaviour)b=
+d.ui.ddmanager.drop(this,a);if(this.dropped){
+b=this.dropped;this.dropped=false}if((!this.element[0]||!this.element[0].parentNode)&&this.options.helper=="original")return false;if(this.options.revert=="invalid"&&!b||this.options.revert=="valid"&&b||this.options.revert===true||d.isFunction(this.options.revert)&&this.options.revert.call(this.element,b)){
+var c=this;d(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){
+c._trigger("stop",a)!==false&&c._clear()})}else this._trigger("stop",
+a)!==false&&this._clear();return false},_mouseUp:function(a){
+this.options.iframeFix===true&&d("div.ui-draggable-iframeFix").each(function(){
+this.parentNode.removeChild(this)});return d.ui.mouse.prototype._mouseUp.call(this,a)},cancel:function(){
+this.helper.is(".ui-draggable-dragging")?this._mouseUp({
+}):this._clear();return this},_getHandle:function(a){
+var b=!this.options.handle||!d(this.options.handle,this.element).length?true:false;d(this.options.handle,this.element).find("*").andSelf().each(function(){
+if(this==
+a.target)b=true});return b},_createHelper:function(a){
+var b=this.options;a=d.isFunction(b.helper)?d(b.helper.apply(this.element[0],[a])):b.helper=="clone"?this.element.clone().removeAttr("id"):this.element;a.parents("body").length||a.appendTo(b.appendTo=="parent"?this.element[0].parentNode:b.appendTo);a[0]!=this.element[0]&&!/(fixed|absolute)/.test(a.css("position"))&&a.css("position","absolute");return a},_adjustOffsetFromHelper:function(a){
+if(typeof a=="string")a=a.split(" ");if(d.isArray(a))a=
+{
+left:+a[0],top:+a[1]||0};if("left"in a)this.offset.click.left=a.left+this.margins.left;if("right"in a)this.offset.click.left=this.helperProportions.width-a.right+this.margins.left;if("top"in a)this.offset.click.top=a.top+this.margins.top;if("bottom"in a)this.offset.click.top=this.helperProportions.height-a.bottom+this.margins.top},_getParentOffset:function(){
+this.offsetParent=this.helper.offsetParent();var a=this.offsetParent.offset();if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&
+d.ui.contains(this.scrollParent[0],this.offsetParent[0])){
+a.left+=this.scrollParent.scrollLeft();a.top+=this.scrollParent.scrollTop()}if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&d.browser.msie)a={
+top:0,left:0};return{
+top:a.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:a.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){
+if(this.cssPosition=="relative"){
+var a=
+this.element.position();return{
+top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else return{
+top:0,left:0}},_cacheMargins:function(){
+this.margins={
+left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){
+this.helperProportions=
+{
+width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){
+var a=this.options;if(a.containment=="parent")a.containment=this.helper[0].parentNode;if(a.containment=="document"||a.containment=="window")this.containment=[(a.containment=="document"?0:d(window).scrollLeft())-this.offset.relative.left-this.offset.parent.left,(a.containment=="document"?0:d(window).scrollTop())-this.offset.relative.top-this.offset.parent.top,(a.containment=="document"?0:d(window).scrollLeft())+
+d(a.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(a.containment=="document"?0:d(window).scrollTop())+(d(a.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(a.containment)&&a.containment.constructor!=Array){
+a=d(a.containment);var b=a[0];if(b){
+a.offset();var c=d(b).css("overflow")!="hidden";this.containment=[(parseInt(d(b).css("borderLeftWidth"),
+10)||0)+(parseInt(d(b).css("paddingLeft"),10)||0),(parseInt(d(b).css("borderTopWidth"),10)||0)+(parseInt(d(b).css("paddingTop"),10)||0),(c?Math.max(b.scrollWidth,b.offsetWidth):b.offsetWidth)-(parseInt(d(b).css("borderLeftWidth"),10)||0)-(parseInt(d(b).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(c?Math.max(b.scrollHeight,b.offsetHeight):b.offsetHeight)-(parseInt(d(b).css("borderTopWidth"),10)||0)-(parseInt(d(b).css("paddingBottom"),10)||0)-this.helperProportions.height-
+this.margins.top-this.margins.bottom];this.relative_container=a}}else if(a.containment.constructor==Array)this.containment=a.containment},_convertPositionTo:function(a,b){
+if(!b)b=this.position;a=a=="absolute"?1:-1;var c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=/(html|body)/i.test(c[0].tagName);return{
+top:b.top+this.offset.relative.top*a+this.offset.parent.top*a-(d.browser.safari&&
+d.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():f?0:c.scrollTop())*a),left:b.left+this.offset.relative.left*a+this.offset.parent.left*a-(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():f?0:c.scrollLeft())*a)}},_generatePosition:function(a){
+var b=this.options,c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],
+this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=/(html|body)/i.test(c[0].tagName),e=a.pageX,h=a.pageY;if(this.originalPosition){
+var g;if(this.containment){
+if(this.relative_container){
+g=this.relative_container.offset();g=[this.containment[0]+g.left,this.containment[1]+g.top,this.containment[2]+g.left,this.containment[3]+g.top]}else g=this.containment;if(a.pageX-this.offset.click.left<g[0])e=g[0]+this.offset.click.left;if(a.pageY-this.offset.click.top<g[1])h=g[1]+this.offset.click.top;
+if(a.pageX-this.offset.click.left>g[2])e=g[2]+this.offset.click.left;if(a.pageY-this.offset.click.top>g[3])h=g[3]+this.offset.click.top}if(b.grid){
+h=this.originalPageY+Math.round((h-this.originalPageY)/b.grid[1])*b.grid[1];h=g?!(h-this.offset.click.top<g[1]||h-this.offset.click.top>g[3])?h:!(h-this.offset.click.top<g[1])?h-b.grid[1]:h+b.grid[1]:h;e=this.originalPageX+Math.round((e-this.originalPageX)/b.grid[0])*b.grid[0];e=g?!(e-this.offset.click.left<g[0]||e-this.offset.click.left>g[2])?e:!(e-this.offset.click.left<
+g[0])?e-b.grid[0]:e+b.grid[0]:e}}return{
+top:h-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollTop():f?0:c.scrollTop()),left:e-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():f?0:c.scrollLeft())}},_clear:function(){
+this.helper.removeClass("ui-draggable-dragging");
+this.helper[0]!=this.element[0]&&!this.cancelHelperRemoval&&this.helper.remove();this.helper=null;this.cancelHelperRemoval=false},_trigger:function(a,b,c){
+c=c||this._uiHash();d.ui.plugin.call(this,a,[b,c]);if(a=="drag")this.positionAbs=this._convertPositionTo("absolute");return d.Widget.prototype._trigger.call(this,a,b,c)},plugins:{
+},_uiHash:function(){
+return{
+helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}});d.extend(d.ui.draggable,{
+version:"1.8.13"});
+d.ui.plugin.add("draggable","connectToSortable",{
+start:function(a,b){
+var c=d(this).data("draggable"),f=c.options,e=d.extend({
+},b,{
+item:c.element});c.sortables=[];d(f.connectToSortable).each(function(){
+var h=d.data(this,"sortable");if(h&&!h.options.disabled){
+c.sortables.push({
+instance:h,shouldRevert:h.options.revert});h.refreshPositions();h._trigger("activate",a,e)}})},stop:function(a,b){
+var c=d(this).data("draggable"),f=d.extend({
+},b,{
+item:c.element});d.each(c.sortables,function(){
+if(this.instance.isOver){
+this.instance.isOver=
+0;c.cancelHelperRemoval=true;this.instance.cancelHelperRemoval=false;if(this.shouldRevert)this.instance.options.revert=true;this.instance._mouseStop(a);this.instance.options.helper=this.instance.options._helper;c.options.helper=="original"&&this.instance.currentItem.css({
+top:"auto",left:"auto"})}else{
+this.instance.cancelHelperRemoval=false;this.instance._trigger("deactivate",a,f)}})},drag:function(a,b){
+var c=d(this).data("draggable"),f=this;d.each(c.sortables,function(){
+this.instance.positionAbs=
+c.positionAbs;this.instance.helperProportions=c.helperProportions;this.instance.offset.click=c.offset.click;if(this.instance._intersectsWith(this.instance.containerCache)){
+if(!this.instance.isOver){
+this.instance.isOver=1;this.instance.currentItem=d(f).clone().removeAttr("id").appendTo(this.instance.element).data("sortable-item",true);this.instance.options._helper=this.instance.options.helper;this.instance.options.helper=function(){
+return b.helper[0]};a.target=this.instance.currentItem[0];this.instance._mouseCapture(a,
+true);this.instance._mouseStart(a,true,true);this.instance.offset.click.top=c.offset.click.top;this.instance.offset.click.left=c.offset.click.left;this.instance.offset.parent.left-=c.offset.parent.left-this.instance.offset.parent.left;this.instance.offset.parent.top-=c.offset.parent.top-this.instance.offset.parent.top;c._trigger("toSortable",a);c.dropped=this.instance.element;c.currentItem=c.element;this.instance.fromOutside=c}this.instance.currentItem&&this.instance._mouseDrag(a)}else if(this.instance.isOver){
+this.instance.isOver=
+0;this.instance.cancelHelperRemoval=true;this.instance.options.revert=false;this.instance._trigger("out",a,this.instance._uiHash(this.instance));this.instance._mouseStop(a,true);this.instance.options.helper=this.instance.options._helper;this.instance.currentItem.remove();this.instance.placeholder&&this.instance.placeholder.remove();c._trigger("fromSortable",a);c.dropped=false}})}});d.ui.plugin.add("draggable","cursor",{
+start:function(){
+var a=d("body"),b=d(this).data("draggable").options;if(a.css("cursor"))b._cursor=
+a.css("cursor");a.css("cursor",b.cursor)},stop:function(){
+var a=d(this).data("draggable").options;a._cursor&&d("body").css("cursor",a._cursor)}});d.ui.plugin.add("draggable","opacity",{
+start:function(a,b){
+a=d(b.helper);b=d(this).data("draggable").options;if(a.css("opacity"))b._opacity=a.css("opacity");a.css("opacity",b.opacity)},stop:function(a,b){
+a=d(this).data("draggable").options;a._opacity&&d(b.helper).css("opacity",a._opacity)}});d.ui.plugin.add("draggable","scroll",{
+start:function(){
+var a=d(this).data("draggable");
+if(a.scrollParent[0]!=document&&a.scrollParent[0].tagName!="HTML")a.overflowOffset=a.scrollParent.offset()},drag:function(a){
+var b=d(this).data("draggable"),c=b.options,f=false;if(b.scrollParent[0]!=document&&b.scrollParent[0].tagName!="HTML"){
+if(!c.axis||c.axis!="x")if(b.overflowOffset.top+b.scrollParent[0].offsetHeight-a.pageY<c.scrollSensitivity)b.scrollParent[0].scrollTop=f=b.scrollParent[0].scrollTop+c.scrollSpeed;else if(a.pageY-b.overflowOffset.top<c.scrollSensitivity)b.scrollParent[0].scrollTop=
+f=b.scrollParent[0].scrollTop-c.scrollSpeed;if(!c.axis||c.axis!="y")if(b.overflowOffset.left+b.scrollParent[0].offsetWidth-a.pageX<c.scrollSensitivity)b.scrollParent[0].scrollLeft=f=b.scrollParent[0].scrollLeft+c.scrollSpeed;else if(a.pageX-b.overflowOffset.left<c.scrollSensitivity)b.scrollParent[0].scrollLeft=f=b.scrollParent[0].scrollLeft-c.scrollSpeed}else{
+if(!c.axis||c.axis!="x")if(a.pageY-d(document).scrollTop()<c.scrollSensitivity)f=d(document).scrollTop(d(document).scrollTop()-c.scrollSpeed);
+else if(d(window).height()-(a.pageY-d(document).scrollTop())<c.scrollSensitivity)f=d(document).scrollTop(d(document).scrollTop()+c.scrollSpeed);if(!c.axis||c.axis!="y")if(a.pageX-d(document).scrollLeft()<c.scrollSensitivity)f=d(document).scrollLeft(d(document).scrollLeft()-c.scrollSpeed);else if(d(window).width()-(a.pageX-d(document).scrollLeft())<c.scrollSensitivity)f=d(document).scrollLeft(d(document).scrollLeft()+c.scrollSpeed)}f!==false&&d.ui.ddmanager&&!c.dropBehaviour&&d.ui.ddmanager.prepareOffsets(b,
+a)}});d.ui.plugin.add("draggable","snap",{
+start:function(){
+var a=d(this).data("draggable"),b=a.options;a.snapElements=[];d(b.snap.constructor!=String?b.snap.items||":data(draggable)":b.snap).each(function(){
+var c=d(this),f=c.offset();this!=a.element[0]&&a.snapElements.push({
+item:this,width:c.outerWidth(),height:c.outerHeight(),top:f.top,left:f.left})})},drag:function(a,b){
+for(var c=d(this).data("draggable"),f=c.options,e=f.snapTolerance,h=b.offset.left,g=h+c.helperProportions.width,n=b.offset.top,
+o=n+c.helperProportions.height,i=c.snapElements.length-1;i>=0;i--){
+var j=c.snapElements[i].left,l=j+c.snapElements[i].width,k=c.snapElements[i].top,m=k+c.snapElements[i].height;if(j-e<h&&h<l+e&&k-e<n&&n<m+e||j-e<h&&h<l+e&&k-e<o&&o<m+e||j-e<g&&g<l+e&&k-e<n&&n<m+e||j-e<g&&g<l+e&&k-e<o&&o<m+e){
+if(f.snapMode!="inner"){
+var p=Math.abs(k-o)<=e,q=Math.abs(m-n)<=e,r=Math.abs(j-g)<=e,s=Math.abs(l-h)<=e;if(p)b.position.top=c._convertPositionTo("relative",{
+top:k-c.helperProportions.height,left:0}).top-c.margins.top;
+if(q)b.position.top=c._convertPositionTo("relative",{
+top:m,left:0}).top-c.margins.top;if(r)b.position.left=c._convertPositionTo("relative",{
+top:0,left:j-c.helperProportions.width}).left-c.margins.left;if(s)b.position.left=c._convertPositionTo("relative",{
+top:0,left:l}).left-c.margins.left}var t=p||q||r||s;if(f.snapMode!="outer"){
+p=Math.abs(k-n)<=e;q=Math.abs(m-o)<=e;r=Math.abs(j-h)<=e;s=Math.abs(l-g)<=e;if(p)b.position.top=c._convertPositionTo("relative",{
+top:k,left:0}).top-c.margins.top;if(q)b.position.top=
+c._convertPositionTo("relative",{
+top:m-c.helperProportions.height,left:0}).top-c.margins.top;if(r)b.position.left=c._convertPositionTo("relative",{
+top:0,left:j}).left-c.margins.left;if(s)b.position.left=c._convertPositionTo("relative",{
+top:0,left:l-c.helperProportions.width}).left-c.margins.left}if(!c.snapElements[i].snapping&&(p||q||r||s||t))c.options.snap.snap&&c.options.snap.snap.call(c.element,a,d.extend(c._uiHash(),{
+snapItem:c.snapElements[i].item}));c.snapElements[i].snapping=p||q||r||s||t}else{
+c.snapElements[i].snapping&&
+c.options.snap.release&&c.options.snap.release.call(c.element,a,d.extend(c._uiHash(),{
+snapItem:c.snapElements[i].item}));c.snapElements[i].snapping=false}}}});d.ui.plugin.add("draggable","stack",{
+start:function(){
+var a=d(this).data("draggable").options;a=d.makeArray(d(a.stack)).sort(function(c,f){
+return(parseInt(d(c).css("zIndex"),10)||0)-(parseInt(d(f).css("zIndex"),10)||0)});if(a.length){
+var b=parseInt(a[0].style.zIndex)||0;d(a).each(function(c){
+this.style.zIndex=b+c});this[0].style.zIndex=b+a.length}}});
+d.ui.plugin.add("draggable","zIndex",{
+start:function(a,b){
+a=d(b.helper);b=d(this).data("draggable").options;if(a.css("zIndex"))b._zIndex=a.css("zIndex");a.css("zIndex",b.zIndex)},stop:function(a,b){
+a=d(this).data("draggable").options;a._zIndex&&d(b.helper).css("zIndex",a._zIndex)}})})(jQuery);
+;/*
+ * jQuery UI Droppable 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Droppables
+ *
+ * Depends:
+ *	jquery.ui.core.js
+ *	jquery.ui.widget.js
+ *	jquery.ui.mouse.js
+ *	jquery.ui.draggable.js
+ */
+(function(d){
+d.widget("ui.droppable",{
+widgetEventPrefix:"drop",options:{
+accept:"*",activeClass:false,addClasses:true,greedy:false,hoverClass:false,scope:"default",tolerance:"intersect"},_create:function(){
+var a=this.options,b=a.accept;this.isover=0;this.isout=1;this.accept=d.isFunction(b)?b:function(c){
+return c.is(b)};this.proportions={
+width:this.element[0].offsetWidth,height:this.element[0].offsetHeight};d.ui.ddmanager.droppables[a.scope]=d.ui.ddmanager.droppables[a.scope]||[];d.ui.ddmanager.droppables[a.scope].push(this);
+a.addClasses&&this.element.addClass("ui-droppable")},destroy:function(){
+for(var a=d.ui.ddmanager.droppables[this.options.scope],b=0;b<a.length;b++)a[b]==this&&a.splice(b,1);this.element.removeClass("ui-droppable ui-droppable-disabled").removeData("droppable").unbind(".droppable");return this},_setOption:function(a,b){
+if(a=="accept")this.accept=d.isFunction(b)?b:function(c){
+return c.is(b)};d.Widget.prototype._setOption.apply(this,arguments)},_activate:function(a){
+var b=d.ui.ddmanager.current;this.options.activeClass&&
+this.element.addClass(this.options.activeClass);b&&this._trigger("activate",a,this.ui(b))},_deactivate:function(a){
+var b=d.ui.ddmanager.current;this.options.activeClass&&this.element.removeClass(this.options.activeClass);b&&this._trigger("deactivate",a,this.ui(b))},_over:function(a){
+var b=d.ui.ddmanager.current;if(!(!b||(b.currentItem||b.element)[0]==this.element[0]))if(this.accept.call(this.element[0],b.currentItem||b.element)){
+this.options.hoverClass&&this.element.addClass(this.options.hoverClass);
+this._trigger("over",a,this.ui(b))}},_out:function(a){
+var b=d.ui.ddmanager.current;if(!(!b||(b.currentItem||b.element)[0]==this.element[0]))if(this.accept.call(this.element[0],b.currentItem||b.element)){
+this.options.hoverClass&&this.element.removeClass(this.options.hoverClass);this._trigger("out",a,this.ui(b))}},_drop:function(a,b){
+var c=b||d.ui.ddmanager.current;if(!c||(c.currentItem||c.element)[0]==this.element[0])return false;var e=false;this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function(){
+var g=
+d.data(this,"droppable");if(g.options.greedy&&!g.options.disabled&&g.options.scope==c.options.scope&&g.accept.call(g.element[0],c.currentItem||c.element)&&d.ui.intersect(c,d.extend(g,{
+offset:g.element.offset()}),g.options.tolerance)){
+e=true;return false}});if(e)return false;if(this.accept.call(this.element[0],c.currentItem||c.element)){
+this.options.activeClass&&this.element.removeClass(this.options.activeClass);this.options.hoverClass&&this.element.removeClass(this.options.hoverClass);this._trigger("drop",
+a,this.ui(c));return this.element}return false},ui:function(a){
+return{
+draggable:a.currentItem||a.element,helper:a.helper,position:a.position,offset:a.positionAbs}}});d.extend(d.ui.droppable,{
+version:"1.8.13"});d.ui.intersect=function(a,b,c){
+if(!b.offset)return false;var e=(a.positionAbs||a.position.absolute).left,g=e+a.helperProportions.width,f=(a.positionAbs||a.position.absolute).top,h=f+a.helperProportions.height,i=b.offset.left,k=i+b.proportions.width,j=b.offset.top,l=j+b.proportions.height;
+switch(c){
+case "fit":return i<=e&&g<=k&&j<=f&&h<=l;case "intersect":return i<e+a.helperProportions.width/2&&g-a.helperProportions.width/2<k&&j<f+a.helperProportions.height/2&&h-a.helperProportions.height/2<l;case "pointer":return d.ui.isOver((a.positionAbs||a.position.absolute).top+(a.clickOffset||a.offset.click).top,(a.positionAbs||a.position.absolute).left+(a.clickOffset||a.offset.click).left,j,i,b.proportions.height,b.proportions.width);case "touch":return(f>=j&&f<=l||h>=j&&h<=l||f<j&&h>l)&&(e>=
+i&&e<=k||g>=i&&g<=k||e<i&&g>k);default:return false}};d.ui.ddmanager={
+current:null,droppables:{
+"default":[]},prepareOffsets:function(a,b){
+var c=d.ui.ddmanager.droppables[a.options.scope]||[],e=b?b.type:null,g=(a.currentItem||a.element).find(":data(droppable)").andSelf(),f=0;a:for(;f<c.length;f++)if(!(c[f].options.disabled||a&&!c[f].accept.call(c[f].element[0],a.currentItem||a.element))){
+for(var h=0;h<g.length;h++)if(g[h]==c[f].element[0]){
+c[f].proportions.height=0;continue a}c[f].visible=c[f].element.css("display")!=
+"none";if(c[f].visible){
+e=="mousedown"&&c[f]._activate.call(c[f],b);c[f].offset=c[f].element.offset();c[f].proportions={
+width:c[f].element[0].offsetWidth,height:c[f].element[0].offsetHeight}}}},drop:function(a,b){
+var c=false;d.each(d.ui.ddmanager.droppables[a.options.scope]||[],function(){
+if(this.options){
+if(!this.options.disabled&&this.visible&&d.ui.intersect(a,this,this.options.tolerance))c=c||this._drop.call(this,b);if(!this.options.disabled&&this.visible&&this.accept.call(this.element[0],a.currentItem||
+a.element)){
+this.isout=1;this.isover=0;this._deactivate.call(this,b)}}});return c},drag:function(a,b){
+a.options.refreshPositions&&d.ui.ddmanager.prepareOffsets(a,b);d.each(d.ui.ddmanager.droppables[a.options.scope]||[],function(){
+if(!(this.options.disabled||this.greedyChild||!this.visible)){
+var c=d.ui.intersect(a,this,this.options.tolerance);if(c=!c&&this.isover==1?"isout":c&&this.isover==0?"isover":null){
+var e;if(this.options.greedy){
+var g=this.element.parents(":data(droppable):eq(0)");if(g.length){
+e=
+d.data(g[0],"droppable");e.greedyChild=c=="isover"?1:0}}if(e&&c=="isover"){
+e.isover=0;e.isout=1;e._out.call(e,b)}this[c]=1;this[c=="isout"?"isover":"isout"]=0;this[c=="isover"?"_over":"_out"].call(this,b);if(e&&c=="isout"){
+e.isout=0;e.isover=1;e._over.call(e,b)}}}})}}})(jQuery);
+;/*
+ * jQuery UI Resizable 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Resizables
+ *
+ * Depends:
+ *	jquery.ui.core.js
+ *	jquery.ui.mouse.js
+ *	jquery.ui.widget.js
+ */
+(function(e){
+e.widget("ui.resizable",e.ui.mouse,{
+widgetEventPrefix:"resize",options:{
+alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,containment:false,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1E3},_create:function(){
+var b=this,a=this.options;this.element.addClass("ui-resizable");e.extend(this,{
+_aspectRatio:!!a.aspectRatio,aspectRatio:a.aspectRatio,originalElement:this.element,
+_proportionallyResizeElements:[],_helper:a.helper||a.ghost||a.animate?a.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){
+/relative/.test(this.element.css("position"))&&e.browser.opera&&this.element.css({
+position:"relative",top:"auto",left:"auto"});this.element.wrap(e('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({
+position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),
+top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({
+marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({
+marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=
+this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({
+position:"static",zoom:1,display:"block"}));this.originalElement.css({
+margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=a.handles||(!e(".ui-resizable-handle",this.element).length?"e,s,se":{
+n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",
+nw:".ui-resizable-nw"});if(this.handles.constructor==String){
+if(this.handles=="all")this.handles="n,e,s,w,se,sw,ne,nw";var c=this.handles.split(",");this.handles={
+};for(var d=0;d<c.length;d++){
+var f=e.trim(c[d]),g=e('<div class="ui-resizable-handle '+("ui-resizable-"+f)+'"></div>');/sw|se|ne|nw/.test(f)&&g.css({
+zIndex:++a.zIndex});"se"==f&&g.addClass("ui-icon ui-icon-gripsmall-diagonal-se");this.handles[f]=".ui-resizable-"+f;this.element.append(g)}}this._renderAxis=function(h){
+h=h||this.element;for(var i in this.handles){
+if(this.handles[i].constructor==
+String)this.handles[i]=e(this.handles[i],this.element).show();if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){
+var j=e(this.handles[i],this.element),k=0;k=/sw|ne|nw|se|n|s/.test(i)?j.outerHeight():j.outerWidth();j=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join("");h.css(j,k);this._proportionallyResize()}e(this.handles[i])}};this._renderAxis(this.element);this._handles=e(".ui-resizable-handle",this.element).disableSelection();
+this._handles.mouseover(function(){
+if(!b.resizing){
+if(this.className)var h=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=h&&h[1]?h[1]:"se"}});if(a.autoHide){
+this._handles.hide();e(this.element).addClass("ui-resizable-autohide").hover(function(){
+if(!a.disabled){
+e(this).removeClass("ui-resizable-autohide");b._handles.show()}},function(){
+if(!a.disabled)if(!b.resizing){
+e(this).addClass("ui-resizable-autohide");b._handles.hide()}})}this._mouseInit()},destroy:function(){
+this._mouseDestroy();
+var b=function(c){
+e(c).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){
+b(this.element);var a=this.element;a.after(this.originalElement.css({
+position:a.css("position"),width:a.outerWidth(),height:a.outerHeight(),top:a.css("top"),left:a.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);b(this.originalElement);return this},_mouseCapture:function(b){
+var a=
+false;for(var c in this.handles)if(e(this.handles[c])[0]==b.target)a=true;return!this.options.disabled&&a},_mouseStart:function(b){
+var a=this.options,c=this.element.position(),d=this.element;this.resizing=true;this.documentScroll={
+top:e(document).scrollTop(),left:e(document).scrollLeft()};if(d.is(".ui-draggable")||/absolute/.test(d.css("position")))d.css({
+position:"absolute",top:c.top,left:c.left});e.browser.opera&&/relative/.test(d.css("position"))&&d.css({
+position:"relative",top:"auto",left:"auto"});
+this._renderProxy();c=m(this.helper.css("left"));var f=m(this.helper.css("top"));if(a.containment){
+c+=e(a.containment).scrollLeft()||0;f+=e(a.containment).scrollTop()||0}this.offset=this.helper.offset();this.position={
+left:c,top:f};this.size=this._helper?{
+width:d.outerWidth(),height:d.outerHeight()}:{
+width:d.width(),height:d.height()};this.originalSize=this._helper?{
+width:d.outerWidth(),height:d.outerHeight()}:{
+width:d.width(),height:d.height()};this.originalPosition={
+left:c,top:f};this.sizeDiff=
+{
+width:d.outerWidth()-d.width(),height:d.outerHeight()-d.height()};this.originalMousePosition={
+left:b.pageX,top:b.pageY};this.aspectRatio=typeof a.aspectRatio=="number"?a.aspectRatio:this.originalSize.width/this.originalSize.height||1;a=e(".ui-resizable-"+this.axis).css("cursor");e("body").css("cursor",a=="auto"?this.axis+"-resize":a);d.addClass("ui-resizable-resizing");this._propagate("start",b);return true},_mouseDrag:function(b){
+var a=this.helper,c=this.originalMousePosition,d=this._change[this.axis];
+if(!d)return false;c=d.apply(this,[b,b.pageX-c.left||0,b.pageY-c.top||0]);if(this._aspectRatio||b.shiftKey)c=this._updateRatio(c,b);c=this._respectSize(c,b);this._propagate("resize",b);a.css({
+top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize();this._updateCache(c);this._trigger("resize",b,this.ui());return false},_mouseStop:function(b){
+this.resizing=
+false;var a=this.options,c=this;if(this._helper){
+var d=this._proportionallyResizeElements,f=d.length&&/textarea/i.test(d[0].nodeName);d=f&&e.ui.hasScroll(d[0],"left")?0:c.sizeDiff.height;f=f?0:c.sizeDiff.width;f={
+width:c.helper.width()-f,height:c.helper.height()-d};d=parseInt(c.element.css("left"),10)+(c.position.left-c.originalPosition.left)||null;var g=parseInt(c.element.css("top"),10)+(c.position.top-c.originalPosition.top)||null;a.animate||this.element.css(e.extend(f,{
+top:g,left:d}));c.helper.height(c.size.height);
+c.helper.width(c.size.width);this._helper&&!a.animate&&this._proportionallyResize()}e("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop",b);this._helper&&this.helper.remove();return false},_updateCache:function(b){
+this.offset=this.helper.offset();if(l(b.left))this.position.left=b.left;if(l(b.top))this.position.top=b.top;if(l(b.height))this.size.height=b.height;if(l(b.width))this.size.width=b.width},_updateRatio:function(b){
+var a=this.position,c=this.size,
+d=this.axis;if(b.height)b.width=c.height*this.aspectRatio;else if(b.width)b.height=c.width/this.aspectRatio;if(d=="sw"){
+b.left=a.left+(c.width-b.width);b.top=null}if(d=="nw"){
+b.top=a.top+(c.height-b.height);b.left=a.left+(c.width-b.width)}return b},_respectSize:function(b){
+var a=this.options,c=this.axis,d=l(b.width)&&a.maxWidth&&a.maxWidth<b.width,f=l(b.height)&&a.maxHeight&&a.maxHeight<b.height,g=l(b.width)&&a.minWidth&&a.minWidth>b.width,h=l(b.height)&&a.minHeight&&a.minHeight>b.height;if(g)b.width=
+a.minWidth;if(h)b.height=a.minHeight;if(d)b.width=a.maxWidth;if(f)b.height=a.maxHeight;var i=this.originalPosition.left+this.originalSize.width,j=this.position.top+this.size.height,k=/sw|nw|w/.test(c);c=/nw|ne|n/.test(c);if(g&&k)b.left=i-a.minWidth;if(d&&k)b.left=i-a.maxWidth;if(h&&c)b.top=j-a.minHeight;if(f&&c)b.top=j-a.maxHeight;if((a=!b.width&&!b.height)&&!b.left&&b.top)b.top=null;else if(a&&!b.top&&b.left)b.left=null;return b},_proportionallyResize:function(){
+if(this._proportionallyResizeElements.length)for(var b=
+this.helper||this.element,a=0;a<this._proportionallyResizeElements.length;a++){
+var c=this._proportionallyResizeElements[a];if(!this.borderDif){
+var d=[c.css("borderTopWidth"),c.css("borderRightWidth"),c.css("borderBottomWidth"),c.css("borderLeftWidth")],f=[c.css("paddingTop"),c.css("paddingRight"),c.css("paddingBottom"),c.css("paddingLeft")];this.borderDif=e.map(d,function(g,h){
+g=parseInt(g,10)||0;h=parseInt(f[h],10)||0;return g+h})}e.browser.msie&&(e(b).is(":hidden")||e(b).parents(":hidden").length)||
+c.css({
+height:b.height()-this.borderDif[0]-this.borderDif[2]||0,width:b.width()-this.borderDif[1]-this.borderDif[3]||0})}},_renderProxy:function(){
+var b=this.options;this.elementOffset=this.element.offset();if(this._helper){
+this.helper=this.helper||e('<div style="overflow:hidden;"></div>');var a=e.browser.msie&&e.browser.version<7,c=a?1:0;a=a?2:-1;this.helper.addClass(this._helper).css({
+width:this.element.outerWidth()+a,height:this.element.outerHeight()+a,position:"absolute",left:this.elementOffset.left-
+c+"px",top:this.elementOffset.top-c+"px",zIndex:++b.zIndex});this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{
+e:function(b,a){
+return{
+width:this.originalSize.width+a}},w:function(b,a){
+return{
+left:this.originalPosition.left+a,width:this.originalSize.width-a}},n:function(b,a,c){
+return{
+top:this.originalPosition.top+c,height:this.originalSize.height-c}},s:function(b,a,c){
+return{
+height:this.originalSize.height+c}},se:function(b,a,c){
+return e.extend(this._change.s.apply(this,
+arguments),this._change.e.apply(this,[b,a,c]))},sw:function(b,a,c){
+return e.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,a,c]))},ne:function(b,a,c){
+return e.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[b,a,c]))},nw:function(b,a,c){
+return e.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,a,c]))}},_propagate:function(b,a){
+e.ui.plugin.call(this,b,[a,this.ui()]);b!="resize"&&this._trigger(b,a,this.ui())},plugins:{
+},ui:function(){
+return{
+originalElement:this.originalElement,
+element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}});e.extend(e.ui.resizable,{
+version:"1.8.13"});e.ui.plugin.add("resizable","alsoResize",{
+start:function(){
+var b=e(this).data("resizable").options,a=function(c){
+e(c).each(function(){
+var d=e(this);d.data("resizable-alsoresize",{
+width:parseInt(d.width(),10),height:parseInt(d.height(),10),left:parseInt(d.css("left"),10),top:parseInt(d.css("top"),10),position:d.css("position")})})};
+if(typeof b.alsoResize=="object"&&!b.alsoResize.parentNode)if(b.alsoResize.length){
+b.alsoResize=b.alsoResize[0];a(b.alsoResize)}else e.each(b.alsoResize,function(c){
+a(c)});else a(b.alsoResize)},resize:function(b,a){
+var c=e(this).data("resizable");b=c.options;var d=c.originalSize,f=c.originalPosition,g={
+height:c.size.height-d.height||0,width:c.size.width-d.width||0,top:c.position.top-f.top||0,left:c.position.left-f.left||0},h=function(i,j){
+e(i).each(function(){
+var k=e(this),q=e(this).data("resizable-alsoresize"),
+p={
+},r=j&&j.length?j:k.parents(a.originalElement[0]).length?["width","height"]:["width","height","top","left"];e.each(r,function(n,o){
+if((n=(q[o]||0)+(g[o]||0))&&n>=0)p[o]=n||null});if(e.browser.opera&&/relative/.test(k.css("position"))){
+c._revertToRelativePosition=true;k.css({
+position:"absolute",top:"auto",left:"auto"})}k.css(p)})};typeof b.alsoResize=="object"&&!b.alsoResize.nodeType?e.each(b.alsoResize,function(i,j){
+h(i,j)}):h(b.alsoResize)},stop:function(){
+var b=e(this).data("resizable"),a=b.options,
+c=function(d){
+e(d).each(function(){
+var f=e(this);f.css({
+position:f.data("resizable-alsoresize").position})})};if(b._revertToRelativePosition){
+b._revertToRelativePosition=false;typeof a.alsoResize=="object"&&!a.alsoResize.nodeType?e.each(a.alsoResize,function(d){
+c(d)}):c(a.alsoResize)}e(this).removeData("resizable-alsoresize")}});e.ui.plugin.add("resizable","animate",{
+stop:function(b){
+var a=e(this).data("resizable"),c=a.options,d=a._proportionallyResizeElements,f=d.length&&/textarea/i.test(d[0].nodeName),
+g=f&&e.ui.hasScroll(d[0],"left")?0:a.sizeDiff.height;f={
+width:a.size.width-(f?0:a.sizeDiff.width),height:a.size.height-g};g=parseInt(a.element.css("left"),10)+(a.position.left-a.originalPosition.left)||null;var h=parseInt(a.element.css("top"),10)+(a.position.top-a.originalPosition.top)||null;a.element.animate(e.extend(f,h&&g?{
+top:h,left:g}:{
+}),{
+duration:c.animateDuration,easing:c.animateEasing,step:function(){
+var i={
+width:parseInt(a.element.css("width"),10),height:parseInt(a.element.css("height"),
+10),top:parseInt(a.element.css("top"),10),left:parseInt(a.element.css("left"),10)};d&&d.length&&e(d[0]).css({
+width:i.width,height:i.height});a._updateCache(i);a._propagate("resize",b)}})}});e.ui.plugin.add("resizable","containment",{
+start:function(){
+var b=e(this).data("resizable"),a=b.element,c=b.options.containment;if(a=c instanceof e?c.get(0):/parent/.test(c)?a.parent().get(0):c){
+b.containerElement=e(a);if(/document/.test(c)||c==document){
+b.containerOffset={
+left:0,top:0};b.containerPosition={
+left:0,
+top:0};b.parentData={
+element:e(document),left:0,top:0,width:e(document).width(),height:e(document).height()||document.body.parentNode.scrollHeight}}else{
+var d=e(a),f=[];e(["Top","Right","Left","Bottom"]).each(function(i,j){
+f[i]=m(d.css("padding"+j))});b.containerOffset=d.offset();b.containerPosition=d.position();b.containerSize={
+height:d.innerHeight()-f[3],width:d.innerWidth()-f[1]};c=b.containerOffset;var g=b.containerSize.height,h=b.containerSize.width;h=e.ui.hasScroll(a,"left")?a.scrollWidth:h;
+g=e.ui.hasScroll(a)?a.scrollHeight:g;b.parentData={
+element:a,left:c.left,top:c.top,width:h,height:g}}}},resize:function(b){
+var a=e(this).data("resizable"),c=a.options,d=a.containerOffset,f=a.position;b=a._aspectRatio||b.shiftKey;var g={
+top:0,left:0},h=a.containerElement;if(h[0]!=document&&/static/.test(h.css("position")))g=d;if(f.left<(a._helper?d.left:0)){
+a.size.width+=a._helper?a.position.left-d.left:a.position.left-g.left;if(b)a.size.height=a.size.width/c.aspectRatio;a.position.left=c.helper?d.left:
+0}if(f.top<(a._helper?d.top:0)){
+a.size.height+=a._helper?a.position.top-d.top:a.position.top;if(b)a.size.width=a.size.height*c.aspectRatio;a.position.top=a._helper?d.top:0}a.offset.left=a.parentData.left+a.position.left;a.offset.top=a.parentData.top+a.position.top;c=Math.abs((a._helper?a.offset.left-g.left:a.offset.left-g.left)+a.sizeDiff.width);d=Math.abs((a._helper?a.offset.top-g.top:a.offset.top-d.top)+a.sizeDiff.height);f=a.containerElement.get(0)==a.element.parent().get(0);g=/relative|absolute/.test(a.containerElement.css("position"));
+if(f&&g)c-=a.parentData.left;if(c+a.size.width>=a.parentData.width){
+a.size.width=a.parentData.width-c;if(b)a.size.height=a.size.width/a.aspectRatio}if(d+a.size.height>=a.parentData.height){
+a.size.height=a.parentData.height-d;if(b)a.size.width=a.size.height*a.aspectRatio}},stop:function(){
+var b=e(this).data("resizable"),a=b.options,c=b.containerOffset,d=b.containerPosition,f=b.containerElement,g=e(b.helper),h=g.offset(),i=g.outerWidth()-b.sizeDiff.width;g=g.outerHeight()-b.sizeDiff.height;b._helper&&
+!a.animate&&/relative/.test(f.css("position"))&&e(this).css({
+left:h.left-d.left-c.left,width:i,height:g});b._helper&&!a.animate&&/static/.test(f.css("position"))&&e(this).css({
+left:h.left-d.left-c.left,width:i,height:g})}});e.ui.plugin.add("resizable","ghost",{
+start:function(){
+var b=e(this).data("resizable"),a=b.options,c=b.size;b.ghost=b.originalElement.clone();b.ghost.css({
+opacity:0.25,display:"block",position:"relative",height:c.height,width:c.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof a.ghost==
+"string"?a.ghost:"");b.ghost.appendTo(b.helper)},resize:function(){
+var b=e(this).data("resizable");b.ghost&&b.ghost.css({
+position:"relative",height:b.size.height,width:b.size.width})},stop:function(){
+var b=e(this).data("resizable");b.ghost&&b.helper&&b.helper.get(0).removeChild(b.ghost.get(0))}});e.ui.plugin.add("resizable","grid",{
+resize:function(){
+var b=e(this).data("resizable"),a=b.options,c=b.size,d=b.originalSize,f=b.originalPosition,g=b.axis;a.grid=typeof a.grid=="number"?[a.grid,a.grid]:a.grid;
+var h=Math.round((c.width-d.width)/(a.grid[0]||1))*(a.grid[0]||1);a=Math.round((c.height-d.height)/(a.grid[1]||1))*(a.grid[1]||1);if(/^(se|s|e)$/.test(g)){
+b.size.width=d.width+h;b.size.height=d.height+a}else if(/^(ne)$/.test(g)){
+b.size.width=d.width+h;b.size.height=d.height+a;b.position.top=f.top-a}else{
+if(/^(sw)$/.test(g)){
+b.size.width=d.width+h;b.size.height=d.height+a}else{
+b.size.width=d.width+h;b.size.height=d.height+a;b.position.top=f.top-a}b.position.left=f.left-h}}});var m=function(b){
+return parseInt(b,
+10)||0},l=function(b){
+return!isNaN(parseInt(b,10))}})(jQuery);
+;/*
+ * jQuery UI Selectable 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Selectables
+ *
+ * Depends:
+ *	jquery.ui.core.js
+ *	jquery.ui.mouse.js
+ *	jquery.ui.widget.js
+ */
+(function(e){
+e.widget("ui.selectable",e.ui.mouse,{
+options:{
+appendTo:"body",autoRefresh:true,distance:0,filter:"*",tolerance:"touch"},_create:function(){
+var c=this;this.element.addClass("ui-selectable");this.dragged=false;var f;this.refresh=function(){
+f=e(c.options.filter,c.element[0]);f.each(function(){
+var d=e(this),b=d.offset();e.data(this,"selectable-item",{
+element:this,$element:d,left:b.left,top:b.top,right:b.left+d.outerWidth(),bottom:b.top+d.outerHeight(),startselected:false,selected:d.hasClass("ui-selected"),
+selecting:d.hasClass("ui-selecting"),unselecting:d.hasClass("ui-unselecting")})})};this.refresh();this.selectees=f.addClass("ui-selectee");this._mouseInit();this.helper=e("<div class='ui-selectable-helper'></div>")},destroy:function(){
+this.selectees.removeClass("ui-selectee").removeData("selectable-item");this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable");this._mouseDestroy();return this},_mouseStart:function(c){
+var f=this;this.opos=[c.pageX,
+c.pageY];if(!this.options.disabled){
+var d=this.options;this.selectees=e(d.filter,this.element[0]);this._trigger("start",c);e(d.appendTo).append(this.helper);this.helper.css({
+left:c.clientX,top:c.clientY,width:0,height:0});d.autoRefresh&&this.refresh();this.selectees.filter(".ui-selected").each(function(){
+var b=e.data(this,"selectable-item");b.startselected=true;if(!c.metaKey){
+b.$element.removeClass("ui-selected");b.selected=false;b.$element.addClass("ui-unselecting");b.unselecting=true;f._trigger("unselecting",
+c,{
+unselecting:b.element})}});e(c.target).parents().andSelf().each(function(){
+var b=e.data(this,"selectable-item");if(b){
+var g=!c.metaKey||!b.$element.hasClass("ui-selected");b.$element.removeClass(g?"ui-unselecting":"ui-selected").addClass(g?"ui-selecting":"ui-unselecting");b.unselecting=!g;b.selecting=g;(b.selected=g)?f._trigger("selecting",c,{
+selecting:b.element}):f._trigger("unselecting",c,{
+unselecting:b.element});return false}})}},_mouseDrag:function(c){
+var f=this;this.dragged=true;if(!this.options.disabled){
+var d=
+this.options,b=this.opos[0],g=this.opos[1],h=c.pageX,i=c.pageY;if(b>h){
+var j=h;h=b;b=j}if(g>i){
+j=i;i=g;g=j}this.helper.css({
+left:b,top:g,width:h-b,height:i-g});this.selectees.each(function(){
+var a=e.data(this,"selectable-item");if(!(!a||a.element==f.element[0])){
+var k=false;if(d.tolerance=="touch")k=!(a.left>h||a.right<b||a.top>i||a.bottom<g);else if(d.tolerance=="fit")k=a.left>b&&a.right<h&&a.top>g&&a.bottom<i;if(k){
+if(a.selected){
+a.$element.removeClass("ui-selected");a.selected=false}if(a.unselecting){
+a.$element.removeClass("ui-unselecting");
+a.unselecting=false}if(!a.selecting){
+a.$element.addClass("ui-selecting");a.selecting=true;f._trigger("selecting",c,{
+selecting:a.element})}}else{
+if(a.selecting)if(c.metaKey&&a.startselected){
+a.$element.removeClass("ui-selecting");a.selecting=false;a.$element.addClass("ui-selected");a.selected=true}else{
+a.$element.removeClass("ui-selecting");a.selecting=false;if(a.startselected){
+a.$element.addClass("ui-unselecting");a.unselecting=true}f._trigger("unselecting",c,{
+unselecting:a.element})}if(a.selected)if(!c.metaKey&&
+!a.startselected){
+a.$element.removeClass("ui-selected");a.selected=false;a.$element.addClass("ui-unselecting");a.unselecting=true;f._trigger("unselecting",c,{
+unselecting:a.element})}}}});return false}},_mouseStop:function(c){
+var f=this;this.dragged=false;e(".ui-unselecting",this.element[0]).each(function(){
+var d=e.data(this,"selectable-item");d.$element.removeClass("ui-unselecting");d.unselecting=false;d.startselected=false;f._trigger("unselected",c,{
+unselected:d.element})});e(".ui-selecting",this.element[0]).each(function(){
+var d=
+e.data(this,"selectable-item");d.$element.removeClass("ui-selecting").addClass("ui-selected");d.selecting=false;d.selected=true;d.startselected=true;f._trigger("selected",c,{
+selected:d.element})});this._trigger("stop",c);this.helper.remove();return false}});e.extend(e.ui.selectable,{
+version:"1.8.13"})})(jQuery);
+;/*
+ * jQuery UI Sortable 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Sortables
+ *
+ * Depends:
+ *	jquery.ui.core.js
+ *	jquery.ui.mouse.js
+ *	jquery.ui.widget.js
+ */
+(function(d){
+d.widget("ui.sortable",d.ui.mouse,{
+widgetEventPrefix:"sort",options:{
+appendTo:"parent",axis:false,connectWith:false,containment:false,cursor:"auto",cursorAt:false,dropOnEmpty:true,forcePlaceholderSize:false,forceHelperSize:false,grid:false,handle:false,helper:"original",items:"> *",opacity:false,placeholder:false,revert:false,scroll:true,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1E3},_create:function(){
+var a=this.options;this.containerCache={
+};this.element.addClass("ui-sortable");
+this.refresh();this.floating=this.items.length?a.axis==="x"||/left|right/.test(this.items[0].item.css("float"))||/inline|table-cell/.test(this.items[0].item.css("display")):false;this.offset=this.element.offset();this._mouseInit()},destroy:function(){
+this.element.removeClass("ui-sortable ui-sortable-disabled").removeData("sortable").unbind(".sortable");this._mouseDestroy();for(var a=this.items.length-1;a>=0;a--)this.items[a].item.removeData("sortable-item");return this},_setOption:function(a,b){
+if(a===
+"disabled"){
+this.options[a]=b;this.widget()[b?"addClass":"removeClass"]("ui-sortable-disabled")}else d.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(a,b){
+if(this.reverting)return false;if(this.options.disabled||this.options.type=="static")return false;this._refreshItems(a);var c=null,e=this;d(a.target).parents().each(function(){
+if(d.data(this,"sortable-item")==e){
+c=d(this);return false}});if(d.data(a.target,"sortable-item")==e)c=d(a.target);if(!c)return false;if(this.options.handle&&
+!b){
+var f=false;d(this.options.handle,c).find("*").andSelf().each(function(){
+if(this==a.target)f=true});if(!f)return false}this.currentItem=c;this._removeCurrentsFromItems();return true},_mouseStart:function(a,b,c){
+b=this.options;var e=this;this.currentContainer=this;this.refreshPositions();this.helper=this._createHelper(a);this._cacheHelperProportions();this._cacheMargins();this.scrollParent=this.helper.scrollParent();this.offset=this.currentItem.offset();this.offset={
+top:this.offset.top-this.margins.top,
+left:this.offset.left-this.margins.left};this.helper.css("position","absolute");this.cssPosition=this.helper.css("position");d.extend(this.offset,{
+click:{
+left:a.pageX-this.offset.left,top:a.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this._generatePosition(a);this.originalPageX=a.pageX;this.originalPageY=a.pageY;b.cursorAt&&this._adjustOffsetFromHelper(b.cursorAt);this.domPosition={
+prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]};
+this.helper[0]!=this.currentItem[0]&&this.currentItem.hide();this._createPlaceholder();b.containment&&this._setContainment();if(b.cursor){
+if(d("body").css("cursor"))this._storedCursor=d("body").css("cursor");d("body").css("cursor",b.cursor)}if(b.opacity){
+if(this.helper.css("opacity"))this._storedOpacity=this.helper.css("opacity");this.helper.css("opacity",b.opacity)}if(b.zIndex){
+if(this.helper.css("zIndex"))this._storedZIndex=this.helper.css("zIndex");this.helper.css("zIndex",b.zIndex)}if(this.scrollParent[0]!=
+document&&this.scrollParent[0].tagName!="HTML")this.overflowOffset=this.scrollParent.offset();this._trigger("start",a,this._uiHash());this._preserveHelperProportions||this._cacheHelperProportions();if(!c)for(c=this.containers.length-1;c>=0;c--)this.containers[c]._trigger("activate",a,e._uiHash(this));if(d.ui.ddmanager)d.ui.ddmanager.current=this;d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,a);this.dragging=true;this.helper.addClass("ui-sortable-helper");this._mouseDrag(a);
+return true},_mouseDrag:function(a){
+this.position=this._generatePosition(a);this.positionAbs=this._convertPositionTo("absolute");if(!this.lastPositionAbs)this.lastPositionAbs=this.positionAbs;if(this.options.scroll){
+var b=this.options,c=false;if(this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"){
+if(this.overflowOffset.top+this.scrollParent[0].offsetHeight-a.pageY<b.scrollSensitivity)this.scrollParent[0].scrollTop=c=this.scrollParent[0].scrollTop+b.scrollSpeed;else if(a.pageY-this.overflowOffset.top<
+b.scrollSensitivity)this.scrollParent[0].scrollTop=c=this.scrollParent[0].scrollTop-b.scrollSpeed;if(this.overflowOffset.left+this.scrollParent[0].offsetWidth-a.pageX<b.scrollSensitivity)this.scrollParent[0].scrollLeft=c=this.scrollParent[0].scrollLeft+b.scrollSpeed;else if(a.pageX-this.overflowOffset.left<b.scrollSensitivity)this.scrollParent[0].scrollLeft=c=this.scrollParent[0].scrollLeft-b.scrollSpeed}else{
+if(a.pageY-d(document).scrollTop()<b.scrollSensitivity)c=d(document).scrollTop(d(document).scrollTop()-
+b.scrollSpeed);else if(d(window).height()-(a.pageY-d(document).scrollTop())<b.scrollSensitivity)c=d(document).scrollTop(d(document).scrollTop()+b.scrollSpeed);if(a.pageX-d(document).scrollLeft()<b.scrollSensitivity)c=d(document).scrollLeft(d(document).scrollLeft()-b.scrollSpeed);else if(d(window).width()-(a.pageX-d(document).scrollLeft())<b.scrollSensitivity)c=d(document).scrollLeft(d(document).scrollLeft()+b.scrollSpeed)}c!==false&&d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,
+a)}this.positionAbs=this._convertPositionTo("absolute");if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";for(b=this.items.length-1;b>=0;b--){
+c=this.items[b];var e=c.item[0],f=this._intersectsWithPointer(c);if(f)if(e!=this.currentItem[0]&&this.placeholder[f==1?"next":"prev"]()[0]!=e&&!d.ui.contains(this.placeholder[0],e)&&(this.options.type=="semi-dynamic"?!d.ui.contains(this.element[0],
+e):true)){
+this.direction=f==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(c))this._rearrange(a,c);else break;this._trigger("change",a,this._uiHash());break}}this._contactContainers(a);d.ui.ddmanager&&d.ui.ddmanager.drag(this,a);this._trigger("sort",a,this._uiHash());this.lastPositionAbs=this.positionAbs;return false},_mouseStop:function(a,b){
+if(a){
+d.ui.ddmanager&&!this.options.dropBehaviour&&d.ui.ddmanager.drop(this,a);if(this.options.revert){
+var c=this;b=c.placeholder.offset();
+c.reverting=true;d(this.helper).animate({
+left:b.left-this.offset.parent.left-c.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:b.top-this.offset.parent.top-c.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){
+c._clear(a)})}else this._clear(a,b);return false}},cancel:function(){
+var a=this;if(this.dragging){
+this._mouseUp({
+target:null});this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):
+this.currentItem.show();for(var b=this.containers.length-1;b>=0;b--){
+this.containers[b]._trigger("deactivate",null,a._uiHash(this));if(this.containers[b].containerCache.over){
+this.containers[b]._trigger("out",null,a._uiHash(this));this.containers[b].containerCache.over=0}}}if(this.placeholder){
+this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]);this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove();d.extend(this,{
+helper:null,
+dragging:false,reverting:false,_noFinalSort:null});this.domPosition.prev?d(this.domPosition.prev).after(this.currentItem):d(this.domPosition.parent).prepend(this.currentItem)}return this},serialize:function(a){
+var b=this._getItemsAsjQuery(a&&a.connected),c=[];a=a||{
+};d(b).each(function(){
+var e=(d(a.item||this).attr(a.attribute||"id")||"").match(a.expression||/(.+)[-=_](.+)/);if(e)c.push((a.key||e[1]+"[]")+"="+(a.key&&a.expression?e[1]:e[2]))});!c.length&&a.key&&c.push(a.key+"=");return c.join("&")},
+toArray:function(a){
+var b=this._getItemsAsjQuery(a&&a.connected),c=[];a=a||{
+};b.each(function(){
+c.push(d(a.item||this).attr(a.attribute||"id")||"")});return c},_intersectsWith:function(a){
+var b=this.positionAbs.left,c=b+this.helperProportions.width,e=this.positionAbs.top,f=e+this.helperProportions.height,g=a.left,h=g+a.width,i=a.top,k=i+a.height,j=this.offset.click.top,l=this.offset.click.left;j=e+j>i&&e+j<k&&b+l>g&&b+l<h;return this.options.tolerance=="pointer"||this.options.forcePointerForContainers||
+this.options.tolerance!="pointer"&&this.helperProportions[this.floating?"width":"height"]>a[this.floating?"width":"height"]?j:g<b+this.helperProportions.width/2&&c-this.helperProportions.width/2<h&&i<e+this.helperProportions.height/2&&f-this.helperProportions.height/2<k},_intersectsWithPointer:function(a){
+var b=d.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,a.top,a.height);a=d.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,a.left,a.width);b=b&&a;a=this._getDragVerticalDirection();
+var c=this._getDragHorizontalDirection();if(!b)return false;return this.floating?c&&c=="right"||a=="down"?2:1:a&&(a=="down"?2:1)},_intersectsWithSides:function(a){
+var b=d.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,a.top+a.height/2,a.height);a=d.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,a.left+a.width/2,a.width);var c=this._getDragVerticalDirection(),e=this._getDragHorizontalDirection();return this.floating&&e?e=="right"&&a||e=="left"&&!a:c&&(c=="down"&&b||c=="up"&&!b)},
+_getDragVerticalDirection:function(){
+var a=this.positionAbs.top-this.lastPositionAbs.top;return a!=0&&(a>0?"down":"up")},_getDragHorizontalDirection:function(){
+var a=this.positionAbs.left-this.lastPositionAbs.left;return a!=0&&(a>0?"right":"left")},refresh:function(a){
+this._refreshItems(a);this.refreshPositions();return this},_connectWith:function(){
+var a=this.options;return a.connectWith.constructor==String?[a.connectWith]:a.connectWith},_getItemsAsjQuery:function(a){
+var b=[],c=[],e=this._connectWith();
+if(e&&a)for(a=e.length-1;a>=0;a--)for(var f=d(e[a]),g=f.length-1;g>=0;g--){
+var h=d.data(f[g],"sortable");if(h&&h!=this&&!h.options.disabled)c.push([d.isFunction(h.options.items)?h.options.items.call(h.element):d(h.options.items,h.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),h])}c.push([d.isFunction(this.options.items)?this.options.items.call(this.element,null,{
+options:this.options,item:this.currentItem}):d(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),
+this]);for(a=c.length-1;a>=0;a--)c[a][0].each(function(){
+b.push(this)});return d(b)},_removeCurrentsFromItems:function(){
+for(var a=this.currentItem.find(":data(sortable-item)"),b=0;b<this.items.length;b++)for(var c=0;c<a.length;c++)a[c]==this.items[b].item[0]&&this.items.splice(b,1)},_refreshItems:function(a){
+this.items=[];this.containers=[this];var b=this.items,c=[[d.isFunction(this.options.items)?this.options.items.call(this.element[0],a,{
+item:this.currentItem}):d(this.options.items,this.element),
+this]],e=this._connectWith();if(e)for(var f=e.length-1;f>=0;f--)for(var g=d(e[f]),h=g.length-1;h>=0;h--){
+var i=d.data(g[h],"sortable");if(i&&i!=this&&!i.options.disabled){
+c.push([d.isFunction(i.options.items)?i.options.items.call(i.element[0],a,{
+item:this.currentItem}):d(i.options.items,i.element),i]);this.containers.push(i)}}for(f=c.length-1;f>=0;f--){
+a=c[f][1];e=c[f][0];h=0;for(g=e.length;h<g;h++){
+i=d(e[h]);i.data("sortable-item",a);b.push({
+item:i,instance:a,width:0,height:0,left:0,top:0})}}},refreshPositions:function(a){
+if(this.offsetParent&&
+this.helper)this.offset.parent=this._getParentOffset();for(var b=this.items.length-1;b>=0;b--){
+var c=this.items[b];if(!(c.instance!=this.currentContainer&&this.currentContainer&&c.item[0]!=this.currentItem[0])){
+var e=this.options.toleranceElement?d(this.options.toleranceElement,c.item):c.item;if(!a){
+c.width=e.outerWidth();c.height=e.outerHeight()}e=e.offset();c.left=e.left;c.top=e.top}}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(b=
+this.containers.length-1;b>=0;b--){
+e=this.containers[b].element.offset();this.containers[b].containerCache.left=e.left;this.containers[b].containerCache.top=e.top;this.containers[b].containerCache.width=this.containers[b].element.outerWidth();this.containers[b].containerCache.height=this.containers[b].element.outerHeight()}return this},_createPlaceholder:function(a){
+var b=a||this,c=b.options;if(!c.placeholder||c.placeholder.constructor==String){
+var e=c.placeholder;c.placeholder={
+element:function(){
+var f=
+d(document.createElement(b.currentItem[0].nodeName)).addClass(e||b.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];if(!e)f.style.visibility="hidden";return f},update:function(f,g){
+if(!(e&&!c.forcePlaceholderSize)){
+g.height()||g.height(b.currentItem.innerHeight()-parseInt(b.currentItem.css("paddingTop")||0,10)-parseInt(b.currentItem.css("paddingBottom")||0,10));g.width()||g.width(b.currentItem.innerWidth()-parseInt(b.currentItem.css("paddingLeft")||0,10)-parseInt(b.currentItem.css("paddingRight")||
+0,10))}}}}b.placeholder=d(c.placeholder.element.call(b.element,b.currentItem));b.currentItem.after(b.placeholder);c.placeholder.update(b,b.placeholder)},_contactContainers:function(a){
+for(var b=null,c=null,e=this.containers.length-1;e>=0;e--)if(!d.ui.contains(this.currentItem[0],this.containers[e].element[0]))if(this._intersectsWith(this.containers[e].containerCache)){
+if(!(b&&d.ui.contains(this.containers[e].element[0],b.element[0]))){
+b=this.containers[e];c=e}}else if(this.containers[e].containerCache.over){
+this.containers[e]._trigger("out",
+a,this._uiHash(this));this.containers[e].containerCache.over=0}if(b)if(this.containers.length===1){
+this.containers[c]._trigger("over",a,this._uiHash(this));this.containers[c].containerCache.over=1}else if(this.currentContainer!=this.containers[c]){
+b=1E4;e=null;for(var f=this.positionAbs[this.containers[c].floating?"left":"top"],g=this.items.length-1;g>=0;g--)if(d.ui.contains(this.containers[c].element[0],this.items[g].item[0])){
+var h=this.items[g][this.containers[c].floating?"left":"top"];if(Math.abs(h-
+f)<b){
+b=Math.abs(h-f);e=this.items[g]}}if(e||this.options.dropOnEmpty){
+this.currentContainer=this.containers[c];e?this._rearrange(a,e,null,true):this._rearrange(a,null,this.containers[c].element,true);this._trigger("change",a,this._uiHash());this.containers[c]._trigger("change",a,this._uiHash(this));this.options.placeholder.update(this.currentContainer,this.placeholder);this.containers[c]._trigger("over",a,this._uiHash(this));this.containers[c].containerCache.over=1}}},_createHelper:function(a){
+var b=
+this.options;a=d.isFunction(b.helper)?d(b.helper.apply(this.element[0],[a,this.currentItem])):b.helper=="clone"?this.currentItem.clone():this.currentItem;a.parents("body").length||d(b.appendTo!="parent"?b.appendTo:this.currentItem[0].parentNode)[0].appendChild(a[0]);if(a[0]==this.currentItem[0])this._storedCSS={
+width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")};if(a[0].style.width==
+""||b.forceHelperSize)a.width(this.currentItem.width());if(a[0].style.height==""||b.forceHelperSize)a.height(this.currentItem.height());return a},_adjustOffsetFromHelper:function(a){
+if(typeof a=="string")a=a.split(" ");if(d.isArray(a))a={
+left:+a[0],top:+a[1]||0};if("left"in a)this.offset.click.left=a.left+this.margins.left;if("right"in a)this.offset.click.left=this.helperProportions.width-a.right+this.margins.left;if("top"in a)this.offset.click.top=a.top+this.margins.top;if("bottom"in a)this.offset.click.top=
+this.helperProportions.height-a.bottom+this.margins.top},_getParentOffset:function(){
+this.offsetParent=this.helper.offsetParent();var a=this.offsetParent.offset();if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0])){
+a.left+=this.scrollParent.scrollLeft();a.top+=this.scrollParent.scrollTop()}if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&d.browser.msie)a=
+{
+top:0,left:0};return{
+top:a.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:a.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){
+if(this.cssPosition=="relative"){
+var a=this.currentItem.position();return{
+top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else return{
+top:0,left:0}},_cacheMargins:function(){
+this.margins={
+left:parseInt(this.currentItem.css("marginLeft"),
+10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){
+this.helperProportions={
+width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){
+var a=this.options;if(a.containment=="parent")a.containment=this.helper[0].parentNode;if(a.containment=="document"||a.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,d(a.containment=="document"?
+document:window).width()-this.helperProportions.width-this.margins.left,(d(a.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(a.containment)){
+var b=d(a.containment)[0];a=d(a.containment).offset();var c=d(b).css("overflow")!="hidden";this.containment=[a.left+(parseInt(d(b).css("borderLeftWidth"),10)||0)+(parseInt(d(b).css("paddingLeft"),10)||0)-this.margins.left,a.top+(parseInt(d(b).css("borderTopWidth"),
+10)||0)+(parseInt(d(b).css("paddingTop"),10)||0)-this.margins.top,a.left+(c?Math.max(b.scrollWidth,b.offsetWidth):b.offsetWidth)-(parseInt(d(b).css("borderLeftWidth"),10)||0)-(parseInt(d(b).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,a.top+(c?Math.max(b.scrollHeight,b.offsetHeight):b.offsetHeight)-(parseInt(d(b).css("borderTopWidth"),10)||0)-(parseInt(d(b).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}},_convertPositionTo:function(a,b){
+if(!b)b=
+this.position;a=a=="absolute"?1:-1;var c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(c[0].tagName);return{
+top:b.top+this.offset.relative.top*a+this.offset.parent.top*a-(d.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():e?0:c.scrollTop())*a),left:b.left+this.offset.relative.left*a+this.offset.parent.left*a-(d.browser.safari&&
+this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():e?0:c.scrollLeft())*a)}},_generatePosition:function(a){
+var b=this.options,c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(c[0].tagName);if(this.cssPosition=="relative"&&!(this.scrollParent[0]!=document&&this.scrollParent[0]!=this.offsetParent[0]))this.offset.relative=this._getRelativeOffset();
+var f=a.pageX,g=a.pageY;if(this.originalPosition){
+if(this.containment){
+if(a.pageX-this.offset.click.left<this.containment[0])f=this.containment[0]+this.offset.click.left;if(a.pageY-this.offset.click.top<this.containment[1])g=this.containment[1]+this.offset.click.top;if(a.pageX-this.offset.click.left>this.containment[2])f=this.containment[2]+this.offset.click.left;if(a.pageY-this.offset.click.top>this.containment[3])g=this.containment[3]+this.offset.click.top}if(b.grid){
+g=this.originalPageY+Math.round((g-
+this.originalPageY)/b.grid[1])*b.grid[1];g=this.containment?!(g-this.offset.click.top<this.containment[1]||g-this.offset.click.top>this.containment[3])?g:!(g-this.offset.click.top<this.containment[1])?g-b.grid[1]:g+b.grid[1]:g;f=this.originalPageX+Math.round((f-this.originalPageX)/b.grid[0])*b.grid[0];f=this.containment?!(f-this.offset.click.left<this.containment[0]||f-this.offset.click.left>this.containment[2])?f:!(f-this.offset.click.left<this.containment[0])?f-b.grid[0]:f+b.grid[0]:f}}return{
+top:g-
+this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(d.browser.safari&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollTop():e?0:c.scrollTop()),left:f-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(d.browser.safari&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():e?0:c.scrollLeft())}},_rearrange:function(a,b,c,e){
+c?c[0].appendChild(this.placeholder[0]):b.item[0].parentNode.insertBefore(this.placeholder[0],
+this.direction=="down"?b.item[0]:b.item[0].nextSibling);this.counter=this.counter?++this.counter:1;var f=this,g=this.counter;window.setTimeout(function(){
+g==f.counter&&f.refreshPositions(!e)},0)},_clear:function(a,b){
+this.reverting=false;var c=[];!this._noFinalSort&&this.currentItem[0].parentNode&&this.placeholder.before(this.currentItem);this._noFinalSort=null;if(this.helper[0]==this.currentItem[0]){
+for(var e in this._storedCSS)if(this._storedCSS[e]=="auto"||this._storedCSS[e]=="static")this._storedCSS[e]=
+"";this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else this.currentItem.show();this.fromOutside&&!b&&c.push(function(f){
+this._trigger("receive",f,this._uiHash(this.fromOutside))});if((this.fromOutside||this.domPosition.prev!=this.currentItem.prev().not(".ui-sortable-helper")[0]||this.domPosition.parent!=this.currentItem.parent()[0])&&!b)c.push(function(f){
+this._trigger("update",f,this._uiHash())});if(!d.ui.contains(this.element[0],this.currentItem[0])){
+b||c.push(function(f){
+this._trigger("remove",
+f,this._uiHash())});for(e=this.containers.length-1;e>=0;e--)if(d.ui.contains(this.containers[e].element[0],this.currentItem[0])&&!b){
+c.push(function(f){
+return function(g){
+f._trigger("receive",g,this._uiHash(this))}}.call(this,this.containers[e]));c.push(function(f){
+return function(g){
+f._trigger("update",g,this._uiHash(this))}}.call(this,this.containers[e]))}}for(e=this.containers.length-1;e>=0;e--){
+b||c.push(function(f){
+return function(g){
+f._trigger("deactivate",g,this._uiHash(this))}}.call(this,
+this.containers[e]));if(this.containers[e].containerCache.over){
+c.push(function(f){
+return function(g){
+f._trigger("out",g,this._uiHash(this))}}.call(this,this.containers[e]));this.containers[e].containerCache.over=0}}this._storedCursor&&d("body").css("cursor",this._storedCursor);this._storedOpacity&&this.helper.css("opacity",this._storedOpacity);if(this._storedZIndex)this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex);this.dragging=false;if(this.cancelHelperRemoval){
+if(!b){
+this._trigger("beforeStop",
+a,this._uiHash());for(e=0;e<c.length;e++)c[e].call(this,a);this._trigger("stop",a,this._uiHash())}return false}b||this._trigger("beforeStop",a,this._uiHash());this.placeholder[0].parentNode.removeChild(this.placeholder[0]);this.helper[0]!=this.currentItem[0]&&this.helper.remove();this.helper=null;if(!b){
+for(e=0;e<c.length;e++)c[e].call(this,a);this._trigger("stop",a,this._uiHash())}this.fromOutside=false;return true},_trigger:function(){
+d.Widget.prototype._trigger.apply(this,arguments)===false&&this.cancel()},
+_uiHash:function(a){
+var b=a||this;return{
+helper:b.helper,placeholder:b.placeholder||d([]),position:b.position,originalPosition:b.originalPosition,offset:b.positionAbs,item:b.currentItem,sender:a?a.element:null}}});d.extend(d.ui.sortable,{
+version:"1.8.13"})})(jQuery);
+;/*
+ * jQuery UI Accordion 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Accordion
+ *
+ * Depends:
+ *	jquery.ui.core.js
+ *	jquery.ui.widget.js
+ */
+(function(c){
+c.widget("ui.accordion",{
+options:{
+active:0,animated:"slide",autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{
+header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){
+return this.href.toLowerCase()===location.href.toLowerCase()}},_create:function(){
+var a=this,b=a.options;a.running=0;a.element.addClass("ui-accordion ui-widget ui-helper-reset").children("li").addClass("ui-accordion-li-fix");
+a.headers=a.element.find(b.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){
+b.disabled||c(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){
+b.disabled||c(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){
+b.disabled||c(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){
+b.disabled||c(this).removeClass("ui-state-focus")});a.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");
+if(b.navigation){
+var d=a.element.find("a").filter(b.navigationFilter).eq(0);if(d.length){
+var h=d.closest(".ui-accordion-header");a.active=h.length?h:d.closest(".ui-accordion-content").prev()}}a.active=a._findActive(a.active||b.active).addClass("ui-state-default ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");a.active.next().addClass("ui-accordion-content-active");a._createIcons();a.resize();a.element.attr("role","tablist");a.headers.attr("role","tab").bind("keydown.accordion",
+function(f){
+return a._keydown(f)}).next().attr("role","tabpanel");a.headers.not(a.active||"").attr({
+"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).next().hide();a.active.length?a.active.attr({
+"aria-expanded":"true","aria-selected":"true",tabIndex:0}):a.headers.eq(0).attr("tabIndex",0);c.browser.safari||a.headers.find("a").attr("tabIndex",-1);b.event&&a.headers.bind(b.event.split(" ").join(".accordion ")+".accordion",function(f){
+a._clickHandler.call(a,f,this);f.preventDefault()})},_createIcons:function(){
+var a=
+this.options;if(a.icons){
+c("<span></span>").addClass("ui-icon "+a.icons.header).prependTo(this.headers);this.active.children(".ui-icon").toggleClass(a.icons.header).toggleClass(a.icons.headerSelected);this.element.addClass("ui-accordion-icons")}},_destroyIcons:function(){
+this.headers.children(".ui-icon").remove();this.element.removeClass("ui-accordion-icons")},destroy:function(){
+var a=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role");this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-accordion-disabled ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("aria-selected").removeAttr("tabIndex");
+this.headers.find("a").removeAttr("tabIndex");this._destroyIcons();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-accordion-disabled ui-state-disabled");if(a.autoHeight||a.fillHeight)b.css("height","");return c.Widget.prototype.destroy.call(this)},_setOption:function(a,b){
+c.Widget.prototype._setOption.apply(this,arguments);a=="active"&&this.activate(b);if(a=="icons"){
+this._destroyIcons();
+b&&this._createIcons()}if(a=="disabled")this.headers.add(this.headers.next())[b?"addClass":"removeClass"]("ui-accordion-disabled ui-state-disabled")},_keydown:function(a){
+if(!(this.options.disabled||a.altKey||a.ctrlKey)){
+var b=c.ui.keyCode,d=this.headers.length,h=this.headers.index(a.target),f=false;switch(a.keyCode){
+case b.RIGHT:case b.DOWN:f=this.headers[(h+1)%d];break;case b.LEFT:case b.UP:f=this.headers[(h-1+d)%d];break;case b.SPACE:case b.ENTER:this._clickHandler({
+target:a.target},a.target);
+a.preventDefault()}if(f){
+c(a.target).attr("tabIndex",-1);c(f).attr("tabIndex",0);f.focus();return false}return true}},resize:function(){
+var a=this.options,b;if(a.fillSpace){
+if(c.browser.msie){
+var d=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}b=this.element.parent().height();c.browser.msie&&this.element.parent().css("overflow",d);this.headers.each(function(){
+b-=c(this).outerHeight(true)});this.headers.next().each(function(){
+c(this).height(Math.max(0,b-c(this).innerHeight()+
+c(this).height()))}).css("overflow","auto")}else if(a.autoHeight){
+b=0;this.headers.next().each(function(){
+b=Math.max(b,c(this).height("").height())}).height(b)}return this},activate:function(a){
+this.options.active=a;a=this._findActive(a)[0];this._clickHandler({
+target:a},a);return this},_findActive:function(a){
+return a?typeof a==="number"?this.headers.filter(":eq("+a+")"):this.headers.not(this.headers.not(a)):a===false?c([]):this.headers.filter(":eq(0)")},_clickHandler:function(a,b){
+var d=this.options;
+if(!d.disabled)if(a.target){
+a=c(a.currentTarget||b);b=a[0]===this.active[0];d.active=d.collapsible&&b?false:this.headers.index(a);if(!(this.running||!d.collapsible&&b)){
+var h=this.active;j=a.next();g=this.active.next();e={
+options:d,newHeader:b&&d.collapsible?c([]):a,oldHeader:this.active,newContent:b&&d.collapsible?c([]):j,oldContent:g};var f=this.headers.index(this.active[0])>this.headers.index(a[0]);this.active=b?c([]):a;this._toggle(j,g,e,b,f);h.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);
+if(!b){
+a.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").children(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected);a.next().addClass("ui-accordion-content-active")}}}else if(d.collapsible){
+this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");var g=this.active.next(),
+e={
+options:d,newHeader:c([]),oldHeader:d.active,newContent:c([]),oldContent:g},j=this.active=c([]);this._toggle(j,g,e)}},_toggle:function(a,b,d,h,f){
+var g=this,e=g.options;g.toShow=a;g.toHide=b;g.data=d;var j=function(){
+if(g)return g._completed.apply(g,arguments)};g._trigger("changestart",null,g.data);g.running=b.size()===0?a.size():b.size();if(e.animated){
+d={
+};d=e.collapsible&&h?{
+toShow:c([]),toHide:b,complete:j,down:f,autoHeight:e.autoHeight||e.fillSpace}:{
+toShow:a,toHide:b,complete:j,down:f,autoHeight:e.autoHeight||
+e.fillSpace};if(!e.proxied)e.proxied=e.animated;if(!e.proxiedDuration)e.proxiedDuration=e.duration;e.animated=c.isFunction(e.proxied)?e.proxied(d):e.proxied;e.duration=c.isFunction(e.proxiedDuration)?e.proxiedDuration(d):e.proxiedDuration;h=c.ui.accordion.animations;var i=e.duration,k=e.animated;if(k&&!h[k]&&!c.easing[k])k="slide";h[k]||(h[k]=function(l){
+this.slide(l,{
+easing:k,duration:i||700})});h[k](d)}else{
+if(e.collapsible&&h)a.toggle();else{
+b.hide();a.show()}j(true)}b.prev().attr({
+"aria-expanded":"false",
+"aria-selected":"false",tabIndex:-1}).blur();a.prev().attr({
+"aria-expanded":"true","aria-selected":"true",tabIndex:0}).focus()},_completed:function(a){
+this.running=a?0:--this.running;if(!this.running){
+this.options.clearStyle&&this.toShow.add(this.toHide).css({
+height:"",overflow:""});this.toHide.removeClass("ui-accordion-content-active");if(this.toHide.length)this.toHide.parent()[0].className=this.toHide.parent()[0].className;this._trigger("change",null,this.data)}}});c.extend(c.ui.accordion,{
+version:"1.8.13",
+animations:{
+slide:function(a,b){
+a=c.extend({
+easing:"swing",duration:300},a,b);if(a.toHide.size())if(a.toShow.size()){
+var d=a.toShow.css("overflow"),h=0,f={
+},g={
+},e;b=a.toShow;e=b[0].style.width;b.width(parseInt(b.parent().width(),10)-parseInt(b.css("paddingLeft"),10)-parseInt(b.css("paddingRight"),10)-(parseInt(b.css("borderLeftWidth"),10)||0)-(parseInt(b.css("borderRightWidth"),10)||0));c.each(["height","paddingTop","paddingBottom"],function(j,i){
+g[i]="hide";j=(""+c.css(a.toShow[0],i)).match(/^([\d+-.]+)(.*)$/);
+f[i]={
+value:j[1],unit:j[2]||"px"}});a.toShow.css({
+height:0,overflow:"hidden"}).show();a.toHide.filter(":hidden").each(a.complete).end().filter(":visible").animate(g,{
+step:function(j,i){
+if(i.prop=="height")h=i.end-i.start===0?0:(i.now-i.start)/(i.end-i.start);a.toShow[0].style[i.prop]=h*f[i.prop].value+f[i.prop].unit},duration:a.duration,easing:a.easing,complete:function(){
+a.autoHeight||a.toShow.css("height","");a.toShow.css({
+width:e,overflow:d});a.complete()}})}else a.toHide.animate({
+height:"hide",
+paddingTop:"hide",paddingBottom:"hide"},a);else a.toShow.animate({
+height:"show",paddingTop:"show",paddingBottom:"show"},a)},bounceslide:function(a){
+this.slide(a,{
+easing:a.down?"easeOutBounce":"swing",duration:a.down?1E3:200})}}})})(jQuery);
+;/*
+ * jQuery UI Autocomplete 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Autocomplete
+ *
+ * Depends:
+ *	jquery.ui.core.js
+ *	jquery.ui.widget.js
+ *	jquery.ui.position.js
+ */
+(function(d){
+var e=0;d.widget("ui.autocomplete",{
+options:{
+appendTo:"body",autoFocus:false,delay:300,minLength:1,position:{
+my:"left top",at:"left bottom",collision:"none"},source:null},pending:0,_create:function(){
+var a=this,b=this.element[0].ownerDocument,g;this.element.addClass("ui-autocomplete-input").attr("autocomplete","off").attr({
+role:"textbox","aria-autocomplete":"list","aria-haspopup":"true"}).bind("keydown.autocomplete",function(c){
+if(!(a.options.disabled||a.element.attr("readonly"))){
+g=
+false;var f=d.ui.keyCode;switch(c.keyCode){
+case f.PAGE_UP:a._move("previousPage",c);break;case f.PAGE_DOWN:a._move("nextPage",c);break;case f.UP:a._move("previous",c);c.preventDefault();break;case f.DOWN:a._move("next",c);c.preventDefault();break;case f.ENTER:case f.NUMPAD_ENTER:if(a.menu.active){
+g=true;c.preventDefault()}case f.TAB:if(!a.menu.active)return;a.menu.select(c);break;case f.ESCAPE:a.element.val(a.term);a.close(c);break;default:clearTimeout(a.searching);a.searching=setTimeout(function(){
+if(a.term!=
+a.element.val()){
+a.selectedItem=null;a.search(null,c)}},a.options.delay);break}}}).bind("keypress.autocomplete",function(c){
+if(g){
+g=false;c.preventDefault()}}).bind("focus.autocomplete",function(){
+if(!a.options.disabled){
+a.selectedItem=null;a.previous=a.element.val()}}).bind("blur.autocomplete",function(c){
+if(!a.options.disabled){
+clearTimeout(a.searching);a.closing=setTimeout(function(){
+a.close(c);a._change(c)},150)}});this._initSource();this.response=function(){
+return a._response.apply(a,arguments)};
+this.menu=d("<ul></ul>").addClass("ui-autocomplete").appendTo(d(this.options.appendTo||"body",b)[0]).mousedown(function(c){
+var f=a.menu.element[0];d(c.target).closest(".ui-menu-item").length||setTimeout(function(){
+d(document).one("mousedown",function(h){
+h.target!==a.element[0]&&h.target!==f&&!d.ui.contains(f,h.target)&&a.close()})},1);setTimeout(function(){
+clearTimeout(a.closing)},13)}).menu({
+focus:function(c,f){
+f=f.item.data("item.autocomplete");false!==a._trigger("focus",c,{
+item:f})&&/^key/.test(c.originalEvent.type)&&
+a.element.val(f.value)},selected:function(c,f){
+var h=f.item.data("item.autocomplete"),i=a.previous;if(a.element[0]!==b.activeElement){
+a.element.focus();a.previous=i;setTimeout(function(){
+a.previous=i;a.selectedItem=h},1)}false!==a._trigger("select",c,{
+item:h})&&a.element.val(h.value);a.term=a.element.val();a.close(c);a.selectedItem=h},blur:function(){
+a.menu.element.is(":visible")&&a.element.val()!==a.term&&a.element.val(a.term)}}).zIndex(this.element.zIndex()+1).css({
+top:0,left:0}).hide().data("menu");
+d.fn.bgiframe&&this.menu.element.bgiframe()},destroy:function(){
+this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup");this.menu.element.remove();d.Widget.prototype.destroy.call(this)},_setOption:function(a,b){
+d.Widget.prototype._setOption.apply(this,arguments);a==="source"&&this._initSource();if(a==="appendTo")this.menu.element.appendTo(d(b||"body",this.element[0].ownerDocument)[0]);a==="disabled"&&
+b&&this.xhr&&this.xhr.abort()},_initSource:function(){
+var a=this,b,g;if(d.isArray(this.options.source)){
+b=this.options.source;this.source=function(c,f){
+f(d.ui.autocomplete.filter(b,c.term))}}else if(typeof this.options.source==="string"){
+g=this.options.source;this.source=function(c,f){
+a.xhr&&a.xhr.abort();a.xhr=d.ajax({
+url:g,data:c,dataType:"json",autocompleteRequest:++e,success:function(h){
+this.autocompleteRequest===e&&f(h)},error:function(){
+this.autocompleteRequest===e&&f([])}})}}else this.source=
+this.options.source},search:function(a,b){
+a=a!=null?a:this.element.val();this.term=this.element.val();if(a.length<this.options.minLength)return this.close(b);clearTimeout(this.closing);if(this._trigger("search",b)!==false)return this._search(a)},_search:function(a){
+this.pending++;this.element.addClass("ui-autocomplete-loading");this.source({
+term:a},this.response)},_response:function(a){
+if(!this.options.disabled&&a&&a.length){
+a=this._normalize(a);this._suggest(a);this._trigger("open")}else this.close();
+this.pending--;this.pending||this.element.removeClass("ui-autocomplete-loading")},close:function(a){
+clearTimeout(this.closing);if(this.menu.element.is(":visible")){
+this.menu.element.hide();this.menu.deactivate();this._trigger("close",a)}},_change:function(a){
+this.previous!==this.element.val()&&this._trigger("change",a,{
+item:this.selectedItem})},_normalize:function(a){
+if(a.length&&a[0].label&&a[0].value)return a;return d.map(a,function(b){
+if(typeof b==="string")return{
+label:b,value:b};return d.extend({
+label:b.label||
+b.value,value:b.value||b.label},b)})},_suggest:function(a){
+var b=this.menu.element.empty().zIndex(this.element.zIndex()+1);this._renderMenu(b,a);this.menu.deactivate();this.menu.refresh();b.show();this._resizeMenu();b.position(d.extend({
+of:this.element},this.options.position));this.options.autoFocus&&this.menu.next(new d.Event("mouseover"))},_resizeMenu:function(){
+var a=this.menu.element;a.outerWidth(Math.max(a.width("").outerWidth(),this.element.outerWidth()))},_renderMenu:function(a,b){
+var g=this;
+d.each(b,function(c,f){
+g._renderItem(a,f)})},_renderItem:function(a,b){
+return d("<li></li>").data("item.autocomplete",b).append(d("<a></a>").text(b.label)).appendTo(a)},_move:function(a,b){
+if(this.menu.element.is(":visible"))if(this.menu.first()&&/^previous/.test(a)||this.menu.last()&&/^next/.test(a)){
+this.element.val(this.term);this.menu.deactivate()}else this.menu[a](b);else this.search(null,b)},widget:function(){
+return this.menu.element}});d.extend(d.ui.autocomplete,{
+escapeRegex:function(a){
+return a.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},filter:function(a,b){
+var g=new RegExp(d.ui.autocomplete.escapeRegex(b),"i");return d.grep(a,function(c){
+return g.test(c.label||c.value||c)})}})})(jQuery);
+(function(d){
+d.widget("ui.menu",{
+_create:function(){
+var e=this;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({
+role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(a){
+if(d(a.target).closest(".ui-menu-item a").length){
+a.preventDefault();e.select(a)}});this.refresh()},refresh:function(){
+var e=this;this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem").children("a").addClass("ui-corner-all").attr("tabindex",
+-1).mouseenter(function(a){
+e.activate(a,d(this).parent())}).mouseleave(function(){
+e.deactivate()})},activate:function(e,a){
+this.deactivate();if(this.hasScroll()){
+var b=a.offset().top-this.element.offset().top,g=this.element.scrollTop(),c=this.element.height();if(b<0)this.element.scrollTop(g+b);else b>=c&&this.element.scrollTop(g+b-c+a.height())}this.active=a.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end();this._trigger("focus",e,{
+item:a})},deactivate:function(){
+if(this.active){
+this.active.children("a").removeClass("ui-state-hover").removeAttr("id");
+this._trigger("blur");this.active=null}},next:function(e){
+this.move("next",".ui-menu-item:first",e)},previous:function(e){
+this.move("prev",".ui-menu-item:last",e)},first:function(){
+return this.active&&!this.active.prevAll(".ui-menu-item").length},last:function(){
+return this.active&&!this.active.nextAll(".ui-menu-item").length},move:function(e,a,b){
+if(this.active){
+e=this.active[e+"All"](".ui-menu-item").eq(0);e.length?this.activate(b,e):this.activate(b,this.element.children(a))}else this.activate(b,
+this.element.children(a))},nextPage:function(e){
+if(this.hasScroll())if(!this.active||this.last())this.activate(e,this.element.children(".ui-menu-item:first"));else{
+var a=this.active.offset().top,b=this.element.height(),g=this.element.children(".ui-menu-item").filter(function(){
+var c=d(this).offset().top-a-b+d(this).height();return c<10&&c>-10});g.length||(g=this.element.children(".ui-menu-item:last"));this.activate(e,g)}else this.activate(e,this.element.children(".ui-menu-item").filter(!this.active||
+this.last()?":first":":last"))},previousPage:function(e){
+if(this.hasScroll())if(!this.active||this.first())this.activate(e,this.element.children(".ui-menu-item:last"));else{
+var a=this.active.offset().top,b=this.element.height();result=this.element.children(".ui-menu-item").filter(function(){
+var g=d(this).offset().top-a+b-d(this).height();return g<10&&g>-10});result.length||(result=this.element.children(".ui-menu-item:first"));this.activate(e,result)}else this.activate(e,this.element.children(".ui-menu-item").filter(!this.active||
+this.first()?":last":":first"))},hasScroll:function(){
+return this.element.height()<this.element[d.fn.prop?"prop":"attr"]("scrollHeight")},select:function(e){
+this._trigger("selected",e,{
+item:this.active})}})})(jQuery);
+;/*
+ * jQuery UI Button 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Button
+ *
+ * Depends:
+ *	jquery.ui.core.js
+ *	jquery.ui.widget.js
+ */
+(function(a){
+var g,i=function(b){
+a(":ui-button",b.target.form).each(function(){
+var c=a(this).data("button");setTimeout(function(){
+c.refresh()},1)})},h=function(b){
+var c=b.name,d=b.form,f=a([]);if(c)f=d?a(d).find("[name='"+c+"']"):a("[name='"+c+"']",b.ownerDocument).filter(function(){
+return!this.form});return f};a.widget("ui.button",{
+options:{
+disabled:null,text:true,label:null,icons:{
+primary:null,secondary:null}},_create:function(){
+this.element.closest("form").unbind("reset.button").bind("reset.button",
+i);if(typeof this.options.disabled!=="boolean")this.options.disabled=this.element.attr("disabled");this._determineButtonType();this.hasTitle=!!this.buttonElement.attr("title");var b=this,c=this.options,d=this.type==="checkbox"||this.type==="radio",f="ui-state-hover"+(!d?" ui-state-active":"");if(c.label===null)c.label=this.buttonElement.html();if(this.element.is(":disabled"))c.disabled=true;this.buttonElement.addClass("ui-button ui-widget ui-state-default ui-corner-all").attr("role","button").bind("mouseenter.button",
+function(){
+if(!c.disabled){
+a(this).addClass("ui-state-hover");this===g&&a(this).addClass("ui-state-active")}}).bind("mouseleave.button",function(){
+c.disabled||a(this).removeClass(f)}).bind("focus.button",function(){
+a(this).addClass("ui-state-focus")}).bind("blur.button",function(){
+a(this).removeClass("ui-state-focus")}).bind("click.button",function(e){
+c.disabled&&e.stopImmediatePropagation()});d&&this.element.bind("change.button",function(){
+b.refresh()});if(this.type==="checkbox")this.buttonElement.bind("click.button",
+function(){
+if(c.disabled)return false;a(this).toggleClass("ui-state-active");b.buttonElement.attr("aria-pressed",b.element[0].checked)});else if(this.type==="radio")this.buttonElement.bind("click.button",function(){
+if(c.disabled)return false;a(this).addClass("ui-state-active");b.buttonElement.attr("aria-pressed",true);var e=b.element[0];h(e).not(e).map(function(){
+return a(this).button("widget")[0]}).removeClass("ui-state-active").attr("aria-pressed",false)});else{
+this.buttonElement.bind("mousedown.button",
+function(){
+if(c.disabled)return false;a(this).addClass("ui-state-active");g=this;a(document).one("mouseup",function(){
+g=null})}).bind("mouseup.button",function(){
+if(c.disabled)return false;a(this).removeClass("ui-state-active")}).bind("keydown.button",function(e){
+if(c.disabled)return false;if(e.keyCode==a.ui.keyCode.SPACE||e.keyCode==a.ui.keyCode.ENTER)a(this).addClass("ui-state-active")}).bind("keyup.button",function(){
+a(this).removeClass("ui-state-active")});this.buttonElement.is("a")&&this.buttonElement.keyup(function(e){
+e.keyCode===
+a.ui.keyCode.SPACE&&a(this).click()})}this._setOption("disabled",c.disabled)},_determineButtonType:function(){
+this.type=this.element.is(":checkbox")?"checkbox":this.element.is(":radio")?"radio":this.element.is("input")?"input":"button";if(this.type==="checkbox"||this.type==="radio"){
+var b=this.element.parents().filter(":last"),c="label[for="+this.element.attr("id")+"]";this.buttonElement=b.find(c);if(!this.buttonElement.length){
+b=b.length?b.siblings():this.element.siblings();this.buttonElement=b.filter(c);
+if(!this.buttonElement.length)this.buttonElement=b.find(c)}this.element.addClass("ui-helper-hidden-accessible");(b=this.element.is(":checked"))&&this.buttonElement.addClass("ui-state-active");this.buttonElement.attr("aria-pressed",b)}else this.buttonElement=this.element},widget:function(){
+return this.buttonElement},destroy:function(){
+this.element.removeClass("ui-helper-hidden-accessible");this.buttonElement.removeClass("ui-button ui-widget ui-state-default ui-corner-all ui-state-hover ui-state-active  ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only").removeAttr("role").removeAttr("aria-pressed").html(this.buttonElement.find(".ui-button-text").html());
+this.hasTitle||this.buttonElement.removeAttr("title");a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){
+a.Widget.prototype._setOption.apply(this,arguments);if(b==="disabled")c?this.element.attr("disabled",true):this.element.removeAttr("disabled");this._resetButton()},refresh:function(){
+var b=this.element.is(":disabled");b!==this.options.disabled&&this._setOption("disabled",b);if(this.type==="radio")h(this.element[0]).each(function(){
+a(this).is(":checked")?a(this).button("widget").addClass("ui-state-active").attr("aria-pressed",
+true):a(this).button("widget").removeClass("ui-state-active").attr("aria-pressed",false)});else if(this.type==="checkbox")this.element.is(":checked")?this.buttonElement.addClass("ui-state-active").attr("aria-pressed",true):this.buttonElement.removeClass("ui-state-active").attr("aria-pressed",false)},_resetButton:function(){
+if(this.type==="input")this.options.label&&this.element.val(this.options.label);else{
+var b=this.buttonElement.removeClass("ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only"),
+c=a("<span></span>").addClass("ui-button-text").html(this.options.label).appendTo(b.empty()).text(),d=this.options.icons,f=d.primary&&d.secondary,e=[];if(d.primary||d.secondary){
+if(this.options.text)e.push("ui-button-text-icon"+(f?"s":d.primary?"-primary":"-secondary"));d.primary&&b.prepend("<span class='ui-button-icon-primary ui-icon "+d.primary+"'></span>");d.secondary&&b.append("<span class='ui-button-icon-secondary ui-icon "+d.secondary+"'></span>");if(!this.options.text){
+e.push(f?"ui-button-icons-only":
+"ui-button-icon-only");this.hasTitle||b.attr("title",c)}}else e.push("ui-button-text-only");b.addClass(e.join(" "))}}});a.widget("ui.buttonset",{
+options:{
+items:":button, :submit, :reset, :checkbox, :radio, a, :data(button)"},_create:function(){
+this.element.addClass("ui-buttonset")},_init:function(){
+this.refresh()},_setOption:function(b,c){
+b==="disabled"&&this.buttons.button("option",b,c);a.Widget.prototype._setOption.apply(this,arguments)},refresh:function(){
+this.buttons=this.element.find(this.options.items).filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){
+return a(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass("ui-corner-left").end().filter(":last").addClass("ui-corner-right").end().end()},
+destroy:function(){
+this.element.removeClass("ui-buttonset");this.buttons.map(function(){
+return a(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy");a.Widget.prototype.destroy.call(this)}})})(jQuery);
+;/*
+ * jQuery UI Dialog 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Dialog
+ *
+ * Depends:
+ *	jquery.ui.core.js
+ *	jquery.ui.widget.js
+ *  jquery.ui.button.js
+ *	jquery.ui.draggable.js
+ *	jquery.ui.mouse.js
+ *	jquery.ui.position.js
+ *	jquery.ui.resizable.js
+ */
+(function(c,l){
+var m={
+buttons:true,height:true,maxHeight:true,maxWidth:true,minHeight:true,minWidth:true,width:true},n={
+maxHeight:true,maxWidth:true,minHeight:true,minWidth:true},o=c.attrFn||{
+val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true,click:true};c.widget("ui.dialog",{
+options:{
+autoOpen:true,buttons:{
+},closeOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:null,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150,modal:false,
+position:{
+my:"center",at:"center",collision:"fit",using:function(a){
+var b=c(this).css(a).offset().top;b<0&&c(this).css("top",a.top-b)}},resizable:true,show:null,stack:true,title:"",width:300,zIndex:1E3},_create:function(){
+this.originalTitle=this.element.attr("title");if(typeof this.originalTitle!=="string")this.originalTitle="";this.options.title=this.options.title||this.originalTitle;var a=this,b=a.options,d=b.title||" ",e=c.ui.dialog.getTitleId(a.element),g=(a.uiDialog=c("<div></div>")).appendTo(document.body).hide().addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+
+b.dialogClass).css({
+zIndex:b.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(i){
+if(b.closeOnEscape&&i.keyCode&&i.keyCode===c.ui.keyCode.ESCAPE){
+a.close(i);i.preventDefault()}}).attr({
+role:"dialog","aria-labelledby":e}).mousedown(function(i){
+a.moveToTop(false,i)});a.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g);var f=(a.uiDialogTitlebar=c("<div></div>")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g),
+h=c('<a href="#"></a>').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){
+h.addClass("ui-state-hover")},function(){
+h.removeClass("ui-state-hover")}).focus(function(){
+h.addClass("ui-state-focus")}).blur(function(){
+h.removeClass("ui-state-focus")}).click(function(i){
+a.close(i);return false}).appendTo(f);(a.uiDialogTitlebarCloseText=c("<span></span>")).addClass("ui-icon ui-icon-closethick").text(b.closeText).appendTo(h);c("<span></span>").addClass("ui-dialog-title").attr("id",
+e).html(d).prependTo(f);if(c.isFunction(b.beforeclose)&&!c.isFunction(b.beforeClose))b.beforeClose=b.beforeclose;f.find("*").add(f).disableSelection();b.draggable&&c.fn.draggable&&a._makeDraggable();b.resizable&&c.fn.resizable&&a._makeResizable();a._createButtons(b.buttons);a._isOpen=false;c.fn.bgiframe&&g.bgiframe()},_init:function(){
+this.options.autoOpen&&this.open()},destroy:function(){
+var a=this;a.overlay&&a.overlay.destroy();a.uiDialog.hide();a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body");
+a.uiDialog.remove();a.originalTitle&&a.element.attr("title",a.originalTitle);return a},widget:function(){
+return this.uiDialog},close:function(a){
+var b=this,d,e;if(false!==b._trigger("beforeClose",a)){
+b.overlay&&b.overlay.destroy();b.uiDialog.unbind("keypress.ui-dialog");b._isOpen=false;if(b.options.hide)b.uiDialog.hide(b.options.hide,function(){
+b._trigger("close",a)});else{
+b.uiDialog.hide();b._trigger("close",a)}c.ui.dialog.overlay.resize();if(b.options.modal){
+d=0;c(".ui-dialog").each(function(){
+if(this!==
+b.uiDialog[0]){
+e=c(this).css("z-index");isNaN(e)||(d=Math.max(d,e))}});c.ui.dialog.maxZ=d}return b}},isOpen:function(){
+return this._isOpen},moveToTop:function(a,b){
+var d=this,e=d.options;if(e.modal&&!a||!e.stack&&!e.modal)return d._trigger("focus",b);if(e.zIndex>c.ui.dialog.maxZ)c.ui.dialog.maxZ=e.zIndex;if(d.overlay){
+c.ui.dialog.maxZ+=1;d.overlay.$el.css("z-index",c.ui.dialog.overlay.maxZ=c.ui.dialog.maxZ)}a={
+scrollTop:d.element.attr("scrollTop"),scrollLeft:d.element.attr("scrollLeft")};c.ui.dialog.maxZ+=
+1;d.uiDialog.css("z-index",c.ui.dialog.maxZ);d.element.attr(a);d._trigger("focus",b);return d},open:function(){
+if(!this._isOpen){
+var a=this,b=a.options,d=a.uiDialog;a.overlay=b.modal?new c.ui.dialog.overlay(a):null;a._size();a._position(b.position);d.show(b.show);a.moveToTop(true);b.modal&&d.bind("keypress.ui-dialog",function(e){
+if(e.keyCode===c.ui.keyCode.TAB){
+var g=c(":tabbable",this),f=g.filter(":first");g=g.filter(":last");if(e.target===g[0]&&!e.shiftKey){
+f.focus(1);return false}else if(e.target===
+f[0]&&e.shiftKey){
+g.focus(1);return false}}});c(a.element.find(":tabbable").get().concat(d.find(".ui-dialog-buttonpane :tabbable").get().concat(d.get()))).eq(0).focus();a._isOpen=true;a._trigger("open");return a}},_createButtons:function(a){
+var b=this,d=false,e=c("<div></div>").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),g=c("<div></div>").addClass("ui-dialog-buttonset").appendTo(e);b.uiDialog.find(".ui-dialog-buttonpane").remove();typeof a==="object"&&a!==null&&c.each(a,
+function(){
+return!(d=true)});if(d){
+c.each(a,function(f,h){
+h=c.isFunction(h)?{
+click:h,text:f}:h;var i=c('<button type="button"></button>').click(function(){
+h.click.apply(b.element[0],arguments)}).appendTo(g);c.each(h,function(j,k){
+if(j!=="click")j in o?i[j](k):i.attr(j,k)});c.fn.button&&i.button()});e.appendTo(b.uiDialog)}},_makeDraggable:function(){
+function a(f){
+return{
+position:f.position,offset:f.offset}}var b=this,d=b.options,e=c(document),g;b.uiDialog.draggable({
+cancel:".ui-dialog-content, .ui-dialog-titlebar-close",
+handle:".ui-dialog-titlebar",containment:"document",start:function(f,h){
+g=d.height==="auto"?"auto":c(this).height();c(this).height(c(this).height()).addClass("ui-dialog-dragging");b._trigger("dragStart",f,a(h))},drag:function(f,h){
+b._trigger("drag",f,a(h))},stop:function(f,h){
+d.position=[h.position.left-e.scrollLeft(),h.position.top-e.scrollTop()];c(this).removeClass("ui-dialog-dragging").height(g);b._trigger("dragStop",f,a(h));c.ui.dialog.overlay.resize()}})},_makeResizable:function(a){
+function b(f){
+return{
+originalPosition:f.originalPosition,
+originalSize:f.originalSize,position:f.position,size:f.size}}a=a===l?this.options.resizable:a;var d=this,e=d.options,g=d.uiDialog.css("position");a=typeof a==="string"?a:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({
+cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:e.maxWidth,maxHeight:e.maxHeight,minWidth:e.minWidth,minHeight:d._minHeight(),handles:a,start:function(f,h){
+c(this).addClass("ui-dialog-resizing");d._trigger("resizeStart",f,b(h))},resize:function(f,h){
+d._trigger("resize",
+f,b(h))},stop:function(f,h){
+c(this).removeClass("ui-dialog-resizing");e.height=c(this).height();e.width=c(this).width();d._trigger("resizeStop",f,b(h));c.ui.dialog.overlay.resize()}}).css("position",g).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){
+var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,a.height)},_position:function(a){
+var b=[],d=[0,0],e;if(a){
+if(typeof a==="string"||typeof a==="object"&&"0"in a){
+b=a.split?a.split(" "):
+[a[0],a[1]];if(b.length===1)b[1]=b[0];c.each(["left","top"],function(g,f){
+if(+b[g]===b[g]){
+d[g]=b[g];b[g]=f}});a={
+my:b.join(" "),at:b.join(" "),offset:d.join(" ")}}a=c.extend({
+},c.ui.dialog.prototype.options.position,a)}else a=c.ui.dialog.prototype.options.position;(e=this.uiDialog.is(":visible"))||this.uiDialog.show();this.uiDialog.css({
+top:0,left:0}).position(c.extend({
+of:window},a));e||this.uiDialog.hide()},_setOptions:function(a){
+var b=this,d={
+},e=false;c.each(a,function(g,f){
+b._setOption(g,f);
+if(g in m)e=true;if(g in n)d[g]=f});e&&this._size();this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",d)},_setOption:function(a,b){
+var d=this,e=d.uiDialog;switch(a){
+case "beforeclose":a="beforeClose";break;case "buttons":d._createButtons(b);break;case "closeText":d.uiDialogTitlebarCloseText.text(""+b);break;case "dialogClass":e.removeClass(d.options.dialogClass).addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+b);break;case "disabled":b?e.addClass("ui-dialog-disabled"):
+e.removeClass("ui-dialog-disabled");break;case "draggable":var g=e.is(":data(draggable)");g&&!b&&e.draggable("destroy");!g&&b&&d._makeDraggable();break;case "position":d._position(b);break;case "resizable":(g=e.is(":data(resizable)"))&&!b&&e.resizable("destroy");g&&typeof b==="string"&&e.resizable("option","handles",b);!g&&b!==false&&d._makeResizable(b);break;case "title":c(".ui-dialog-title",d.uiDialogTitlebar).html(""+(b||" "));break}c.Widget.prototype._setOption.apply(d,arguments)},_size:function(){
+var a=
+this.options,b,d,e=this.uiDialog.is(":visible");this.element.show().css({
+width:"auto",minHeight:0,height:0});if(a.minWidth>a.width)a.width=a.minWidth;b=this.uiDialog.css({
+height:"auto",width:a.width}).height();d=Math.max(0,a.minHeight-b);if(a.height==="auto")if(c.support.minHeight)this.element.css({
+minHeight:d,height:"auto"});else{
+this.uiDialog.show();a=this.element.css("height","auto").height();e||this.uiDialog.hide();this.element.height(Math.max(a,d))}else this.element.height(Math.max(a.height-
+b,0));this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())}});c.extend(c.ui.dialog,{
+version:"1.8.13",uuid:0,maxZ:0,getTitleId:function(a){
+a=a.attr("id");if(!a){
+this.uuid+=1;a=this.uuid}return"ui-dialog-title-"+a},overlay:function(a){
+this.$el=c.ui.dialog.overlay.create(a)}});c.extend(c.ui.dialog.overlay,{
+instances:[],oldInstances:[],maxZ:0,events:c.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(a){
+return a+".dialog-overlay"}).join(" "),
+create:function(a){
+if(this.instances.length===0){
+setTimeout(function(){
+c.ui.dialog.overlay.instances.length&&c(document).bind(c.ui.dialog.overlay.events,function(d){
+if(c(d.target).zIndex()<c.ui.dialog.overlay.maxZ)return false})},1);c(document).bind("keydown.dialog-overlay",function(d){
+if(a.options.closeOnEscape&&d.keyCode&&d.keyCode===c.ui.keyCode.ESCAPE){
+a.close(d);d.preventDefault()}});c(window).bind("resize.dialog-overlay",c.ui.dialog.overlay.resize)}var b=(this.oldInstances.pop()||c("<div></div>").addClass("ui-widget-overlay")).appendTo(document.body).css({
+width:this.width(),
+height:this.height()});c.fn.bgiframe&&b.bgiframe();this.instances.push(b);return b},destroy:function(a){
+var b=c.inArray(a,this.instances);b!=-1&&this.oldInstances.push(this.instances.splice(b,1)[0]);this.instances.length===0&&c([document,window]).unbind(".dialog-overlay");a.remove();var d=0;c.each(this.instances,function(){
+d=Math.max(d,this.css("z-index"))});this.maxZ=d},height:function(){
+var a,b;if(c.browser.msie&&c.browser.version<7){
+a=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);
+b=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);return a<b?c(window).height()+"px":a+"px"}else return c(document).height()+"px"},width:function(){
+var a,b;if(c.browser.msie&&c.browser.version<7){
+a=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth);b=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth);return a<b?c(window).width()+"px":a+"px"}else return c(document).width()+"px"},resize:function(){
+var a=c([]);c.each(c.ui.dialog.overlay.instances,
+function(){
+a=a.add(this)});a.css({
+width:0,height:0}).css({
+width:c.ui.dialog.overlay.width(),height:c.ui.dialog.overlay.height()})}});c.extend(c.ui.dialog.overlay.prototype,{
+destroy:function(){
+c.ui.dialog.overlay.destroy(this.$el)}})})(jQuery);
+;/*
+ * jQuery UI Slider 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Slider
+ *
+ * Depends:
+ *	jquery.ui.core.js
+ *	jquery.ui.mouse.js
+ *	jquery.ui.widget.js
+ */
+(function(d){
+d.widget("ui.slider",d.ui.mouse,{
+widgetEventPrefix:"slide",options:{
+animate:false,distance:0,max:100,min:0,orientation:"horizontal",range:false,step:1,value:0,values:null},_create:function(){
+var b=this,a=this.options,c=this.element.find(".ui-slider-handle").addClass("ui-state-default ui-corner-all"),f=a.values&&a.values.length||1,e=[];this._mouseSliding=this._keySliding=false;this._animateOff=true;this._handleIndex=null;this._detectOrientation();this._mouseInit();this.element.addClass("ui-slider ui-slider-"+
+this.orientation+" ui-widget ui-widget-content ui-corner-all"+(a.disabled?" ui-slider-disabled ui-disabled":""));this.range=d([]);if(a.range){
+if(a.range===true){
+if(!a.values)a.values=[this._valueMin(),this._valueMin()];if(a.values.length&&a.values.length!==2)a.values=[a.values[0],a.values[0]]}this.range=d("<div></div>").appendTo(this.element).addClass("ui-slider-range ui-widget-header"+(a.range==="min"||a.range==="max"?" ui-slider-range-"+a.range:""))}for(var j=c.length;j<f;j+=1)e.push("<a class='ui-slider-handle ui-state-default ui-corner-all' href='#'></a>");
+this.handles=c.add(d(e.join("")).appendTo(b.element));this.handle=this.handles.eq(0);this.handles.add(this.range).filter("a").click(function(g){
+g.preventDefault()}).hover(function(){
+a.disabled||d(this).addClass("ui-state-hover")},function(){
+d(this).removeClass("ui-state-hover")}).focus(function(){
+if(a.disabled)d(this).blur();else{
+d(".ui-slider .ui-state-focus").removeClass("ui-state-focus");d(this).addClass("ui-state-focus")}}).blur(function(){
+d(this).removeClass("ui-state-focus")});this.handles.each(function(g){
+d(this).data("index.ui-slider-handle",
+g)});this.handles.keydown(function(g){
+var k=true,l=d(this).data("index.ui-slider-handle"),i,h,m;if(!b.options.disabled){
+switch(g.keyCode){
+case d.ui.keyCode.HOME:case d.ui.keyCode.END:case d.ui.keyCode.PAGE_UP:case d.ui.keyCode.PAGE_DOWN:case d.ui.keyCode.UP:case d.ui.keyCode.RIGHT:case d.ui.keyCode.DOWN:case d.ui.keyCode.LEFT:k=false;if(!b._keySliding){
+b._keySliding=true;d(this).addClass("ui-state-active");i=b._start(g,l);if(i===false)return}break}m=b.options.step;i=b.options.values&&b.options.values.length?
+(h=b.values(l)):(h=b.value());switch(g.keyCode){
+case d.ui.keyCode.HOME:h=b._valueMin();break;case d.ui.keyCode.END:h=b._valueMax();break;case d.ui.keyCode.PAGE_UP:h=b._trimAlignValue(i+(b._valueMax()-b._valueMin())/5);break;case d.ui.keyCode.PAGE_DOWN:h=b._trimAlignValue(i-(b._valueMax()-b._valueMin())/5);break;case d.ui.keyCode.UP:case d.ui.keyCode.RIGHT:if(i===b._valueMax())return;h=b._trimAlignValue(i+m);break;case d.ui.keyCode.DOWN:case d.ui.keyCode.LEFT:if(i===b._valueMin())return;h=b._trimAlignValue(i-
+m);break}b._slide(g,l,h);return k}}).keyup(function(g){
+var k=d(this).data("index.ui-slider-handle");if(b._keySliding){
+b._keySliding=false;b._stop(g,k);b._change(g,k);d(this).removeClass("ui-state-active")}});this._refreshValue();this._animateOff=false},destroy:function(){
+this.handles.remove();this.range.remove();this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider");this._mouseDestroy();
+return this},_mouseCapture:function(b){
+var a=this.options,c,f,e,j,g;if(a.disabled)return false;this.elementSize={
+width:this.element.outerWidth(),height:this.element.outerHeight()};this.elementOffset=this.element.offset();c=this._normValueFromMouse({
+x:b.pageX,y:b.pageY});f=this._valueMax()-this._valueMin()+1;j=this;this.handles.each(function(k){
+var l=Math.abs(c-j.values(k));if(f>l){
+f=l;e=d(this);g=k}});if(a.range===true&&this.values(1)===a.min){
+g+=1;e=d(this.handles[g])}if(this._start(b,g)===false)return false;
+this._mouseSliding=true;j._handleIndex=g;e.addClass("ui-state-active").focus();a=e.offset();this._clickOffset=!d(b.target).parents().andSelf().is(".ui-slider-handle")?{
+left:0,top:0}:{
+left:b.pageX-a.left-e.width()/2,top:b.pageY-a.top-e.height()/2-(parseInt(e.css("borderTopWidth"),10)||0)-(parseInt(e.css("borderBottomWidth"),10)||0)+(parseInt(e.css("marginTop"),10)||0)};this.handles.hasClass("ui-state-hover")||this._slide(b,g,c);return this._animateOff=true},_mouseStart:function(){
+return true},_mouseDrag:function(b){
+var a=
+this._normValueFromMouse({
+x:b.pageX,y:b.pageY});this._slide(b,this._handleIndex,a);return false},_mouseStop:function(b){
+this.handles.removeClass("ui-state-active");this._mouseSliding=false;this._stop(b,this._handleIndex);this._change(b,this._handleIndex);this._clickOffset=this._handleIndex=null;return this._animateOff=false},_detectOrientation:function(){
+this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(b){
+var a;if(this.orientation==="horizontal"){
+a=
+this.elementSize.width;b=b.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)}else{
+a=this.elementSize.height;b=b.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)}a=b/a;if(a>1)a=1;if(a<0)a=0;if(this.orientation==="vertical")a=1-a;b=this._valueMax()-this._valueMin();return this._trimAlignValue(this._valueMin()+a*b)},_start:function(b,a){
+var c={
+handle:this.handles[a],value:this.value()};if(this.options.values&&this.options.values.length){
+c.value=this.values(a);
+c.values=this.values()}return this._trigger("start",b,c)},_slide:function(b,a,c){
+var f;if(this.options.values&&this.options.values.length){
+f=this.values(a?0:1);if(this.options.values.length===2&&this.options.range===true&&(a===0&&c>f||a===1&&c<f))c=f;if(c!==this.values(a)){
+f=this.values();f[a]=c;b=this._trigger("slide",b,{
+handle:this.handles[a],value:c,values:f});this.values(a?0:1);b!==false&&this.values(a,c,true)}}else if(c!==this.value()){
+b=this._trigger("slide",b,{
+handle:this.handles[a],value:c});
+b!==false&&this.value(c)}},_stop:function(b,a){
+var c={
+handle:this.handles[a],value:this.value()};if(this.options.values&&this.options.values.length){
+c.value=this.values(a);c.values=this.values()}this._trigger("stop",b,c)},_change:function(b,a){
+if(!this._keySliding&&!this._mouseSliding){
+var c={
+handle:this.handles[a],value:this.value()};if(this.options.values&&this.options.values.length){
+c.value=this.values(a);c.values=this.values()}this._trigger("change",b,c)}},value:function(b){
+if(arguments.length){
+this.options.value=
+this._trimAlignValue(b);this._refreshValue();this._change(null,0)}else return this._value()},values:function(b,a){
+var c,f,e;if(arguments.length>1){
+this.options.values[b]=this._trimAlignValue(a);this._refreshValue();this._change(null,b)}else if(arguments.length)if(d.isArray(arguments[0])){
+c=this.options.values;f=arguments[0];for(e=0;e<c.length;e+=1){
+c[e]=this._trimAlignValue(f[e]);this._change(null,e)}this._refreshValue()}else return this.options.values&&this.options.values.length?this._values(b):
+this.value();else return this._values()},_setOption:function(b,a){
+var c,f=0;if(d.isArray(this.options.values))f=this.options.values.length;d.Widget.prototype._setOption.apply(this,arguments);switch(b){
+case "disabled":if(a){
+this.handles.filter(".ui-state-focus").blur();this.handles.removeClass("ui-state-hover");this.handles.attr("disabled","disabled");this.element.addClass("ui-disabled")}else{
+this.handles.removeAttr("disabled");this.element.removeClass("ui-disabled")}break;case "orientation":this._detectOrientation();
+this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation);this._refreshValue();break;case "value":this._animateOff=true;this._refreshValue();this._change(null,0);this._animateOff=false;break;case "values":this._animateOff=true;this._refreshValue();for(c=0;c<f;c+=1)this._change(null,c);this._animateOff=false;break}},_value:function(){
+var b=this.options.value;return b=this._trimAlignValue(b)},_values:function(b){
+var a,c;if(arguments.length){
+a=this.options.values[b];
+return a=this._trimAlignValue(a)}else{
+a=this.options.values.slice();for(c=0;c<a.length;c+=1)a[c]=this._trimAlignValue(a[c]);return a}},_trimAlignValue:function(b){
+if(b<=this._valueMin())return this._valueMin();if(b>=this._valueMax())return this._valueMax();var a=this.options.step>0?this.options.step:1,c=(b-this._valueMin())%a;alignValue=b-c;if(Math.abs(c)*2>=a)alignValue+=c>0?a:-a;return parseFloat(alignValue.toFixed(5))},_valueMin:function(){
+return this.options.min},_valueMax:function(){
+return this.options.max},
+_refreshValue:function(){
+var b=this.options.range,a=this.options,c=this,f=!this._animateOff?a.animate:false,e,j={
+},g,k,l,i;if(this.options.values&&this.options.values.length)this.handles.each(function(h){
+e=(c.values(h)-c._valueMin())/(c._valueMax()-c._valueMin())*100;j[c.orientation==="horizontal"?"left":"bottom"]=e+"%";d(this).stop(1,1)[f?"animate":"css"](j,a.animate);if(c.options.range===true)if(c.orientation==="horizontal"){
+if(h===0)c.range.stop(1,1)[f?"animate":"css"]({
+left:e+"%"},a.animate);
+if(h===1)c.range[f?"animate":"css"]({
+width:e-g+"%"},{
+queue:false,duration:a.animate})}else{
+if(h===0)c.range.stop(1,1)[f?"animate":"css"]({
+bottom:e+"%"},a.animate);if(h===1)c.range[f?"animate":"css"]({
+height:e-g+"%"},{
+queue:false,duration:a.animate})}g=e});else{
+k=this.value();l=this._valueMin();i=this._valueMax();e=i!==l?(k-l)/(i-l)*100:0;j[c.orientation==="horizontal"?"left":"bottom"]=e+"%";this.handle.stop(1,1)[f?"animate":"css"](j,a.animate);if(b==="min"&&this.orientation==="horizontal")this.range.stop(1,
+1)[f?"animate":"css"]({
+width:e+"%"},a.animate);if(b==="max"&&this.orientation==="horizontal")this.range[f?"animate":"css"]({
+width:100-e+"%"},{
+queue:false,duration:a.animate});if(b==="min"&&this.orientation==="vertical")this.range.stop(1,1)[f?"animate":"css"]({
+height:e+"%"},a.animate);if(b==="max"&&this.orientation==="vertical")this.range[f?"animate":"css"]({
+height:100-e+"%"},{
+queue:false,duration:a.animate})}}});d.extend(d.ui.slider,{
+version:"1.8.13"})})(jQuery);
+;/*
+ * jQuery UI Tabs 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Tabs
+ *
+ * Depends:
+ *	jquery.ui.core.js
+ *	jquery.ui.widget.js
+ */
+(function(d,p){
+function u(){
+return++v}function w(){
+return++x}var v=0,x=0;d.widget("ui.tabs",{
+options:{
+add:null,ajaxOptions:null,cache:false,cookie:null,collapsible:false,disable:null,disabled:[],enable:null,event:"click",fx:null,idPrefix:"ui-tabs-",load:null,panelTemplate:"<div></div>",remove:null,select:null,show:null,spinner:"<em>Loading…</em>",tabTemplate:"<li><a href='#{href}'><span>#{label}</span></a></li>"},_create:function(){
+this._tabify(true)},_setOption:function(b,e){
+if(b=="selected")this.options.collapsible&&
+e==this.options.selected||this.select(e);else{
+this.options[b]=e;this._tabify()}},_tabId:function(b){
+return b.title&&b.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF-]/g,"")||this.options.idPrefix+u()},_sanitizeSelector:function(b){
+return b.replace(/:/g,"\\:")},_cookie:function(){
+var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+w());return d.cookie.apply(null,[b].concat(d.makeArray(arguments)))},_ui:function(b,e){
+return{
+tab:b,panel:e,index:this.anchors.index(b)}},_cleanup:function(){
+this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){
+var b=
+d(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(b){
+function e(g,f){
+g.css("display","");!d.support.opacity&&f.opacity&&g[0].style.removeAttribute("filter")}var a=this,c=this.options,h=/^#.+/;this.list=this.element.find("ol,ul").eq(0);this.lis=d(" > li:has(a[href])",this.list);this.anchors=this.lis.map(function(){
+return d("a",this)[0]});this.panels=d([]);this.anchors.each(function(g,f){
+var i=d(f).attr("href"),l=i.split("#")[0],q;if(l&&(l===location.toString().split("#")[0]||
+(q=d("base")[0])&&l===q.href)){
+i=f.hash;f.href=i}if(h.test(i))a.panels=a.panels.add(a.element.find(a._sanitizeSelector(i)));else if(i&&i!=="#"){
+d.data(f,"href.tabs",i);d.data(f,"load.tabs",i.replace(/#.*$/,""));i=a._tabId(f);f.href="#"+i;f=a.element.find("#"+i);if(!f.length){
+f=d(c.panelTemplate).attr("id",i).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(a.panels[g-1]||a.list);f.data("destroy.tabs",true)}a.panels=a.panels.add(f)}else c.disabled.push(g)});if(b){
+this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all");
+this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(c.selected===p){
+location.hash&&this.anchors.each(function(g,f){
+if(f.hash==location.hash){
+c.selected=g;return false}});if(typeof c.selected!=="number"&&c.cookie)c.selected=parseInt(a._cookie(),10);if(typeof c.selected!=="number"&&this.lis.filter(".ui-tabs-selected").length)c.selected=
+this.lis.index(this.lis.filter(".ui-tabs-selected"));c.selected=c.selected||(this.lis.length?0:-1)}else if(c.selected===null)c.selected=-1;c.selected=c.selected>=0&&this.anchors[c.selected]||c.selected<0?c.selected:0;c.disabled=d.unique(c.disabled.concat(d.map(this.lis.filter(".ui-state-disabled"),function(g){
+return a.lis.index(g)}))).sort();d.inArray(c.selected,c.disabled)!=-1&&c.disabled.splice(d.inArray(c.selected,c.disabled),1);this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");
+if(c.selected>=0&&this.anchors.length){
+a.element.find(a._sanitizeSelector(a.anchors[c.selected].hash)).removeClass("ui-tabs-hide");this.lis.eq(c.selected).addClass("ui-tabs-selected ui-state-active");a.element.queue("tabs",function(){
+a._trigger("show",null,a._ui(a.anchors[c.selected],a.element.find(a._sanitizeSelector(a.anchors[c.selected].hash))[0]))});this.load(c.selected)}d(window).bind("unload",function(){
+a.lis.add(a.anchors).unbind(".tabs");a.lis=a.anchors=a.panels=null})}else c.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"));
+this.element[c.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");c.cookie&&this._cookie(c.selected,c.cookie);b=0;for(var j;j=this.lis[b];b++)d(j)[d.inArray(b,c.disabled)!=-1&&!d(j).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");c.cache===false&&this.anchors.removeData("cache.tabs");this.lis.add(this.anchors).unbind(".tabs");if(c.event!=="mouseover"){
+var k=function(g,f){
+f.is(":not(.ui-state-disabled)")&&f.addClass("ui-state-"+g)},n=function(g,f){
+f.removeClass("ui-state-"+
+g)};this.lis.bind("mouseover.tabs",function(){
+k("hover",d(this))});this.lis.bind("mouseout.tabs",function(){
+n("hover",d(this))});this.anchors.bind("focus.tabs",function(){
+k("focus",d(this).closest("li"))});this.anchors.bind("blur.tabs",function(){
+n("focus",d(this).closest("li"))})}var m,o;if(c.fx)if(d.isArray(c.fx)){
+m=c.fx[0];o=c.fx[1]}else m=o=c.fx;var r=o?function(g,f){
+d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.hide().removeClass("ui-tabs-hide").animate(o,o.duration||"normal",
+function(){
+e(f,o);a._trigger("show",null,a._ui(g,f[0]))})}:function(g,f){
+d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.removeClass("ui-tabs-hide");a._trigger("show",null,a._ui(g,f[0]))},s=m?function(g,f){
+f.animate(m,m.duration||"normal",function(){
+a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");e(f,m);a.element.dequeue("tabs")})}:function(g,f){
+a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");a.element.dequeue("tabs")};
+this.anchors.bind(c.event+".tabs",function(){
+var g=this,f=d(g).closest("li"),i=a.panels.filter(":not(.ui-tabs-hide)"),l=a.element.find(a._sanitizeSelector(g.hash));if(f.hasClass("ui-tabs-selected")&&!c.collapsible||f.hasClass("ui-state-disabled")||f.hasClass("ui-state-processing")||a.panels.filter(":animated").length||a._trigger("select",null,a._ui(this,l[0]))===false){
+this.blur();return false}c.selected=a.anchors.index(this);a.abort();if(c.collapsible)if(f.hasClass("ui-tabs-selected")){
+c.selected=
+-1;c.cookie&&a._cookie(c.selected,c.cookie);a.element.queue("tabs",function(){
+s(g,i)}).dequeue("tabs");this.blur();return false}else if(!i.length){
+c.cookie&&a._cookie(c.selected,c.cookie);a.element.queue("tabs",function(){
+r(g,l)});a.load(a.anchors.index(this));this.blur();return false}c.cookie&&a._cookie(c.selected,c.cookie);if(l.length){
+i.length&&a.element.queue("tabs",function(){
+s(g,i)});a.element.queue("tabs",function(){
+r(g,l)});a.load(a.anchors.index(this))}else throw"jQuery UI Tabs: Mismatching fragment identifier.";
+d.browser.msie&&this.blur()});this.anchors.bind("click.tabs",function(){
+return false})},_getIndex:function(b){
+if(typeof b=="string")b=this.anchors.index(this.anchors.filter("[href$="+b+"]"));return b},destroy:function(){
+var b=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){
+var e=
+d.data(this,"href.tabs");if(e)this.href=e;var a=d(this).unbind(".tabs");d.each(["href","load","cache"],function(c,h){
+a.removeData(h+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){
+d.data(this,"destroy.tabs")?d(this).remove():d(this).removeClass("ui-state-default ui-corner-top ui-tabs-selected ui-state-active ui-state-hover ui-state-focus ui-state-disabled ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide")});b.cookie&&this._cookie(null,b.cookie);return this},add:function(b,
+e,a){
+if(a===p)a=this.anchors.length;var c=this,h=this.options;e=d(h.tabTemplate.replace(/#\{href\}/g,b).replace(/#\{label\}/g,e));b=!b.indexOf("#")?b.replace("#",""):this._tabId(d("a",e)[0]);e.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var j=c.element.find("#"+b);j.length||(j=d(h.panelTemplate).attr("id",b).data("destroy.tabs",true));j.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(a>=this.lis.length){
+e.appendTo(this.list);j.appendTo(this.list[0].parentNode)}else{
+e.insertBefore(this.lis[a]);
+j.insertBefore(this.panels[a])}h.disabled=d.map(h.disabled,function(k){
+return k>=a?++k:k});this._tabify();if(this.anchors.length==1){
+h.selected=0;e.addClass("ui-tabs-selected ui-state-active");j.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){
+c._trigger("show",null,c._ui(c.anchors[0],c.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[a],this.panels[a]));return this},remove:function(b){
+b=this._getIndex(b);var e=this.options,a=this.lis.eq(b).remove(),c=this.panels.eq(b).remove();
+if(a.hasClass("ui-tabs-selected")&&this.anchors.length>1)this.select(b+(b+1<this.anchors.length?1:-1));e.disabled=d.map(d.grep(e.disabled,function(h){
+return h!=b}),function(h){
+return h>=b?--h:h});this._tabify();this._trigger("remove",null,this._ui(a.find("a")[0],c[0]));return this},enable:function(b){
+b=this._getIndex(b);var e=this.options;if(d.inArray(b,e.disabled)!=-1){
+this.lis.eq(b).removeClass("ui-state-disabled");e.disabled=d.grep(e.disabled,function(a){
+return a!=b});this._trigger("enable",null,
+this._ui(this.anchors[b],this.panels[b]));return this}},disable:function(b){
+b=this._getIndex(b);var e=this.options;if(b!=e.selected){
+this.lis.eq(b).addClass("ui-state-disabled");e.disabled.push(b);e.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[b],this.panels[b]))}return this},select:function(b){
+b=this._getIndex(b);if(b==-1)if(this.options.collapsible&&this.options.selected!=-1)b=this.options.selected;else return this;this.anchors.eq(b).trigger(this.options.event+".tabs");return this},
+load:function(b){
+b=this._getIndex(b);var e=this,a=this.options,c=this.anchors.eq(b)[0],h=d.data(c,"load.tabs");this.abort();if(!h||this.element.queue("tabs").length!==0&&d.data(c,"cache.tabs"))this.element.dequeue("tabs");else{
+this.lis.eq(b).addClass("ui-state-processing");if(a.spinner){
+var j=d("span",c);j.data("label.tabs",j.html()).html(a.spinner)}this.xhr=d.ajax(d.extend({
+},a.ajaxOptions,{
+url:h,success:function(k,n){
+e.element.find(e._sanitizeSelector(c.hash)).html(k);e._cleanup();a.cache&&d.data(c,
+"cache.tabs",true);e._trigger("load",null,e._ui(e.anchors[b],e.panels[b]));try{
+a.ajaxOptions.success(k,n)}catch(m){
+}},error:function(k,n){
+e._cleanup();e._trigger("load",null,e._ui(e.anchors[b],e.panels[b]));try{
+a.ajaxOptions.error(k,n,b,c)}catch(m){
+}}}));e.element.dequeue("tabs");return this}},abort:function(){
+this.element.queue([]);this.panels.stop(false,true);this.element.queue("tabs",this.element.queue("tabs").splice(-2,2));if(this.xhr){
+this.xhr.abort();delete this.xhr}this._cleanup();return this},
+url:function(b,e){
+this.anchors.eq(b).removeData("cache.tabs").data("load.tabs",e);return this},length:function(){
+return this.anchors.length}});d.extend(d.ui.tabs,{
+version:"1.8.13"});d.extend(d.ui.tabs.prototype,{
+rotation:null,rotate:function(b,e){
+var a=this,c=this.options,h=a._rotate||(a._rotate=function(j){
+clearTimeout(a.rotation);a.rotation=setTimeout(function(){
+var k=c.selected;a.select(++k<a.anchors.length?k:0)},b);j&&j.stopPropagation()});e=a._unrotate||(a._unrotate=!e?function(j){
+j.clientX&&
+a.rotate(null)}:function(){
+t=c.selected;h()});if(b){
+this.element.bind("tabsshow",h);this.anchors.bind(c.event+".tabs",e);h()}else{
+clearTimeout(a.rotation);this.element.unbind("tabsshow",h);this.anchors.unbind(c.event+".tabs",e);delete this._rotate;delete this._unrotate}return this}})})(jQuery);
+;/*
+ * jQuery UI Datepicker 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Datepicker
+ *
+ * Depends:
+ *	jquery.ui.core.js
+ */
+(function(d,B){
+function M(){
+this.debug=false;this._curInst=null;this._keyEvent=false;this._disabledInputs=[];this._inDialog=this._datepickerShowing=false;this._mainDivId="ui-datepicker-div";this._inlineClass="ui-datepicker-inline";this._appendClass="ui-datepicker-append";this._triggerClass="ui-datepicker-trigger";this._dialogClass="ui-datepicker-dialog";this._disableClass="ui-datepicker-disabled";this._unselectableClass="ui-datepicker-unselectable";this._currentClass="ui-datepicker-current-day";this._dayOverClass=
+"ui-datepicker-days-cell-over";this.regional=[];this.regional[""]={
+closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su",
+"Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:false,showMonthAfterYear:false,yearSuffix:""};this._defaults={
+showOn:"focus",showAnim:"fadeIn",showOptions:{
+},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:false,hideIfNoPrevNext:false,navigationAsDateFormat:false,gotoCurrent:false,changeMonth:false,changeYear:false,yearRange:"c-10:c+10",showOtherMonths:false,selectOtherMonths:false,showWeek:false,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",
+minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:true,showButtonPanel:false,autoSize:false};d.extend(this._defaults,this.regional[""]);this.dpDiv=N(d('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}function N(a){
+return a.delegate("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a",
+"mouseout",function(){
+d(this).removeClass("ui-state-hover");this.className.indexOf("ui-datepicker-prev")!=-1&&d(this).removeClass("ui-datepicker-prev-hover");this.className.indexOf("ui-datepicker-next")!=-1&&d(this).removeClass("ui-datepicker-next-hover")}).delegate("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a","mouseover",function(){
+if(!d.datepicker._isDisabledDatepicker(J.inline?a.parent()[0]:J.input[0])){
+d(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");
+d(this).addClass("ui-state-hover");this.className.indexOf("ui-datepicker-prev")!=-1&&d(this).addClass("ui-datepicker-prev-hover");this.className.indexOf("ui-datepicker-next")!=-1&&d(this).addClass("ui-datepicker-next-hover")}})}function H(a,b){
+d.extend(a,b);for(var c in b)if(b[c]==null||b[c]==B)a[c]=b[c];return a}d.extend(d.ui,{
+datepicker:{
+version:"1.8.13"}});var z=(new Date).getTime(),J;d.extend(M.prototype,{
+markerClassName:"hasDatepicker",log:function(){
+this.debug&&console.log.apply("",arguments)},
+_widgetDatepicker:function(){
+return this.dpDiv},setDefaults:function(a){
+H(this._defaults,a||{
+});return this},_attachDatepicker:function(a,b){
+var c=null;for(var e in this._defaults){
+var f=a.getAttribute("date:"+e);if(f){
+c=c||{
+};try{
+c[e]=eval(f)}catch(h){
+c[e]=f}}}e=a.nodeName.toLowerCase();f=e=="div"||e=="span";if(!a.id){
+this.uuid+=1;a.id="dp"+this.uuid}var i=this._newInst(d(a),f);i.settings=d.extend({
+},b||{
+},c||{
+});if(e=="input")this._connectDatepicker(a,i);else f&&this._inlineDatepicker(a,i)},_newInst:function(a,
+b){
+return{
+id:a[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1"),input:a,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:b,dpDiv:!b?this.dpDiv:N(d('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}},_connectDatepicker:function(a,b){
+var c=d(a);b.append=d([]);b.trigger=d([]);if(!c.hasClass(this.markerClassName)){
+this._attachments(c,b);c.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",
+function(e,f,h){
+b.settings[f]=h}).bind("getData.datepicker",function(e,f){
+return this._get(b,f)});this._autoSize(b);d.data(a,"datepicker",b)}},_attachments:function(a,b){
+var c=this._get(b,"appendText"),e=this._get(b,"isRTL");b.append&&b.append.remove();if(c){
+b.append=d('<span class="'+this._appendClass+'">'+c+"</span>");a[e?"before":"after"](b.append)}a.unbind("focus",this._showDatepicker);b.trigger&&b.trigger.remove();c=this._get(b,"showOn");if(c=="focus"||c=="both")a.focus(this._showDatepicker);
+if(c=="button"||c=="both"){
+c=this._get(b,"buttonText");var f=this._get(b,"buttonImage");b.trigger=d(this._get(b,"buttonImageOnly")?d("<img/>").addClass(this._triggerClass).attr({
+src:f,alt:c,title:c}):d('<button type="button"></button>').addClass(this._triggerClass).html(f==""?c:d("<img/>").attr({
+src:f,alt:c,title:c})));a[e?"before":"after"](b.trigger);b.trigger.click(function(){
+d.datepicker._datepickerShowing&&d.datepicker._lastInput==a[0]?d.datepicker._hideDatepicker():d.datepicker._showDatepicker(a[0]);
+return false})}},_autoSize:function(a){
+if(this._get(a,"autoSize")&&!a.inline){
+var b=new Date(2009,11,20),c=this._get(a,"dateFormat");if(c.match(/[DM]/)){
+var e=function(f){
+for(var h=0,i=0,g=0;g<f.length;g++)if(f[g].length>h){
+h=f[g].length;i=g}return i};b.setMonth(e(this._get(a,c.match(/MM/)?"monthNames":"monthNamesShort")));b.setDate(e(this._get(a,c.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("size",this._formatDate(a,b).length)}},_inlineDatepicker:function(a,b){
+var c=d(a);
+if(!c.hasClass(this.markerClassName)){
+c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker",function(e,f,h){
+b.settings[f]=h}).bind("getData.datepicker",function(e,f){
+return this._get(b,f)});d.data(a,"datepicker",b);this._setDate(b,this._getDefaultDate(b),true);this._updateDatepicker(b);this._updateAlternate(b);b.dpDiv.show()}},_dialogDatepicker:function(a,b,c,e,f){
+a=this._dialogInst;if(!a){
+this.uuid+=1;this._dialogInput=d('<input type="text" id="'+("dp"+this.uuid)+'" style="position: absolute; top: -100px; width: 0px; z-index: -10;"/>');
+this._dialogInput.keydown(this._doKeyDown);d("body").append(this._dialogInput);a=this._dialogInst=this._newInst(this._dialogInput,false);a.settings={
+};d.data(this._dialogInput[0],"datepicker",a)}H(a.settings,e||{
+});b=b&&b.constructor==Date?this._formatDate(a,b):b;this._dialogInput.val(b);this._pos=f?f.length?f:[f.pageX,f.pageY]:null;if(!this._pos)this._pos=[document.documentElement.clientWidth/2-100+(document.documentElement.scrollLeft||document.body.scrollLeft),document.documentElement.clientHeight/
+2-150+(document.documentElement.scrollTop||document.body.scrollTop)];this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px");a.settings.onSelect=c;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]);d.blockUI&&d.blockUI(this.dpDiv);d.data(this._dialogInput[0],"datepicker",a);return this},_destroyDatepicker:function(a){
+var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){
+var e=a.nodeName.toLowerCase();d.removeData(a,
+"datepicker");if(e=="input"){
+c.append.remove();c.trigger.remove();b.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)}else if(e=="div"||e=="span")b.removeClass(this.markerClassName).empty()}},_enableDatepicker:function(a){
+var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){
+var e=a.nodeName.toLowerCase();if(e=="input"){
+a.disabled=false;c.trigger.filter("button").each(function(){
+this.disabled=
+false}).end().filter("img").css({
+opacity:"1.0",cursor:""})}else if(e=="div"||e=="span"){
+b=b.children("."+this._inlineClass);b.children().removeClass("ui-state-disabled");b.find("select.ui-datepicker-month, select.ui-datepicker-year").removeAttr("disabled")}this._disabledInputs=d.map(this._disabledInputs,function(f){
+return f==a?null:f})}},_disableDatepicker:function(a){
+var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){
+var e=a.nodeName.toLowerCase();if(e=="input"){
+a.disabled=
+true;c.trigger.filter("button").each(function(){
+this.disabled=true}).end().filter("img").css({
+opacity:"0.5",cursor:"default"})}else if(e=="div"||e=="span"){
+b=b.children("."+this._inlineClass);b.children().addClass("ui-state-disabled");b.find("select.ui-datepicker-month, select.ui-datepicker-year").attr("disabled","disabled")}this._disabledInputs=d.map(this._disabledInputs,function(f){
+return f==a?null:f});this._disabledInputs[this._disabledInputs.length]=a}},_isDisabledDatepicker:function(a){
+if(!a)return false;
+for(var b=0;b<this._disabledInputs.length;b++)if(this._disabledInputs[b]==a)return true;return false},_getInst:function(a){
+try{
+return d.data(a,"datepicker")}catch(b){
+throw"Missing instance data for this datepicker";}},_optionDatepicker:function(a,b,c){
+var e=this._getInst(a);if(arguments.length==2&&typeof b=="string")return b=="defaults"?d.extend({
+},d.datepicker._defaults):e?b=="all"?d.extend({
+},e.settings):this._get(e,b):null;var f=b||{
+};if(typeof b=="string"){
+f={
+};f[b]=c}if(e){
+this._curInst==e&&
+this._hideDatepicker();var h=this._getDateDatepicker(a,true),i=this._getMinMaxDate(e,"min"),g=this._getMinMaxDate(e,"max");H(e.settings,f);if(i!==null&&f.dateFormat!==B&&f.minDate===B)e.settings.minDate=this._formatDate(e,i);if(g!==null&&f.dateFormat!==B&&f.maxDate===B)e.settings.maxDate=this._formatDate(e,g);this._attachments(d(a),e);this._autoSize(e);this._setDate(e,h);this._updateAlternate(e);this._updateDatepicker(e)}},_changeDatepicker:function(a,b,c){
+this._optionDatepicker(a,b,c)},_refreshDatepicker:function(a){
+(a=
+this._getInst(a))&&this._updateDatepicker(a)},_setDateDatepicker:function(a,b){
+if(a=this._getInst(a)){
+this._setDate(a,b);this._updateDatepicker(a);this._updateAlternate(a)}},_getDateDatepicker:function(a,b){
+(a=this._getInst(a))&&!a.inline&&this._setDateFromField(a,b);return a?this._getDate(a):null},_doKeyDown:function(a){
+var b=d.datepicker._getInst(a.target),c=true,e=b.dpDiv.is(".ui-datepicker-rtl");b._keyEvent=true;if(d.datepicker._datepickerShowing)switch(a.keyCode){
+case 9:d.datepicker._hideDatepicker();
+c=false;break;case 13:c=d("td."+d.datepicker._dayOverClass+":not(."+d.datepicker._currentClass+")",b.dpDiv);c[0]?d.datepicker._selectDay(a.target,b.selectedMonth,b.selectedYear,c[0]):d.datepicker._hideDatepicker();return false;case 27:d.datepicker._hideDatepicker();break;case 33:d.datepicker._adjustDate(a.target,a.ctrlKey?-d.datepicker._get(b,"stepBigMonths"):-d.datepicker._get(b,"stepMonths"),"M");break;case 34:d.datepicker._adjustDate(a.target,a.ctrlKey?+d.datepicker._get(b,"stepBigMonths"):+d.datepicker._get(b,
+"stepMonths"),"M");break;case 35:if(a.ctrlKey||a.metaKey)d.datepicker._clearDate(a.target);c=a.ctrlKey||a.metaKey;break;case 36:if(a.ctrlKey||a.metaKey)d.datepicker._gotoToday(a.target);c=a.ctrlKey||a.metaKey;break;case 37:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,e?+1:-1,"D");c=a.ctrlKey||a.metaKey;if(a.originalEvent.altKey)d.datepicker._adjustDate(a.target,a.ctrlKey?-d.datepicker._get(b,"stepBigMonths"):-d.datepicker._get(b,"stepMonths"),"M");break;case 38:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,
+-7,"D");c=a.ctrlKey||a.metaKey;break;case 39:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,e?-1:+1,"D");c=a.ctrlKey||a.metaKey;if(a.originalEvent.altKey)d.datepicker._adjustDate(a.target,a.ctrlKey?+d.datepicker._get(b,"stepBigMonths"):+d.datepicker._get(b,"stepMonths"),"M");break;case 40:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,+7,"D");c=a.ctrlKey||a.metaKey;break;default:c=false}else if(a.keyCode==36&&a.ctrlKey)d.datepicker._showDatepicker(this);else c=false;if(c){
+a.preventDefault();
+a.stopPropagation()}},_doKeyPress:function(a){
+var b=d.datepicker._getInst(a.target);if(d.datepicker._get(b,"constrainInput")){
+b=d.datepicker._possibleChars(d.datepicker._get(b,"dateFormat"));var c=String.fromCharCode(a.charCode==B?a.keyCode:a.charCode);return a.ctrlKey||a.metaKey||c<" "||!b||b.indexOf(c)>-1}},_doKeyUp:function(a){
+a=d.datepicker._getInst(a.target);if(a.input.val()!=a.lastVal)try{
+if(d.datepicker.parseDate(d.datepicker._get(a,"dateFormat"),a.input?a.input.val():null,d.datepicker._getFormatConfig(a))){
+d.datepicker._setDateFromField(a);
+d.datepicker._updateAlternate(a);d.datepicker._updateDatepicker(a)}}catch(b){
+d.datepicker.log(b)}return true},_showDatepicker:function(a){
+a=a.target||a;if(a.nodeName.toLowerCase()!="input")a=d("input",a.parentNode)[0];if(!(d.datepicker._isDisabledDatepicker(a)||d.datepicker._lastInput==a)){
+var b=d.datepicker._getInst(a);d.datepicker._curInst&&d.datepicker._curInst!=b&&d.datepicker._curInst.dpDiv.stop(true,true);var c=d.datepicker._get(b,"beforeShow");H(b.settings,c?c.apply(a,[a,b]):{
+});b.lastVal=
+null;d.datepicker._lastInput=a;d.datepicker._setDateFromField(b);if(d.datepicker._inDialog)a.value="";if(!d.datepicker._pos){
+d.datepicker._pos=d.datepicker._findPos(a);d.datepicker._pos[1]+=a.offsetHeight}var e=false;d(a).parents().each(function(){
+e|=d(this).css("position")=="fixed";return!e});if(e&&d.browser.opera){
+d.datepicker._pos[0]-=document.documentElement.scrollLeft;d.datepicker._pos[1]-=document.documentElement.scrollTop}c={
+left:d.datepicker._pos[0],top:d.datepicker._pos[1]};d.datepicker._pos=
+null;b.dpDiv.empty();b.dpDiv.css({
+position:"absolute",display:"block",top:"-1000px"});d.datepicker._updateDatepicker(b);c=d.datepicker._checkOffset(b,c,e);b.dpDiv.css({
+position:d.datepicker._inDialog&&d.blockUI?"static":e?"fixed":"absolute",display:"none",left:c.left+"px",top:c.top+"px"});if(!b.inline){
+c=d.datepicker._get(b,"showAnim");var f=d.datepicker._get(b,"duration"),h=function(){
+var i=b.dpDiv.find("iframe.ui-datepicker-cover");if(i.length){
+var g=d.datepicker._getBorders(b.dpDiv);i.css({
+left:-g[0],
+top:-g[1],width:b.dpDiv.outerWidth(),height:b.dpDiv.outerHeight()})}};b.dpDiv.zIndex(d(a).zIndex()+1);d.datepicker._datepickerShowing=true;d.effects&&d.effects[c]?b.dpDiv.show(c,d.datepicker._get(b,"showOptions"),f,h):b.dpDiv[c||"show"](c?f:null,h);if(!c||!f)h();b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus();d.datepicker._curInst=b}}},_updateDatepicker:function(a){
+var b=d.datepicker._getBorders(a.dpDiv);J=a;a.dpDiv.empty().append(this._generateHTML(a));var c=a.dpDiv.find("iframe.ui-datepicker-cover");
+c.length&&c.css({
+left:-b[0],top:-b[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()});a.dpDiv.find("."+this._dayOverClass+" a").mouseover();b=this._getNumberOfMonths(a);c=b[1];a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("");c>1&&a.dpDiv.addClass("ui-datepicker-multi-"+c).css("width",17*c+"em");a.dpDiv[(b[0]!=1||b[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");a.dpDiv[(this._get(a,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl");
+a==d.datepicker._curInst&&d.datepicker._datepickerShowing&&a.input&&a.input.is(":visible")&&!a.input.is(":disabled")&&a.input[0]!=document.activeElement&&a.input.focus();if(a.yearshtml){
+var e=a.yearshtml;setTimeout(function(){
+e===a.yearshtml&&a.yearshtml&&a.dpDiv.find("select.ui-datepicker-year:first").replaceWith(a.yearshtml);e=a.yearshtml=null},0)}},_getBorders:function(a){
+var b=function(c){
+return{
+thin:1,medium:2,thick:3}[c]||c};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},
+_checkOffset:function(a,b,c){
+var e=a.dpDiv.outerWidth(),f=a.dpDiv.outerHeight(),h=a.input?a.input.outerWidth():0,i=a.input?a.input.outerHeight():0,g=document.documentElement.clientWidth+d(document).scrollLeft(),j=document.documentElement.clientHeight+d(document).scrollTop();b.left-=this._get(a,"isRTL")?e-h:0;b.left-=c&&b.left==a.input.offset().left?d(document).scrollLeft():0;b.top-=c&&b.top==a.input.offset().top+i?d(document).scrollTop():0;b.left-=Math.min(b.left,b.left+e>g&&g>e?Math.abs(b.left+e-
+g):0);b.top-=Math.min(b.top,b.top+f>j&&j>f?Math.abs(f+i):0);return b},_findPos:function(a){
+for(var b=this._get(this._getInst(a),"isRTL");a&&(a.type=="hidden"||a.nodeType!=1||d.expr.filters.hidden(a));)a=a[b?"previousSibling":"nextSibling"];a=d(a).offset();return[a.left,a.top]},_hideDatepicker:function(a){
+var b=this._curInst;if(!(!b||a&&b!=d.data(a,"datepicker")))if(this._datepickerShowing){
+a=this._get(b,"showAnim");var c=this._get(b,"duration"),e=function(){
+d.datepicker._tidyDialog(b);this._curInst=
+null};d.effects&&d.effects[a]?b.dpDiv.hide(a,d.datepicker._get(b,"showOptions"),c,e):b.dpDiv[a=="slideDown"?"slideUp":a=="fadeIn"?"fadeOut":"hide"](a?c:null,e);a||e();if(a=this._get(b,"onClose"))a.apply(b.input?b.input[0]:null,[b.input?b.input.val():"",b]);this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){
+this._dialogInput.css({
+position:"absolute",left:"0",top:"-100px"});if(d.blockUI){
+d.unblockUI();d("body").append(this.dpDiv)}}this._inDialog=false}},_tidyDialog:function(a){
+a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},
+_checkExternalClick:function(a){
+if(d.datepicker._curInst){
+a=d(a.target);a[0].id!=d.datepicker._mainDivId&&a.parents("#"+d.datepicker._mainDivId).length==0&&!a.hasClass(d.datepicker.markerClassName)&&!a.hasClass(d.datepicker._triggerClass)&&d.datepicker._datepickerShowing&&!(d.datepicker._inDialog&&d.blockUI)&&d.datepicker._hideDatepicker()}},_adjustDate:function(a,b,c){
+a=d(a);var e=this._getInst(a[0]);if(!this._isDisabledDatepicker(a[0])){
+this._adjustInstDate(e,b+(c=="M"?this._get(e,"showCurrentAtPos"):
+0),c);this._updateDatepicker(e)}},_gotoToday:function(a){
+a=d(a);var b=this._getInst(a[0]);if(this._get(b,"gotoCurrent")&&b.currentDay){
+b.selectedDay=b.currentDay;b.drawMonth=b.selectedMonth=b.currentMonth;b.drawYear=b.selectedYear=b.currentYear}else{
+var c=new Date;b.selectedDay=c.getDate();b.drawMonth=b.selectedMonth=c.getMonth();b.drawYear=b.selectedYear=c.getFullYear()}this._notifyChange(b);this._adjustDate(a)},_selectMonthYear:function(a,b,c){
+a=d(a);var e=this._getInst(a[0]);e._selectingMonthYear=
+false;e["selected"+(c=="M"?"Month":"Year")]=e["draw"+(c=="M"?"Month":"Year")]=parseInt(b.options[b.selectedIndex].value,10);this._notifyChange(e);this._adjustDate(a)},_clickMonthYear:function(a){
+var b=this._getInst(d(a)[0]);b.input&&b._selectingMonthYear&&setTimeout(function(){
+b.input.focus()},0);b._selectingMonthYear=!b._selectingMonthYear},_selectDay:function(a,b,c,e){
+var f=d(a);if(!(d(e).hasClass(this._unselectableClass)||this._isDisabledDatepicker(f[0]))){
+f=this._getInst(f[0]);f.selectedDay=f.currentDay=
+d("a",e).html();f.selectedMonth=f.currentMonth=b;f.selectedYear=f.currentYear=c;this._selectDate(a,this._formatDate(f,f.currentDay,f.currentMonth,f.currentYear))}},_clearDate:function(a){
+a=d(a);this._getInst(a[0]);this._selectDate(a,"")},_selectDate:function(a,b){
+a=this._getInst(d(a)[0]);b=b!=null?b:this._formatDate(a);a.input&&a.input.val(b);this._updateAlternate(a);var c=this._get(a,"onSelect");if(c)c.apply(a.input?a.input[0]:null,[b,a]);else a.input&&a.input.trigger("change");if(a.inline)this._updateDatepicker(a);
+else{
+this._hideDatepicker();this._lastInput=a.input[0];typeof a.input[0]!="object"&&a.input.focus();this._lastInput=null}},_updateAlternate:function(a){
+var b=this._get(a,"altField");if(b){
+var c=this._get(a,"altFormat")||this._get(a,"dateFormat"),e=this._getDate(a),f=this.formatDate(c,e,this._getFormatConfig(a));d(b).each(function(){
+d(this).val(f)})}},noWeekends:function(a){
+a=a.getDay();return[a>0&&a<6,""]},iso8601Week:function(a){
+a=new Date(a.getTime());a.setDate(a.getDate()+4-(a.getDay()||7));var b=
+a.getTime();a.setMonth(0);a.setDate(1);return Math.floor(Math.round((b-a)/864E5)/7)+1},parseDate:function(a,b,c){
+if(a==null||b==null)throw"Invalid arguments";b=typeof b=="object"?b.toString():b+"";if(b=="")return null;var e=(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff;e=typeof e!="string"?e:(new Date).getFullYear()%100+parseInt(e,10);for(var f=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,h=(c?c.dayNames:null)||this._defaults.dayNames,i=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,
+g=(c?c.monthNames:null)||this._defaults.monthNames,j=c=-1,l=-1,u=-1,k=false,o=function(p){
+(p=A+1<a.length&&a.charAt(A+1)==p)&&A++;return p},m=function(p){
+var C=o(p);p=new RegExp("^\\d{1,"+(p=="@"?14:p=="!"?20:p=="y"&&C?4:p=="o"?3:2)+"}");p=b.substring(s).match(p);if(!p)throw"Missing number at position "+s;s+=p[0].length;return parseInt(p[0],10)},n=function(p,C,K){
+p=d.map(o(p)?K:C,function(w,x){
+return[[x,w]]}).sort(function(w,x){
+return-(w[1].length-x[1].length)});var E=-1;d.each(p,function(w,x){
+w=
+x[1];if(b.substr(s,w.length).toLowerCase()==w.toLowerCase()){
+E=x[0];s+=w.length;return false}});if(E!=-1)return E+1;else throw"Unknown name at position "+s;},r=function(){
+if(b.charAt(s)!=a.charAt(A))throw"Unexpected literal at position "+s;s++},s=0,A=0;A<a.length;A++)if(k)if(a.charAt(A)=="'"&&!o("'"))k=false;else r();else switch(a.charAt(A)){
+case "d":l=m("d");break;case "D":n("D",f,h);break;case "o":u=m("o");break;case "m":j=m("m");break;case "M":j=n("M",i,g);break;case "y":c=m("y");break;case "@":var v=
+new Date(m("@"));c=v.getFullYear();j=v.getMonth()+1;l=v.getDate();break;case "!":v=new Date((m("!")-this._ticksTo1970)/1E4);c=v.getFullYear();j=v.getMonth()+1;l=v.getDate();break;case "'":if(o("'"))r();else k=true;break;default:r()}if(c==-1)c=(new Date).getFullYear();else if(c<100)c+=(new Date).getFullYear()-(new Date).getFullYear()%100+(c<=e?0:-100);if(u>-1){
+j=1;l=u;do{
+e=this._getDaysInMonth(c,j-1);if(l<=e)break;j++;l-=e}while(1)}v=this._daylightSavingAdjust(new Date(c,j-1,l));if(v.getFullYear()!=
+c||v.getMonth()+1!=j||v.getDate()!=l)throw"Invalid date";return v},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1E7,formatDate:function(a,b,c){
+if(!b)return"";var e=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=(c?c.dayNames:null)||this._defaults.dayNames,
+h=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort;c=(c?c.monthNames:null)||this._defaults.monthNames;var i=function(o){
+(o=k+1<a.length&&a.charAt(k+1)==o)&&k++;return o},g=function(o,m,n){
+m=""+m;if(i(o))for(;m.length<n;)m="0"+m;return m},j=function(o,m,n,r){
+return i(o)?r[m]:n[m]},l="",u=false;if(b)for(var k=0;k<a.length;k++)if(u)if(a.charAt(k)=="'"&&!i("'"))u=false;else l+=a.charAt(k);else switch(a.charAt(k)){
+case "d":l+=g("d",b.getDate(),2);break;case "D":l+=j("D",b.getDay(),e,f);break;
+case "o":l+=g("o",(b.getTime()-(new Date(b.getFullYear(),0,0)).getTime())/864E5,3);break;case "m":l+=g("m",b.getMonth()+1,2);break;case "M":l+=j("M",b.getMonth(),h,c);break;case "y":l+=i("y")?b.getFullYear():(b.getYear()%100<10?"0":"")+b.getYear()%100;break;case "@":l+=b.getTime();break;case "!":l+=b.getTime()*1E4+this._ticksTo1970;break;case "'":if(i("'"))l+="'";else u=true;break;default:l+=a.charAt(k)}return l},_possibleChars:function(a){
+for(var b="",c=false,e=function(h){
+(h=f+1<a.length&&a.charAt(f+
+1)==h)&&f++;return h},f=0;f<a.length;f++)if(c)if(a.charAt(f)=="'"&&!e("'"))c=false;else b+=a.charAt(f);else switch(a.charAt(f)){
+case "d":case "m":case "y":case "@":b+="0123456789";break;case "D":case "M":return null;case "'":if(e("'"))b+="'";else c=true;break;default:b+=a.charAt(f)}return b},_get:function(a,b){
+return a.settings[b]!==B?a.settings[b]:this._defaults[b]},_setDateFromField:function(a,b){
+if(a.input.val()!=a.lastVal){
+var c=this._get(a,"dateFormat"),e=a.lastVal=a.input?a.input.val():null,
+f,h;f=h=this._getDefaultDate(a);var i=this._getFormatConfig(a);try{
+f=this.parseDate(c,e,i)||h}catch(g){
+this.log(g);e=b?"":e}a.selectedDay=f.getDate();a.drawMonth=a.selectedMonth=f.getMonth();a.drawYear=a.selectedYear=f.getFullYear();a.currentDay=e?f.getDate():0;a.currentMonth=e?f.getMonth():0;a.currentYear=e?f.getFullYear():0;this._adjustInstDate(a)}},_getDefaultDate:function(a){
+return this._restrictMinMax(a,this._determineDate(a,this._get(a,"defaultDate"),new Date))},_determineDate:function(a,b,
+c){
+var e=function(h){
+var i=new Date;i.setDate(i.getDate()+h);return i},f=function(h){
+try{
+return d.datepicker.parseDate(d.datepicker._get(a,"dateFormat"),h,d.datepicker._getFormatConfig(a))}catch(i){
+}var g=(h.toLowerCase().match(/^c/)?d.datepicker._getDate(a):null)||new Date,j=g.getFullYear(),l=g.getMonth();g=g.getDate();for(var u=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,k=u.exec(h);k;){
+switch(k[2]||"d"){
+case "d":case "D":g+=parseInt(k[1],10);break;case "w":case "W":g+=parseInt(k[1],10)*7;break;case "m":case "M":l+=
+parseInt(k[1],10);g=Math.min(g,d.datepicker._getDaysInMonth(j,l));break;case "y":case "Y":j+=parseInt(k[1],10);g=Math.min(g,d.datepicker._getDaysInMonth(j,l));break}k=u.exec(h)}return new Date(j,l,g)};if(b=(b=b==null||b===""?c:typeof b=="string"?f(b):typeof b=="number"?isNaN(b)?c:e(b):new Date(b.getTime()))&&b.toString()=="Invalid Date"?c:b){
+b.setHours(0);b.setMinutes(0);b.setSeconds(0);b.setMilliseconds(0)}return this._daylightSavingAdjust(b)},_daylightSavingAdjust:function(a){
+if(!a)return null;
+a.setHours(a.getHours()>12?a.getHours()+2:0);return a},_setDate:function(a,b,c){
+var e=!b,f=a.selectedMonth,h=a.selectedYear;b=this._restrictMinMax(a,this._determineDate(a,b,new Date));a.selectedDay=a.currentDay=b.getDate();a.drawMonth=a.selectedMonth=a.currentMonth=b.getMonth();a.drawYear=a.selectedYear=a.currentYear=b.getFullYear();if((f!=a.selectedMonth||h!=a.selectedYear)&&!c)this._notifyChange(a);this._adjustInstDate(a);if(a.input)a.input.val(e?"":this._formatDate(a))},_getDate:function(a){
+return!a.currentYear||
+a.input&&a.input.val()==""?null:this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay))},_generateHTML:function(a){
+var b=new Date;b=this._daylightSavingAdjust(new Date(b.getFullYear(),b.getMonth(),b.getDate()));var c=this._get(a,"isRTL"),e=this._get(a,"showButtonPanel"),f=this._get(a,"hideIfNoPrevNext"),h=this._get(a,"navigationAsDateFormat"),i=this._getNumberOfMonths(a),g=this._get(a,"showCurrentAtPos"),j=this._get(a,"stepMonths"),l=i[0]!=1||i[1]!=1,u=this._daylightSavingAdjust(!a.currentDay?
+new Date(9999,9,9):new Date(a.currentYear,a.currentMonth,a.currentDay)),k=this._getMinMaxDate(a,"min"),o=this._getMinMaxDate(a,"max");g=a.drawMonth-g;var m=a.drawYear;if(g<0){
+g+=12;m--}if(o){
+var n=this._daylightSavingAdjust(new Date(o.getFullYear(),o.getMonth()-i[0]*i[1]+1,o.getDate()));for(n=k&&n<k?k:n;this._daylightSavingAdjust(new Date(m,g,1))>n;){
+g--;if(g<0){
+g=11;m--}}}a.drawMonth=g;a.drawYear=m;n=this._get(a,"prevText");n=!h?n:this.formatDate(n,this._daylightSavingAdjust(new Date(m,g-j,1)),this._getFormatConfig(a));
+n=this._canAdjustMonth(a,-1,m,g)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery_'+z+".datepicker._adjustDate('#"+a.id+"', -"+j+", 'M');\" title=\""+n+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"e":"w")+'">'+n+"</span></a>":f?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+n+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"e":"w")+'">'+n+"</span></a>";var r=this._get(a,"nextText");r=!h?r:this.formatDate(r,this._daylightSavingAdjust(new Date(m,
+g+j,1)),this._getFormatConfig(a));f=this._canAdjustMonth(a,+1,m,g)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery_'+z+".datepicker._adjustDate('#"+a.id+"', +"+j+", 'M');\" title=\""+r+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"w":"e")+'">'+r+"</span></a>":f?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+r+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"w":"e")+'">'+r+"</span></a>";j=this._get(a,"currentText");r=this._get(a,"gotoCurrent")&&
+a.currentDay?u:b;j=!h?j:this.formatDate(j,r,this._getFormatConfig(a));h=!a.inline?'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery_'+z+'.datepicker._hideDatepicker();">'+this._get(a,"closeText")+"</button>":"";e=e?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(c?h:"")+(this._isInRange(a,r)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery_'+
+z+".datepicker._gotoToday('#"+a.id+"');\">"+j+"</button>":"")+(c?"":h)+"</div>":"";h=parseInt(this._get(a,"firstDay"),10);h=isNaN(h)?0:h;j=this._get(a,"showWeek");r=this._get(a,"dayNames");this._get(a,"dayNamesShort");var s=this._get(a,"dayNamesMin"),A=this._get(a,"monthNames"),v=this._get(a,"monthNamesShort"),p=this._get(a,"beforeShowDay"),C=this._get(a,"showOtherMonths"),K=this._get(a,"selectOtherMonths");this._get(a,"calculateWeek");for(var E=this._getDefaultDate(a),w="",x=0;x<i[0];x++){
+for(var O=
+"",G=0;G<i[1];G++){
+var P=this._daylightSavingAdjust(new Date(m,g,a.selectedDay)),t=" ui-corner-all",y="";if(l){
+y+='<div class="ui-datepicker-group';if(i[1]>1)switch(G){
+case 0:y+=" ui-datepicker-group-first";t=" ui-corner-"+(c?"right":"left");break;case i[1]-1:y+=" ui-datepicker-group-last";t=" ui-corner-"+(c?"left":"right");break;default:y+=" ui-datepicker-group-middle";t="";break}y+='">'}y+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+t+'">'+(/all|left/.test(t)&&x==0?c?
+f:n:"")+(/all|right/.test(t)&&x==0?c?n:f:"")+this._generateMonthYearHeader(a,g,m,k,o,x>0||G>0,A,v)+'</div><table class="ui-datepicker-calendar"><thead><tr>';var D=j?'<th class="ui-datepicker-week-col">'+this._get(a,"weekHeader")+"</th>":"";for(t=0;t<7;t++){
+var q=(t+h)%7;D+="<th"+((t+h+6)%7>=5?' class="ui-datepicker-week-end"':"")+'><span title="'+r[q]+'">'+s[q]+"</span></th>"}y+=D+"</tr></thead><tbody>";D=this._getDaysInMonth(m,g);if(m==a.selectedYear&&g==a.selectedMonth)a.selectedDay=Math.min(a.selectedDay,
+D);t=(this._getFirstDayOfMonth(m,g)-h+7)%7;D=l?6:Math.ceil((t+D)/7);q=this._daylightSavingAdjust(new Date(m,g,1-t));for(var Q=0;Q<D;Q++){
+y+="<tr>";var R=!j?"":'<td class="ui-datepicker-week-col">'+this._get(a,"calculateWeek")(q)+"</td>";for(t=0;t<7;t++){
+var I=p?p.apply(a.input?a.input[0]:null,[q]):[true,""],F=q.getMonth()!=g,L=F&&!K||!I[0]||k&&q<k||o&&q>o;R+='<td class="'+((t+h+6)%7>=5?" ui-datepicker-week-end":"")+(F?" ui-datepicker-other-month":"")+(q.getTime()==P.getTime()&&g==a.selectedMonth&&
+a._keyEvent||E.getTime()==q.getTime()&&E.getTime()==P.getTime()?" "+this._dayOverClass:"")+(L?" "+this._unselectableClass+" ui-state-disabled":"")+(F&&!C?"":" "+I[1]+(q.getTime()==u.getTime()?" "+this._currentClass:"")+(q.getTime()==b.getTime()?" ui-datepicker-today":""))+'"'+((!F||C)&&I[2]?' title="'+I[2]+'"':"")+(L?"":' onclick="DP_jQuery_'+z+".datepicker._selectDay('#"+a.id+"',"+q.getMonth()+","+q.getFullYear()+', this);return false;"')+">"+(F&&!C?"&#xa0;":L?'<span class="ui-state-default">'+q.getDate()+
+"</span>":'<a class="ui-state-default'+(q.getTime()==b.getTime()?" ui-state-highlight":"")+(q.getTime()==u.getTime()?" ui-state-active":"")+(F?" ui-priority-secondary":"")+'" href="#">'+q.getDate()+"</a>")+"</td>";q.setDate(q.getDate()+1);q=this._daylightSavingAdjust(q)}y+=R+"</tr>"}g++;if(g>11){
+g=0;m++}y+="</tbody></table>"+(l?"</div>"+(i[0]>0&&G==i[1]-1?'<div class="ui-datepicker-row-break"></div>':""):"");O+=y}w+=O}w+=e+(d.browser.msie&&parseInt(d.browser.version,10)<7&&!a.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':
+"");a._keyEvent=false;return w},_generateMonthYearHeader:function(a,b,c,e,f,h,i,g){
+var j=this._get(a,"changeMonth"),l=this._get(a,"changeYear"),u=this._get(a,"showMonthAfterYear"),k='<div class="ui-datepicker-title">',o="";if(h||!j)o+='<span class="ui-datepicker-month">'+i[b]+"</span>";else{
+i=e&&e.getFullYear()==c;var m=f&&f.getFullYear()==c;o+='<select class="ui-datepicker-month" onchange="DP_jQuery_'+z+".datepicker._selectMonthYear('#"+a.id+"', this, 'M');\" onclick=\"DP_jQuery_"+z+".datepicker._clickMonthYear('#"+
+a.id+"');\">";for(var n=0;n<12;n++)if((!i||n>=e.getMonth())&&(!m||n<=f.getMonth()))o+='<option value="'+n+'"'+(n==b?' selected="selected"':"")+">"+g[n]+"</option>";o+="</select>"}u||(k+=o+(h||!(j&&l)?"&#xa0;":""));if(!a.yearshtml){
+a.yearshtml="";if(h||!l)k+='<span class="ui-datepicker-year">'+c+"</span>";else{
+g=this._get(a,"yearRange").split(":");var r=(new Date).getFullYear();i=function(s){
+s=s.match(/c[+-].*/)?c+parseInt(s.substring(1),10):s.match(/[+-].*/)?r+parseInt(s,10):parseInt(s,10);return isNaN(s)?
+r:s};b=i(g[0]);g=Math.max(b,i(g[1]||""));b=e?Math.max(b,e.getFullYear()):b;g=f?Math.min(g,f.getFullYear()):g;for(a.yearshtml+='<select class="ui-datepicker-year" onchange="DP_jQuery_'+z+".datepicker._selectMonthYear('#"+a.id+"', this, 'Y');\" onclick=\"DP_jQuery_"+z+".datepicker._clickMonthYear('#"+a.id+"');\">";b<=g;b++)a.yearshtml+='<option value="'+b+'"'+(b==c?' selected="selected"':"")+">"+b+"</option>";a.yearshtml+="</select>";k+=a.yearshtml;a.yearshtml=null}}k+=this._get(a,"yearSuffix");if(u)k+=
+(h||!(j&&l)?"&#xa0;":"")+o;k+="</div>";return k},_adjustInstDate:function(a,b,c){
+var e=a.drawYear+(c=="Y"?b:0),f=a.drawMonth+(c=="M"?b:0);b=Math.min(a.selectedDay,this._getDaysInMonth(e,f))+(c=="D"?b:0);e=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(e,f,b)));a.selectedDay=e.getDate();a.drawMonth=a.selectedMonth=e.getMonth();a.drawYear=a.selectedYear=e.getFullYear();if(c=="M"||c=="Y")this._notifyChange(a)},_restrictMinMax:function(a,b){
+var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,
+"max");b=c&&b<c?c:b;return b=a&&b>a?a:b},_notifyChange:function(a){
+var b=this._get(a,"onChangeMonthYear");if(b)b.apply(a.input?a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){
+a=this._get(a,"numberOfMonths");return a==null?[1,1]:typeof a=="number"?[1,a]:a},_getMinMaxDate:function(a,b){
+return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){
+return 32-this._daylightSavingAdjust(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,
+b){
+return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,e){
+var f=this._getNumberOfMonths(a);c=this._daylightSavingAdjust(new Date(c,e+(b<0?b:f[0]*f[1]),1));b<0&&c.setDate(this._getDaysInMonth(c.getFullYear(),c.getMonth()));return this._isInRange(a,c)},_isInRange:function(a,b){
+var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!a||b.getTime()<=a.getTime())},_getFormatConfig:function(a){
+var b=this._get(a,"shortYearCutoff");b=typeof b!=
+"string"?b:(new Date).getFullYear()%100+parseInt(b,10);return{
+shortYearCutoff:b,dayNamesShort:this._get(a,"dayNamesShort"),dayNames:this._get(a,"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,e){
+if(!b){
+a.currentDay=a.selectedDay;a.currentMonth=a.selectedMonth;a.currentYear=a.selectedYear}b=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(e,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));
+return this.formatDate(this._get(a,"dateFormat"),b,this._getFormatConfig(a))}});d.fn.datepicker=function(a){
+if(!this.length)return this;if(!d.datepicker.initialized){
+d(document).mousedown(d.datepicker._checkExternalClick).find("body").append(d.datepicker.dpDiv);d.datepicker.initialized=true}var b=Array.prototype.slice.call(arguments,1);if(typeof a=="string"&&(a=="isDisabled"||a=="getDate"||a=="widget"))return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));if(a=="option"&&
+arguments.length==2&&typeof arguments[1]=="string")return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));return this.each(function(){
+typeof a=="string"?d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this].concat(b)):d.datepicker._attachDatepicker(this,a)})};d.datepicker=new M;d.datepicker.initialized=false;d.datepicker.uuid=(new Date).getTime();d.datepicker.version="1.8.13";window["DP_jQuery_"+z]=d})(jQuery);
+;/*
+ * jQuery UI Progressbar 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Progressbar
+ *
+ * Depends:
+ *   jquery.ui.core.js
+ *   jquery.ui.widget.js
+ */
+(function(b,d){
+b.widget("ui.progressbar",{
+options:{
+value:0,max:100},min:0,_create:function(){
+this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({
+role:"progressbar","aria-valuemin":this.min,"aria-valuemax":this.options.max,"aria-valuenow":this._value()});this.valueDiv=b("<div class='ui-progressbar-value ui-widget-header ui-corner-left'></div>").appendTo(this.element);this.oldValue=this._value();this._refreshValue()},destroy:function(){
+this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow");
+this.valueDiv.remove();b.Widget.prototype.destroy.apply(this,arguments)},value:function(a){
+if(a===d)return this._value();this._setOption("value",a);return this},_setOption:function(a,c){
+if(a==="value"){
+this.options.value=c;this._refreshValue();this._value()===this.options.max&&this._trigger("complete")}b.Widget.prototype._setOption.apply(this,arguments)},_value:function(){
+var a=this.options.value;if(typeof a!=="number")a=0;return Math.min(this.options.max,Math.max(this.min,a))},_percentage:function(){
+return 100*
+this._value()/this.options.max},_refreshValue:function(){
+var a=this.value(),c=this._percentage();if(this.oldValue!==a){
+this.oldValue=a;this._trigger("change")}this.valueDiv.toggle(a>this.min).toggleClass("ui-corner-right",a===this.options.max).width(c.toFixed(0)+"%");this.element.attr("aria-valuenow",a)}});b.extend(b.ui.progressbar,{
+version:"1.8.13"})})(jQuery);
+;/*
+ * jQuery UI Effects 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Effects/
+ */
+jQuery.effects||function(f,j){
+function m(c){
+var a;if(c&&c.constructor==Array&&c.length==3)return c;if(a=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(c))return[parseInt(a[1],10),parseInt(a[2],10),parseInt(a[3],10)];if(a=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c))return[parseFloat(a[1])*2.55,parseFloat(a[2])*2.55,parseFloat(a[3])*2.55];if(a=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(c))return[parseInt(a[1],16),parseInt(a[2],16),parseInt(a[3],16)];if(a=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(c))return[parseInt(a[1]+a[1],16),parseInt(a[2]+a[2],16),parseInt(a[3]+a[3],16)];if(/rgba\(0, 0, 0, 0\)/.exec(c))return n.transparent;return n[f.trim(c).toLowerCase()]}function s(c,a){
+var b;do{
+b=f.curCSS(c,a);if(b!=""&&b!="transparent"||f.nodeName(c,"body"))break;a="backgroundColor"}while(c=c.parentNode);return m(b)}function o(){
+var c=document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle,
+a={
+},b,d;if(c&&c.length&&c[0]&&c[c[0]])for(var e=c.length;e--;){
+b=c[e];if(typeof c[b]=="string"){
+d=b.replace(/\-(\w)/g,function(g,h){
+return h.toUpperCase()});a[d]=c[b]}}else for(b in c)if(typeof c[b]==="string")a[b]=c[b];return a}function p(c){
+var a,b;for(a in c){
+b=c[a];if(b==null||f.isFunction(b)||a in t||/scrollbar/.test(a)||!/color/i.test(a)&&isNaN(parseFloat(b)))delete c[a]}return c}function u(c,a){
+var b={
+_:0},d;for(d in a)if(c[d]!=a[d])b[d]=a[d];return b}function k(c,a,b,d){
+if(typeof c=="object"){
+d=
+a;b=null;a=c;c=a.effect}if(f.isFunction(a)){
+d=a;b=null;a={
+}}if(typeof a=="number"||f.fx.speeds[a]){
+d=b;b=a;a={
+}}if(f.isFunction(b)){
+d=b;b=null}a=a||{
+};b=b||a.duration;b=f.fx.off?0:typeof b=="number"?b:b in f.fx.speeds?f.fx.speeds[b]:f.fx.speeds._default;d=d||a.complete;return[c,a,b,d]}function l(c){
+if(!c||typeof c==="number"||f.fx.speeds[c])return true;if(typeof c==="string"&&!f.effects[c])return true;return false}f.effects={
+};f.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor",
+"borderTopColor","borderColor","color","outlineColor"],function(c,a){
+f.fx.step[a]=function(b){
+if(!b.colorInit){
+b.start=s(b.elem,a);b.end=m(b.end);b.colorInit=true}b.elem.style[a]="rgb("+Math.max(Math.min(parseInt(b.pos*(b.end[0]-b.start[0])+b.start[0],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[1]-b.start[1])+b.start[1],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[2]-b.start[2])+b.start[2],10),255),0)+")"}});var n={
+aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,
+0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,
+211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]},q=["add","remove","toggle"],t={
+border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};f.effects.animateClass=function(c,a,b,
+d){
+if(f.isFunction(b)){
+d=b;b=null}return this.queue(function(){
+var e=f(this),g=e.attr("style")||" ",h=p(o.call(this)),r,v=e.attr("class");f.each(q,function(w,i){
+c[i]&&e[i+"Class"](c[i])});r=p(o.call(this));e.attr("class",v);e.animate(u(h,r),{
+queue:false,duration:a,easding:b,complete:function(){
+f.each(q,function(w,i){
+c[i]&&e[i+"Class"](c[i])});if(typeof e.attr("style")=="object"){
+e.attr("style").cssText="";e.attr("style").cssText=g}else e.attr("style",g);d&&d.apply(this,arguments);f.dequeue(this)}})})};
+f.fn.extend({
+_addClass:f.fn.addClass,addClass:function(c,a,b,d){
+return a?f.effects.animateClass.apply(this,[{
+add:c},a,b,d]):this._addClass(c)},_removeClass:f.fn.removeClass,removeClass:function(c,a,b,d){
+return a?f.effects.animateClass.apply(this,[{
+remove:c},a,b,d]):this._removeClass(c)},_toggleClass:f.fn.toggleClass,toggleClass:function(c,a,b,d,e){
+return typeof a=="boolean"||a===j?b?f.effects.animateClass.apply(this,[a?{
+add:c}:{
+remove:c},b,d,e]):this._toggleClass(c,a):f.effects.animateClass.apply(this,
+[{
+toggle:c},a,b,d])},switchClass:function(c,a,b,d,e){
+return f.effects.animateClass.apply(this,[{
+add:a,remove:c},b,d,e])}});f.extend(f.effects,{
+version:"1.8.13",save:function(c,a){
+for(var b=0;b<a.length;b++)a[b]!==null&&c.data("ec.storage."+a[b],c[0].style[a[b]])},restore:function(c,a){
+for(var b=0;b<a.length;b++)a[b]!==null&&c.css(a[b],c.data("ec.storage."+a[b]))},setMode:function(c,a){
+if(a=="toggle")a=c.is(":hidden")?"show":"hide";return a},getBaseline:function(c,a){
+var b;switch(c[0]){
+case "top":b=
+0;break;case "middle":b=0.5;break;case "bottom":b=1;break;default:b=c[0]/a.height}switch(c[1]){
+case "left":c=0;break;case "center":c=0.5;break;case "right":c=1;break;default:c=c[1]/a.width}return{
+x:c,y:b}},createWrapper:function(c){
+if(c.parent().is(".ui-effects-wrapper"))return c.parent();var a={
+width:c.outerWidth(true),height:c.outerHeight(true),"float":c.css("float")},b=f("<div></div>").addClass("ui-effects-wrapper").css({
+fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0});
+c.wrap(b);b=c.parent();if(c.css("position")=="static"){
+b.css({
+position:"relative"});c.css({
+position:"relative"})}else{
+f.extend(a,{
+position:c.css("position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","right"],function(d,e){
+a[e]=c.css(e);if(isNaN(parseInt(a[e],10)))a[e]="auto"});c.css({
+position:"relative",top:0,left:0,right:"auto",bottom:"auto"})}return b.css(a).show()},removeWrapper:function(c){
+if(c.parent().is(".ui-effects-wrapper"))return c.parent().replaceWith(c);return c},setTransition:function(c,
+a,b,d){
+d=d||{
+};f.each(a,function(e,g){
+unit=c.cssUnit(g);if(unit[0]>0)d[g]=unit[0]*b+unit[1]});return d}});f.fn.extend({
+effect:function(c){
+var a=k.apply(this,arguments),b={
+options:a[1],duration:a[2],callback:a[3]};a=b.options.mode;var d=f.effects[c];if(f.fx.off||!d)return a?this[a](b.duration,b.callback):this.each(function(){
+b.callback&&b.callback.call(this)});return d.call(this,b)},_show:f.fn.show,show:function(c){
+if(l(c))return this._show.apply(this,arguments);else{
+var a=k.apply(this,arguments);
+a[1].mode="show";return this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){
+if(l(c))return this._hide.apply(this,arguments);else{
+var a=k.apply(this,arguments);a[1].mode="hide";return this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){
+if(l(c)||typeof c==="boolean"||f.isFunction(c))return this.__toggle.apply(this,arguments);else{
+var a=k.apply(this,arguments);a[1].mode="toggle";return this.effect.apply(this,a)}},cssUnit:function(c){
+var a=this.css(c),b=[];f.each(["em","px","%",
+"pt"],function(d,e){
+if(a.indexOf(e)>0)b=[parseFloat(a),e]});return b}});f.easing.jswing=f.easing.swing;f.extend(f.easing,{
+def:"easeOutQuad",swing:function(c,a,b,d,e){
+return f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){
+return d*(a/=e)*a+b},easeOutQuad:function(c,a,b,d,e){
+return-d*(a/=e)*(a-2)+b},easeInOutQuad:function(c,a,b,d,e){
+if((a/=e/2)<1)return d/2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){
+return d*(a/=e)*a*a+b},easeOutCubic:function(c,a,b,d,e){
+return d*
+((a=a/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){
+if((a/=e/2)<1)return d/2*a*a*a+b;return d/2*((a-=2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){
+return d*(a/=e)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){
+return-d*((a=a/e-1)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){
+if((a/=e/2)<1)return d/2*a*a*a*a+b;return-d/2*((a-=2)*a*a*a-2)+b},easeInQuint:function(c,a,b,d,e){
+return d*(a/=e)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){
+return d*((a=a/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c,a,b,d,e){
+if((a/=
+e/2)<1)return d/2*a*a*a*a*a+b;return d/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){
+return-d*Math.cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){
+return d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){
+return-d/2*(Math.cos(Math.PI*a/e)-1)+b},easeInExpo:function(c,a,b,d,e){
+return a==0?b:d*Math.pow(2,10*(a/e-1))+b},easeOutExpo:function(c,a,b,d,e){
+return a==e?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d,e){
+if(a==0)return b;if(a==e)return b+d;if((a/=
+e/2)<1)return d/2*Math.pow(2,10*(a-1))+b;return d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){
+return-d*(Math.sqrt(1-(a/=e)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){
+return d*Math.sqrt(1-(a=a/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){
+if((a/=e/2)<1)return-d/2*(Math.sqrt(1-a*a)-1)+b;return d/2*(Math.sqrt(1-(a-=2)*a)+1)+b},easeInElastic:function(c,a,b,d,e){
+c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h<Math.abs(d)){
+h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/
+h);return-(h*Math.pow(2,10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g))+b},easeOutElastic:function(c,a,b,d,e){
+c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h<Math.abs(d)){
+h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);return h*Math.pow(2,-10*a)*Math.sin((a*e-c)*2*Math.PI/g)+d+b},easeInOutElastic:function(c,a,b,d,e){
+c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e/2)==2)return b+d;g||(g=e*0.3*1.5);if(h<Math.abs(d)){
+h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);if(a<1)return-0.5*
+h*Math.pow(2,10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g)+b;return h*Math.pow(2,-10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g)*0.5+d+b},easeInBack:function(c,a,b,d,e,g){
+if(g==j)g=1.70158;return d*(a/=e)*a*((g+1)*a-g)+b},easeOutBack:function(c,a,b,d,e,g){
+if(g==j)g=1.70158;return d*((a=a/e-1)*a*((g+1)*a+g)+1)+b},easeInOutBack:function(c,a,b,d,e,g){
+if(g==j)g=1.70158;if((a/=e/2)<1)return d/2*a*a*(((g*=1.525)+1)*a-g)+b;return d/2*((a-=2)*a*(((g*=1.525)+1)*a+g)+2)+b},easeInBounce:function(c,a,b,d,e){
+return d-f.easing.easeOutBounce(c,
+e-a,0,d,e)+b},easeOutBounce:function(c,a,b,d,e){
+return(a/=e)<1/2.75?d*7.5625*a*a+b:a<2/2.75?d*(7.5625*(a-=1.5/2.75)*a+0.75)+b:a<2.5/2.75?d*(7.5625*(a-=2.25/2.75)*a+0.9375)+b:d*(7.5625*(a-=2.625/2.75)*a+0.984375)+b},easeInOutBounce:function(c,a,b,d,e){
+if(a<e/2)return f.easing.easeInBounce(c,a*2,0,d,e)*0.5+b;return f.easing.easeOutBounce(c,a*2-e,0,d,e)*0.5+d*0.5+b}})}(jQuery);
+;/*
+ * jQuery UI Effects Blind 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Effects/Blind
+ *
+ * Depends:
+ *	jquery.effects.core.js
+ */
+(function(b){
+b.effects.blind=function(c){
+return this.queue(function(){
+var a=b(this),g=["position","top","bottom","left","right"],f=b.effects.setMode(a,c.options.mode||"hide"),d=c.options.direction||"vertical";b.effects.save(a,g);a.show();var e=b.effects.createWrapper(a).css({
+overflow:"hidden"}),h=d=="vertical"?"height":"width";d=d=="vertical"?e.height():e.width();f=="show"&&e.css(h,0);var i={
+};i[h]=f=="show"?d:0;e.animate(i,c.duration,c.options.easing,function(){
+f=="hide"&&a.hide();b.effects.restore(a,
+g);b.effects.removeWrapper(a);c.callback&&c.callback.apply(a[0],arguments);a.dequeue()})})}})(jQuery);
+;/*
+ * jQuery UI Effects Bounce 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Effects/Bounce
+ *
+ * Depends:
+ *	jquery.effects.core.js
+ */
+(function(e){
+e.effects.bounce=function(b){
+return this.queue(function(){
+var a=e(this),l=["position","top","bottom","left","right"],h=e.effects.setMode(a,b.options.mode||"effect"),d=b.options.direction||"up",c=b.options.distance||20,m=b.options.times||5,i=b.duration||250;/show|hide/.test(h)&&l.push("opacity");e.effects.save(a,l);a.show();e.effects.createWrapper(a);var f=d=="up"||d=="down"?"top":"left";d=d=="up"||d=="left"?"pos":"neg";c=b.options.distance||(f=="top"?a.outerHeight({
+margin:true})/3:a.outerWidth({
+margin:true})/
+3);if(h=="show")a.css("opacity",0).css(f,d=="pos"?-c:c);if(h=="hide")c/=m*2;h!="hide"&&m--;if(h=="show"){
+var g={
+opacity:1};g[f]=(d=="pos"?"+=":"-=")+c;a.animate(g,i/2,b.options.easing);c/=2;m--}for(g=0;g<m;g++){
+var j={
+},k={
+};j[f]=(d=="pos"?"-=":"+=")+c;k[f]=(d=="pos"?"+=":"-=")+c;a.animate(j,i/2,b.options.easing).animate(k,i/2,b.options.easing);c=h=="hide"?c*2:c/2}if(h=="hide"){
+g={
+opacity:0};g[f]=(d=="pos"?"-=":"+=")+c;a.animate(g,i/2,b.options.easing,function(){
+a.hide();e.effects.restore(a,l);e.effects.removeWrapper(a);
+b.callback&&b.callback.apply(this,arguments)})}else{
+j={
+};k={
+};j[f]=(d=="pos"?"-=":"+=")+c;k[f]=(d=="pos"?"+=":"-=")+c;a.animate(j,i/2,b.options.easing).animate(k,i/2,b.options.easing,function(){
+e.effects.restore(a,l);e.effects.removeWrapper(a);b.callback&&b.callback.apply(this,arguments)})}a.queue("fx",function(){
+a.dequeue()});a.dequeue()})}})(jQuery);
+;/*
+ * jQuery UI Effects Clip 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Effects/Clip
+ *
+ * Depends:
+ *	jquery.effects.core.js
+ */
+(function(b){
+b.effects.clip=function(e){
+return this.queue(function(){
+var a=b(this),i=["position","top","bottom","left","right","height","width"],f=b.effects.setMode(a,e.options.mode||"hide"),c=e.options.direction||"vertical";b.effects.save(a,i);a.show();var d=b.effects.createWrapper(a).css({
+overflow:"hidden"});d=a[0].tagName=="IMG"?d:a;var g={
+size:c=="vertical"?"height":"width",position:c=="vertical"?"top":"left"};c=c=="vertical"?d.height():d.width();if(f=="show"){
+d.css(g.size,0);d.css(g.position,
+c/2)}var h={
+};h[g.size]=f=="show"?c:0;h[g.position]=f=="show"?0:c/2;d.animate(h,{
+queue:false,duration:e.duration,easing:e.options.easing,complete:function(){
+f=="hide"&&a.hide();b.effects.restore(a,i);b.effects.removeWrapper(a);e.callback&&e.callback.apply(a[0],arguments);a.dequeue()}})})}})(jQuery);
+;/*
+ * jQuery UI Effects Drop 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Effects/Drop
+ *
+ * Depends:
+ *	jquery.effects.core.js
+ */
+(function(c){
+c.effects.drop=function(d){
+return this.queue(function(){
+var a=c(this),h=["position","top","bottom","left","right","opacity"],e=c.effects.setMode(a,d.options.mode||"hide"),b=d.options.direction||"left";c.effects.save(a,h);a.show();c.effects.createWrapper(a);var f=b=="up"||b=="down"?"top":"left";b=b=="up"||b=="left"?"pos":"neg";var g=d.options.distance||(f=="top"?a.outerHeight({
+margin:true})/2:a.outerWidth({
+margin:true})/2);if(e=="show")a.css("opacity",0).css(f,b=="pos"?-g:g);var i={
+opacity:e==
+"show"?1:0};i[f]=(e=="show"?b=="pos"?"+=":"-=":b=="pos"?"-=":"+=")+g;a.animate(i,{
+queue:false,duration:d.duration,easing:d.options.easing,complete:function(){
+e=="hide"&&a.hide();c.effects.restore(a,h);c.effects.removeWrapper(a);d.callback&&d.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
+;/*
+ * jQuery UI Effects Explode 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Effects/Explode
+ *
+ * Depends:
+ *	jquery.effects.core.js
+ */
+(function(j){
+j.effects.explode=function(a){
+return this.queue(function(){
+var c=a.options.pieces?Math.round(Math.sqrt(a.options.pieces)):3,d=a.options.pieces?Math.round(Math.sqrt(a.options.pieces)):3;a.options.mode=a.options.mode=="toggle"?j(this).is(":visible")?"hide":"show":a.options.mode;var b=j(this).show().css("visibility","hidden"),g=b.offset();g.top-=parseInt(b.css("marginTop"),10)||0;g.left-=parseInt(b.css("marginLeft"),10)||0;for(var h=b.outerWidth(true),i=b.outerHeight(true),e=0;e<c;e++)for(var f=
+0;f<d;f++)b.clone().appendTo("body").wrap("<div></div>").css({
+position:"absolute",visibility:"visible",left:-f*(h/d),top:-e*(i/c)}).parent().addClass("ui-effects-explode").css({
+position:"absolute",overflow:"hidden",width:h/d,height:i/c,left:g.left+f*(h/d)+(a.options.mode=="show"?(f-Math.floor(d/2))*(h/d):0),top:g.top+e*(i/c)+(a.options.mode=="show"?(e-Math.floor(c/2))*(i/c):0),opacity:a.options.mode=="show"?0:1}).animate({
+left:g.left+f*(h/d)+(a.options.mode=="show"?0:(f-Math.floor(d/2))*(h/d)),top:g.top+
+e*(i/c)+(a.options.mode=="show"?0:(e-Math.floor(c/2))*(i/c)),opacity:a.options.mode=="show"?1:0},a.duration||500);setTimeout(function(){
+a.options.mode=="show"?b.css({
+visibility:"visible"}):b.css({
+visibility:"visible"}).hide();a.callback&&a.callback.apply(b[0]);b.dequeue();j("div.ui-effects-explode").remove()},a.duration||500)})}})(jQuery);
+;/*
+ * jQuery UI Effects Fade 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Effects/Fade
+ *
+ * Depends:
+ *	jquery.effects.core.js
+ */
+(function(b){
+b.effects.fade=function(a){
+return this.queue(function(){
+var c=b(this),d=b.effects.setMode(c,a.options.mode||"hide");c.animate({
+opacity:d},{
+queue:false,duration:a.duration,easing:a.options.easing,complete:function(){
+a.callback&&a.callback.apply(this,arguments);c.dequeue()}})})}})(jQuery);
+;/*
+ * jQuery UI Effects Fold 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Effects/Fold
+ *
+ * Depends:
+ *	jquery.effects.core.js
+ */
+(function(c){
+c.effects.fold=function(a){
+return this.queue(function(){
+var b=c(this),j=["position","top","bottom","left","right"],d=c.effects.setMode(b,a.options.mode||"hide"),g=a.options.size||15,h=!!a.options.horizFirst,k=a.duration?a.duration/2:c.fx.speeds._default/2;c.effects.save(b,j);b.show();var e=c.effects.createWrapper(b).css({
+overflow:"hidden"}),f=d=="show"!=h,l=f?["width","height"]:["height","width"];f=f?[e.width(),e.height()]:[e.height(),e.width()];var i=/([0-9]+)%/.exec(g);if(i)g=parseInt(i[1],
+10)/100*f[d=="hide"?0:1];if(d=="show")e.css(h?{
+height:0,width:g}:{
+height:g,width:0});h={
+};i={
+};h[l[0]]=d=="show"?f[0]:g;i[l[1]]=d=="show"?f[1]:0;e.animate(h,k,a.options.easing).animate(i,k,a.options.easing,function(){
+d=="hide"&&b.hide();c.effects.restore(b,j);c.effects.removeWrapper(b);a.callback&&a.callback.apply(b[0],arguments);b.dequeue()})})}})(jQuery);
+;/*
+ * jQuery UI Effects Highlight 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Effects/Highlight
+ *
+ * Depends:
+ *	jquery.effects.core.js
+ */
+(function(b){
+b.effects.highlight=function(c){
+return this.queue(function(){
+var a=b(this),e=["backgroundImage","backgroundColor","opacity"],d=b.effects.setMode(a,c.options.mode||"show"),f={
+backgroundColor:a.css("backgroundColor")};if(d=="hide")f.opacity=0;b.effects.save(a,e);a.show().css({
+backgroundImage:"none",backgroundColor:c.options.color||"#ffff99"}).animate(f,{
+queue:false,duration:c.duration,easing:c.options.easing,complete:function(){
+d=="hide"&&a.hide();b.effects.restore(a,e);d=="show"&&!b.support.opacity&&
+this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
+;/*
+ * jQuery UI Effects Pulsate 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Effects/Pulsate
+ *
+ * Depends:
+ *	jquery.effects.core.js
+ */
+(function(d){
+d.effects.pulsate=function(a){
+return this.queue(function(){
+var b=d(this),c=d.effects.setMode(b,a.options.mode||"show");times=(a.options.times||5)*2-1;duration=a.duration?a.duration/2:d.fx.speeds._default/2;isVisible=b.is(":visible");animateTo=0;if(!isVisible){
+b.css("opacity",0).show();animateTo=1}if(c=="hide"&&isVisible||c=="show"&&!isVisible)times--;for(c=0;c<times;c++){
+b.animate({
+opacity:animateTo},duration,a.options.easing);animateTo=(animateTo+1)%2}b.animate({
+opacity:animateTo},duration,
+a.options.easing,function(){
+animateTo==0&&b.hide();a.callback&&a.callback.apply(this,arguments)});b.queue("fx",function(){
+b.dequeue()}).dequeue()})}})(jQuery);
+;/*
+ * jQuery UI Effects Scale 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Effects/Scale
+ *
+ * Depends:
+ *	jquery.effects.core.js
+ */
+(function(c){
+c.effects.puff=function(b){
+return this.queue(function(){
+var a=c(this),e=c.effects.setMode(a,b.options.mode||"hide"),g=parseInt(b.options.percent,10)||150,h=g/100,i={
+height:a.height(),width:a.width()};c.extend(b.options,{
+fade:true,mode:e,percent:e=="hide"?g:100,from:e=="hide"?i:{
+height:i.height*h,width:i.width*h}});a.effect("scale",b.options,b.duration,b.callback);a.dequeue()})};c.effects.scale=function(b){
+return this.queue(function(){
+var a=c(this),e=c.extend(true,{
+},b.options),g=c.effects.setMode(a,
+b.options.mode||"effect"),h=parseInt(b.options.percent,10)||(parseInt(b.options.percent,10)==0?0:g=="hide"?0:100),i=b.options.direction||"both",f=b.options.origin;if(g!="effect"){
+e.origin=f||["middle","center"];e.restore=true}f={
+height:a.height(),width:a.width()};a.from=b.options.from||(g=="show"?{
+height:0,width:0}:f);h={
+y:i!="horizontal"?h/100:1,x:i!="vertical"?h/100:1};a.to={
+height:f.height*h.y,width:f.width*h.x};if(b.options.fade){
+if(g=="show"){
+a.from.opacity=0;a.to.opacity=1}if(g=="hide"){
+a.from.opacity=
+1;a.to.opacity=0}}e.from=a.from;e.to=a.to;e.mode=g;a.effect("size",e,b.duration,b.callback);a.dequeue()})};c.effects.size=function(b){
+return this.queue(function(){
+var a=c(this),e=["position","top","bottom","left","right","width","height","overflow","opacity"],g=["position","top","bottom","left","right","overflow","opacity"],h=["width","height","overflow"],i=["fontSize"],f=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],k=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],
+p=c.effects.setMode(a,b.options.mode||"effect"),n=b.options.restore||false,m=b.options.scale||"both",l=b.options.origin,j={
+height:a.height(),width:a.width()};a.from=b.options.from||j;a.to=b.options.to||j;if(l){
+l=c.effects.getBaseline(l,j);a.from.top=(j.height-a.from.height)*l.y;a.from.left=(j.width-a.from.width)*l.x;a.to.top=(j.height-a.to.height)*l.y;a.to.left=(j.width-a.to.width)*l.x}var d={
+from:{
+y:a.from.height/j.height,x:a.from.width/j.width},to:{
+y:a.to.height/j.height,x:a.to.width/j.width}};
+if(m=="box"||m=="both"){
+if(d.from.y!=d.to.y){
+e=e.concat(f);a.from=c.effects.setTransition(a,f,d.from.y,a.from);a.to=c.effects.setTransition(a,f,d.to.y,a.to)}if(d.from.x!=d.to.x){
+e=e.concat(k);a.from=c.effects.setTransition(a,k,d.from.x,a.from);a.to=c.effects.setTransition(a,k,d.to.x,a.to)}}if(m=="content"||m=="both")if(d.from.y!=d.to.y){
+e=e.concat(i);a.from=c.effects.setTransition(a,i,d.from.y,a.from);a.to=c.effects.setTransition(a,i,d.to.y,a.to)}c.effects.save(a,n?e:g);a.show();c.effects.createWrapper(a);
+a.css("overflow","hidden").css(a.from);if(m=="content"||m=="both"){
+f=f.concat(["marginTop","marginBottom"]).concat(i);k=k.concat(["marginLeft","marginRight"]);h=e.concat(f).concat(k);a.find("*[width]").each(function(){
+child=c(this);n&&c.effects.save(child,h);var o={
+height:child.height(),width:child.width()};child.from={
+height:o.height*d.from.y,width:o.width*d.from.x};child.to={
+height:o.height*d.to.y,width:o.width*d.to.x};if(d.from.y!=d.to.y){
+child.from=c.effects.setTransition(child,f,d.from.y,child.from);
+child.to=c.effects.setTransition(child,f,d.to.y,child.to)}if(d.from.x!=d.to.x){
+child.from=c.effects.setTransition(child,k,d.from.x,child.from);child.to=c.effects.setTransition(child,k,d.to.x,child.to)}child.css(child.from);child.animate(child.to,b.duration,b.options.easing,function(){
+n&&c.effects.restore(child,h)})})}a.animate(a.to,{
+queue:false,duration:b.duration,easing:b.options.easing,complete:function(){
+a.to.opacity===0&&a.css("opacity",a.from.opacity);p=="hide"&&a.hide();c.effects.restore(a,
+n?e:g);c.effects.removeWrapper(a);b.callback&&b.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
+;/*
+ * jQuery UI Effects Shake 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Effects/Shake
+ *
+ * Depends:
+ *	jquery.effects.core.js
+ */
+(function(d){
+d.effects.shake=function(a){
+return this.queue(function(){
+var b=d(this),j=["position","top","bottom","left","right"];d.effects.setMode(b,a.options.mode||"effect");var c=a.options.direction||"left",e=a.options.distance||20,l=a.options.times||3,f=a.duration||a.options.duration||140;d.effects.save(b,j);b.show();d.effects.createWrapper(b);var g=c=="up"||c=="down"?"top":"left",h=c=="up"||c=="left"?"pos":"neg";c={
+};var i={
+},k={
+};c[g]=(h=="pos"?"-=":"+=")+e;i[g]=(h=="pos"?"+=":"-=")+e*2;k[g]=
+(h=="pos"?"-=":"+=")+e*2;b.animate(c,f,a.options.easing);for(e=1;e<l;e++)b.animate(i,f,a.options.easing).animate(k,f,a.options.easing);b.animate(i,f,a.options.easing).animate(c,f/2,a.options.easing,function(){
+d.effects.restore(b,j);d.effects.removeWrapper(b);a.callback&&a.callback.apply(this,arguments)});b.queue("fx",function(){
+b.dequeue()});b.dequeue()})}})(jQuery);
+;/*
+ * jQuery UI Effects Slide 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Effects/Slide
+ *
+ * Depends:
+ *	jquery.effects.core.js
+ */
+(function(c){
+c.effects.slide=function(d){
+return this.queue(function(){
+var a=c(this),h=["position","top","bottom","left","right"],f=c.effects.setMode(a,d.options.mode||"show"),b=d.options.direction||"left";c.effects.save(a,h);a.show();c.effects.createWrapper(a).css({
+overflow:"hidden"});var g=b=="up"||b=="down"?"top":"left";b=b=="up"||b=="left"?"pos":"neg";var e=d.options.distance||(g=="top"?a.outerHeight({
+margin:true}):a.outerWidth({
+margin:true}));if(f=="show")a.css(g,b=="pos"?isNaN(e)?"-"+e:-e:e);
+var i={
+};i[g]=(f=="show"?b=="pos"?"+=":"-=":b=="pos"?"-=":"+=")+e;a.animate(i,{
+queue:false,duration:d.duration,easing:d.options.easing,complete:function(){
+f=="hide"&&a.hide();c.effects.restore(a,h);c.effects.removeWrapper(a);d.callback&&d.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
+;/*
+ * jQuery UI Effects Transfer 1.8.13
+ *
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Effects/Transfer
+ *
+ * Depends:
+ *	jquery.effects.core.js
+ */
+(function(e){
+e.effects.transfer=function(a){
+return this.queue(function(){
+var b=e(this),c=e(a.options.to),d=c.offset();c={
+top:d.top,left:d.left,height:c.innerHeight(),width:c.innerWidth()};d=b.offset();var f=e('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(a.options.className).css({
+top:d.top,left:d.left,height:b.innerHeight(),width:b.innerWidth(),position:"absolute"}).animate(c,a.duration,a.options.easing,function(){
+f.remove();a.callback&&a.callback.apply(b[0],arguments);
+b.dequeue()})})}})(jQuery);
+;
\ No newline at end of file
diff --git a/share/lua/http/js/jquery.jstree.js b/share/lua/http/js/jquery.jstree.js
new file mode 100644
index 0000000..b02baaa
--- /dev/null
+++ b/share/lua/http/js/jquery.jstree.js
@@ -0,0 +1,4544 @@
+/*
+ * jsTree 1.0-rc3
+ * http://jstree.com/
+ *
+ * Copyright (c) 2010 Ivan Bozhanov (vakata.com)
+ *
+ * Licensed same as jquery - under the terms of either the MIT License or the GPL Version 2 License
+ *   http://www.opensource.org/licenses/mit-license.php
+ *   http://www.gnu.org/licenses/gpl.html
+ *
+ * $Date: 2011-02-09 01:17:14 +0200 (ср, 09 февр 2011) $
+ * $Revision: 236 $
+ */
+
+/*jslint browser: true, onevar: true, undef: true, bitwise: true, strict: true */
+/*global window : false, clearInterval: false, clearTimeout: false, document: false, setInterval: false, setTimeout: false, jQuery: false, navigator: false, XSLTProcessor: false, DOMParser: false, XMLSerializer: false*/
+
+"use strict";
+
+// top wrapper to prevent multiple inclusion (is this OK?)
+(function () { if(jQuery && jQuery.jstree) { return; }
+	var is_ie6 = false, is_ie7 = false, is_ff2 = false;
+
+/* 
+ * jsTree core
+ */
+(function ($) {
+	// Common functions not related to jsTree 
+	// decided to move them to a `vakata` "namespace"
+	$.vakata = {};
+	// CSS related functions
+	$.vakata.css = {
+		get_css : function(rule_name, delete_flag, sheet) {
+			rule_name = rule_name.toLowerCase();
+			var css_rules = sheet.cssRules || sheet.rules,
+				j = 0;
+			do {
+				if(css_rules.length && j > css_rules.length + 5) { return false; }
+				if(css_rules[j].selectorText && css_rules[j].selectorText.toLowerCase() == rule_name) {
+					if(delete_flag === true) {
+						if(sheet.removeRule) { sheet.removeRule(j); }
+						if(sheet.deleteRule) { sheet.deleteRule(j); }
+						return true;
+					}
+					else { return css_rules[j]; }
+				}
+			}
+			while (css_rules[++j]);
+			return false;
+		},
+		add_css : function(rule_name, sheet) {
+			if($.jstree.css.get_css(rule_name, false, sheet)) { return false; }
+			if(sheet.insertRule) { sheet.insertRule(rule_name + ' { }', 0); } else { sheet.addRule(rule_name, null, 0); }
+			return $.vakata.css.get_css(rule_name);
+		},
+		remove_css : function(rule_name, sheet) { 
+			return $.vakata.css.get_css(rule_name, true, sheet); 
+		},
+		add_sheet : function(opts) {
+			var tmp = false, is_new = true;
+			if(opts.str) {
+				if(opts.title) { tmp = $("style[id='" + opts.title + "-stylesheet']")[0]; }
+				if(tmp) { is_new = false; }
+				else {
+					tmp = document.createElement("style");
+					tmp.setAttribute('type',"text/css");
+					if(opts.title) { tmp.setAttribute("id", opts.title + "-stylesheet"); }
+				}
+				if(tmp.styleSheet) {
+					if(is_new) { 
+						document.getElementsByTagName("head")[0].appendChild(tmp); 
+						tmp.styleSheet.cssText = opts.str; 
+					}
+					else {
+						tmp.styleSheet.cssText = tmp.styleSheet.cssText + " " + opts.str; 
+					}
+				}
+				else {
+					tmp.appendChild(document.createTextNode(opts.str));
+					document.getElementsByTagName("head")[0].appendChild(tmp);
+				}
+				return tmp.sheet || tmp.styleSheet;
+			}
+			if(opts.url) {
+				if(document.createStyleSheet) {
+					try { tmp = document.createStyleSheet(opts.url); } catch (e) { }
+				}
+				else {
+					tmp			= document.createElement('link');
+					tmp.rel		= 'stylesheet';
+					tmp.type	= 'text/css';
+					tmp.media	= "all";
+					tmp.href	= opts.url;
+					document.getElementsByTagName("head")[0].appendChild(tmp);
+					return tmp.styleSheet;
+				}
+			}
+		}
+	};
+
+	// private variables 
+	var instances = [],			// instance array (used by $.jstree.reference/create/focused)
+		focused_instance = -1,	// the index in the instance array of the currently focused instance
+		plugins = {},			// list of included plugins
+		prepared_move = {};		// for the move_node function
+
+	// jQuery plugin wrapper (thanks to jquery UI widget function)
+	$.fn.jstree = function (settings) {
+		var isMethodCall = (typeof settings == 'string'), // is this a method call like $().jstree("open_node")
+			args = Array.prototype.slice.call(arguments, 1), 
+			returnValue = this;
+
+		// if a method call execute the method on all selected instances
+		if(isMethodCall) {
+			if(settings.substring(0, 1) == '_') { return returnValue; }
+			this.each(function() {
+				var instance = instances[$.data(this, "jstree-instance-id")],
+					methodValue = (instance && $.isFunction(instance[settings])) ? instance[settings].apply(instance, args) : instance;
+					if(typeof methodValue !== "undefined" && (settings.indexOf("is_") === 0 || (methodValue !== true && methodValue !== false))) { returnValue = methodValue; return false; }
+			});
+		}
+		else {
+			this.each(function() {
+				// extend settings and allow for multiple hashes and $.data
+				var instance_id = $.data(this, "jstree-instance-id"),
+					a = [],
+					b = settings ? $.extend({}, true, settings) : {},
+					c = $(this), 
+					s = false, 
+					t = [];
+				a = a.concat(args);
+				if(c.data("jstree")) { a.push(c.data("jstree")); }
+				b = a.length ? $.extend.apply(null, [true, b].concat(a)) : b;
+
+				// if an instance already exists, destroy it first
+				if(typeof instance_id !== "undefined" && instances[instance_id]) { instances[instance_id].destroy(); }
+				// push a new empty object to the instances array
+				instance_id = parseInt(instances.push({}),10) - 1;
+				// store the jstree instance id to the container element
+				$.data(this, "jstree-instance-id", instance_id);
+				// clean up all plugins
+				b.plugins = $.isArray(b.plugins) ? b.plugins : $.jstree.defaults.plugins.slice();
+				b.plugins.unshift("core");
+				// only unique plugins
+				b.plugins = b.plugins.sort().join(",,").replace(/(,|^)([^,]+)(,,\2)+(,|$)/g,"$1$2$4").replace(/,,+/g,",").replace(/,$/,"").split(",");
+
+				// extend defaults with passed data
+				s = $.extend(true, {}, $.jstree.defaults, b);
+				s.plugins = b.plugins;
+				$.each(plugins, function (i, val) { 
+					if($.inArray(i, s.plugins) === -1) { s[i] = null; delete s[i]; } 
+					else { t.push(i); }
+				});
+				s.plugins = t;
+
+				// push the new object to the instances array (at the same time set the default classes to the container) and init
+				instances[instance_id] = new $.jstree._instance(instance_id, $(this).addClass("jstree jstree-" + instance_id), s); 
+				// init all activated plugins for this instance
+				$.each(instances[instance_id]._get_settings().plugins, function (i, val) { instances[instance_id].data[val] = {}; });
+				$.each(instances[instance_id]._get_settings().plugins, function (i, val) { if(plugins[val]) { plugins[val].__init.apply(instances[instance_id]); } });
+				// initialize the instance
+				setTimeout(function() { instances[instance_id].init(); }, 0);
+			});
+		}
+		// return the jquery selection (or if it was a method call that returned a value - the returned value)
+		return returnValue;
+	};
+	// object to store exposed functions and objects
+	$.jstree = {
+		defaults : {
+			plugins : []
+		},
+		_focused : function () { return instances[focused_instance] || null; },
+		_reference : function (needle) { 
+			// get by instance id
+			if(instances[needle]) { return instances[needle]; }
+			// get by DOM (if still no luck - return null
+			var o = $(needle); 
+			if(!o.length && typeof needle === "string") { o = $("#" + needle); }
+			if(!o.length) { return null; }
+			return instances[o.closest(".jstree").data("jstree-instance-id")] || null; 
+		},
+		_instance : function (index, container, settings) { 
+			// for plugins to store data in
+			this.data = { core : {} };
+			this.get_settings	= function () { return $.extend(true, {}, settings); };
+			this._get_settings	= function () { return settings; };
+			this.get_index		= function () { return index; };
+			this.get_container	= function () { return container; };
+			this.get_container_ul = function () { return container.children("ul:eq(0)"); };
+			this._set_settings	= function (s) { 
+				settings = $.extend(true, {}, settings, s);
+			};
+		},
+		_fn : { },
+		plugin : function (pname, pdata) {
+			pdata = $.extend({}, {
+				__init		: $.noop, 
+				__destroy	: $.noop,
+				_fn			: {},
+				defaults	: false
+			}, pdata);
+			plugins[pname] = pdata;
+
+			$.jstree.defaults[pname] = pdata.defaults;
+			$.each(pdata._fn, function (i, val) {
+				val.plugin		= pname;
+				val.old			= $.jstree._fn[i];
+				$.jstree._fn[i] = function () {
+					var rslt,
+						func = val,
+						args = Array.prototype.slice.call(arguments),
+						evnt = new $.Event("before.jstree"),
+						rlbk = false;
+
+					if(this.data.core.locked === true && i !== "unlock" && i !== "is_locked") { return; }
+
+					// Check if function belongs to the included plugins of this instance
+					do {
+						if(func && func.plugin && $.inArray(func.plugin, this._get_settings().plugins) !== -1) { break; }
+						func = func.old;
+					} while(func);
+					if(!func) { return; }
+
+					// context and function to trigger events, then finally call the function
+					if(i.indexOf("_") === 0) {
+						rslt = func.apply(this, args);
+					}
+					else {
+						rslt = this.get_container().triggerHandler(evnt, { "func" : i, "inst" : this, "args" : args, "plugin" : func.plugin });
+						if(rslt === false) { return; }
+						if(typeof rslt !== "undefined") { args = rslt; }
+
+						rslt = func.apply(
+							$.extend({}, this, { 
+								__callback : function (data) { 
+									this.get_container().triggerHandler( i + '.jstree', { "inst" : this, "args" : args, "rslt" : data, "rlbk" : rlbk });
+								},
+								__rollback : function () { 
+									rlbk = this.get_rollback();
+									return rlbk;
+								},
+								__call_old : function (replace_arguments) {
+									return func.old.apply(this, (replace_arguments ? Array.prototype.slice.call(arguments, 1) : args ) );
+								}
+							}), args);
+					}
+
+					// return the result
+					return rslt;
+				};
+				$.jstree._fn[i].old = val.old;
+				$.jstree._fn[i].plugin = pname;
+			});
+		},
+		rollback : function (rb) {
+			if(rb) {
+				if(!$.isArray(rb)) { rb = [ rb ]; }
+				$.each(rb, function (i, val) {
+					instances[val.i].set_rollback(val.h, val.d);
+				});
+			}
+		}
+	};
+	// set the prototype for all instances
+	$.jstree._fn = $.jstree._instance.prototype = {};
+
+	// load the css when DOM is ready
+	$(function() {
+		// code is copied from jQuery ($.browser is deprecated + there is a bug in IE)
+		var u = navigator.userAgent.toLowerCase(),
+			v = (u.match( /.+?(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [0,'0'])[1],
+			css_string = '' + 
+				'.jstree ul, .jstree li { display:block; margin:0 0 0 0; padding:0 0 0 0; list-style-type:none; } ' + 
+				'.jstree li { display:block; min-height:18px; line-height:18px; white-space:nowrap; margin-left:18px; min-width:18px; } ' + 
+				'.jstree-rtl li { margin-left:0; margin-right:18px; } ' + 
+				'.jstree > ul > li { margin-left:0px; } ' + 
+				'.jstree-rtl > ul > li { margin-right:0px; } ' + 
+				'.jstree ins { display:inline-block; text-decoration:none; width:18px; height:18px; margin:0 0 0 0; padding:0; } ' + 
+				'.jstree a { display:inline-block; line-height:16px; height:16px; color:black; white-space:nowrap; text-decoration:none; padding:1px 2px; margin:0; } ' + 
+				'.jstree a:focus { outline: none; } ' + 
+				'.jstree a > ins { height:16px; width:16px; } ' + 
+				'.jstree a > .jstree-icon { margin-right:3px; } ' + 
+				'.jstree-rtl a > .jstree-icon { margin-left:3px; margin-right:0; } ' + 
+				'li.jstree-open > ul { display:block; } ' + 
+				'li.jstree-closed > ul { display:none; } ';
+		// Correct IE 6 (does not support the > CSS selector)
+		if(/msie/.test(u) && parseInt(v, 10) == 6) { 
+			is_ie6 = true;
+
+			// fix image flicker and lack of caching
+			try {
+				document.execCommand("BackgroundImageCache", false, true);
+			} catch (err) { }
+
+			css_string += '' + 
+				'.jstree li { height:18px; margin-left:0; margin-right:0; } ' + 
+				'.jstree li li { margin-left:18px; } ' + 
+				'.jstree-rtl li li { margin-left:0px; margin-right:18px; } ' + 
+				'li.jstree-open ul { display:block; } ' + 
+				'li.jstree-closed ul { display:none !important; } ' + 
+				'.jstree li a { display:inline; border-width:0 !important; padding:0px 2px !important; } ' + 
+				'.jstree li a ins { height:16px; width:16px; margin-right:3px; } ' + 
+				'.jstree-rtl li a ins { margin-right:0px; margin-left:3px; } ';
+		}
+		// Correct IE 7 (shifts anchor nodes onhover)
+		if(/msie/.test(u) && parseInt(v, 10) == 7) { 
+			is_ie7 = true;
+			css_string += '.jstree li a { border-width:0 !important; padding:0px 2px !important; } ';
+		}
+		// correct ff2 lack of display:inline-block
+		if(!/compatible/.test(u) && /mozilla/.test(u) && parseFloat(v, 10) < 1.9) {
+			is_ff2 = true;
+			css_string += '' + 
+				'.jstree ins { display:-moz-inline-box; } ' + 
+				'.jstree li { line-height:12px; } ' + // WHY??
+				'.jstree a { display:-moz-inline-box; } ' + 
+				'.jstree .jstree-no-icons .jstree-checkbox { display:-moz-inline-stack !important; } ';
+				/* this shouldn't be here as it is theme specific */
+		}
+		// the default stylesheet
+		$.vakata.css.add_sheet({ str : css_string, title : "jstree" });
+	});
+
+	// core functions (open, close, create, update, delete)
+	$.jstree.plugin("core", {
+		__init : function () {
+			this.data.core.locked = false;
+			this.data.core.to_open = this.get_settings().core.initially_open;
+			this.data.core.to_load = this.get_settings().core.initially_load;
+		},
+		defaults : { 
+			html_titles	: false,
+			animation	: 500,
+			initially_open : [],
+			initially_load : [],
+			open_parents : true,
+			notify_plugins : true,
+			rtl			: false,
+			load_open	: false,
+			strings		: {
+				loading		: "Loading ...",
+				new_node	: "New node",
+				multiple_selection : "Multiple selection"
+			}
+		},
+		_fn : { 
+			init	: function () { 
+				this.set_focus(); 
+				if(this._get_settings().core.rtl) {
+					this.get_container().addClass("jstree-rtl").css("direction", "rtl");
+				}
+				this.get_container().html("<ul><li class='jstree-last jstree-leaf'><ins> </ins><a class='jstree-loading' href='#'><ins class='jstree-icon'> </ins>" + this._get_string("loading") + "</a></li></ul>");
+				this.data.core.li_height = this.get_container_ul().find("li.jstree-closed, li.jstree-leaf").eq(0).height() || 18;
+
+				this.get_container()
+					.delegate("li > ins", "click.jstree", $.proxy(function (event) {
+							var trgt = $(event.target);
+							if(trgt.is("ins") && event.pageY - trgt.offset().top < this.data.core.li_height) { this.toggle_node(trgt); }
+						}, this))
+					.bind("mousedown.jstree", $.proxy(function () { 
+							this.set_focus(); // This used to be setTimeout(set_focus,0) - why?
+						}, this))
+					.bind("dblclick.jstree", function (event) { 
+						var sel;
+						if(document.selection && document.selection.empty) { document.selection.empty(); }
+						else {
+							if(window.getSelection) {
+								sel = window.getSelection();
+								try { 
+									sel.removeAllRanges();
+									sel.collapse();
+								} catch (err) { }
+							}
+						}
+					});
+				if(this._get_settings().core.notify_plugins) {
+					this.get_container()
+						.bind("load_node.jstree", $.proxy(function (e, data) { 
+								var o = this._get_node(data.rslt.obj),
+									t = this;
+								if(o === -1) { o = this.get_container_ul(); }
+								if(!o.length) { return; }
+								o.find("li").each(function () {
+									var th = $(this);
+									if(th.data("jstree")) {
+										$.each(th.data("jstree"), function (plugin, values) {
+											if(t.data[plugin] && $.isFunction(t["_" + plugin + "_notify"])) {
+												t["_" + plugin + "_notify"].call(t, th, values);
+											}
+										});
+									}
+								});
+							}, this));
+				}
+				if(this._get_settings().core.load_open) {
+					this.get_container()
+						.bind("load_node.jstree", $.proxy(function (e, data) { 
+								var o = this._get_node(data.rslt.obj),
+									t = this;
+								if(o === -1) { o = this.get_container_ul(); }
+								if(!o.length) { return; }
+								o.find("li.jstree-open:not(:has(ul))").each(function () {
+									t.load_node(this, $.noop, $.noop);
+								});
+							}, this));
+				}
+				this.__callback();
+				this.load_node(-1, function () { this.loaded(); this.reload_nodes(); });
+			},
+			destroy	: function () { 
+				var i,
+					n = this.get_index(),
+					s = this._get_settings(),
+					_this = this;
+
+				$.each(s.plugins, function (i, val) {
+					try { plugins[val].__destroy.apply(_this); } catch(err) { }
+				});
+				this.__callback();
+				// set focus to another instance if this one is focused
+				if(this.is_focused()) { 
+					for(i in instances) { 
+						if(instances.hasOwnProperty(i) && i != n) { 
+							instances[i].set_focus(); 
+							break; 
+						} 
+					}
+				}
+				// if no other instance found
+				if(n === focused_instance) { focused_instance = -1; }
+				// remove all traces of jstree in the DOM (only the ones set using jstree*) and cleans all events
+				this.get_container()
+					.unbind(".jstree")
+					.undelegate(".jstree")
+					.removeData("jstree-instance-id")
+					.find("[class^='jstree']")
+						.andSelf()
+						.attr("class", function () { return this.className.replace(/jstree[^ ]*|$/ig,''); });
+				$(document)
+					.unbind(".jstree-" + n)
+					.undelegate(".jstree-" + n);
+				// remove the actual data
+				instances[n] = null;
+				delete instances[n];
+			},
+
+			_core_notify : function (n, data) {
+				if(data.opened) {
+					this.open_node(n, false, true);
+				}
+			},
+
+			lock : function () {
+				this.data.core.locked = true;
+				this.get_container().children("ul").addClass("jstree-locked").css("opacity","0.7");
+				this.__callback({});
+			},
+			unlock : function () {
+				this.data.core.locked = false;
+				this.get_container().children("ul").removeClass("jstree-locked").css("opacity","1");
+				this.__callback({});
+			},
+			is_locked : function () { return this.data.core.locked; },
+			save_opened : function () {
+				var _this = this;
+				this.data.core.to_open = [];
+				this.get_container_ul().find("li.jstree-open").each(function () { 
+					if(this.id) { _this.data.core.to_open.push("#" + this.id.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:")); }
+				});
+				this.__callback(_this.data.core.to_open);
+			},
+			save_loaded : function () { },
+			reload_nodes : function (is_callback) {
+				var _this = this,
+					done = true,
+					current = [],
+					remaining = [];
+				if(!is_callback) { 
+					this.data.core.reopen = false; 
+					this.data.core.refreshing = true; 
+					this.data.core.to_open = $.map($.makeArray(this.data.core.to_open), function (n) { return "#" + n.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:"); });
+					this.data.core.to_load = $.map($.makeArray(this.data.core.to_load), function (n) { return "#" + n.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:"); });
+					if(this.data.core.to_open.length) {
+						this.data.core.to_load = this.data.core.to_load.concat(this.data.core.to_open);
+					}
+				}
+				if(this.data.core.to_load.length) {
+					$.each(this.data.core.to_load, function (i, val) {
+						if(val == "#") { return true; }
+						if($(val).length) { current.push(val); }
+						else { remaining.push(val); }
+					});
+					if(current.length) {
+						this.data.core.to_load = remaining;
+						$.each(current, function (i, val) { 
+							if(!_this._is_loaded(val)) {
+								_this.load_node(val, function () { _this.reload_nodes(true); }, function () { _this.reload_nodes(true); });
+								done = false;
+							}
+						});
+					}
+				}
+				if(this.data.core.to_open.length) {
+					$.each(this.data.core.to_open, function (i, val) {
+						_this.open_node(val, false, true); 
+					});
+				}
+				if(done) { 
+					// TODO: find a more elegant approach to syncronizing returning requests
+					if(this.data.core.reopen) { clearTimeout(this.data.core.reopen); }
+					this.data.core.reopen = setTimeout(function () { _this.__callback({}, _this); }, 50);
+					this.data.core.refreshing = false;
+					this.reopen();
+				}
+			},
+			reopen : function () {
+				var _this = this;
+				if(this.data.core.to_open.length) {
+					$.each(this.data.core.to_open, function (i, val) {
+						_this.open_node(val, false, true); 
+					});
+				}
+				this.__callback({});
+			},
+			refresh : function (obj) {
+				var _this = this;
+				this.save_opened();
+				if(!obj) { obj = -1; }
+				obj = this._get_node(obj);
+				if(!obj) { obj = -1; }
+				if(obj !== -1) { obj.children("UL").remove(); }
+				else { this.get_container_ul().empty(); }
+				this.load_node(obj, function () { _this.__callback({ "obj" : obj}); _this.reload_nodes(); });
+			},
+			// Dummy function to fire after the first load (so that there is a jstree.loaded event)
+			loaded	: function () { 
+				this.__callback(); 
+			},
+			// deal with focus
+			set_focus	: function () { 
+				if(this.is_focused()) { return; }
+				var f = $.jstree._focused();
+				if(f) { f.unset_focus(); }
+
+				this.get_container().addClass("jstree-focused"); 
+				focused_instance = this.get_index(); 
+				this.__callback();
+			},
+			is_focused	: function () { 
+				return focused_instance == this.get_index(); 
+			},
+			unset_focus	: function () {
+				if(this.is_focused()) {
+					this.get_container().removeClass("jstree-focused"); 
+					focused_instance = -1; 
+				}
+				this.__callback();
+			},
+
+			// traverse
+			_get_node		: function (obj) { 
+				var $obj = $(obj, this.get_container()); 
+				if($obj.is(".jstree") || obj == -1) { return -1; } 
+				$obj = $obj.closest("li", this.get_container()); 
+				return $obj.length ? $obj : false; 
+			},
+			_get_next		: function (obj, strict) {
+				obj = this._get_node(obj);
+				if(obj === -1) { return this.get_container().find("> ul > li:first-child"); }
+				if(!obj.length) { return false; }
+				if(strict) { return (obj.nextAll("li").size() > 0) ? obj.nextAll("li:eq(0)") : false; }
+
+				if(obj.hasClass("jstree-open")) { return obj.find("li:eq(0)"); }
+				else if(obj.nextAll("li").size() > 0) { return obj.nextAll("li:eq(0)"); }
+				else { return obj.parentsUntil(".jstree","li").next("li").eq(0); }
+			},
+			_get_prev		: function (obj, strict) {
+				obj = this._get_node(obj);
+				if(obj === -1) { return this.get_container().find("> ul > li:last-child"); }
+				if(!obj.length) { return false; }
+				if(strict) { return (obj.prevAll("li").length > 0) ? obj.prevAll("li:eq(0)") : false; }
+
+				if(obj.prev("li").length) {
+					obj = obj.prev("li").eq(0);
+					while(obj.hasClass("jstree-open")) { obj = obj.children("ul:eq(0)").children("li:last"); }
+					return obj;
+				}
+				else { var o = obj.parentsUntil(".jstree","li:eq(0)"); return o.length ? o : false; }
+			},
+			_get_parent		: function (obj) {
+				obj = this._get_node(obj);
+				if(obj == -1 || !obj.length) { return false; }
+				var o = obj.parentsUntil(".jstree", "li:eq(0)");
+				return o.length ? o : -1;
+			},
+			_get_children	: function (obj) {
+				obj = this._get_node(obj);
+				if(obj === -1) { return this.get_container().children("ul:eq(0)").children("li"); }
+				if(!obj.length) { return false; }
+				return obj.children("ul:eq(0)").children("li");
+			},
+			get_path		: function (obj, id_mode) {
+				var p = [],
+					_this = this;
+				obj = this._get_node(obj);
+				if(obj === -1 || !obj || !obj.length) { return false; }
+				obj.parentsUntil(".jstree", "li").each(function () {
+					p.push( id_mode ? this.id : _this.get_text(this) );
+				});
+				p.reverse();
+				p.push( id_mode ? obj.attr("id") : this.get_text(obj) );
+				return p;
+			},
+
+			// string functions
+			_get_string : function (key) {
+				return this._get_settings().core.strings[key] || key;
+			},
+
+			is_open		: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass("jstree-open"); },
+			is_closed	: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass("jstree-closed"); },
+			is_leaf		: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass("jstree-leaf"); },
+			correct_state	: function (obj) {
+				obj = this._get_node(obj);
+				if(!obj || obj === -1) { return false; }
+				obj.removeClass("jstree-closed jstree-open").addClass("jstree-leaf").children("ul").remove();
+				this.__callback({ "obj" : obj });
+			},
+			// open/close
+			open_node	: function (obj, callback, skip_animation) {
+				obj = this._get_node(obj);
+				if(!obj.length) { return false; }
+				if(!obj.hasClass("jstree-closed")) { if(callback) { callback.call(); } return false; }
+				var s = skip_animation || is_ie6 ? 0 : this._get_settings().core.animation,
+					t = this;
+				if(!this._is_loaded(obj)) {
+					obj.children("a").addClass("jstree-loading");
+					this.load_node(obj, function () { t.open_node(obj, callback, skip_animation); }, callback);
+				}
+				else {
+					if(this._get_settings().core.open_parents) {
+						obj.parentsUntil(".jstree",".jstree-closed").each(function () {
+							t.open_node(this, false, true);
+						});
+					}
+					if(s) { obj.children("ul").css("display","none"); }
+					obj.removeClass("jstree-closed").addClass("jstree-open").children("a").removeClass("jstree-loading");
+					if(s) { obj.children("ul").stop(true, true).slideDown(s, function () { this.style.display = ""; t.after_open(obj); }); }
+					else { t.after_open(obj); }
+					this.__callback({ "obj" : obj });
+					if(callback) { callback.call(); }
+				}
+			},
+			after_open	: function (obj) { this.__callback({ "obj" : obj }); },
+			close_node	: function (obj, skip_animation) {
+				obj = this._get_node(obj);
+				var s = skip_animation || is_ie6 ? 0 : this._get_settings().core.animation,
+					t = this;
+				if(!obj.length || !obj.hasClass("jstree-open")) { return false; }
+				if(s) { obj.children("ul").attr("style","display:block !important"); }
+				obj.removeClass("jstree-open").addClass("jstree-closed");
+				if(s) { obj.children("ul").stop(true, true).slideUp(s, function () { this.style.display = ""; t.after_close(obj); }); }
+				else { t.after_close(obj); }
+				this.__callback({ "obj" : obj });
+			},
+			after_close	: function (obj) { this.__callback({ "obj" : obj }); },
+			toggle_node	: function (obj) {
+				obj = this._get_node(obj);
+				if(obj.hasClass("jstree-closed")) { return this.open_node(obj); }
+				if(obj.hasClass("jstree-open")) { return this.close_node(obj); }
+			},
+			open_all	: function (obj, do_animation, original_obj) {
+				obj = obj ? this._get_node(obj) : -1;
+				if(!obj || obj === -1) { obj = this.get_container_ul(); }
+				if(original_obj) { 
+					obj = obj.find("li.jstree-closed");
+				}
+				else {
+					original_obj = obj;
+					if(obj.is(".jstree-closed")) { obj = obj.find("li.jstree-closed").andSelf(); }
+					else { obj = obj.find("li.jstree-closed"); }
+				}
+				var _this = this;
+				obj.each(function () { 
+					var __this = this; 
+					if(!_this._is_loaded(this)) { _this.open_node(this, function() { _this.open_all(__this, do_animation, original_obj); }, !do_animation); }
+					else { _this.open_node(this, false, !do_animation); }
+				});
+				// so that callback is fired AFTER all nodes are open
+				if(original_obj.find('li.jstree-closed').length === 0) { this.__callback({ "obj" : original_obj }); }
+			},
+			close_all	: function (obj, do_animation) {
+				var _this = this;
+				obj = obj ? this._get_node(obj) : this.get_container();
+				if(!obj || obj === -1) { obj = this.get_container_ul(); }
+				obj.find("li.jstree-open").andSelf().each(function () { _this.close_node(this, !do_animation); });
+				this.__callback({ "obj" : obj });
+			},
+			clean_node	: function (obj) {
+				obj = obj && obj != -1 ? $(obj) : this.get_container_ul();
+				obj = obj.is("li") ? obj.find("li").andSelf() : obj.find("li");
+				obj.removeClass("jstree-last")
+					.filter("li:last-child").addClass("jstree-last").end()
+					.filter(":has(li)")
+						.not(".jstree-open").removeClass("jstree-leaf").addClass("jstree-closed");
+				obj.not(".jstree-open, .jstree-closed").addClass("jstree-leaf").children("ul").remove();
+				this.__callback({ "obj" : obj });
+			},
+			// rollback
+			get_rollback : function () { 
+				this.__callback();
+				return { i : this.get_index(), h : this.get_container().children("ul").clone(true), d : this.data }; 
+			},
+			set_rollback : function (html, data) {
+				this.get_container().empty().append(html);
+				this.data = data;
+				this.__callback();
+			},
+			// Dummy functions to be overwritten by any datastore plugin included
+			load_node	: function (obj, s_call, e_call) { this.__callback({ "obj" : obj }); },
+			_is_loaded	: function (obj) { return true; },
+
+			// Basic operations: create
+			create_node	: function (obj, position, js, callback, is_loaded) {
+				obj = this._get_node(obj);
+				position = typeof position === "undefined" ? "last" : position;
+				var d = $("<li />"),
+					s = this._get_settings().core,
+					tmp;
+
+				if(obj !== -1 && !obj.length) { return false; }
+				if(!is_loaded && !this._is_loaded(obj)) { this.load_node(obj, function () { this.create_node(obj, position, js, callback, true); }); return false; }
+
+				this.__rollback();
+
+				if(typeof js === "string") { js = { "data" : js }; }
+				if(!js) { js = {}; }
+				if(js.attr) { d.attr(js.attr); }
+				if(js.metadata) { d.data(js.metadata); }
+				if(js.state) { d.addClass("jstree-" + js.state); }
+				if(!js.data) { js.data = this._get_string("new_node"); }
+				if(!$.isArray(js.data)) { tmp = js.data; js.data = []; js.data.push(tmp); }
+				$.each(js.data, function (i, m) {
+					tmp = $("<a />");
+					if($.isFunction(m)) { m = m.call(this, js); }
+					if(typeof m == "string") { tmp.attr('href','#')[ s.html_titles ? "html" : "text" ](m); }
+					else {
+						if(!m.attr) { m.attr = {}; }
+						if(!m.attr.href) { m.attr.href = '#'; }
+						tmp.attr(m.attr)[ s.html_titles ? "html" : "text" ](m.title);
+						if(m.language) { tmp.addClass(m.language); }
+					}
+					tmp.prepend("<ins class='jstree-icon'> </ins>");
+					if(m.icon) { 
+						if(m.icon.indexOf("/") === -1) { tmp.children("ins").addClass(m.icon); }
+						else { tmp.children("ins").css("background","url('" + m.icon + "') center center no-repeat"); }
+					}
+					d.append(tmp);
+				});
+				d.prepend("<ins class='jstree-icon'> </ins>");
+				if(obj === -1) {
+					obj = this.get_container();
+					if(position === "before") { position = "first"; }
+					if(position === "after") { position = "last"; }
+				}
+				switch(position) {
+					case "before": obj.before(d); tmp = this._get_parent(obj); break;
+					case "after" : obj.after(d);  tmp = this._get_parent(obj); break;
+					case "inside":
+					case "first" :
+						if(!obj.children("ul").length) { obj.append("<ul />"); }
+						obj.children("ul").prepend(d);
+						tmp = obj;
+						break;
+					case "last":
+						if(!obj.children("ul").length) { obj.append("<ul />"); }
+						obj.children("ul").append(d);
+						tmp = obj;
+						break;
+					default:
+						if(!obj.children("ul").length) { obj.append("<ul />"); }
+						if(!position) { position = 0; }
+						tmp = obj.children("ul").children("li").eq(position);
+						if(tmp.length) { tmp.before(d); }
+						else { obj.children("ul").append(d); }
+						tmp = obj;
+						break;
+				}
+				if(tmp === -1 || tmp.get(0) === this.get_container().get(0)) { tmp = -1; }
+				this.clean_node(tmp);
+				this.__callback({ "obj" : d, "parent" : tmp });
+				if(callback) { callback.call(this, d); }
+				return d;
+			},
+			// Basic operations: rename (deal with text)
+			get_text	: function (obj) {
+				obj = this._get_node(obj);
+				if(!obj.length) { return false; }
+				var s = this._get_settings().core.html_titles;
+				obj = obj.children("a:eq(0)");
+				if(s) {
+					obj = obj.clone();
+					obj.children("INS").remove();
+					return obj.html();
+				}
+				else {
+					obj = obj.contents().filter(function() { return this.nodeType == 3; })[0];
+					return obj.nodeValue;
+				}
+			},
+			set_text	: function (obj, val) {
+				obj = this._get_node(obj);
+				if(!obj.length) { return false; }
+				obj = obj.children("a:eq(0)");
+				if(this._get_settings().core.html_titles) {
+					var tmp = obj.children("INS").clone();
+					obj.html(val).prepend(tmp);
+					this.__callback({ "obj" : obj, "name" : val });
+					return true;
+				}
+				else {
+					obj = obj.contents().filter(function() { return this.nodeType == 3; })[0];
+					this.__callback({ "obj" : obj, "name" : val });
+					return (obj.nodeValue = val);
+				}
+			},
+			rename_node : function (obj, val) {
+				obj = this._get_node(obj);
+				this.__rollback();
+				if(obj && obj.length && this.set_text.apply(this, Array.prototype.slice.call(arguments))) { this.__callback({ "obj" : obj, "name" : val }); }
+			},
+			// Basic operations: deleting nodes
+			delete_node : function (obj) {
+				obj = this._get_node(obj);
+				if(!obj.length) { return false; }
+				this.__rollback();
+				var p = this._get_parent(obj), prev = $([]), t = this;
+				obj.each(function () {
+					prev = prev.add(t._get_prev(this));
+				});
+				obj = obj.detach();
+				if(p !== -1 && p.find("> ul > li").length === 0) {
+					p.removeClass("jstree-open jstree-closed").addClass("jstree-leaf");
+				}
+				this.clean_node(p);
+				this.__callback({ "obj" : obj, "prev" : prev, "parent" : p });
+				return obj;
+			},
+			prepare_move : function (o, r, pos, cb, is_cb) {
+				var p = {};
+
+				p.ot = $.jstree._reference(o) || this;
+				p.o = p.ot._get_node(o);
+				p.r = r === - 1 ? -1 : this._get_node(r);
+				p.p = (typeof pos === "undefined" || pos === false) ? "last" : pos; // TODO: move to a setting
+				if(!is_cb && prepared_move.o && prepared_move.o[0] === p.o[0] && prepared_move.r[0] === p.r[0] && prepared_move.p === p.p) {
+					this.__callback(prepared_move);
+					if(cb) { cb.call(this, prepared_move); }
+					return;
+				}
+				p.ot = $.jstree._reference(p.o) || this;
+				p.rt = $.jstree._reference(p.r) || this; // r === -1 ? p.ot : $.jstree._reference(p.r) || this
+				if(p.r === -1 || !p.r) {
+					p.cr = -1;
+					switch(p.p) {
+						case "first":
+						case "before":
+						case "inside":
+							p.cp = 0; 
+							break;
+						case "after":
+						case "last":
+							p.cp = p.rt.get_container().find(" > ul > li").length; 
+							break;
+						default:
+							p.cp = p.p;
+							break;
+					}
+				}
+				else {
+					if(!/^(before|after)$/.test(p.p) && !this._is_loaded(p.r)) {
+						return this.load_node(p.r, function () { this.prepare_move(o, r, pos, cb, true); });
+					}
+					switch(p.p) {
+						case "before":
+							p.cp = p.r.index();
+							p.cr = p.rt._get_parent(p.r);
+							break;
+						case "after":
+							p.cp = p.r.index() + 1;
+							p.cr = p.rt._get_parent(p.r);
+							break;
+						case "inside":
+						case "first":
+							p.cp = 0;
+							p.cr = p.r;
+							break;
+						case "last":
+							p.cp = p.r.find(" > ul > li").length; 
+							p.cr = p.r;
+							break;
+						default: 
+							p.cp = p.p;
+							p.cr = p.r;
+							break;
+					}
+				}
+				p.np = p.cr == -1 ? p.rt.get_container() : p.cr;
+				p.op = p.ot._get_parent(p.o);
+				p.cop = p.o.index();
+				if(p.op === -1) { p.op = p.ot ? p.ot.get_container() : this.get_container(); }
+				if(!/^(before|after)$/.test(p.p) && p.op && p.np && p.op[0] === p.np[0] && p.o.index() < p.cp) { p.cp++; }
+				//if(p.p === "before" && p.op && p.np && p.op[0] === p.np[0] && p.o.index() < p.cp) { p.cp--; }
+				p.or = p.np.find(" > ul > li:nth-child(" + (p.cp + 1) + ")");
+				prepared_move = p;
+				this.__callback(prepared_move);
+				if(cb) { cb.call(this, prepared_move); }
+			},
+			check_move : function () {
+				var obj = prepared_move, ret = true, r = obj.r === -1 ? this.get_container() : obj.r;
+				if(!obj || !obj.o || obj.or[0] === obj.o[0]) { return false; }
+				if(obj.op && obj.np && obj.op[0] === obj.np[0] && obj.cp - 1 === obj.o.index()) { return false; }
+				obj.o.each(function () { 
+					if(r.parentsUntil(".jstree", "li").andSelf().index(this) !== -1) { ret = false; return false; }
+				});
+				return ret;
+			},
+			move_node : function (obj, ref, position, is_copy, is_prepared, skip_check) {
+				if(!is_prepared) { 
+					return this.prepare_move(obj, ref, position, function (p) {
+						this.move_node(p, false, false, is_copy, true, skip_check);
+					});
+				}
+				if(is_copy) { 
+					prepared_move.cy = true;
+				}
+				if(!skip_check && !this.check_move()) { return false; }
+
+				this.__rollback();
+				var o = false;
+				if(is_copy) {
+					o = obj.o.clone(true);
+					o.find("*[id]").andSelf().each(function () {
+						if(this.id) { this.id = "copy_" + this.id; }
+					});
+				}
+				else { o = obj.o; }
+
+				if(obj.or.length) { obj.or.before(o); }
+				else { 
+					if(!obj.np.children("ul").length) { $("<ul />").appendTo(obj.np); }
+					obj.np.children("ul:eq(0)").append(o); 
+				}
+
+				try { 
+					obj.ot.clean_node(obj.op);
+					obj.rt.clean_node(obj.np);
+					if(!obj.op.find("> ul > li").length) {
+						obj.op.removeClass("jstree-open jstree-closed").addClass("jstree-leaf").children("ul").remove();
+					}
+				} catch (e) { }
+
+				if(is_copy) { 
+					prepared_move.cy = true;
+					prepared_move.oc = o; 
+				}
+				this.__callback(prepared_move);
+				return prepared_move;
+			},
+			_get_move : function () { return prepared_move; }
+		}
+	});
+})(jQuery);
+//*/
+
+/* 
+ * jsTree ui plugin
+ * This plugins handles selecting/deselecting/hovering/dehovering nodes
+ */
+(function ($) {
+	var scrollbar_width, e1, e2;
+	$(function() {
+		if (/msie/.test(navigator.userAgent.toLowerCase())) {
+			e1 = $('<textarea cols="10" rows="2"></textarea>').css({ position: 'absolute', top: -1000, left: 0 }).appendTo('body');
+			e2 = $('<textarea cols="10" rows="2" style="overflow: hidden;"></textarea>').css({ position: 'absolute', top: -1000, left: 0 }).appendTo('body');
+			scrollbar_width = e1.width() - e2.width();
+			e1.add(e2).remove();
+		} 
+		else {
+			e1 = $('<div />').css({ width: 100, height: 100, overflow: 'auto', position: 'absolute', top: -1000, left: 0 })
+					.prependTo('body').append('<div />').find('div').css({ width: '100%', height: 200 });
+			scrollbar_width = 100 - e1.width();
+			e1.parent().remove();
+		}
+	});
+	$.jstree.plugin("ui", {
+		__init : function () { 
+			this.data.ui.selected = $(); 
+			this.data.ui.last_selected = false; 
+			this.data.ui.hovered = null;
+			this.data.ui.to_select = this.get_settings().ui.initially_select;
+
+			this.get_container()
+				.delegate("a", "click.jstree", $.proxy(function (event) {
+						event.preventDefault();
+						event.currentTarget.blur();
+						if(!$(event.currentTarget).hasClass("jstree-loading")) {
+							this.select_node(event.currentTarget, true, event);
+						}
+					}, this))
+				.delegate("a", "mouseenter.jstree", $.proxy(function (event) {
+						if(!$(event.currentTarget).hasClass("jstree-loading")) {
+							this.hover_node(event.target);
+						}
+					}, this))
+				.delegate("a", "mouseleave.jstree", $.proxy(function (event) {
+						if(!$(event.currentTarget).hasClass("jstree-loading")) {
+							this.dehover_node(event.target);
+						}
+					}, this))
+				.bind("reopen.jstree", $.proxy(function () { 
+						this.reselect();
+					}, this))
+				.bind("get_rollback.jstree", $.proxy(function () { 
+						this.dehover_node();
+						this.save_selected();
+					}, this))
+				.bind("set_rollback.jstree", $.proxy(function () { 
+						this.reselect();
+					}, this))
+				.bind("close_node.jstree", $.proxy(function (event, data) { 
+						var s = this._get_settings().ui,
+							obj = this._get_node(data.rslt.obj),
+							clk = (obj && obj.length) ? obj.children("ul").find("a.jstree-clicked") : $(),
+							_this = this;
+						if(s.selected_parent_close === false || !clk.length) { return; }
+						clk.each(function () { 
+							_this.deselect_node(this);
+							if(s.selected_parent_close === "select_parent") { _this.select_node(obj); }
+						});
+					}, this))
+				.bind("delete_node.jstree", $.proxy(function (event, data) { 
+						var s = this._get_settings().ui.select_prev_on_delete,
+							obj = this._get_node(data.rslt.obj),
+							clk = (obj && obj.length) ? obj.find("a.jstree-clicked") : [],
+							_this = this;
+						clk.each(function () { _this.deselect_node(this); });
+						if(s && clk.length) { 
+							data.rslt.prev.each(function () { 
+								if(this.parentNode) { _this.select_node(this); return false; /* if return false is removed all prev nodes will be selected */}
+							});
+						}
+					}, this))
+				.bind("move_node.jstree", $.proxy(function (event, data) { 
+						if(data.rslt.cy) { 
+							data.rslt.oc.find("a.jstree-clicked").removeClass("jstree-clicked");
+						}
+					}, this));
+		},
+		defaults : {
+			select_limit : -1, // 0, 1, 2 ... or -1 for unlimited
+			select_multiple_modifier : "ctrl", // on, or ctrl, shift, alt
+			select_range_modifier : "shift",
+			selected_parent_close : "select_parent", // false, "deselect", "select_parent"
+			selected_parent_open : true,
+			select_prev_on_delete : true,
+			disable_selecting_children : false,
+			initially_select : []
+		},
+		_fn : { 
+			_get_node : function (obj, allow_multiple) {
+				if(typeof obj === "undefined" || obj === null) { return allow_multiple ? this.data.ui.selected : this.data.ui.last_selected; }
+				var $obj = $(obj, this.get_container()); 
+				if($obj.is(".jstree") || obj == -1) { return -1; } 
+				$obj = $obj.closest("li", this.get_container()); 
+				return $obj.length ? $obj : false; 
+			},
+			_ui_notify : function (n, data) {
+				if(data.selected) {
+					this.select_node(n, false);
+				}
+			},
+			save_selected : function () {
+				var _this = this;
+				this.data.ui.to_select = [];
+				this.data.ui.selected.each(function () { if(this.id) { _this.data.ui.to_select.push("#" + this.id.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:")); } });
+				this.__callback(this.data.ui.to_select);
+			},
+			reselect : function () {
+				var _this = this,
+					s = this.data.ui.to_select;
+				s = $.map($.makeArray(s), function (n) { return "#" + n.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:"); });
+				// this.deselect_all(); WHY deselect, breaks plugin state notifier?
+				$.each(s, function (i, val) { if(val && val !== "#") { _this.select_node(val); } });
+				this.data.ui.selected = this.data.ui.selected.filter(function () { return this.parentNode; });
+				this.__callback();
+			},
+			refresh : function (obj) {
+				this.save_selected();
+				return this.__call_old();
+			},
+			hover_node : function (obj) {
+				obj = this._get_node(obj);
+				if(!obj.length) { return false; }
+				//if(this.data.ui.hovered && obj.get(0) === this.data.ui.hovered.get(0)) { return; }
+				if(!obj.hasClass("jstree-hovered")) { this.dehover_node(); }
+				this.data.ui.hovered = obj.children("a").addClass("jstree-hovered").parent();
+				this._fix_scroll(obj);
+				this.__callback({ "obj" : obj });
+			},
+			dehover_node : function () {
+				var obj = this.data.ui.hovered, p;
+				if(!obj || !obj.length) { return false; }
+				p = obj.children("a").removeClass("jstree-hovered").parent();
+				if(this.data.ui.hovered[0] === p[0]) { this.data.ui.hovered = null; }
+				this.__callback({ "obj" : obj });
+			},
+			select_node : function (obj, check, e) {
+				obj = this._get_node(obj);
+				if(obj == -1 || !obj || !obj.length) { return false; }
+				var s = this._get_settings().ui,
+					is_multiple = (s.select_multiple_modifier == "on" || (s.select_multiple_modifier !== false && e && e[s.select_multiple_modifier + "Key"])),
+					is_range = (s.select_range_modifier !== false && e && e[s.select_range_modifier + "Key"] && this.data.ui.last_selected && this.data.ui.last_selected[0] !== obj[0] && this.data.ui.last_selected.parent()[0] === obj.parent()[0]),
+					is_selected = this.is_selected(obj),
+					proceed = true,
+					t = this;
+				if(check) {
+					if(s.disable_selecting_children && is_multiple && 
+						(
+							(obj.parentsUntil(".jstree","li").children("a.jstree-clicked").length) ||
+							(obj.children("ul").find("a.jstree-clicked:eq(0)").length)
+						)
+					) {
+						return false;
+					}
+					proceed = false;
+					switch(!0) {
+						case (is_range):
+							this.data.ui.last_selected.addClass("jstree-last-selected");
+							obj = obj[ obj.index() < this.data.ui.last_selected.index() ? "nextUntil" : "prevUntil" ](".jstree-last-selected").andSelf();
+							if(s.select_limit == -1 || obj.length < s.select_limit) {
+								this.data.ui.last_selected.removeClass("jstree-last-selected");
+								this.data.ui.selected.each(function () {
+									if(this !== t.data.ui.last_selected[0]) { t.deselect_node(this); }
+								});
+								is_selected = false;
+								proceed = true;
+							}
+							else {
+								proceed = false;
+							}
+							break;
+						case (is_selected && !is_multiple): 
+							this.deselect_all();
+							is_selected = false;
+							proceed = true;
+							break;
+						case (!is_selected && !is_multiple): 
+							if(s.select_limit == -1 || s.select_limit > 0) {
+								this.deselect_all();
+								proceed = true;
+							}
+							break;
+						case (is_selected && is_multiple): 
+							this.deselect_node(obj);
+							break;
+						case (!is_selected && is_multiple): 
+							if(s.select_limit == -1 || this.data.ui.selected.length + 1 <= s.select_limit) { 
+								proceed = true;
+							}
+							break;
+					}
+				}
+				if(proceed && !is_selected) {
+					if(!is_range) { this.data.ui.last_selected = obj; }
+					obj.children("a").addClass("jstree-clicked");
+					if(s.selected_parent_open) {
+						obj.parents(".jstree-closed").each(function () { t.open_node(this, false, true); });
+					}
+					this.data.ui.selected = this.data.ui.selected.add(obj);
+					this._fix_scroll(obj.eq(0));
+					this.__callback({ "obj" : obj, "e" : e });
+				}
+			},
+			_fix_scroll : function (obj) {
+				var c = this.get_container()[0], t;
+				if(c.scrollHeight > c.offsetHeight) {
+					obj = this._get_node(obj);
+					if(!obj || obj === -1 || !obj.length || !obj.is(":visible")) { return; }
+					t = obj.offset().top - this.get_container().offset().top;
+					if(t < 0) { 
+						c.scrollTop = c.scrollTop + t - 1; 
+					}
+					if(t + this.data.core.li_height + (c.scrollWidth > c.offsetWidth ? scrollbar_width : 0) > c.offsetHeight) { 
+						c.scrollTop = c.scrollTop + (t - c.offsetHeight + this.data.core.li_height + 1 + (c.scrollWidth > c.offsetWidth ? scrollbar_width : 0)); 
+					}
+				}
+			},
+			deselect_node : function (obj) {
+				obj = this._get_node(obj);
+				if(!obj.length) { return false; }
+				if(this.is_selected(obj)) {
+					obj.children("a").removeClass("jstree-clicked");
+					this.data.ui.selected = this.data.ui.selected.not(obj);
+					if(this.data.ui.last_selected.get(0) === obj.get(0)) { this.data.ui.last_selected = this.data.ui.selected.eq(0); }
+					this.__callback({ "obj" : obj });
+				}
+			},
+			toggle_select : function (obj) {
+				obj = this._get_node(obj);
+				if(!obj.length) { return false; }
+				if(this.is_selected(obj)) { this.deselect_node(obj); }
+				else { this.select_node(obj); }
+			},
+			is_selected : function (obj) { return this.data.ui.selected.index(this._get_node(obj)) >= 0; },
+			get_selected : function (context) { 
+				return context ? $(context).find("a.jstree-clicked").parent() : this.data.ui.selected; 
+			},
+			deselect_all : function (context) {
+				var ret = context ? $(context).find("a.jstree-clicked").parent() : this.get_container().find("a.jstree-clicked").parent();
+				ret.children("a.jstree-clicked").removeClass("jstree-clicked");
+				this.data.ui.selected = $([]);
+				this.data.ui.last_selected = false;
+				this.__callback({ "obj" : ret });
+			}
+		}
+	});
+	// include the selection plugin by default
+	$.jstree.defaults.plugins.push("ui");
+})(jQuery);
+//*/
+
+/* 
+ * jsTree CRRM plugin
+ * Handles creating/renaming/removing/moving nodes by user interaction.
+ */
+(function ($) {
+	$.jstree.plugin("crrm", { 
+		__init : function () {
+			this.get_container()
+				.bind("move_node.jstree", $.proxy(function (e, data) {
+					if(this._get_settings().crrm.move.open_onmove) {
+						var t = this;
+						data.rslt.np.parentsUntil(".jstree").andSelf().filter(".jstree-closed").each(function () {
+							t.open_node(this, false, true);
+						});
+					}
+				}, this));
+		},
+		defaults : {
+			input_width_limit : 200,
+			move : {
+				always_copy			: false, // false, true or "multitree"
+				open_onmove			: true,
+				default_position	: "last",
+				check_move			: function (m) { return true; }
+			}
+		},
+		_fn : {
+			_show_input : function (obj, callback) {
+				obj = this._get_node(obj);
+				var rtl = this._get_settings().core.rtl,
+					w = this._get_settings().crrm.input_width_limit,
+					w1 = obj.children("ins").width(),
+					w2 = obj.find("> a:visible > ins").width() * obj.find("> a:visible > ins").length,
+					t = this.get_text(obj),
+					h1 = $("<div />", { css : { "position" : "absolute", "top" : "-200px", "left" : (rtl ? "0px" : "-1000px"), "visibility" : "hidden" } }).appendTo("body"),
+					h2 = obj.css("position","relative").append(
+					$("<input />", { 
+						"value" : t,
+						"class" : "jstree-rename-input",
+						// "size" : t.length,
+						"css" : {
+							"padding" : "0",
+							"border" : "1px solid silver",
+							"position" : "absolute",
+							"left"  : (rtl ? "auto" : (w1 + w2 + 4) + "px"),
+							"right" : (rtl ? (w1 + w2 + 4) + "px" : "auto"),
+							"top" : "0px",
+							"height" : (this.data.core.li_height - 2) + "px",
+							"lineHeight" : (this.data.core.li_height - 2) + "px",
+							"width" : "150px" // will be set a bit further down
+						},
+						"blur" : $.proxy(function () {
+							var i = obj.children(".jstree-rename-input"),
+								v = i.val();
+							if(v === "") { v = t; }
+							h1.remove();
+							i.remove(); // rollback purposes
+							this.set_text(obj,t); // rollback purposes
+							this.rename_node(obj, v);
+							callback.call(this, obj, v, t);
+							obj.css("position","");
+						}, this),
+						"keyup" : function (event) {
+							var key = event.keyCode || event.which;
+							if(key == 27) { this.value = t; this.blur(); return; }
+							else if(key == 13) { this.blur(); return; }
+							else {
+								h2.width(Math.min(h1.text("pW" + this.value).width(),w));
+							}
+						},
+						"keypress" : function(event) {
+							var key = event.keyCode || event.which;
+							if(key == 13) { return false; }
+						}
+					})
+				).children(".jstree-rename-input"); 
+				this.set_text(obj, "");
+				h1.css({
+						fontFamily		: h2.css('fontFamily')		|| '',
+						fontSize		: h2.css('fontSize')		|| '',
+						fontWeight		: h2.css('fontWeight')		|| '',
+						fontStyle		: h2.css('fontStyle')		|| '',
+						fontStretch		: h2.css('fontStretch')		|| '',
+						fontVariant		: h2.css('fontVariant')		|| '',
+						letterSpacing	: h2.css('letterSpacing')	|| '',
+						wordSpacing		: h2.css('wordSpacing')		|| ''
+				});
+				h2.width(Math.min(h1.text("pW" + h2[0].value).width(),w))[0].select();
+			},
+			rename : function (obj) {
+				obj = this._get_node(obj);
+				this.__rollback();
+				var f = this.__callback;
+				this._show_input(obj, function (obj, new_name, old_name) { 
+					f.call(this, { "obj" : obj, "new_name" : new_name, "old_name" : old_name });
+				});
+			},
+			create : function (obj, position, js, callback, skip_rename) {
+				var t, _this = this;
+				obj = this._get_node(obj);
+				if(!obj) { obj = -1; }
+				this.__rollback();
+				t = this.create_node(obj, position, js, function (t) {
+					var p = this._get_parent(t),
+						pos = $(t).index();
+					if(callback) { callback.call(this, t); }
+					if(p.length && p.hasClass("jstree-closed")) { this.open_node(p, false, true); }
+					if(!skip_rename) { 
+						this._show_input(t, function (obj, new_name, old_name) { 
+							_this.__callback({ "obj" : obj, "name" : new_name, "parent" : p, "position" : pos });
+						});
+					}
+					else { _this.__callback({ "obj" : t, "name" : this.get_text(t), "parent" : p, "position" : pos }); }
+				});
+				return t;
+			},
+			remove : function (obj) {
+				obj = this._get_node(obj, true);
+				var p = this._get_parent(obj), prev = this._get_prev(obj);
+				this.__rollback();
+				obj = this.delete_node(obj);
+				if(obj !== false) { this.__callback({ "obj" : obj, "prev" : prev, "parent" : p }); }
+			},
+			check_move : function () {
+				if(!this.__call_old()) { return false; }
+				var s = this._get_settings().crrm.move;
+				if(!s.check_move.call(this, this._get_move())) { return false; }
+				return true;
+			},
+			move_node : function (obj, ref, position, is_copy, is_prepared, skip_check) {
+				var s = this._get_settings().crrm.move;
+				if(!is_prepared) { 
+					if(typeof position === "undefined") { position = s.default_position; }
+					if(position === "inside" && !s.default_position.match(/^(before|after)$/)) { position = s.default_position; }
+					return this.__call_old(true, obj, ref, position, is_copy, false, skip_check);
+				}
+				// if the move is already prepared
+				if(s.always_copy === true || (s.always_copy === "multitree" && obj.rt.get_index() !== obj.ot.get_index() )) {
+					is_copy = true;
+				}
+				this.__call_old(true, obj, ref, position, is_copy, true, skip_check);
+			},
+
+			cut : function (obj) {
+				obj = this._get_node(obj, true);
+				if(!obj || !obj.length) { return false; }
+				this.data.crrm.cp_nodes = false;
+				this.data.crrm.ct_nodes = obj;
+				this.__callback({ "obj" : obj });
+			},
+			copy : function (obj) {
+				obj = this._get_node(obj, true);
+				if(!obj || !obj.length) { return false; }
+				this.data.crrm.ct_nodes = false;
+				this.data.crrm.cp_nodes = obj;
+				this.__callback({ "obj" : obj });
+			},
+			paste : function (obj) { 
+				obj = this._get_node(obj);
+				if(!obj || !obj.length) { return false; }
+				var nodes = this.data.crrm.ct_nodes ? this.data.crrm.ct_nodes : this.data.crrm.cp_nodes;
+				if(!this.data.crrm.ct_nodes && !this.data.crrm.cp_nodes) { return false; }
+				if(this.data.crrm.ct_nodes) { this.move_node(this.data.crrm.ct_nodes, obj); this.data.crrm.ct_nodes = false; }
+				if(this.data.crrm.cp_nodes) { this.move_node(this.data.crrm.cp_nodes, obj, false, true); }
+				this.__callback({ "obj" : obj, "nodes" : nodes });
+			}
+		}
+	});
+	// include the crr plugin by default
+	// $.jstree.defaults.plugins.push("crrm");
+})(jQuery);
+//*/
+
+/* 
+ * jsTree themes plugin
+ * Handles loading and setting themes, as well as detecting path to themes, etc.
+ */
+(function ($) {
+	var themes_loaded = [];
+	// this variable stores the path to the themes folder - if left as false - it will be autodetected
+	$.jstree._themes = false;
+	$.jstree.plugin("themes", {
+		__init : function () { 
+			this.get_container()
+				.bind("init.jstree", $.proxy(function () {
+						var s = this._get_settings().themes;
+						this.data.themes.dots = s.dots; 
+						this.data.themes.icons = s.icons; 
+						this.set_theme(s.theme, s.url);
+					}, this))
+				.bind("loaded.jstree", $.proxy(function () {
+						// bound here too, as simple HTML tree's won't honor dots & icons otherwise
+						if(!this.data.themes.dots) { this.hide_dots(); }
+						else { this.show_dots(); }
+						if(!this.data.themes.icons) { this.hide_icons(); }
+						else { this.show_icons(); }
+					}, this));
+		},
+		defaults : { 
+			theme : "default", 
+			url : false,
+			dots : true,
+			icons : true
+		},
+		_fn : {
+			set_theme : function (theme_name, theme_url) {
+				if(!theme_name) { return false; }
+				if(!theme_url) { theme_url = $.jstree._themes + theme_name + '/style.css'; }
+				if($.inArray(theme_url, themes_loaded) == -1) {
+					$.vakata.css.add_sheet({ "url" : theme_url });
+					themes_loaded.push(theme_url);
+				}
+				if(this.data.themes.theme != theme_name) {
+					this.get_container().removeClass('jstree-' + this.data.themes.theme);
+					this.data.themes.theme = theme_name;
+				}
+				this.get_container().addClass('jstree-' + theme_name);
+				if(!this.data.themes.dots) { this.hide_dots(); }
+				else { this.show_dots(); }
+				if(!this.data.themes.icons) { this.hide_icons(); }
+				else { this.show_icons(); }
+				this.__callback();
+			},
+			get_theme	: function () { return this.data.themes.theme; },
+
+			show_dots	: function () { this.data.themes.dots = true; this.get_container().children("ul").removeClass("jstree-no-dots"); },
+			hide_dots	: function () { this.data.themes.dots = false; this.get_container().children("ul").addClass("jstree-no-dots"); },
+			toggle_dots	: function () { if(this.data.themes.dots) { this.hide_dots(); } else { this.show_dots(); } },
+
+			show_icons	: function () { this.data.themes.icons = true; this.get_container().children("ul").removeClass("jstree-no-icons"); },
+			hide_icons	: function () { this.data.themes.icons = false; this.get_container().children("ul").addClass("jstree-no-icons"); },
+			toggle_icons: function () { if(this.data.themes.icons) { this.hide_icons(); } else { this.show_icons(); } }
+		}
+	});
+	// autodetect themes path
+	$(function () {
+		if($.jstree._themes === false) {
+			$("script").each(function () { 
+				if(this.src.toString().match(/jquery\.jstree[^\/]*?\.js(\?.*)?$/)) { 
+					$.jstree._themes = this.src.toString().replace(/jquery\.jstree[^\/]*?\.js(\?.*)?$/, "") + 'themes/'; 
+					return false; 
+				}
+			});
+		}
+		if($.jstree._themes === false) { $.jstree._themes = "themes/"; }
+	});
+	// include the themes plugin by default
+	$.jstree.defaults.plugins.push("themes");
+})(jQuery);
+//*/
+
+/*
+ * jsTree hotkeys plugin
+ * Enables keyboard navigation for all tree instances
+ * Depends on the jstree ui & jquery hotkeys plugins
+ */
+(function ($) {
+	var bound = [];
+	function exec(i, event) {
+		var f = $.jstree._focused(), tmp;
+		if(f && f.data && f.data.hotkeys && f.data.hotkeys.enabled) { 
+			tmp = f._get_settings().hotkeys[i];
+			if(tmp) { return tmp.call(f, event); }
+		}
+	}
+	$.jstree.plugin("hotkeys", {
+		__init : function () {
+			if(typeof $.hotkeys === "undefined") { throw "jsTree hotkeys: jQuery hotkeys plugin not included."; }
+			if(!this.data.ui) { throw "jsTree hotkeys: jsTree UI plugin not included."; }
+			$.each(this._get_settings().hotkeys, function (i, v) {
+				if(v !== false && $.inArray(i, bound) == -1) {
+					$(document).bind("keydown", i, function (event) { return exec(i, event); });
+					bound.push(i);
+				}
+			});
+			this.get_container()
+				.bind("lock.jstree", $.proxy(function () {
+						if(this.data.hotkeys.enabled) { this.data.hotkeys.enabled = false; this.data.hotkeys.revert = true; }
+					}, this))
+				.bind("unlock.jstree", $.proxy(function () {
+						if(this.data.hotkeys.revert) { this.data.hotkeys.enabled = true; }
+					}, this));
+			this.enable_hotkeys();
+		},
+		defaults : {
+			"up" : function () { 
+				var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
+				this.hover_node(this._get_prev(o));
+				return false; 
+			},
+			"ctrl+up" : function () { 
+				var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
+				this.hover_node(this._get_prev(o));
+				return false; 
+			},
+			"shift+up" : function () { 
+				var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
+				this.hover_node(this._get_prev(o));
+				return false; 
+			},
+			"down" : function () { 
+				var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
+				this.hover_node(this._get_next(o));
+				return false;
+			},
+			"ctrl+down" : function () { 
+				var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
+				this.hover_node(this._get_next(o));
+				return false;
+			},
+			"shift+down" : function () { 
+				var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
+				this.hover_node(this._get_next(o));
+				return false;
+			},
+			"left" : function () { 
+				var o = this.data.ui.hovered || this.data.ui.last_selected;
+				if(o) {
+					if(o.hasClass("jstree-open")) { this.close_node(o); }
+					else { this.hover_node(this._get_prev(o)); }
+				}
+				return false;
+			},
+			"ctrl+left" : function () { 
+				var o = this.data.ui.hovered || this.data.ui.last_selected;
+				if(o) {
+					if(o.hasClass("jstree-open")) { this.close_node(o); }
+					else { this.hover_node(this._get_prev(o)); }
+				}
+				return false;
+			},
+			"shift+left" : function () { 
+				var o = this.data.ui.hovered || this.data.ui.last_selected;
+				if(o) {
+					if(o.hasClass("jstree-open")) { this.close_node(o); }
+					else { this.hover_node(this._get_prev(o)); }
+				}
+				return false;
+			},
+			"right" : function () { 
+				var o = this.data.ui.hovered || this.data.ui.last_selected;
+				if(o && o.length) {
+					if(o.hasClass("jstree-closed")) { this.open_node(o); }
+					else { this.hover_node(this._get_next(o)); }
+				}
+				return false;
+			},
+			"ctrl+right" : function () { 
+				var o = this.data.ui.hovered || this.data.ui.last_selected;
+				if(o && o.length) {
+					if(o.hasClass("jstree-closed")) { this.open_node(o); }
+					else { this.hover_node(this._get_next(o)); }
+				}
+				return false;
+			},
+			"shift+right" : function () { 
+				var o = this.data.ui.hovered || this.data.ui.last_selected;
+				if(o && o.length) {
+					if(o.hasClass("jstree-closed")) { this.open_node(o); }
+					else { this.hover_node(this._get_next(o)); }
+				}
+				return false;
+			},
+			"space" : function () { 
+				if(this.data.ui.hovered) { this.data.ui.hovered.children("a:eq(0)").click(); } 
+				return false; 
+			},
+			"ctrl+space" : function (event) { 
+				event.type = "click";
+				if(this.data.ui.hovered) { this.data.ui.hovered.children("a:eq(0)").trigger(event); } 
+				return false; 
+			},
+			"shift+space" : function (event) { 
+				event.type = "click";
+				if(this.data.ui.hovered) { this.data.ui.hovered.children("a:eq(0)").trigger(event); } 
+				return false; 
+			},
+			"f2" : function () { this.rename(this.data.ui.hovered || this.data.ui.last_selected); },
+			"del" : function () { this.remove(this.data.ui.hovered || this._get_node(null)); }
+		},
+		_fn : {
+			enable_hotkeys : function () {
+				this.data.hotkeys.enabled = true;
+			},
+			disable_hotkeys : function () {
+				this.data.hotkeys.enabled = false;
+			}
+		}
+	});
+})(jQuery);
+//*/
+
+/* 
+ * jsTree JSON plugin
+ * The JSON data store. Datastores are build by overriding the `load_node` and `_is_loaded` functions.
+ */
+(function ($) {
+	$.jstree.plugin("json_data", {
+		__init : function() {
+			var s = this._get_settings().json_data;
+			if(s.progressive_unload) {
+				this.get_container().bind("after_close.jstree", function (e, data) {
+					data.rslt.obj.children("ul").remove();
+				});
+			}
+		},
+		defaults : { 
+			// `data` can be a function:
+			//  * accepts two arguments - node being loaded and a callback to pass the result to
+			//  * will be executed in the current tree's scope & ajax won't be supported
+			data : false, 
+			ajax : false,
+			correct_state : true,
+			progressive_render : false,
+			progressive_unload : false
+		},
+		_fn : {
+			load_node : function (obj, s_call, e_call) { var _this = this; this.load_node_json(obj, function () { _this.__callback({ "obj" : _this._get_node(obj) }); s_call.call(this); }, e_call); },
+			_is_loaded : function (obj) { 
+				var s = this._get_settings().json_data;
+				obj = this._get_node(obj); 
+				return obj == -1 || !obj || (!s.ajax && !s.progressive_render && !$.isFunction(s.data)) || obj.is(".jstree-open, .jstree-leaf") || obj.children("ul").children("li").length > 0;
+			},
+			refresh : function (obj) {
+				obj = this._get_node(obj);
+				var s = this._get_settings().json_data;
+				if(obj && obj !== -1 && s.progressive_unload && ($.isFunction(s.data) || !!s.ajax)) {
+					obj.removeData("jstree-children");
+				}
+				return this.__call_old();
+			},
+			load_node_json : function (obj, s_call, e_call) {
+				var s = this.get_settings().json_data, d,
+					error_func = function () {},
+					success_func = function () {};
+				obj = this._get_node(obj);
+
+				if(obj && obj !== -1 && (s.progressive_render || s.progressive_unload) && !obj.is(".jstree-open, .jstree-leaf") && obj.children("ul").children("li").length === 0 && obj.data("jstree-children")) {
+					d = this._parse_json(obj.data("jstree-children"), obj);
+					if(d) {
+						obj.append(d);
+						if(!s.progressive_unload) { obj.removeData("jstree-children"); }
+					}
+					this.clean_node(obj);
+					if(s_call) { s_call.call(this); }
+					return;
+				}
+
+				if(obj && obj !== -1) {
+					if(obj.data("jstree-is-loading")) { return; }
+					else { obj.data("jstree-is-loading",true); }
+				}
+				switch(!0) {
+					case (!s.data && !s.ajax): throw "Neither data nor ajax settings supplied.";
+					// function option added here for easier model integration (also supporting async - see callback)
+					case ($.isFunction(s.data)):
+						s.data.call(this, obj, $.proxy(function (d) {
+							d = this._parse_json(d, obj);
+							if(!d) { 
+								if(obj === -1 || !obj) {
+									if(s.correct_state) { this.get_container().children("ul").empty(); }
+								}
+								else {
+									obj.children("a.jstree-loading").removeClass("jstree-loading");
+									obj.removeData("jstree-is-loading");
+									if(s.correct_state) { this.correct_state(obj); }
+								}
+								if(e_call) { e_call.call(this); }
+							}
+							else {
+								if(obj === -1 || !obj) { this.get_container().children("ul").empty().append(d.children()); }
+								else { obj.append(d).children("a.jstree-loading").removeClass("jstree-loading"); obj.removeData("jstree-is-loading"); }
+								this.clean_node(obj);
+								if(s_call) { s_call.call(this); }
+							}
+						}, this));
+						break;
+					case (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):
+						if(!obj || obj == -1) {
+							d = this._parse_json(s.data, obj);
+							if(d) {
+								this.get_container().children("ul").empty().append(d.children());
+								this.clean_node();
+							}
+							else { 
+								if(s.correct_state) { this.get_container().children("ul").empty(); }
+							}
+						}
+						if(s_call) { s_call.call(this); }
+						break;
+					case (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):
+						error_func = function (x, t, e) {
+							var ef = this.get_settings().json_data.ajax.error; 
+							if(ef) { ef.call(this, x, t, e); }
+							if(obj != -1 && obj.length) {
+								obj.children("a.jstree-loading").removeClass("jstree-loading");
+								obj.removeData("jstree-is-loading");
+								if(t === "success" && s.correct_state) { this.correct_state(obj); }
+							}
+							else {
+								if(t === "success" && s.correct_state) { this.get_container().children("ul").empty(); }
+							}
+							if(e_call) { e_call.call(this); }
+						};
+						success_func = function (d, t, x) {
+							var sf = this.get_settings().json_data.ajax.success; 
+							if(sf) { d = sf.call(this,d,t,x) || d; }
+							if(d === "" || (d && d.toString && d.toString().replace(/^[\s\n]+$/,"") === "") || (!$.isArray(d) && !$.isPlainObject(d))) {
+								return error_func.call(this, x, t, "");
+							}
+							d = this._parse_json(d, obj);
+							if(d) {
+								if(obj === -1 || !obj) { this.get_container().children("ul").empty().append(d.children()); }
+								else { obj.append(d).children("a.jstree-loading").removeClass("jstree-loading"); obj.removeData("jstree-is-loading"); }
+								this.clean_node(obj);
+								if(s_call) { s_call.call(this); }
+							}
+							else {
+								if(obj === -1 || !obj) {
+									if(s.correct_state) { 
+										this.get_container().children("ul").empty(); 
+										if(s_call) { s_call.call(this); }
+									}
+								}
+								else {
+									obj.children("a.jstree-loading").removeClass("jstree-loading");
+									obj.removeData("jstree-is-loading");
+									if(s.correct_state) { 
+										this.correct_state(obj);
+										if(s_call) { s_call.call(this); } 
+									}
+								}
+							}
+						};
+						s.ajax.context = this;
+						s.ajax.error = error_func;
+						s.ajax.success = success_func;
+						if(!s.ajax.dataType) { s.ajax.dataType = "json"; }
+						if($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }
+						if($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }
+						$.ajax(s.ajax);
+						break;
+				}
+			},
+			_parse_json : function (js, obj, is_callback) {
+				var d = false, 
+					p = this._get_settings(),
+					s = p.json_data,
+					t = p.core.html_titles,
+					tmp, i, j, ul1, ul2;
+
+				if(!js) { return d; }
+				if(s.progressive_unload && obj && obj !== -1) { 
+					obj.data("jstree-children", d);
+				}
+				if($.isArray(js)) {
+					d = $();
+					if(!js.length) { return false; }
+					for(i = 0, j = js.length; i < j; i++) {
+						tmp = this._parse_json(js[i], obj, true);
+						if(tmp.length) { d = d.add(tmp); }
+					}
+				}
+				else {
+					if(typeof js == "string") { js = { data : js }; }
+					if(!js.data && js.data !== "") { return d; }
+					d = $("<li />");
+					if(js.attr) { d.attr(js.attr); }
+					if(js.metadata) { d.data(js.metadata); }
+					if(js.state) { d.addClass("jstree-" + js.state); }
+					if(!$.isArray(js.data)) { tmp = js.data; js.data = []; js.data.push(tmp); }
+					$.each(js.data, function (i, m) {
+						tmp = $("<a />");
+						if($.isFunction(m)) { m = m.call(this, js); }
+						if(typeof m == "string") { tmp.attr('href','#')[ t ? "html" : "text" ](m); }
+						else {
+							if(!m.attr) { m.attr = {}; }
+							if(!m.attr.href) { m.attr.href = '#'; }
+							tmp.attr(m.attr)[ t ? "html" : "text" ](m.title);
+							if(m.language) { tmp.addClass(m.language); }
+						}
+						tmp.prepend("<ins class='jstree-icon'> </ins>");
+						if(!m.icon && js.icon) { m.icon = js.icon; }
+						if(m.icon) { 
+							if(m.icon.indexOf("/") === -1) { tmp.children("ins").addClass(m.icon); }
+							else { tmp.children("ins").css("background","url('" + m.icon + "') center center no-repeat"); }
+						}
+						d.append(tmp);
+					});
+					d.prepend("<ins class='jstree-icon'> </ins>");
+					if(js.children) { 
+						if(s.progressive_render && js.state !== "open") {
+							d.addClass("jstree-closed").data("jstree-children", js.children);
+						}
+						else {
+							if(s.progressive_unload) { d.data("jstree-children", js.children); }
+							if($.isArray(js.children) && js.children.length) {
+								tmp = this._parse_json(js.children, obj, true);
+								if(tmp.length) {
+									ul2 = $("<ul />");
+									ul2.append(tmp);
+									d.append(ul2);
+								}
+							}
+						}
+					}
+				}
+				if(!is_callback) {
+					ul1 = $("<ul />");
+					ul1.append(d);
+					d = ul1;
+				}
+				return d;
+			},
+			get_json : function (obj, li_attr, a_attr, is_callback) {
+				var result = [], 
+					s = this._get_settings(), 
+					_this = this,
+					tmp1, tmp2, li, a, t, lang;
+				obj = this._get_node(obj);
+				if(!obj || obj === -1) { obj = this.get_container().find("> ul > li"); }
+				li_attr = $.isArray(li_attr) ? li_attr : [ "id", "class" ];
+				if(!is_callback && this.data.types) { li_attr.push(s.types.type_attr); }
+				a_attr = $.isArray(a_attr) ? a_attr : [ ];
+
+				obj.each(function () {
+					li = $(this);
+					tmp1 = { data : [] };
+					if(li_attr.length) { tmp1.attr = { }; }
+					$.each(li_attr, function (i, v) { 
+						tmp2 = li.attr(v); 
+						if(tmp2 && tmp2.length && tmp2.replace(/jstree[^ ]*/ig,'').length) {
+							tmp1.attr[v] = (" " + tmp2).replace(/ jstree[^ ]*/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,""); 
+						}
+					});
+					if(li.hasClass("jstree-open")) { tmp1.state = "open"; }
+					if(li.hasClass("jstree-closed")) { tmp1.state = "closed"; }
+					if(li.data()) { tmp1.metadata = li.data(); }
+					a = li.children("a");
+					a.each(function () {
+						t = $(this);
+						if(
+							a_attr.length || 
+							$.inArray("languages", s.plugins) !== -1 || 
+							t.children("ins").get(0).style.backgroundImage.length || 
+							(t.children("ins").get(0).className && t.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').length)
+						) { 
+							lang = false;
+							if($.inArray("languages", s.plugins) !== -1 && $.isArray(s.languages) && s.languages.length) {
+								$.each(s.languages, function (l, lv) {
+									if(t.hasClass(lv)) {
+										lang = lv;
+										return false;
+									}
+								});
+							}
+							tmp2 = { attr : { }, title : _this.get_text(t, lang) }; 
+							$.each(a_attr, function (k, z) {
+								tmp2.attr[z] = (" " + (t.attr(z) || "")).replace(/ jstree[^ ]*/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"");
+							});
+							if($.inArray("languages", s.plugins) !== -1 && $.isArray(s.languages) && s.languages.length) {
+								$.each(s.languages, function (k, z) {
+									if(t.hasClass(z)) { tmp2.language = z; return true; }
+								});
+							}
+							if(t.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\s+$/ig,"").length) {
+								tmp2.icon = t.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"");
+							}
+							if(t.children("ins").get(0).style.backgroundImage.length) {
+								tmp2.icon = t.children("ins").get(0).style.backgroundImage.replace("url(","").replace(")","");
+							}
+						}
+						else {
+							tmp2 = _this.get_text(t);
+						}
+						if(a.length > 1) { tmp1.data.push(tmp2); }
+						else { tmp1.data = tmp2; }
+					});
+					li = li.find("> ul > li");
+					if(li.length) { tmp1.children = _this.get_json(li, li_attr, a_attr, true); }
+					result.push(tmp1);
+				});
+				return result;
+			}
+		}
+	});
+})(jQuery);
+//*/
+
+/* 
+ * jsTree languages plugin
+ * Adds support for multiple language versions in one tree
+ * This basically allows for many titles coexisting in one node, but only one of them being visible at any given time
+ * This is useful for maintaining the same structure in many languages (hence the name of the plugin)
+ */
+(function ($) {
+	$.jstree.plugin("languages", {
+		__init : function () { this._load_css();  },
+		defaults : [],
+		_fn : {
+			set_lang : function (i) { 
+				var langs = this._get_settings().languages,
+					st = false,
+					selector = ".jstree-" + this.get_index() + ' a';
+				if(!$.isArray(langs) || langs.length === 0) { return false; }
+				if($.inArray(i,langs) == -1) {
+					if(!!langs[i]) { i = langs[i]; }
+					else { return false; }
+				}
+				if(i == this.data.languages.current_language) { return true; }
+				st = $.vakata.css.get_css(selector + "." + this.data.languages.current_language, false, this.data.languages.language_css);
+				if(st !== false) { st.style.display = "none"; }
+				st = $.vakata.css.get_css(selector + "." + i, false, this.data.languages.language_css);
+				if(st !== false) { st.style.display = ""; }
+				this.data.languages.current_language = i;
+				this.__callback(i);
+				return true;
+			},
+			get_lang : function () {
+				return this.data.languages.current_language;
+			},
+			_get_string : function (key, lang) {
+				var langs = this._get_settings().languages,
+					s = this._get_settings().core.strings;
+				if($.isArray(langs) && langs.length) {
+					lang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;
+				}
+				if(s[lang] && s[lang][key]) { return s[lang][key]; }
+				if(s[key]) { return s[key]; }
+				return key;
+			},
+			get_text : function (obj, lang) {
+				obj = this._get_node(obj) || this.data.ui.last_selected;
+				if(!obj.size()) { return false; }
+				var langs = this._get_settings().languages,
+					s = this._get_settings().core.html_titles;
+				if($.isArray(langs) && langs.length) {
+					lang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;
+					obj = obj.children("a." + lang);
+				}
+				else { obj = obj.children("a:eq(0)"); }
+				if(s) {
+					obj = obj.clone();
+					obj.children("INS").remove();
+					return obj.html();
+				}
+				else {
+					obj = obj.contents().filter(function() { return this.nodeType == 3; })[0];
+					return obj.nodeValue;
+				}
+			},
+			set_text : function (obj, val, lang) {
+				obj = this._get_node(obj) || this.data.ui.last_selected;
+				if(!obj.size()) { return false; }
+				var langs = this._get_settings().languages,
+					s = this._get_settings().core.html_titles,
+					tmp;
+				if($.isArray(langs) && langs.length) {
+					lang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;
+					obj = obj.children("a." + lang);
+				}
+				else { obj = obj.children("a:eq(0)"); }
+				if(s) {
+					tmp = obj.children("INS").clone();
+					obj.html(val).prepend(tmp);
+					this.__callback({ "obj" : obj, "name" : val, "lang" : lang });
+					return true;
+				}
+				else {
+					obj = obj.contents().filter(function() { return this.nodeType == 3; })[0];
+					this.__callback({ "obj" : obj, "name" : val, "lang" : lang });
+					return (obj.nodeValue = val);
+				}
+			},
+			_load_css : function () {
+				var langs = this._get_settings().languages,
+					str = "/* languages css */",
+					selector = ".jstree-" + this.get_index() + ' a',
+					ln;
+				if($.isArray(langs) && langs.length) {
+					this.data.languages.current_language = langs[0];
+					for(ln = 0; ln < langs.length; ln++) {
+						str += selector + "." + langs[ln] + " {";
+						if(langs[ln] != this.data.languages.current_language) { str += " display:none; "; }
+						str += " } ";
+					}
+					this.data.languages.language_css = $.vakata.css.add_sheet({ 'str' : str, 'title' : "jstree-languages" });
+				}
+			},
+			create_node : function (obj, position, js, callback) {
+				var t = this.__call_old(true, obj, position, js, function (t) {
+					var langs = this._get_settings().languages,
+						a = t.children("a"),
+						ln;
+					if($.isArray(langs) && langs.length) {
+						for(ln = 0; ln < langs.length; ln++) {
+							if(!a.is("." + langs[ln])) {
+								t.append(a.eq(0).clone().removeClass(langs.join(" ")).addClass(langs[ln]));
+							}
+						}
+						a.not("." + langs.join(", .")).remove();
+					}
+					if(callback) { callback.call(this, t); }
+				});
+				return t;
+			}
+		}
+	});
+})(jQuery);
+//*/
+
+/*
+ * jsTree cookies plugin
+ * Stores the currently opened/selected nodes in a cookie and then restores them
+ * Depends on the jquery.cookie plugin
+ */
+(function ($) {
+	$.jstree.plugin("cookies", {
+		__init : function () {
+			if(typeof $.cookie === "undefined") { throw "jsTree cookie: jQuery cookie plugin not included."; }
+
+			var s = this._get_settings().cookies,
+				tmp;
+			if(!!s.save_loaded) {
+				tmp = $.cookie(s.save_loaded);
+				if(tmp && tmp.length) { this.data.core.to_load = tmp.split(","); }
+			}
+			if(!!s.save_opened) {
+				tmp = $.cookie(s.save_opened);
+				if(tmp && tmp.length) { this.data.core.to_open = tmp.split(","); }
+			}
+			if(!!s.save_selected) {
+				tmp = $.cookie(s.save_selected);
+				if(tmp && tmp.length && this.data.ui) { this.data.ui.to_select = tmp.split(","); }
+			}
+			this.get_container()
+				.one( ( this.data.ui ? "reselect" : "reopen" ) + ".jstree", $.proxy(function () {
+					this.get_container()
+						.bind("open_node.jstree close_node.jstree select_node.jstree deselect_node.jstree", $.proxy(function (e) { 
+								if(this._get_settings().cookies.auto_save) { this.save_cookie((e.handleObj.namespace + e.handleObj.type).replace("jstree","")); }
+							}, this));
+				}, this));
+		},
+		defaults : {
+			save_loaded		: "jstree_load",
+			save_opened		: "jstree_open",
+			save_selected	: "jstree_select",
+			auto_save		: true,
+			cookie_options	: {}
+		},
+		_fn : {
+			save_cookie : function (c) {
+				if(this.data.core.refreshing) { return; }
+				var s = this._get_settings().cookies;
+				if(!c) { // if called manually and not by event
+					if(s.save_loaded) {
+						this.save_loaded();
+						$.cookie(s.save_loaded, this.data.core.to_load.join(","), s.cookie_options);
+					}
+					if(s.save_opened) {
+						this.save_opened();
+						$.cookie(s.save_opened, this.data.core.to_open.join(","), s.cookie_options);
+					}
+					if(s.save_selected && this.data.ui) {
+						this.save_selected();
+						$.cookie(s.save_selected, this.data.ui.to_select.join(","), s.cookie_options);
+					}
+					return;
+				}
+				switch(c) {
+					case "open_node":
+					case "close_node":
+						if(!!s.save_opened) { 
+							this.save_opened(); 
+							$.cookie(s.save_opened, this.data.core.to_open.join(","), s.cookie_options); 
+						}
+						if(!!s.save_loaded) { 
+							this.save_loaded(); 
+							$.cookie(s.save_loaded, this.data.core.to_load.join(","), s.cookie_options); 
+						}
+						break;
+					case "select_node":
+					case "deselect_node":
+						if(!!s.save_selected && this.data.ui) { 
+							this.save_selected(); 
+							$.cookie(s.save_selected, this.data.ui.to_select.join(","), s.cookie_options); 
+						}
+						break;
+				}
+			}
+		}
+	});
+	// include cookies by default
+	// $.jstree.defaults.plugins.push("cookies");
+})(jQuery);
+//*/
+
+/*
+ * jsTree sort plugin
+ * Sorts items alphabetically (or using any other function)
+ */
+(function ($) {
+	$.jstree.plugin("sort", {
+		__init : function () {
+			this.get_container()
+				.bind("load_node.jstree", $.proxy(function (e, data) {
+						var obj = this._get_node(data.rslt.obj);
+						obj = obj === -1 ? this.get_container().children("ul") : obj.children("ul");
+						this.sort(obj);
+					}, this))
+				.bind("rename_node.jstree create_node.jstree create.jstree", $.proxy(function (e, data) {
+						this.sort(data.rslt.obj.parent());
+					}, this))
+				.bind("move_node.jstree", $.proxy(function (e, data) {
+						var m = data.rslt.np == -1 ? this.get_container() : data.rslt.np;
+						this.sort(m.children("ul"));
+					}, this));
+		},
+		defaults : function (a, b) { return this.get_text(a) > this.get_text(b) ? 1 : -1; },
+		_fn : {
+			sort : function (obj) {
+				var s = this._get_settings().sort,
+					t = this;
+				obj.append($.makeArray(obj.children("li")).sort($.proxy(s, t)));
+				obj.find("> li > ul").each(function() { t.sort($(this)); });
+				this.clean_node(obj);
+			}
+		}
+	});
+})(jQuery);
+//*/
+
+/*
+ * jsTree DND plugin
+ * Drag and drop plugin for moving/copying nodes
+ */
+(function ($) {
+	var o = false,
+		r = false,
+		m = false,
+		ml = false,
+		sli = false,
+		sti = false,
+		dir1 = false,
+		dir2 = false,
+		last_pos = false;
+	$.vakata.dnd = {
+		is_down : false,
+		is_drag : false,
+		helper : false,
+		scroll_spd : 10,
+		init_x : 0,
+		init_y : 0,
+		threshold : 5,
+		helper_left : 5,
+		helper_top : 10,
+		user_data : {},
+
+		drag_start : function (e, data, html) { 
+			if($.vakata.dnd.is_drag) { $.vakata.drag_stop({}); }
+			try {
+				e.currentTarget.unselectable = "on";
+				e.currentTarget.onselectstart = function() { return false; };
+				if(e.currentTarget.style) { e.currentTarget.style.MozUserSelect = "none"; }
+			} catch(err) { }
+			$.vakata.dnd.init_x = e.pageX;
+			$.vakata.dnd.init_y = e.pageY;
+			$.vakata.dnd.user_data = data;
+			$.vakata.dnd.is_down = true;
+			$.vakata.dnd.helper = $("<div id='vakata-dragged' />").html(html); //.fadeTo(10,0.25);
+			$(document).bind("mousemove", $.vakata.dnd.drag);
+			$(document).bind("mouseup", $.vakata.dnd.drag_stop);
+			return false;
+		},
+		drag : function (e) { 
+			if(!$.vakata.dnd.is_down) { return; }
+			if(!$.vakata.dnd.is_drag) {
+				if(Math.abs(e.pageX - $.vakata.dnd.init_x) > 5 || Math.abs(e.pageY - $.vakata.dnd.init_y) > 5) { 
+					$.vakata.dnd.helper.appendTo("body");
+					$.vakata.dnd.is_drag = true;
+					$(document).triggerHandler("drag_start.vakata", { "event" : e, "data" : $.vakata.dnd.user_data });
+				}
+				else { return; }
+			}
+
+			// maybe use a scrolling parent element instead of document?
+			if(e.type === "mousemove") { // thought of adding scroll in order to move the helper, but mouse poisition is n/a
+				var d = $(document), t = d.scrollTop(), l = d.scrollLeft();
+				if(e.pageY - t < 20) { 
+					if(sti && dir1 === "down") { clearInterval(sti); sti = false; }
+					if(!sti) { dir1 = "up"; sti = setInterval(function () { $(document).scrollTop($(document).scrollTop() - $.vakata.dnd.scroll_spd); }, 150); }
+				}
+				else { 
+					if(sti && dir1 === "up") { clearInterval(sti); sti = false; }
+				}
+				if($(window).height() - (e.pageY - t) < 20) {
+					if(sti && dir1 === "up") { clearInterval(sti); sti = false; }
+					if(!sti) { dir1 = "down"; sti = setInterval(function () { $(document).scrollTop($(document).scrollTop() + $.vakata.dnd.scroll_spd); }, 150); }
+				}
+				else { 
+					if(sti && dir1 === "down") { clearInterval(sti); sti = false; }
+				}
+
+				if(e.pageX - l < 20) {
+					if(sli && dir2 === "right") { clearInterval(sli); sli = false; }
+					if(!sli) { dir2 = "left"; sli = setInterval(function () { $(document).scrollLeft($(document).scrollLeft() - $.vakata.dnd.scroll_spd); }, 150); }
+				}
+				else { 
+					if(sli && dir2 === "left") { clearInterval(sli); sli = false; }
+				}
+				if($(window).width() - (e.pageX - l) < 20) {
+					if(sli && dir2 === "left") { clearInterval(sli); sli = false; }
+					if(!sli) { dir2 = "right"; sli = setInterval(function () { $(document).scrollLeft($(document).scrollLeft() + $.vakata.dnd.scroll_spd); }, 150); }
+				}
+				else { 
+					if(sli && dir2 === "right") { clearInterval(sli); sli = false; }
+				}
+			}
+
+			$.vakata.dnd.helper.css({ left : (e.pageX + $.vakata.dnd.helper_left) + "px", top : (e.pageY + $.vakata.dnd.helper_top) + "px" });
+			$(document).triggerHandler("drag.vakata", { "event" : e, "data" : $.vakata.dnd.user_data });
+		},
+		drag_stop : function (e) {
+			if(sli) { clearInterval(sli); }
+			if(sti) { clearInterval(sti); }
+			$(document).unbind("mousemove", $.vakata.dnd.drag);
+			$(document).unbind("mouseup", $.vakata.dnd.drag_stop);
+			$(document).triggerHandler("drag_stop.vakata", { "event" : e, "data" : $.vakata.dnd.user_data });
+			$.vakata.dnd.helper.remove();
+			$.vakata.dnd.init_x = 0;
+			$.vakata.dnd.init_y = 0;
+			$.vakata.dnd.user_data = {};
+			$.vakata.dnd.is_down = false;
+			$.vakata.dnd.is_drag = false;
+		}
+	};
+	$(function() {
+		var css_string = '#vakata-dragged { display:block; margin:0 0 0 0; padding:4px 4px 4px 24px; position:absolute; top:-2000px; line-height:16px; z-index:10000; } ';
+		$.vakata.css.add_sheet({ str : css_string, title : "vakata" });
+	});
+
+	$.jstree.plugin("dnd", {
+		__init : function () {
+			this.data.dnd = {
+				active : false,
+				after : false,
+				inside : false,
+				before : false,
+				off : false,
+				prepared : false,
+				w : 0,
+				to1 : false,
+				to2 : false,
+				cof : false,
+				cw : false,
+				ch : false,
+				i1 : false,
+				i2 : false,
+				mto : false
+			};
+			this.get_container()
+				.bind("mouseenter.jstree", $.proxy(function (e) {
+						if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
+							if(this.data.themes) {
+								m.attr("class", "jstree-" + this.data.themes.theme); 
+								if(ml) { ml.attr("class", "jstree-" + this.data.themes.theme); }
+								$.vakata.dnd.helper.attr("class", "jstree-dnd-helper jstree-" + this.data.themes.theme);
+							}
+							//if($(e.currentTarget).find("> ul > li").length === 0) {
+							if(e.currentTarget === e.target && $.vakata.dnd.user_data.obj && $($.vakata.dnd.user_data.obj).length && $($.vakata.dnd.user_data.obj).parents(".jstree:eq(0)")[0] !== e.target) { // node should not be from the same tree
+								var tr = $.jstree._reference(e.target), dc;
+								if(tr.data.dnd.foreign) {
+									dc = tr._get_settings().dnd.drag_check.call(this, { "o" : o, "r" : tr.get_container(), is_root : true });
+									if(dc === true || dc.inside === true || dc.before === true || dc.after === true) {
+										$.vakata.dnd.helper.children("ins").attr("class","jstree-ok");
+									}
+								}
+								else {
+									tr.prepare_move(o, tr.get_container(), "last");
+									if(tr.check_move()) {
+										$.vakata.dnd.helper.children("ins").attr("class","jstree-ok");
+									}
+								}
+							}
+						}
+					}, this))
+				.bind("mouseup.jstree", $.proxy(function (e) {
+						//if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && $(e.currentTarget).find("> ul > li").length === 0) {
+						if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && e.currentTarget === e.target && $.vakata.dnd.user_data.obj && $($.vakata.dnd.user_data.obj).length && $($.vakata.dnd.user_data.obj).parents(".jstree:eq(0)")[0] !== e.target) { // node should not be from the same tree
+							var tr = $.jstree._reference(e.currentTarget), dc;
+							if(tr.data.dnd.foreign) {
+								dc = tr._get_settings().dnd.drag_check.call(this, { "o" : o, "r" : tr.get_container(), is_root : true });
+								if(dc === true || dc.inside === true || dc.before === true || dc.after === true) {
+									tr._get_settings().dnd.drag_finish.call(this, { "o" : o, "r" : tr.get_container(), is_root : true });
+								}
+							}
+							else {
+								tr.move_node(o, tr.get_container(), "last", e[tr._get_settings().dnd.copy_modifier + "Key"]);
+							}
+						}
+					}, this))
+				.bind("mouseleave.jstree", $.proxy(function (e) {
+						if(e.relatedTarget && e.relatedTarget.id && e.relatedTarget.id === "jstree-marker-line") {
+							return false; 
+						}
+						if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
+							if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
+							if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
+							if(this.data.dnd.to1) { clearTimeout(this.data.dnd.to1); }
+							if(this.data.dnd.to2) { clearTimeout(this.data.dnd.to2); }
+							if($.vakata.dnd.helper.children("ins").hasClass("jstree-ok")) {
+								$.vakata.dnd.helper.children("ins").attr("class","jstree-invalid");
+							}
+						}
+					}, this))
+				.bind("mousemove.jstree", $.proxy(function (e) {
+						if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
+							var cnt = this.get_container()[0];
+
+							// Horizontal scroll
+							if(e.pageX + 24 > this.data.dnd.cof.left + this.data.dnd.cw) {
+								if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
+								this.data.dnd.i1 = setInterval($.proxy(function () { this.scrollLeft += $.vakata.dnd.scroll_spd; }, cnt), 100);
+							}
+							else if(e.pageX - 24 < this.data.dnd.cof.left) {
+								if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
+								this.data.dnd.i1 = setInterval($.proxy(function () { this.scrollLeft -= $.vakata.dnd.scroll_spd; }, cnt), 100);
+							}
+							else {
+								if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
+							}
+
+							// Vertical scroll
+							if(e.pageY + 24 > this.data.dnd.cof.top + this.data.dnd.ch) {
+								if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
+								this.data.dnd.i2 = setInterval($.proxy(function () { this.scrollTop += $.vakata.dnd.scroll_spd; }, cnt), 100);
+							}
+							else if(e.pageY - 24 < this.data.dnd.cof.top) {
+								if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
+								this.data.dnd.i2 = setInterval($.proxy(function () { this.scrollTop -= $.vakata.dnd.scroll_spd; }, cnt), 100);
+							}
+							else {
+								if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
+							}
+
+						}
+					}, this))
+				.bind("scroll.jstree", $.proxy(function (e) { 
+						if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && m && ml) {
+							m.hide();
+							ml.hide();
+						}
+					}, this))
+				.delegate("a", "mousedown.jstree", $.proxy(function (e) { 
+						if(e.which === 1) {
+							this.start_drag(e.currentTarget, e);
+							return false;
+						}
+					}, this))
+				.delegate("a", "mouseenter.jstree", $.proxy(function (e) { 
+						if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
+							this.dnd_enter(e.currentTarget);
+						}
+					}, this))
+				.delegate("a", "mousemove.jstree", $.proxy(function (e) { 
+						if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
+							if(!r || !r.length || r.children("a")[0] !== e.currentTarget) {
+								this.dnd_enter(e.currentTarget);
+							}
+							if(typeof this.data.dnd.off.top === "undefined") { this.data.dnd.off = $(e.target).offset(); }
+							this.data.dnd.w = (e.pageY - (this.data.dnd.off.top || 0)) % this.data.core.li_height;
+							if(this.data.dnd.w < 0) { this.data.dnd.w += this.data.core.li_height; }
+							this.dnd_show();
+						}
+					}, this))
+				.delegate("a", "mouseleave.jstree", $.proxy(function (e) { 
+						if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
+							if(e.relatedTarget && e.relatedTarget.id && e.relatedTarget.id === "jstree-marker-line") {
+								return false; 
+							}
+								if(m) { m.hide(); }
+								if(ml) { ml.hide(); }
+							/*
+							var ec = $(e.currentTarget).closest("li"), 
+								er = $(e.relatedTarget).closest("li");
+							if(er[0] !== ec.prev()[0] && er[0] !== ec.next()[0]) {
+								if(m) { m.hide(); }
+								if(ml) { ml.hide(); }
+							}
+							*/
+							this.data.dnd.mto = setTimeout( 
+								(function (t) { return function () { t.dnd_leave(e); }; })(this),
+							0);
+						}
+					}, this))
+				.delegate("a", "mouseup.jstree", $.proxy(function (e) { 
+						if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
+							this.dnd_finish(e);
+						}
+					}, this));
+
+			$(document)
+				.bind("drag_stop.vakata", $.proxy(function () {
+						if(this.data.dnd.to1) { clearTimeout(this.data.dnd.to1); }
+						if(this.data.dnd.to2) { clearTimeout(this.data.dnd.to2); }
+						if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
+						if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
+						this.data.dnd.after		= false;
+						this.data.dnd.before	= false;
+						this.data.dnd.inside	= false;
+						this.data.dnd.off		= false;
+						this.data.dnd.prepared	= false;
+						this.data.dnd.w			= false;
+						this.data.dnd.to1		= false;
+						this.data.dnd.to2		= false;
+						this.data.dnd.i1		= false;
+						this.data.dnd.i2		= false;
+						this.data.dnd.active	= false;
+						this.data.dnd.foreign	= false;
+						if(m) { m.css({ "top" : "-2000px" }); }
+						if(ml) { ml.css({ "top" : "-2000px" }); }
+					}, this))
+				.bind("drag_start.vakata", $.proxy(function (e, data) {
+						if(data.data.jstree) { 
+							var et = $(data.event.target);
+							if(et.closest(".jstree").hasClass("jstree-" + this.get_index())) {
+								this.dnd_enter(et);
+							}
+						}
+					}, this));
+				/*
+				.bind("keydown.jstree-" + this.get_index() + " keyup.jstree-" + this.get_index(), $.proxy(function(e) {
+						if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && !this.data.dnd.foreign) {
+							var h = $.vakata.dnd.helper.children("ins");
+							if(e[this._get_settings().dnd.copy_modifier + "Key"] && h.hasClass("jstree-ok")) {
+								h.parent().html(h.parent().html().replace(/ \(Copy\)$/, "") + " (Copy)");
+							} 
+							else {
+								h.parent().html(h.parent().html().replace(/ \(Copy\)$/, ""));
+							}
+						}
+					}, this)); */
+
+
+
+			var s = this._get_settings().dnd;
+			if(s.drag_target) {
+				$(document)
+					.delegate(s.drag_target, "mousedown.jstree-" + this.get_index(), $.proxy(function (e) {
+						o = e.target;
+						$.vakata.dnd.drag_start(e, { jstree : true, obj : e.target }, "<ins class='jstree-icon'></ins>" + $(e.target).text() );
+						if(this.data.themes) { 
+							if(m) { m.attr("class", "jstree-" + this.data.themes.theme); }
+							if(ml) { ml.attr("class", "jstree-" + this.data.themes.theme); }
+							$.vakata.dnd.helper.attr("class", "jstree-dnd-helper jstree-" + this.data.themes.theme); 
+						}
+						$.vakata.dnd.helper.children("ins").attr("class","jstree-invalid");
+						var cnt = this.get_container();
+						this.data.dnd.cof = cnt.offset();
+						this.data.dnd.cw = parseInt(cnt.width(),10);
+						this.data.dnd.ch = parseInt(cnt.height(),10);
+						this.data.dnd.foreign = true;
+						e.preventDefault();
+					}, this));
+			}
+			if(s.drop_target) {
+				$(document)
+					.delegate(s.drop_target, "mouseenter.jstree-" + this.get_index(), $.proxy(function (e) {
+							if(this.data.dnd.active && this._get_settings().dnd.drop_check.call(this, { "o" : o, "r" : $(e.target), "e" : e })) {
+								$.vakata.dnd.helper.children("ins").attr("class","jstree-ok");
+							}
+						}, this))
+					.delegate(s.drop_target, "mouseleave.jstree-" + this.get_index(), $.proxy(function (e) {
+							if(this.data.dnd.active) {
+								$.vakata.dnd.helper.children("ins").attr("class","jstree-invalid");
+							}
+						}, this))
+					.delegate(s.drop_target, "mouseup.jstree-" + this.get_index(), $.proxy(function (e) {
+							if(this.data.dnd.active && $.vakata.dnd.helper.children("ins").hasClass("jstree-ok")) {
+								this._get_settings().dnd.drop_finish.call(this, { "o" : o, "r" : $(e.target), "e" : e });
+							}
+						}, this));
+			}
+		},
+		defaults : {
+			copy_modifier	: "ctrl",
+			check_timeout	: 100,
+			open_timeout	: 500,
+			drop_target		: ".jstree-drop",
+			drop_check		: function (data) { return true; },
+			drop_finish		: $.noop,
+			drag_target		: ".jstree-draggable",
+			drag_finish		: $.noop,
+			drag_check		: function (data) { return { after : false, before : false, inside : true }; }
+		},
+		_fn : {
+			dnd_prepare : function () {
+				if(!r || !r.length) { return; }
+				this.data.dnd.off = r.offset();
+				if(this._get_settings().core.rtl) {
+					this.data.dnd.off.right = this.data.dnd.off.left + r.width();
+				}
+				if(this.data.dnd.foreign) {
+					var a = this._get_settings().dnd.drag_check.call(this, { "o" : o, "r" : r });
+					this.data.dnd.after = a.after;
+					this.data.dnd.before = a.before;
+					this.data.dnd.inside = a.inside;
+					this.data.dnd.prepared = true;
+					return this.dnd_show();
+				}
+				this.prepare_move(o, r, "before");
+				this.data.dnd.before = this.check_move();
+				this.prepare_move(o, r, "after");
+				this.data.dnd.after = this.check_move();
+				if(this._is_loaded(r)) {
+					this.prepare_move(o, r, "inside");
+					this.data.dnd.inside = this.check_move();
+				}
+				else {
+					this.data.dnd.inside = false;
+				}
+				this.data.dnd.prepared = true;
+				return this.dnd_show();
+			},
+			dnd_show : function () {
+				if(!this.data.dnd.prepared) { return; }
+				var o = ["before","inside","after"],
+					r = false,
+					rtl = this._get_settings().core.rtl,
+					pos;
+				if(this.data.dnd.w < this.data.core.li_height/3) { o = ["before","inside","after"]; }
+				else if(this.data.dnd.w <= this.data.core.li_height*2/3) {
+					o = this.data.dnd.w < this.data.core.li_height/2 ? ["inside","before","after"] : ["inside","after","before"];
+				}
+				else { o = ["after","inside","before"]; }
+				$.each(o, $.proxy(function (i, val) { 
+					if(this.data.dnd[val]) {
+						$.vakata.dnd.helper.children("ins").attr("class","jstree-ok");
+						r = val;
+						return false;
+					}
+				}, this));
+				if(r === false) { $.vakata.dnd.helper.children("ins").attr("class","jstree-invalid"); }
+				
+				pos = rtl ? (this.data.dnd.off.right - 18) : (this.data.dnd.off.left + 10);
+				switch(r) {
+					case "before":
+						m.css({ "left" : pos + "px", "top" : (this.data.dnd.off.top - 6) + "px" }).show();
+						if(ml) { ml.css({ "left" : (pos + 8) + "px", "top" : (this.data.dnd.off.top - 1) + "px" }).show(); }
+						break;
+					case "after":
+						m.css({ "left" : pos + "px", "top" : (this.data.dnd.off.top + this.data.core.li_height - 6) + "px" }).show();
+						if(ml) { ml.css({ "left" : (pos + 8) + "px", "top" : (this.data.dnd.off.top + this.data.core.li_height - 1) + "px" }).show(); }
+						break;
+					case "inside":
+						m.css({ "left" : pos + ( rtl ? -4 : 4) + "px", "top" : (this.data.dnd.off.top + this.data.core.li_height/2 - 5) + "px" }).show();
+						if(ml) { ml.hide(); }
+						break;
+					default:
+						m.hide();
+						if(ml) { ml.hide(); }
+						break;
+				}
+				last_pos = r;
+				return r;
+			},
+			dnd_open : function () {
+				this.data.dnd.to2 = false;
+				this.open_node(r, $.proxy(this.dnd_prepare,this), true);
+			},
+			dnd_finish : function (e) {
+				if(this.data.dnd.foreign) {
+					if(this.data.dnd.after || this.data.dnd.before || this.data.dnd.inside) {
+						this._get_settings().dnd.drag_finish.call(this, { "o" : o, "r" : r, "p" : last_pos });
+					}
+				}
+				else {
+					this.dnd_prepare();
+					this.move_node(o, r, last_pos, e[this._get_settings().dnd.copy_modifier + "Key"]);
+				}
+				o = false;
+				r = false;
+				m.hide();
+				if(ml) { ml.hide(); }
+			},
+			dnd_enter : function (obj) {
+				if(this.data.dnd.mto) { 
+					clearTimeout(this.data.dnd.mto);
+					this.data.dnd.mto = false;
+				}
+				var s = this._get_settings().dnd;
+				this.data.dnd.prepared = false;
+				r = this._get_node(obj);
+				if(s.check_timeout) { 
+					// do the calculations after a minimal timeout (users tend to drag quickly to the desired location)
+					if(this.data.dnd.to1) { clearTimeout(this.data.dnd.to1); }
+					this.data.dnd.to1 = setTimeout($.proxy(this.dnd_prepare, this), s.check_timeout); 
+				}
+				else { 
+					this.dnd_prepare(); 
+				}
+				if(s.open_timeout) { 
+					if(this.data.dnd.to2) { clearTimeout(this.data.dnd.to2); }
+					if(r && r.length && r.hasClass("jstree-closed")) { 
+						// if the node is closed - open it, then recalculate
+						this.data.dnd.to2 = setTimeout($.proxy(this.dnd_open, this), s.open_timeout);
+					}
+				}
+				else {
+					if(r && r.length && r.hasClass("jstree-closed")) { 
+						this.dnd_open();
+					}
+				}
+			},
+			dnd_leave : function (e) {
+				this.data.dnd.after		= false;
+				this.data.dnd.before	= false;
+				this.data.dnd.inside	= false;
+				$.vakata.dnd.helper.children("ins").attr("class","jstree-invalid");
+				m.hide();
+				if(ml) { ml.hide(); }
+				if(r && r[0] === e.target.parentNode) {
+					if(this.data.dnd.to1) {
+						clearTimeout(this.data.dnd.to1);
+						this.data.dnd.to1 = false;
+					}
+					if(this.data.dnd.to2) {
+						clearTimeout(this.data.dnd.to2);
+						this.data.dnd.to2 = false;
+					}
+				}
+			},
+			start_drag : function (obj, e) {
+				o = this._get_node(obj);
+				if(this.data.ui && this.is_selected(o)) { o = this._get_node(null, true); }
+				var dt = o.length > 1 ? this._get_string("multiple_selection") : this.get_text(o),
+					cnt = this.get_container();
+				if(!this._get_settings().core.html_titles) { dt = dt.replace(/</ig,"<").replace(/>/ig,">"); }
+				$.vakata.dnd.drag_start(e, { jstree : true, obj : o }, "<ins class='jstree-icon'></ins>" + dt );
+				if(this.data.themes) { 
+					if(m) { m.attr("class", "jstree-" + this.data.themes.theme); }
+					if(ml) { ml.attr("class", "jstree-" + this.data.themes.theme); }
+					$.vakata.dnd.helper.attr("class", "jstree-dnd-helper jstree-" + this.data.themes.theme); 
+				}
+				this.data.dnd.cof = cnt.offset();
+				this.data.dnd.cw = parseInt(cnt.width(),10);
+				this.data.dnd.ch = parseInt(cnt.height(),10);
+				this.data.dnd.active = true;
+			}
+		}
+	});
+	$(function() {
+		var css_string = '' + 
+			'#vakata-dragged ins { display:block; text-decoration:none; width:16px; height:16px; margin:0 0 0 0; padding:0; position:absolute; top:4px; left:4px; ' + 
+			' -moz-border-radius:4px; border-radius:4px; -webkit-border-radius:4px; ' +
+			'} ' + 
+			'#vakata-dragged .jstree-ok { background:green; } ' + 
+			'#vakata-dragged .jstree-invalid { background:red; } ' + 
+			'#jstree-marker { padding:0; margin:0; font-size:12px; overflow:hidden; height:12px; width:8px; position:absolute; top:-30px; z-index:10001; background-repeat:no-repeat; display:none; background-color:transparent; text-shadow:1px 1px 1px white; color:black; line-height:10px; } ' + 
+			'#jstree-marker-line { padding:0; margin:0; line-height:0%; font-size:1px; overflow:hidden; height:1px; width:100px; position:absolute; top:-30px; z-index:10000; background-repeat:no-repeat; display:none; background-color:#456c43; ' + 
+			' cursor:pointer; border:1px solid #eeeeee; border-left:0; -moz-box-shadow: 0px 0px 2px #666; -webkit-box-shadow: 0px 0px 2px #666; box-shadow: 0px 0px 2px #666; ' + 
+			' -moz-border-radius:1px; border-radius:1px; -webkit-border-radius:1px; ' +
+			'}' + 
+			'';
+		$.vakata.css.add_sheet({ str : css_string, title : "jstree" });
+		m = $("<div />").attr({ id : "jstree-marker" }).hide().html("»")
+			.bind("mouseleave mouseenter", function (e) { 
+				m.hide();
+				ml.hide();
+				e.preventDefault(); 
+				e.stopImmediatePropagation(); 
+				return false; 
+			})
+			.appendTo("body");
+		ml = $("<div />").attr({ id : "jstree-marker-line" }).hide()
+			.bind("mouseup", function (e) { 
+				if(r && r.length) { 
+					r.children("a").trigger(e); 
+					e.preventDefault(); 
+					e.stopImmediatePropagation(); 
+					return false; 
+				} 
+			})
+			.bind("mouseleave", function (e) { 
+				var rt = $(e.relatedTarget);
+				if(rt.is(".jstree") || rt.closest(".jstree").length === 0) {
+					if(r && r.length) { 
+						r.children("a").trigger(e); 
+						m.hide();
+						ml.hide();
+						e.preventDefault(); 
+						e.stopImmediatePropagation(); 
+						return false; 
+					}
+				}
+			})
+			.appendTo("body");
+		$(document).bind("drag_start.vakata", function (e, data) {
+			if(data.data.jstree) { m.show(); if(ml) { ml.show(); } }
+		});
+		$(document).bind("drag_stop.vakata", function (e, data) {
+			if(data.data.jstree) { m.hide(); if(ml) { ml.hide(); } }
+		});
+	});
+})(jQuery);
+//*/
+
+/*
+ * jsTree checkbox plugin
+ * Inserts checkboxes in front of every node
+ * Depends on the ui plugin
+ * DOES NOT WORK NICELY WITH MULTITREE DRAG'N'DROP
+ */
+(function ($) {
+	$.jstree.plugin("checkbox", {
+		__init : function () {
+			this.data.checkbox.noui = this._get_settings().checkbox.override_ui;
+			if(this.data.ui && this.data.checkbox.noui) {
+				this.select_node = this.deselect_node = this.deselect_all = $.noop;
+				this.get_selected = this.get_checked;
+			}
+
+			this.get_container()
+				.bind("open_node.jstree create_node.jstree clean_node.jstree refresh.jstree", $.proxy(function (e, data) { 
+						this._prepare_checkboxes(data.rslt.obj);
+					}, this))
+				.bind("loaded.jstree", $.proxy(function (e) {
+						this._prepare_checkboxes();
+					}, this))
+				.delegate( (this.data.ui && this.data.checkbox.noui ? "a" : "ins.jstree-checkbox") , "click.jstree", $.proxy(function (e) {
+						e.preventDefault();
+						if(this._get_node(e.target).hasClass("jstree-checked")) { this.uncheck_node(e.target); }
+						else { this.check_node(e.target); }
+						if(this.data.ui && this.data.checkbox.noui) {
+							this.save_selected();
+							if(this.data.cookies) { this.save_cookie("select_node"); }
+						}
+						else {
+							e.stopImmediatePropagation();
+							return false;
+						}
+					}, this));
+		},
+		defaults : {
+			override_ui : false,
+			two_state : false,
+			real_checkboxes : false,
+			checked_parent_open : true,
+			real_checkboxes_names : function (n) { return [ ("check_" + (n[0].id || Math.ceil(Math.random() * 10000))) , 1]; }
+		},
+		__destroy : function () {
+			this.get_container()
+				.find("input.jstree-real-checkbox").removeClass("jstree-real-checkbox").end()
+				.find("ins.jstree-checkbox").remove();
+		},
+		_fn : {
+			_checkbox_notify : function (n, data) {
+				if(data.checked) {
+					this.check_node(n, false);
+				}
+			},
+			_prepare_checkboxes : function (obj) {
+				obj = !obj || obj == -1 ? this.get_container().find("> ul > li") : this._get_node(obj);
+				if(obj === false) { return; } // added for removing root nodes
+				var c, _this = this, t, ts = this._get_settings().checkbox.two_state, rc = this._get_settings().checkbox.real_checkboxes, rcn = this._get_settings().checkbox.real_checkboxes_names;
+				obj.each(function () {
+					t = $(this);
+					c = t.is("li") && (t.hasClass("jstree-checked") || (rc && t.children(":checked").length)) ? "jstree-checked" : "jstree-unchecked";
+					t.find("li").andSelf().each(function () {
+						var $t = $(this), nm;
+						$t.children("a" + (_this.data.languages ? "" : ":eq(0)") ).not(":has(.jstree-checkbox)").prepend("<ins class='jstree-checkbox'> </ins>").parent().not(".jstree-checked, .jstree-unchecked").addClass( ts ? "jstree-unchecked" : c );
+						if(rc) {
+							if(!$t.children(":checkbox").length) {
+								nm = rcn.call(_this, $t);
+								$t.prepend("<input type='checkbox' class='jstree-real-checkbox' id='" + nm[0] + "' name='" + nm[0] + "' value='" + nm[1] + "' />");
+							}
+							else {
+								$t.children(":checkbox").addClass("jstree-real-checkbox");
+							}
+							if(c === "jstree-checked") { 
+								$t.children(":checkbox").attr("checked","checked"); 
+							}
+						}
+						if(c === "jstree-checked" && !ts) {
+							$t.find("li").addClass("jstree-checked");
+						}
+					});
+				});
+				if(!ts) {
+					if(obj.length === 1 && obj.is("li")) { this._repair_state(obj); }
+					if(obj.is("li")) { obj.each(function () { _this._repair_state(this); }); }
+					else { obj.find("> ul > li").each(function () { _this._repair_state(this); }); }
+					obj.find(".jstree-checked").parent().parent().each(function () { _this._repair_state(this); }); 
+				}
+			},
+			change_state : function (obj, state) {
+				obj = this._get_node(obj);
+				var coll = false, rc = this._get_settings().checkbox.real_checkboxes;
+				if(!obj || obj === -1) { return false; }
+				state = (state === false || state === true) ? state : obj.hasClass("jstree-checked");
+				if(this._get_settings().checkbox.two_state) {
+					if(state) { 
+						obj.removeClass("jstree-checked").addClass("jstree-unchecked"); 
+						if(rc) { obj.children(":checkbox").removeAttr("checked"); }
+					}
+					else { 
+						obj.removeClass("jstree-unchecked").addClass("jstree-checked"); 
+						if(rc) { obj.children(":checkbox").attr("checked","checked"); }
+					}
+				}
+				else {
+					if(state) { 
+						coll = obj.find("li").andSelf();
+						if(!coll.filter(".jstree-checked, .jstree-undetermined").length) { return false; }
+						coll.removeClass("jstree-checked jstree-undetermined").addClass("jstree-unchecked"); 
+						if(rc) { coll.children(":checkbox").removeAttr("checked"); }
+					}
+					else { 
+						coll = obj.find("li").andSelf();
+						if(!coll.filter(".jstree-unchecked, .jstree-undetermined").length) { return false; }
+						coll.removeClass("jstree-unchecked jstree-undetermined").addClass("jstree-checked"); 
+						if(rc) { coll.children(":checkbox").attr("checked","checked"); }
+						if(this.data.ui) { this.data.ui.last_selected = obj; }
+						this.data.checkbox.last_selected = obj;
+					}
+					obj.parentsUntil(".jstree", "li").each(function () {
+						var $this = $(this);
+						if(state) {
+							if($this.children("ul").children("li.jstree-checked, li.jstree-undetermined").length) {
+								$this.parentsUntil(".jstree", "li").andSelf().removeClass("jstree-checked jstree-unchecked").addClass("jstree-undetermined");
+								if(rc) { $this.parentsUntil(".jstree", "li").andSelf().children(":checkbox").removeAttr("checked"); }
+								return false;
+							}
+							else {
+								$this.removeClass("jstree-checked jstree-undetermined").addClass("jstree-unchecked");
+								if(rc) { $this.children(":checkbox").removeAttr("checked"); }
+							}
+						}
+						else {
+							if($this.children("ul").children("li.jstree-unchecked, li.jstree-undetermined").length) {
+								$this.parentsUntil(".jstree", "li").andSelf().removeClass("jstree-checked jstree-unchecked").addClass("jstree-undetermined");
+								if(rc) { $this.parentsUntil(".jstree", "li").andSelf().children(":checkbox").removeAttr("checked"); }
+								return false;
+							}
+							else {
+								$this.removeClass("jstree-unchecked jstree-undetermined").addClass("jstree-checked");
+								if(rc) { $this.children(":checkbox").attr("checked","checked"); }
+							}
+						}
+					});
+				}
+				if(this.data.ui && this.data.checkbox.noui) { this.data.ui.selected = this.get_checked(); }
+				this.__callback(obj);
+				return true;
+			},
+			check_node : function (obj) {
+				if(this.change_state(obj, false)) { 
+					obj = this._get_node(obj);
+					if(this._get_settings().checkbox.checked_parent_open) {
+						var t = this;
+						obj.parents(".jstree-closed").each(function () { t.open_node(this, false, true); });
+					}
+					this.__callback({ "obj" : obj }); 
+				}
+			},
+			uncheck_node : function (obj) {
+				if(this.change_state(obj, true)) { this.__callback({ "obj" : this._get_node(obj) }); }
+			},
+			check_all : function () {
+				var _this = this, 
+					coll = this._get_settings().checkbox.two_state ? this.get_container_ul().find("li") : this.get_container_ul().children("li");
+				coll.each(function () {
+					_this.change_state(this, false);
+				});
+				this.__callback();
+			},
+			uncheck_all : function () {
+				var _this = this,
+					coll = this._get_settings().checkbox.two_state ? this.get_container_ul().find("li") : this.get_container_ul().children("li");
+				coll.each(function () {
+					_this.change_state(this, true);
+				});
+				this.__callback();
+			},
+
+			is_checked : function(obj) {
+				obj = this._get_node(obj);
+				return obj.length ? obj.is(".jstree-checked") : false;
+			},
+			get_checked : function (obj, get_all) {
+				obj = !obj || obj === -1 ? this.get_container() : this._get_node(obj);
+				return get_all || this._get_settings().checkbox.two_state ? obj.find(".jstree-checked") : obj.find("> ul > .jstree-checked, .jstree-undetermined > ul > .jstree-checked");
+			},
+			get_unchecked : function (obj, get_all) { 
+				obj = !obj || obj === -1 ? this.get_container() : this._get_node(obj);
+				return get_all || this._get_settings().checkbox.two_state ? obj.find(".jstree-unchecked") : obj.find("> ul > .jstree-unchecked, .jstree-undetermined > ul > .jstree-unchecked");
+			},
+
+			show_checkboxes : function () { this.get_container().children("ul").removeClass("jstree-no-checkboxes"); },
+			hide_checkboxes : function () { this.get_container().children("ul").addClass("jstree-no-checkboxes"); },
+
+			_repair_state : function (obj) {
+				obj = this._get_node(obj);
+				if(!obj.length) { return; }
+				var rc = this._get_settings().checkbox.real_checkboxes,
+					a = obj.find("> ul > .jstree-checked").length,
+					b = obj.find("> ul > .jstree-undetermined").length,
+					c = obj.find("> ul > li").length;
+				if(c === 0) { if(obj.hasClass("jstree-undetermined")) { this.change_state(obj, false); } }
+				else if(a === 0 && b === 0) { this.change_state(obj, true); }
+				else if(a === c) { this.change_state(obj, false); }
+				else { 
+					obj.parentsUntil(".jstree","li").andSelf().removeClass("jstree-checked jstree-unchecked").addClass("jstree-undetermined");
+					if(rc) { obj.parentsUntil(".jstree", "li").andSelf().children(":checkbox").removeAttr("checked"); }
+				}
+			},
+			reselect : function () {
+				if(this.data.ui && this.data.checkbox.noui) { 
+					var _this = this,
+						s = this.data.ui.to_select;
+					s = $.map($.makeArray(s), function (n) { return "#" + n.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:"); });
+					this.deselect_all();
+					$.each(s, function (i, val) { _this.check_node(val); });
+					this.__callback();
+				}
+				else { 
+					this.__call_old(); 
+				}
+			},
+			save_loaded : function () {
+				var _this = this;
+				this.data.core.to_load = [];
+				this.get_container_ul().find("li.jstree-closed.jstree-undetermined").each(function () {
+					if(this.id) { _this.data.core.to_load.push("#" + this.id); }
+				});
+			}
+		}
+	});
+	$(function() {
+		var css_string = '.jstree .jstree-real-checkbox { display:none; } ';
+		$.vakata.css.add_sheet({ str : css_string, title : "jstree" });
+	});
+})(jQuery);
+//*/
+
+/* 
+ * jsTree XML plugin
+ * The XML data store. Datastores are build by overriding the `load_node` and `_is_loaded` functions.
+ */
+(function ($) {
+	$.vakata.xslt = function (xml, xsl, callback) {
+		var rs = "", xm, xs, processor, support;
+		// TODO: IE9 no XSLTProcessor, no document.recalc
+		if(document.recalc) {
+			xm = document.createElement('xml');
+			xs = document.createElement('xml');
+			xm.innerHTML = xml;
+			xs.innerHTML = xsl;
+			$("body").append(xm).append(xs);
+			setTimeout( (function (xm, xs, callback) {
+				return function () {
+					callback.call(null, xm.transformNode(xs.XMLDocument));
+					setTimeout( (function (xm, xs) { return function () { $(xm).remove(); $(xs).remove(); }; })(xm, xs), 200);
+				};
+			})(xm, xs, callback), 100);
+			return true;
+		}
+		if(typeof window.DOMParser !== "undefined" && typeof window.XMLHttpRequest !== "undefined" && typeof window.XSLTProcessor === "undefined") {
+			xml = new DOMParser().parseFromString(xml, "text/xml");
+			xsl = new DOMParser().parseFromString(xsl, "text/xml");
+			// alert(xml.transformNode());
+			// callback.call(null, new XMLSerializer().serializeToString(rs));
+			
+		}
+		if(typeof window.DOMParser !== "undefined" && typeof window.XMLHttpRequest !== "undefined" && typeof window.XSLTProcessor !== "undefined") {
+			processor = new XSLTProcessor();
+			support = $.isFunction(processor.transformDocument) ? (typeof window.XMLSerializer !== "undefined") : true;
+			if(!support) { return false; }
+			xml = new DOMParser().parseFromString(xml, "text/xml");
+			xsl = new DOMParser().parseFromString(xsl, "text/xml");
+			if($.isFunction(processor.transformDocument)) {
+				rs = document.implementation.createDocument("", "", null);
+				processor.transformDocument(xml, xsl, rs, null);
+				callback.call(null, new XMLSerializer().serializeToString(rs));
+				return true;
+			}
+			else {
+				processor.importStylesheet(xsl);
+				rs = processor.transformToFragment(xml, document);
+				callback.call(null, $("<div />").append(rs).html());
+				return true;
+			}
+		}
+		return false;
+	};
+	var xsl = {
+		'nest' : '<' + '?xml version="1.0" encoding="utf-8" ?<?vlc print '>'?>' +
+			'<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >' + 
+			'<xsl:output method="html" encoding="utf-8" omit-xml-declaration="yes" standalone="no" indent="no" media-type="text/html" />' + 
+			'<xsl:template match="/">' + 
+			'	<xsl:call-template name="nodes">' + 
+			'		<xsl:with-param name="node" select="/root" />' + 
+			'	</xsl:call-template>' + 
+			'</xsl:template>' + 
+			'<xsl:template name="nodes">' + 
+			'	<xsl:param name="node" />' + 
+			'	<ul>' + 
+			'	<xsl:for-each select="$node/item">' + 
+			'		<xsl:variable name="children" select="count(./item) > 0" />' + 
+			'		<li>' + 
+			'			<xsl:attribute name="class">' + 
+			'				<xsl:if test="position() = last()">jstree-last </xsl:if>' + 
+			'				<xsl:choose>' + 
+			'					<xsl:when test="@state = \'open\'">jstree-open </xsl:when>' + 
+			'					<xsl:when test="$children or @hasChildren or @state = \'closed\'">jstree-closed </xsl:when>' + 
+			'					<xsl:otherwise>jstree-leaf </xsl:otherwise>' + 
+			'				</xsl:choose>' + 
+			'				<xsl:value-of select="@class" />' + 
+			'			</xsl:attribute>' + 
+			'			<xsl:for-each select="@*">' + 
+			'				<xsl:if test="name() != \'class\' and name() != \'state\' and name() != \'hasChildren\'">' + 
+			'					<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>' + 
+			'				</xsl:if>' + 
+			'			</xsl:for-each>' + 
+			'	<ins class="jstree-icon"><xsl:text>&#xa0;</xsl:text></ins>' + 
+			'			<xsl:for-each select="content/name">' + 
+			'				<a>' + 
+			'				<xsl:attribute name="href">' + 
+			'					<xsl:choose>' + 
+			'					<xsl:when test="@href"><xsl:value-of select="@href" /></xsl:when>' + 
+			'					<xsl:otherwise>#</xsl:otherwise>' + 
+			'					</xsl:choose>' + 
+			'				</xsl:attribute>' + 
+			'				<xsl:attribute name="class"><xsl:value-of select="@lang" /> <xsl:value-of select="@class" /></xsl:attribute>' + 
+			'				<xsl:attribute name="style"><xsl:value-of select="@style" /></xsl:attribute>' + 
+			'				<xsl:for-each select="@*">' + 
+			'					<xsl:if test="name() != \'style\' and name() != \'class\' and name() != \'href\'">' + 
+			'						<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>' + 
+			'					</xsl:if>' + 
+			'				</xsl:for-each>' + 
+			'					<ins>' + 
+			'						<xsl:attribute name="class">jstree-icon ' + 
+			'							<xsl:if test="string-length(attribute::icon) > 0 and not(contains(@icon,\'/\'))"><xsl:value-of select="@icon" /></xsl:if>' + 
+			'						</xsl:attribute>' + 
+			'						<xsl:if test="string-length(attribute::icon) > 0 and contains(@icon,\'/\')"><xsl:attribute name="style">background:url(<xsl:value-of select="@icon" />) center center no-repeat;</xsl:attribute></xsl:if>' + 
+			'						<xsl:text>&#xa0;</xsl:text>' + 
+			'					</ins>' + 
+			'					<xsl:copy-of select="./child::node()" />' + 
+			'				</a>' + 
+			'			</xsl:for-each>' + 
+			'			<xsl:if test="$children or @hasChildren"><xsl:call-template name="nodes"><xsl:with-param name="node" select="current()" /></xsl:call-template></xsl:if>' + 
+			'		</li>' + 
+			'	</xsl:for-each>' + 
+			'	</ul>' + 
+			'</xsl:template>' + 
+			'</xsl:stylesheet>',
+
+		'flat' : '<' + '?xml version="1.0" encoding="utf-8" ?<?vlc print '>'?>' +
+			'<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >' + 
+			'<xsl:output method="html" encoding="utf-8" omit-xml-declaration="yes" standalone="no" indent="no" media-type="text/xml" />' + 
+			'<xsl:template match="/">' + 
+			'	<ul>' + 
+			'	<xsl:for-each select="//item[not(@parent_id) or @parent_id=0 or not(@parent_id = //item/@id)]">' + /* the last `or` may be removed */
+			'		<xsl:call-template name="nodes">' + 
+			'			<xsl:with-param name="node" select="." />' + 
+			'			<xsl:with-param name="is_last" select="number(position() = last())" />' + 
+			'		</xsl:call-template>' + 
+			'	</xsl:for-each>' + 
+			'	</ul>' + 
+			'</xsl:template>' + 
+			'<xsl:template name="nodes">' + 
+			'	<xsl:param name="node" />' + 
+			'	<xsl:param name="is_last" />' + 
+			'	<xsl:variable name="children" select="count(//item[@parent_id=$node/attribute::id]) > 0" />' + 
+			'	<li>' + 
+			'	<xsl:attribute name="class">' + 
+			'		<xsl:if test="$is_last = true()">jstree-last </xsl:if>' + 
+			'		<xsl:choose>' + 
+			'			<xsl:when test="@state = \'open\'">jstree-open </xsl:when>' + 
+			'			<xsl:when test="$children or @hasChildren or @state = \'closed\'">jstree-closed </xsl:when>' + 
+			'			<xsl:otherwise>jstree-leaf </xsl:otherwise>' + 
+			'		</xsl:choose>' + 
+			'		<xsl:value-of select="@class" />' + 
+			'	</xsl:attribute>' + 
+			'	<xsl:for-each select="@*">' + 
+			'		<xsl:if test="name() != \'parent_id\' and name() != \'hasChildren\' and name() != \'class\' and name() != \'state\'">' + 
+			'		<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>' + 
+			'		</xsl:if>' + 
+			'	</xsl:for-each>' + 
+			'	<ins class="jstree-icon"><xsl:text>&#xa0;</xsl:text></ins>' + 
+			'	<xsl:for-each select="content/name">' + 
+			'		<a>' + 
+			'		<xsl:attribute name="href">' + 
+			'			<xsl:choose>' + 
+			'			<xsl:when test="@href"><xsl:value-of select="@href" /></xsl:when>' + 
+			'			<xsl:otherwise>#</xsl:otherwise>' + 
+			'			</xsl:choose>' + 
+			'		</xsl:attribute>' + 
+			'		<xsl:attribute name="class"><xsl:value-of select="@lang" /> <xsl:value-of select="@class" /></xsl:attribute>' + 
+			'		<xsl:attribute name="style"><xsl:value-of select="@style" /></xsl:attribute>' + 
+			'		<xsl:for-each select="@*">' + 
+			'			<xsl:if test="name() != \'style\' and name() != \'class\' and name() != \'href\'">' + 
+			'				<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>' + 
+			'			</xsl:if>' + 
+			'		</xsl:for-each>' + 
+			'			<ins>' + 
+			'				<xsl:attribute name="class">jstree-icon ' + 
+			'					<xsl:if test="string-length(attribute::icon) > 0 and not(contains(@icon,\'/\'))"><xsl:value-of select="@icon" /></xsl:if>' + 
+			'				</xsl:attribute>' + 
+			'				<xsl:if test="string-length(attribute::icon) > 0 and contains(@icon,\'/\')"><xsl:attribute name="style">background:url(<xsl:value-of select="@icon" />) center center no-repeat;</xsl:attribute></xsl:if>' + 
+			'				<xsl:text>&#xa0;</xsl:text>' + 
+			'			</ins>' + 
+			'			<xsl:copy-of select="./child::node()" />' + 
+			'		</a>' + 
+			'	</xsl:for-each>' + 
+			'	<xsl:if test="$children">' + 
+			'		<ul>' + 
+			'		<xsl:for-each select="//item[@parent_id=$node/attribute::id]">' + 
+			'			<xsl:call-template name="nodes">' + 
+			'				<xsl:with-param name="node" select="." />' + 
+			'				<xsl:with-param name="is_last" select="number(position() = last())" />' + 
+			'			</xsl:call-template>' + 
+			'		</xsl:for-each>' + 
+			'		</ul>' + 
+			'	</xsl:if>' + 
+			'	</li>' + 
+			'</xsl:template>' + 
+			'</xsl:stylesheet>'
+	},
+	escape_xml = function(string) {
+		return string
+			.toString()
+			.replace(/&/g, '&')
+			.replace(/</g, '<')
+			.replace(/>/g, '>')
+			.replace(/"/g, '"')
+			.replace(/'/g, ''');
+	};
+	$.jstree.plugin("xml_data", {
+		defaults : { 
+			data : false,
+			ajax : false,
+			xsl : "flat",
+			clean_node : false,
+			correct_state : true,
+			get_skip_empty : false,
+			get_include_preamble : true
+		},
+		_fn : {
+			load_node : function (obj, s_call, e_call) { var _this = this; this.load_node_xml(obj, function () { _this.__callback({ "obj" : _this._get_node(obj) }); s_call.call(this); }, e_call); },
+			_is_loaded : function (obj) { 
+				var s = this._get_settings().xml_data;
+				obj = this._get_node(obj);
+				return obj == -1 || !obj || (!s.ajax && !$.isFunction(s.data)) || obj.is(".jstree-open, .jstree-leaf") || obj.children("ul").children("li").size() > 0;
+			},
+			load_node_xml : function (obj, s_call, e_call) {
+				var s = this.get_settings().xml_data,
+					error_func = function () {},
+					success_func = function () {};
+
+				obj = this._get_node(obj);
+				if(obj && obj !== -1) {
+					if(obj.data("jstree-is-loading")) { return; }
+					else { obj.data("jstree-is-loading",true); }
+				}
+				switch(!0) {
+					case (!s.data && !s.ajax): throw "Neither data nor ajax settings supplied.";
+					case ($.isFunction(s.data)):
+						s.data.call(this, obj, $.proxy(function (d) {
+							this.parse_xml(d, $.proxy(function (d) {
+								if(d) {
+									d = d.replace(/ ?xmlns="[^"]*"/ig, "");
+									if(d.length > 10) {
+										d = $(d);
+										if(obj === -1 || !obj) { this.get_container().children("ul").empty().append(d.children()); }
+										else { obj.children("a.jstree-loading").removeClass("jstree-loading"); obj.append(d); obj.removeData("jstree-is-loading"); }
+										if(s.clean_node) { this.clean_node(obj); }
+										if(s_call) { s_call.call(this); }
+									}
+									else {
+										if(obj && obj !== -1) { 
+											obj.children("a.jstree-loading").removeClass("jstree-loading");
+											obj.removeData("jstree-is-loading");
+											if(s.correct_state) { 
+												this.correct_state(obj);
+												if(s_call) { s_call.call(this); } 
+											}
+										}
+										else {
+											if(s.correct_state) { 
+												this.get_container().children("ul").empty();
+												if(s_call) { s_call.call(this); } 
+											}
+										}
+									}
+								}
+							}, this));
+						}, this));
+						break;
+					case (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):
+						if(!obj || obj == -1) {
+							this.parse_xml(s.data, $.proxy(function (d) {
+								if(d) {
+									d = d.replace(/ ?xmlns="[^"]*"/ig, "");
+									if(d.length > 10) {
+										d = $(d);
+										this.get_container().children("ul").empty().append(d.children());
+										if(s.clean_node) { this.clean_node(obj); }
+										if(s_call) { s_call.call(this); }
+									}
+								}
+								else { 
+									if(s.correct_state) { 
+										this.get_container().children("ul").empty(); 
+										if(s_call) { s_call.call(this); }
+									}
+								}
+							}, this));
+						}
+						break;
+					case (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):
+						error_func = function (x, t, e) {
+							var ef = this.get_settings().xml_data.ajax.error; 
+							if(ef) { ef.call(this, x, t, e); }
+							if(obj !== -1 && obj.length) {
+								obj.children("a.jstree-loading").removeClass("jstree-loading");
+								obj.removeData("jstree-is-loading");
+								if(t === "success" && s.correct_state) { this.correct_state(obj); }
+							}
+							else {
+								if(t === "success" && s.correct_state) { this.get_container().children("ul").empty(); }
+							}
+							if(e_call) { e_call.call(this); }
+						};
+						success_func = function (d, t, x) {
+							d = x.responseText;
+							var sf = this.get_settings().xml_data.ajax.success; 
+							if(sf) { d = sf.call(this,d,t,x) || d; }
+							if(d === "" || (d && d.toString && d.toString().replace(/^[\s\n]+$/,"") === "")) {
+								return error_func.call(this, x, t, "");
+							}
+							this.parse_xml(d, $.proxy(function (d) {
+								if(d) {
+									d = d.replace(/ ?xmlns="[^"]*"/ig, "");
+									if(d.length > 10) {
+										d = $(d);
+										if(obj === -1 || !obj) { this.get_container().children("ul").empty().append(d.children()); }
+										else { obj.children("a.jstree-loading").removeClass("jstree-loading"); obj.append(d); obj.removeData("jstree-is-loading"); }
+										if(s.clean_node) { this.clean_node(obj); }
+										if(s_call) { s_call.call(this); }
+									}
+									else {
+										if(obj && obj !== -1) { 
+											obj.children("a.jstree-loading").removeClass("jstree-loading");
+											obj.removeData("jstree-is-loading");
+											if(s.correct_state) { 
+												this.correct_state(obj);
+												if(s_call) { s_call.call(this); } 
+											}
+										}
+										else {
+											if(s.correct_state) { 
+												this.get_container().children("ul").empty();
+												if(s_call) { s_call.call(this); } 
+											}
+										}
+									}
+								}
+							}, this));
+						};
+						s.ajax.context = this;
+						s.ajax.error = error_func;
+						s.ajax.success = success_func;
+						if(!s.ajax.dataType) { s.ajax.dataType = "xml"; }
+						if($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }
+						if($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }
+						$.ajax(s.ajax);
+						break;
+				}
+			},
+			parse_xml : function (xml, callback) {
+				var s = this._get_settings().xml_data;
+				$.vakata.xslt(xml, xsl[s.xsl], callback);
+			},
+			get_xml : function (tp, obj, li_attr, a_attr, is_callback) {
+				var result = "", 
+					s = this._get_settings(), 
+					_this = this,
+					tmp1, tmp2, li, a, lang;
+				if(!tp) { tp = "flat"; }
+				if(!is_callback) { is_callback = 0; }
+				obj = this._get_node(obj);
+				if(!obj || obj === -1) { obj = this.get_container().find("> ul > li"); }
+				li_attr = $.isArray(li_attr) ? li_attr : [ "id", "class" ];
+				if(!is_callback && this.data.types && $.inArray(s.types.type_attr, li_attr) === -1) { li_attr.push(s.types.type_attr); }
+
+				a_attr = $.isArray(a_attr) ? a_attr : [ ];
+
+				if(!is_callback) { 
+					if(s.xml_data.get_include_preamble) { 
+						result += '<' + '?xml version="1.0" encoding="UTF-8"?' + '>'; 
+					}
+					result += "<root>"; 
+				}
+				obj.each(function () {
+					result += "<item";
+					li = $(this);
+					$.each(li_attr, function (i, v) { 
+						var t = li.attr(v);
+						if(!s.xml_data.get_skip_empty || typeof t !== "undefined") {
+							result += " " + v + "=\"" + escape_xml((" " + (t || "")).replace(/ jstree[^ ]*/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"")) + "\""; 
+						}
+					});
+					if(li.hasClass("jstree-open")) { result += " state=\"open\""; }
+					if(li.hasClass("jstree-closed")) { result += " state=\"closed\""; }
+					if(tp === "flat") { result += " parent_id=\"" + escape_xml(is_callback) + "\""; }
+					result += ">";
+					result += "<content>";
+					a = li.children("a");
+					a.each(function () {
+						tmp1 = $(this);
+						lang = false;
+						result += "<name";
+						if($.inArray("languages", s.plugins) !== -1) {
+							$.each(s.languages, function (k, z) {
+								if(tmp1.hasClass(z)) { result += " lang=\"" + escape_xml(z) + "\""; lang = z; return false; }
+							});
+						}
+						if(a_attr.length) { 
+							$.each(a_attr, function (k, z) {
+								var t = tmp1.attr(z);
+								if(!s.xml_data.get_skip_empty || typeof t !== "undefined") {
+									result += " " + z + "=\"" + escape_xml((" " + t || "").replace(/ jstree[^ ]*/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"")) + "\"";
+								}
+							});
+						}
+						if(tmp1.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\s+$/ig,"").length) {
+							result += ' icon="' + escape_xml(tmp1.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"")) + '"';
+						}
+						if(tmp1.children("ins").get(0).style.backgroundImage.length) {
+							result += ' icon="' + escape_xml(tmp1.children("ins").get(0).style.backgroundImage.replace("url(","").replace(")","").replace(/'/ig,"").replace(/"/ig,"")) + '"';
+						}
+						result += ">";
+						result += "<![CDATA[" + _this.get_text(tmp1, lang) + "]]>";
+						result += "</name>";
+					});
+					result += "</content>";
+					tmp2 = li[0].id || true;
+					li = li.find("> ul > li");
+					if(li.length) { tmp2 = _this.get_xml(tp, li, li_attr, a_attr, tmp2); }
+					else { tmp2 = ""; }
+					if(tp == "nest") { result += tmp2; }
+					result += "</item>";
+					if(tp == "flat") { result += tmp2; }
+				});
+				if(!is_callback) { result += "</root>"; }
+				return result;
+			}
+		}
+	});
+})(jQuery);
+//*/
+
+/*
+ * jsTree search plugin
+ * Enables both sync and async search on the tree
+ * DOES NOT WORK WITH JSON PROGRESSIVE RENDER
+ */
+(function ($) {
+	$.expr[':'].jstree_contains = function(a,i,m){
+		return (a.textContent || a.innerText || "").toLowerCase().indexOf(m[3].toLowerCase())>=0;
+	};
+	$.expr[':'].jstree_title_contains = function(a,i,m) {
+		return (a.getAttribute("title") || "").toLowerCase().indexOf(m[3].toLowerCase())>=0;
+	};
+	$.jstree.plugin("search", {
+		__init : function () {
+			this.data.search.str = "";
+			this.data.search.result = $();
+			if(this._get_settings().search.show_only_matches) {
+				this.get_container()
+					.bind("search.jstree", function (e, data) {
+						$(this).children("ul").find("li").hide().removeClass("jstree-last");
+						data.rslt.nodes.parentsUntil(".jstree").andSelf().show()
+							.filter("ul").each(function () { $(this).children("li:visible").eq(-1).addClass("jstree-last"); });
+					})
+					.bind("clear_search.jstree", function () {
+						$(this).children("ul").find("li").css("display","").end().end().jstree("clean_node", -1);
+					});
+			}
+		},
+		defaults : {
+			ajax : false,
+			search_method : "jstree_contains", // for case insensitive - jstree_contains
+			show_only_matches : false
+		},
+		_fn : {
+			search : function (str, skip_async) {
+				if($.trim(str) === "") { this.clear_search(); return; }
+				var s = this.get_settings().search, 
+					t = this,
+					error_func = function () { },
+					success_func = function () { };
+				this.data.search.str = str;
+
+				if(!skip_async && s.ajax !== false && this.get_container_ul().find("li.jstree-closed:not(:has(ul)):eq(0)").length > 0) {
+					this.search.supress_callback = true;
+					error_func = function () { };
+					success_func = function (d, t, x) {
+						var sf = this.get_settings().search.ajax.success; 
+						if(sf) { d = sf.call(this,d,t,x) || d; }
+						this.data.search.to_open = d;
+						this._search_open();
+					};
+					s.ajax.context = this;
+					s.ajax.error = error_func;
+					s.ajax.success = success_func;
+					if($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, str); }
+					if($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, str); }
+					if(!s.ajax.data) { s.ajax.data = { "search_string" : str }; }
+					if(!s.ajax.dataType || /^json/.exec(s.ajax.dataType)) { s.ajax.dataType = "json"; }
+					$.ajax(s.ajax);
+					return;
+				}
+				if(this.data.search.result.length) { this.clear_search(); }
+				this.data.search.result = this.get_container().find("a" + (this.data.languages ? "." + this.get_lang() : "" ) + ":" + (s.search_method) + "(" + this.data.search.str + ")");
+				this.data.search.result.addClass("jstree-search").parent().parents(".jstree-closed").each(function () {
+					t.open_node(this, false, true);
+				});
+				this.__callback({ nodes : this.data.search.result, str : str });
+			},
+			clear_search : function (str) {
+				this.data.search.result.removeClass("jstree-search");
+				this.__callback(this.data.search.result);
+				this.data.search.result = $();
+			},
+			_search_open : function (is_callback) {
+				var _this = this,
+					done = true,
+					current = [],
+					remaining = [];
+				if(this.data.search.to_open.length) {
+					$.each(this.data.search.to_open, function (i, val) {
+						if(val == "#") { return true; }
+						if($(val).length && $(val).is(".jstree-closed")) { current.push(val); }
+						else { remaining.push(val); }
+					});
+					if(current.length) {
+						this.data.search.to_open = remaining;
+						$.each(current, function (i, val) { 
+							_this.open_node(val, function () { _this._search_open(true); }); 
+						});
+						done = false;
+					}
+				}
+				if(done) { this.search(this.data.search.str, true); }
+			}
+		}
+	});
+})(jQuery);
+//*/
+
+/* 
+ * jsTree contextmenu plugin
+ */
+(function ($) {
+	$.vakata.context = {
+		hide_on_mouseleave : false,
+
+		cnt		: $("<div id='vakata-contextmenu' />"),
+		vis		: false,
+		tgt		: false,
+		par		: false,
+		func	: false,
+		data	: false,
+		rtl		: false,
+		show	: function (s, t, x, y, d, p, rtl) {
+			$.vakata.context.rtl = !!rtl;
+			var html = $.vakata.context.parse(s), h, w;
+			if(!html) { return; }
+			$.vakata.context.vis = true;
+			$.vakata.context.tgt = t;
+			$.vakata.context.par = p || t || null;
+			$.vakata.context.data = d || null;
+			$.vakata.context.cnt
+				.html(html)
+				.css({ "visibility" : "hidden", "display" : "block", "left" : 0, "top" : 0 });
+
+			if($.vakata.context.hide_on_mouseleave) {
+				$.vakata.context.cnt
+					.one("mouseleave", function(e) { $.vakata.context.hide(); });
+			}
+
+			h = $.vakata.context.cnt.height();
+			w = $.vakata.context.cnt.width();
+			if(x + w > $(document).width()) { 
+				x = $(document).width() - (w + 5); 
+				$.vakata.context.cnt.find("li > ul").addClass("right"); 
+			}
+			if(y + h > $(document).height()) { 
+				y = y - (h + t[0].offsetHeight); 
+				$.vakata.context.cnt.find("li > ul").addClass("bottom"); 
+			}
+
+			$.vakata.context.cnt
+				.css({ "left" : x, "top" : y })
+				.find("li:has(ul)")
+					.bind("mouseenter", function (e) { 
+						var w = $(document).width(),
+							h = $(document).height(),
+							ul = $(this).children("ul").show(); 
+						if(w !== $(document).width()) { ul.toggleClass("right"); }
+						if(h !== $(document).height()) { ul.toggleClass("bottom"); }
+					})
+					.bind("mouseleave", function (e) { 
+						$(this).children("ul").hide(); 
+					})
+					.end()
+				.css({ "visibility" : "visible" })
+				.show();
+			$(document).triggerHandler("context_show.vakata");
+		},
+		hide	: function () {
+			$.vakata.context.vis = false;
+			$.vakata.context.cnt.attr("class","").css({ "visibility" : "hidden" });
+			$(document).triggerHandler("context_hide.vakata");
+		},
+		parse	: function (s, is_callback) {
+			if(!s) { return false; }
+			var str = "",
+				tmp = false,
+				was_sep = true;
+			if(!is_callback) { $.vakata.context.func = {}; }
+			str += "<ul>";
+			$.each(s, function (i, val) {
+				if(!val) { return true; }
+				$.vakata.context.func[i] = val.action;
+				if(!was_sep && val.separator_before) {
+					str += "<li class='vakata-separator vakata-separator-before'></li>";
+				}
+				was_sep = false;
+				str += "<li class='" + (val._class || "") + (val._disabled ? " jstree-contextmenu-disabled " : "") + "'><ins ";
+				if(val.icon && val.icon.indexOf("/") === -1) { str += " class='" + val.icon + "' "; }
+				if(val.icon && val.icon.indexOf("/") !== -1) { str += " style='background:url(" + val.icon + ") center center no-repeat;' "; }
+				str += "> </ins><a href='#' rel='" + i + "'>";
+				if(val.submenu) {
+					str += "<span style='float:" + ($.vakata.context.rtl ? "left" : "right") + ";'>»</span>";
+				}
+				str += val.label + "</a>";
+				if(val.submenu) {
+					tmp = $.vakata.context.parse(val.submenu, true);
+					if(tmp) { str += tmp; }
+				}
+				str += "</li>";
+				if(val.separator_after) {
+					str += "<li class='vakata-separator vakata-separator-after'></li>";
+					was_sep = true;
+				}
+			});
+			str = str.replace(/<li class\='vakata-separator vakata-separator-after'\><\/li\>$/,"");
+			str += "</ul>";
+			$(document).triggerHandler("context_parse.vakata");
+			return str.length > 10 ? str : false;
+		},
+		exec	: function (i) {
+			if($.isFunction($.vakata.context.func[i])) {
+				// if is string - eval and call it!
+				$.vakata.context.func[i].call($.vakata.context.data, $.vakata.context.par);
+				return true;
+			}
+			else { return false; }
+		}
+	};
+	$(function () {
+		var css_string = '' + 
+			'#vakata-contextmenu { display:block; visibility:hidden; left:0; top:-200px; position:absolute; margin:0; padding:0; min-width:180px; background:#ebebeb; border:1px solid silver; z-index:10000; *width:180px; } ' + 
+			'#vakata-contextmenu ul { min-width:180px; *width:180px; } ' + 
+			'#vakata-contextmenu ul, #vakata-contextmenu li { margin:0; padding:0; list-style-type:none; display:block; } ' + 
+			'#vakata-contextmenu li { line-height:20px; min-height:20px; position:relative; padding:0px; } ' + 
+			'#vakata-contextmenu li a { padding:1px 6px; line-height:17px; display:block; text-decoration:none; margin:1px 1px 0 1px; } ' + 
+			'#vakata-contextmenu li ins { float:left; width:16px; height:16px; text-decoration:none; margin-right:2px; } ' + 
+			'#vakata-contextmenu li a:hover, #vakata-contextmenu li.vakata-hover > a { background:gray; color:white; } ' + 
+			'#vakata-contextmenu li ul { display:none; position:absolute; top:-2px; left:100%; background:#ebebeb; border:1px solid gray; } ' + 
+			'#vakata-contextmenu .right { right:100%; left:auto; } ' + 
+			'#vakata-contextmenu .bottom { bottom:-1px; top:auto; } ' + 
+			'#vakata-contextmenu li.vakata-separator { min-height:0; height:1px; line-height:1px; font-size:1px; overflow:hidden; margin:0 2px; background:silver; /* border-top:1px solid #fefefe; */ padding:0; } ';
+		$.vakata.css.add_sheet({ str : css_string, title : "vakata" });
+		$.vakata.context.cnt
+			.delegate("a","click", function (e) { e.preventDefault(); })
+			.delegate("a","mouseup", function (e) {
+				if(!$(this).parent().hasClass("jstree-contextmenu-disabled") && $.vakata.context.exec($(this).attr("rel"))) {
+					$.vakata.context.hide();
+				}
+				else { $(this).blur(); }
+			})
+			.delegate("a","mouseover", function () {
+				$.vakata.context.cnt.find(".vakata-hover").removeClass("vakata-hover");
+			})
+			.appendTo("body");
+		$(document).bind("mousedown", function (e) { if($.vakata.context.vis && !$.contains($.vakata.context.cnt[0], e.target)) { $.vakata.context.hide(); } });
+		if(typeof $.hotkeys !== "undefined") {
+			$(document)
+				.bind("keydown", "up", function (e) { 
+					if($.vakata.context.vis) { 
+						var o = $.vakata.context.cnt.find("ul:visible").last().children(".vakata-hover").removeClass("vakata-hover").prevAll("li:not(.vakata-separator)").first();
+						if(!o.length) { o = $.vakata.context.cnt.find("ul:visible").last().children("li:not(.vakata-separator)").last(); }
+						o.addClass("vakata-hover");
+						e.stopImmediatePropagation(); 
+						e.preventDefault();
+					} 
+				})
+				.bind("keydown", "down", function (e) { 
+					if($.vakata.context.vis) { 
+						var o = $.vakata.context.cnt.find("ul:visible").last().children(".vakata-hover").removeClass("vakata-hover").nextAll("li:not(.vakata-separator)").first();
+						if(!o.length) { o = $.vakata.context.cnt.find("ul:visible").last().children("li:not(.vakata-separator)").first(); }
+						o.addClass("vakata-hover");
+						e.stopImmediatePropagation(); 
+						e.preventDefault();
+					} 
+				})
+				.bind("keydown", "right", function (e) { 
+					if($.vakata.context.vis) { 
+						$.vakata.context.cnt.find(".vakata-hover").children("ul").show().children("li:not(.vakata-separator)").removeClass("vakata-hover").first().addClass("vakata-hover");
+						e.stopImmediatePropagation(); 
+						e.preventDefault();
+					} 
+				})
+				.bind("keydown", "left", function (e) { 
+					if($.vakata.context.vis) { 
+						$.vakata.context.cnt.find(".vakata-hover").children("ul").hide().children(".vakata-separator").removeClass("vakata-hover");
+						e.stopImmediatePropagation(); 
+						e.preventDefault();
+					} 
+				})
+				.bind("keydown", "esc", function (e) { 
+					$.vakata.context.hide(); 
+					e.preventDefault();
+				})
+				.bind("keydown", "space", function (e) { 
+					$.vakata.context.cnt.find(".vakata-hover").last().children("a").click();
+					e.preventDefault();
+				});
+		}
+	});
+
+	$.jstree.plugin("contextmenu", {
+		__init : function () {
+			this.get_container()
+				.delegate("a", "contextmenu.jstree", $.proxy(function (e) {
+						e.preventDefault();
+						if(!$(e.currentTarget).hasClass("jstree-loading")) {
+							this.show_contextmenu(e.currentTarget, e.pageX, e.pageY);
+						}
+					}, this))
+				.delegate("a", "click.jstree", $.proxy(function (e) {
+						if(this.data.contextmenu) {
+							$.vakata.context.hide();
+						}
+					}, this))
+				.bind("destroy.jstree", $.proxy(function () {
+						// TODO: move this to descruct method
+						if(this.data.contextmenu) {
+							$.vakata.context.hide();
+						}
+					}, this));
+			$(document).bind("context_hide.vakata", $.proxy(function () { this.data.contextmenu = false; }, this));
+		},
+		defaults : { 
+			select_node : false, // requires UI plugin
+			show_at_node : true,
+			items : { // Could be a function that should return an object like this one
+				"create" : {
+					"separator_before"	: false,
+					"separator_after"	: true,
+					"label"				: "Create",
+					"action"			: function (obj) { this.create(obj); }
+				},
+				"rename" : {
+					"separator_before"	: false,
+					"separator_after"	: false,
+					"label"				: "Rename",
+					"action"			: function (obj) { this.rename(obj); }
+				},
+				"remove" : {
+					"separator_before"	: false,
+					"icon"				: false,
+					"separator_after"	: false,
+					"label"				: "Delete",
+					"action"			: function (obj) { if(this.is_selected(obj)) { this.remove(); } else { this.remove(obj); } }
+				},
+				"ccp" : {
+					"separator_before"	: true,
+					"icon"				: false,
+					"separator_after"	: false,
+					"label"				: "Edit",
+					"action"			: false,
+					"submenu" : { 
+						"cut" : {
+							"separator_before"	: false,
+							"separator_after"	: false,
+							"label"				: "Cut",
+							"action"			: function (obj) { this.cut(obj); }
+						},
+						"copy" : {
+							"separator_before"	: false,
+							"icon"				: false,
+							"separator_after"	: false,
+							"label"				: "Copy",
+							"action"			: function (obj) { this.copy(obj); }
+						},
+						"paste" : {
+							"separator_before"	: false,
+							"icon"				: false,
+							"separator_after"	: false,
+							"label"				: "Paste",
+							"action"			: function (obj) { this.paste(obj); }
+						}
+					}
+				}
+			}
+		},
+		_fn : {
+			show_contextmenu : function (obj, x, y) {
+				obj = this._get_node(obj);
+				var s = this.get_settings().contextmenu,
+					a = obj.children("a:visible:eq(0)"),
+					o = false,
+					i = false;
+				if(s.select_node && this.data.ui && !this.is_selected(obj)) {
+					this.deselect_all();
+					this.select_node(obj, true);
+				}
+				if(s.show_at_node || typeof x === "undefined" || typeof y === "undefined") {
+					o = a.offset();
+					x = o.left;
+					y = o.top + this.data.core.li_height;
+				}
+				i = obj.data("jstree") && obj.data("jstree").contextmenu ? obj.data("jstree").contextmenu : s.items;
+				if($.isFunction(i)) { i = i.call(this, obj); }
+				this.data.contextmenu = true;
+				$.vakata.context.show(i, a, x, y, this, obj, this._get_settings().core.rtl);
+				if(this.data.themes) { $.vakata.context.cnt.attr("class", "jstree-" + this.data.themes.theme + "-context"); }
+			}
+		}
+	});
+})(jQuery);
+//*/
+
+/* 
+ * jsTree types plugin
+ * Adds support types of nodes
+ * You can set an attribute on each li node, that represents its type.
+ * According to the type setting the node may get custom icon/validation rules
+ */
+(function ($) {
+	$.jstree.plugin("types", {
+		__init : function () {
+			var s = this._get_settings().types;
+			this.data.types.attach_to = [];
+			this.get_container()
+				.bind("init.jstree", $.proxy(function () { 
+						var types = s.types, 
+							attr  = s.type_attr, 
+							icons_css = "", 
+							_this = this;
+
+						$.each(types, function (i, tp) {
+							$.each(tp, function (k, v) { 
+								if(!/^(max_depth|max_children|icon|valid_children)$/.test(k)) { _this.data.types.attach_to.push(k); }
+							});
+							if(!tp.icon) { return true; }
+							if( tp.icon.image || tp.icon.position) {
+								if(i == "default")	{ icons_css += '.jstree-' + _this.get_index() + ' a > .jstree-icon { '; }
+								else				{ icons_css += '.jstree-' + _this.get_index() + ' li[' + attr + '="' + i + '"] > a > .jstree-icon { '; }
+								if(tp.icon.image)	{ icons_css += ' background-image:url(' + tp.icon.image + '); '; }
+								if(tp.icon.position){ icons_css += ' background-position:' + tp.icon.position + '; '; }
+								else				{ icons_css += ' background-position:0 0; '; }
+								icons_css += '} ';
+							}
+						});
+						if(icons_css !== "") { $.vakata.css.add_sheet({ 'str' : icons_css, title : "jstree-types" }); }
+					}, this))
+				.bind("before.jstree", $.proxy(function (e, data) { 
+						var s, t, 
+							o = this._get_settings().types.use_data ? this._get_node(data.args[0]) : false, 
+							d = o && o !== -1 && o.length ? o.data("jstree") : false;
+						if(d && d.types && d.types[data.func] === false) { e.stopImmediatePropagation(); return false; }
+						if($.inArray(data.func, this.data.types.attach_to) !== -1) {
+							if(!data.args[0] || (!data.args[0].tagName && !data.args[0].jquery)) { return; }
+							s = this._get_settings().types.types;
+							t = this._get_type(data.args[0]);
+							if(
+								( 
+									(s[t] && typeof s[t][data.func] !== "undefined") || 
+									(s["default"] && typeof s["default"][data.func] !== "undefined") 
+								) && this._check(data.func, data.args[0]) === false
+							) {
+								e.stopImmediatePropagation();
+								return false;
+							}
+						}
+					}, this));
+			if(is_ie6) {
+				this.get_container()
+					.bind("load_node.jstree set_type.jstree", $.proxy(function (e, data) {
+							var r = data && data.rslt && data.rslt.obj && data.rslt.obj !== -1 ? this._get_node(data.rslt.obj).parent() : this.get_container_ul(),
+								c = false,
+								s = this._get_settings().types;
+							$.each(s.types, function (i, tp) {
+								if(tp.icon && (tp.icon.image || tp.icon.position)) {
+									c = i === "default" ? r.find("li > a > .jstree-icon") : r.find("li[" + s.type_attr + "='" + i + "'] > a > .jstree-icon");
+									if(tp.icon.image) { c.css("backgroundImage","url(" + tp.icon.image + ")"); }
+									c.css("backgroundPosition", tp.icon.position || "0 0");
+								}
+							});
+						}, this));
+			}
+		},
+		defaults : {
+			// defines maximum number of root nodes (-1 means unlimited, -2 means disable max_children checking)
+			max_children		: -1,
+			// defines the maximum depth of the tree (-1 means unlimited, -2 means disable max_depth checking)
+			max_depth			: -1,
+			// defines valid node types for the root nodes
+			valid_children		: "all",
+
+			// whether to use $.data
+			use_data : false, 
+			// where is the type stores (the rel attribute of the LI element)
+			type_attr : "rel",
+			// a list of types
+			types : {
+				// the default type
+				"default" : {
+					"max_children"	: -1,
+					"max_depth"		: -1,
+					"valid_children": "all"
+
+					// Bound functions - you can bind any other function here (using boolean or function)
+					//"select_node"	: true
+				}
+			}
+		},
+		_fn : {
+			_types_notify : function (n, data) {
+				if(data.type && this._get_settings().types.use_data) {
+					this.set_type(data.type, n);
+				}
+			},
+			_get_type : function (obj) {
+				obj = this._get_node(obj);
+				return (!obj || !obj.length) ? false : obj.attr(this._get_settings().types.type_attr) || "default";
+			},
+			set_type : function (str, obj) {
+				obj = this._get_node(obj);
+				var ret = (!obj.length || !str) ? false : obj.attr(this._get_settings().types.type_attr, str);
+				if(ret) { this.__callback({ obj : obj, type : str}); }
+				return ret;
+			},
+			_check : function (rule, obj, opts) {
+				obj = this._get_node(obj);
+				var v = false, t = this._get_type(obj), d = 0, _this = this, s = this._get_settings().types, data = false;
+				if(obj === -1) { 
+					if(!!s[rule]) { v = s[rule]; }
+					else { return; }
+				}
+				else {
+					if(t === false) { return; }
+					data = s.use_data ? obj.data("jstree") : false;
+					if(data && data.types && typeof data.types[rule] !== "undefined") { v = data.types[rule]; }
+					else if(!!s.types[t] && typeof s.types[t][rule] !== "undefined") { v = s.types[t][rule]; }
+					else if(!!s.types["default"] && typeof s.types["default"][rule] !== "undefined") { v = s.types["default"][rule]; }
+				}
+				if($.isFunction(v)) { v = v.call(this, obj); }
+				if(rule === "max_depth" && obj !== -1 && opts !== false && s.max_depth !== -2 && v !== 0) {
+					// also include the node itself - otherwise if root node it is not checked
+					obj.children("a:eq(0)").parentsUntil(".jstree","li").each(function (i) {
+						// check if current depth already exceeds global tree depth
+						if(s.max_depth !== -1 && s.max_depth - (i + 1) <= 0) { v = 0; return false; }
+						d = (i === 0) ? v : _this._check(rule, this, false);
+						// check if current node max depth is already matched or exceeded
+						if(d !== -1 && d - (i + 1) <= 0) { v = 0; return false; }
+						// otherwise - set the max depth to the current value minus current depth
+						if(d >= 0 && (d - (i + 1) < v || v < 0) ) { v = d - (i + 1); }
+						// if the global tree depth exists and it minus the nodes calculated so far is less than `v` or `v` is unlimited
+						if(s.max_depth >= 0 && (s.max_depth - (i + 1) < v || v < 0) ) { v = s.max_depth - (i + 1); }
+					});
+				}
+				return v;
+			},
+			check_move : function () {
+				if(!this.__call_old()) { return false; }
+				var m  = this._get_move(),
+					s  = m.rt._get_settings().types,
+					mc = m.rt._check("max_children", m.cr),
+					md = m.rt._check("max_depth", m.cr),
+					vc = m.rt._check("valid_children", m.cr),
+					ch = 0, d = 1, t;
+
+				if(vc === "none") { return false; } 
+				if($.isArray(vc) && m.ot && m.ot._get_type) {
+					m.o.each(function () {
+						if($.inArray(m.ot._get_type(this), vc) === -1) { d = false; return false; }
+					});
+					if(d === false) { return false; }
+				}
+				if(s.max_children !== -2 && mc !== -1) {
+					ch = m.cr === -1 ? this.get_container().find("> ul > li").not(m.o).length : m.cr.find("> ul > li").not(m.o).length;
+					if(ch + m.o.length > mc) { return false; }
+				}
+				if(s.max_depth !== -2 && md !== -1) {
+					d = 0;
+					if(md === 0) { return false; }
+					if(typeof m.o.d === "undefined") {
+						// TODO: deal with progressive rendering and async when checking max_depth (how to know the depth of the moved node)
+						t = m.o;
+						while(t.length > 0) {
+							t = t.find("> ul > li");
+							d ++;
+						}
+						m.o.d = d;
+					}
+					if(md - m.o.d < 0) { return false; }
+				}
+				return true;
+			},
+			create_node : function (obj, position, js, callback, is_loaded, skip_check) {
+				if(!skip_check && (is_loaded || this._is_loaded(obj))) {
+					var p  = (typeof position == "string" && position.match(/^before|after$/i) && obj !== -1) ? this._get_parent(obj) : this._get_node(obj),
+						s  = this._get_settings().types,
+						mc = this._check("max_children", p),
+						md = this._check("max_depth", p),
+						vc = this._check("valid_children", p),
+						ch;
+					if(typeof js === "string") { js = { data : js }; }
+					if(!js) { js = {}; }
+					if(vc === "none") { return false; } 
+					if($.isArray(vc)) {
+						if(!js.attr || !js.attr[s.type_attr]) { 
+							if(!js.attr) { js.attr = {}; }
+							js.attr[s.type_attr] = vc[0]; 
+						}
+						else {
+							if($.inArray(js.attr[s.type_attr], vc) === -1) { return false; }
+						}
+					}
+					if(s.max_children !== -2 && mc !== -1) {
+						ch = p === -1 ? this.get_container().find("> ul > li").length : p.find("> ul > li").length;
+						if(ch + 1 > mc) { return false; }
+					}
+					if(s.max_depth !== -2 && md !== -1 && (md - 1) < 0) { return false; }
+				}
+				return this.__call_old(true, obj, position, js, callback, is_loaded, skip_check);
+			}
+		}
+	});
+})(jQuery);
+//*/
+
+/* 
+ * jsTree HTML plugin
+ * The HTML data store. Datastores are build by replacing the `load_node` and `_is_loaded` functions.
+ */
+(function ($) {
+	$.jstree.plugin("html_data", {
+		__init : function () { 
+			// this used to use html() and clean the whitespace, but this way any attached data was lost
+			this.data.html_data.original_container_html = this.get_container().find(" > ul > li").clone(true);
+			// remove white space from LI node - otherwise nodes appear a bit to the right
+			this.data.html_data.original_container_html.find("li").andSelf().contents().filter(function() { return this.nodeType == 3; }).remove();
+		},
+		defaults : { 
+			data : false,
+			ajax : false,
+			correct_state : true
+		},
+		_fn : {
+			load_node : function (obj, s_call, e_call) { var _this = this; this.load_node_html(obj, function () { _this.__callback({ "obj" : _this._get_node(obj) }); s_call.call(this); }, e_call); },
+			_is_loaded : function (obj) { 
+				obj = this._get_node(obj); 
+				return obj == -1 || !obj || (!this._get_settings().html_data.ajax && !$.isFunction(this._get_settings().html_data.data)) || obj.is(".jstree-open, .jstree-leaf") || obj.children("ul").children("li").size() > 0;
+			},
+			load_node_html : function (obj, s_call, e_call) {
+				var d,
+					s = this.get_settings().html_data,
+					error_func = function () {},
+					success_func = function () {};
+				obj = this._get_node(obj);
+				if(obj && obj !== -1) {
+					if(obj.data("jstree-is-loading")) { return; }
+					else { obj.data("jstree-is-loading",true); }
+				}
+				switch(!0) {
+					case ($.isFunction(s.data)):
+						s.data.call(this, obj, $.proxy(function (d) {
+							if(d && d !== "" && d.toString && d.toString().replace(/^[\s\n]+$/,"") !== "") {
+								d = $(d);
+								if(!d.is("ul")) { d = $("<ul />").append(d); }
+								if(obj == -1 || !obj) { this.get_container().children("ul").empty().append(d.children()).find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'> </ins>").end().filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon"); }
+								else { obj.children("a.jstree-loading").removeClass("jstree-loading"); obj.append(d).children("ul").find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'> </ins>").end().filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon"); obj.removeData("jstree-is-loading"); }
+								this.clean_node(obj);
+								if(s_call) { s_call.call(this); }
+							}
+							else {
+								if(obj && obj !== -1) {
+									obj.children("a.jstree-loading").removeClass("jstree-loading");
+									obj.removeData("jstree-is-loading");
+									if(s.correct_state) { 
+										this.correct_state(obj);
+										if(s_call) { s_call.call(this); } 
+									}
+								}
+								else {
+									if(s.correct_state) { 
+										this.get_container().children("ul").empty();
+										if(s_call) { s_call.call(this); } 
+									}
+								}
+							}
+						}, this));
+						break;
+					case (!s.data && !s.ajax):
+						if(!obj || obj == -1) {
+							this.get_container()
+								.children("ul").empty()
+								.append(this.data.html_data.original_container_html)
+								.find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'> </ins>").end()
+								.filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon");
+							this.clean_node();
+						}
+						if(s_call) { s_call.call(this); }
+						break;
+					case (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):
+						if(!obj || obj == -1) {
+							d = $(s.data);
+							if(!d.is("ul")) { d = $("<ul />").append(d); }
+							this.get_container()
+								.children("ul").empty().append(d.children())
+								.find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'> </ins>").end()
+								.filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon");
+							this.clean_node();
+						}
+						if(s_call) { s_call.call(this); }
+						break;
+					case (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):
+						obj = this._get_node(obj);
+						error_func = function (x, t, e) {
+							var ef = this.get_settings().html_data.ajax.error; 
+							if(ef) { ef.call(this, x, t, e); }
+							if(obj != -1 && obj.length) {
+								obj.children("a.jstree-loading").removeClass("jstree-loading");
+								obj.removeData("jstree-is-loading");
+								if(t === "success" && s.correct_state) { this.correct_state(obj); }
+							}
+							else {
+								if(t === "success" && s.correct_state) { this.get_container().children("ul").empty(); }
+							}
+							if(e_call) { e_call.call(this); }
+						};
+						success_func = function (d, t, x) {
+							var sf = this.get_settings().html_data.ajax.success; 
+							if(sf) { d = sf.call(this,d,t,x) || d; }
+							if(d === "" || (d && d.toString && d.toString().replace(/^[\s\n]+$/,"") === "")) {
+								return error_func.call(this, x, t, "");
+							}
+							if(d) {
+								d = $(d);
+								if(!d.is("ul")) { d = $("<ul />").append(d); }
+								if(obj == -1 || !obj) { this.get_container().children("ul").empty().append(d.children()).find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'> </ins>").end().filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon"); }
+								else { obj.children("a.jstree-loading").removeClass("jstree-loading"); obj.append(d).children("ul").find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'> </ins>").end().filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon"); obj.removeData("jstree-is-loading"); }
+								this.clean_node(obj);
+								if(s_call) { s_call.call(this); }
+							}
+							else {
+								if(obj && obj !== -1) {
+									obj.children("a.jstree-loading").removeClass("jstree-loading");
+									obj.removeData("jstree-is-loading");
+									if(s.correct_state) { 
+										this.correct_state(obj);
+										if(s_call) { s_call.call(this); } 
+									}
+								}
+								else {
+									if(s.correct_state) { 
+										this.get_container().children("ul").empty();
+										if(s_call) { s_call.call(this); } 
+									}
+								}
+							}
+						};
+						s.ajax.context = this;
+						s.ajax.error = error_func;
+						s.ajax.success = success_func;
+						if(!s.ajax.dataType) { s.ajax.dataType = "html"; }
+						if($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }
+						if($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }
+						$.ajax(s.ajax);
+						break;
+				}
+			}
+		}
+	});
+	// include the HTML data plugin by default
+	$.jstree.defaults.plugins.push("html_data");
+})(jQuery);
+//*/
+
+/* 
+ * jsTree themeroller plugin
+ * Adds support for jQuery UI themes. Include this at the end of your plugins list, also make sure "themes" is not included.
+ */
+(function ($) {
+	$.jstree.plugin("themeroller", {
+		__init : function () {
+			var s = this._get_settings().themeroller;
+			this.get_container()
+				.addClass("ui-widget-content")
+				.addClass("jstree-themeroller")
+				.delegate("a","mouseenter.jstree", function (e) {
+					if(!$(e.currentTarget).hasClass("jstree-loading")) {
+						$(this).addClass(s.item_h);
+					}
+				})
+				.delegate("a","mouseleave.jstree", function () {
+					$(this).removeClass(s.item_h);
+				})
+				.bind("init.jstree", $.proxy(function (e, data) { 
+						data.inst.get_container().find("> ul > li > .jstree-loading > ins").addClass("ui-icon-refresh");
+						this._themeroller(data.inst.get_container().find("> ul > li"));
+					}, this))
+				.bind("open_node.jstree create_node.jstree", $.proxy(function (e, data) { 
+						this._themeroller(data.rslt.obj);
+					}, this))
+				.bind("loaded.jstree refresh.jstree", $.proxy(function (e) {
+						this._themeroller();
+					}, this))
+				.bind("close_node.jstree", $.proxy(function (e, data) {
+						this._themeroller(data.rslt.obj);
+					}, this))
+				.bind("delete_node.jstree", $.proxy(function (e, data) {
+						this._themeroller(data.rslt.parent);
+					}, this))
+				.bind("correct_state.jstree", $.proxy(function (e, data) {
+						data.rslt.obj
+							.children("ins.jstree-icon").removeClass(s.opened + " " + s.closed + " ui-icon").end()
+							.find("> a > ins.ui-icon")
+								.filter(function() { 
+									return this.className.toString()
+										.replace(s.item_clsd,"").replace(s.item_open,"").replace(s.item_leaf,"")
+										.indexOf("ui-icon-") === -1; 
+								}).removeClass(s.item_open + " " + s.item_clsd).addClass(s.item_leaf || "jstree-no-icon");
+					}, this))
+				.bind("select_node.jstree", $.proxy(function (e, data) {
+						data.rslt.obj.children("a").addClass(s.item_a);
+					}, this))
+				.bind("deselect_node.jstree deselect_all.jstree", $.proxy(function (e, data) {
+						this.get_container()
+							.find("a." + s.item_a).removeClass(s.item_a).end()
+							.find("a.jstree-clicked").addClass(s.item_a);
+					}, this))
+				.bind("dehover_node.jstree", $.proxy(function (e, data) {
+						data.rslt.obj.children("a").removeClass(s.item_h);
+					}, this))
+				.bind("hover_node.jstree", $.proxy(function (e, data) {
+						this.get_container()
+							.find("a." + s.item_h).not(data.rslt.obj).removeClass(s.item_h);
+						data.rslt.obj.children("a").addClass(s.item_h);
+					}, this))
+				.bind("move_node.jstree", $.proxy(function (e, data) {
+						this._themeroller(data.rslt.o);
+						this._themeroller(data.rslt.op);
+					}, this));
+		},
+		__destroy : function () {
+			var s = this._get_settings().themeroller,
+				c = [ "ui-icon" ];
+			$.each(s, function (i, v) {
+				v = v.split(" ");
+				if(v.length) { c = c.concat(v); }
+			});
+			this.get_container()
+				.removeClass("ui-widget-content")
+				.find("." + c.join(", .")).removeClass(c.join(" "));
+		},
+		_fn : {
+			_themeroller : function (obj) {
+				var s = this._get_settings().themeroller;
+				obj = !obj || obj == -1 ? this.get_container_ul() : this._get_node(obj).parent();
+				obj
+					.find("li.jstree-closed")
+						.children("ins.jstree-icon").removeClass(s.opened).addClass("ui-icon " + s.closed).end()
+						.children("a").addClass(s.item)
+							.children("ins.jstree-icon").addClass("ui-icon")
+								.filter(function() { 
+									return this.className.toString()
+										.replace(s.item_clsd,"").replace(s.item_open,"").replace(s.item_leaf,"")
+										.indexOf("ui-icon-") === -1; 
+								}).removeClass(s.item_leaf + " " + s.item_open).addClass(s.item_clsd || "jstree-no-icon")
+								.end()
+							.end()
+						.end()
+					.end()
+					.find("li.jstree-open")
+						.children("ins.jstree-icon").removeClass(s.closed).addClass("ui-icon " + s.opened).end()
+						.children("a").addClass(s.item)
+							.children("ins.jstree-icon").addClass("ui-icon")
+								.filter(function() { 
+									return this.className.toString()
+										.replace(s.item_clsd,"").replace(s.item_open,"").replace(s.item_leaf,"")
+										.indexOf("ui-icon-") === -1; 
+								}).removeClass(s.item_leaf + " " + s.item_clsd).addClass(s.item_open || "jstree-no-icon")
+								.end()
+							.end()
+						.end()
+					.end()
+					.find("li.jstree-leaf")
+						.children("ins.jstree-icon").removeClass(s.closed + " ui-icon " + s.opened).end()
+						.children("a").addClass(s.item)
+							.children("ins.jstree-icon").addClass("ui-icon")
+								.filter(function() { 
+									return this.className.toString()
+										.replace(s.item_clsd,"").replace(s.item_open,"").replace(s.item_leaf,"")
+										.indexOf("ui-icon-") === -1; 
+								}).removeClass(s.item_clsd + " " + s.item_open).addClass(s.item_leaf || "jstree-no-icon");
+			}
+		},
+		defaults : {
+			"opened"	: "ui-icon-triangle-1-se",
+			"closed"	: "ui-icon-triangle-1-e",
+			"item"		: "ui-state-default",
+			"item_h"	: "ui-state-hover",
+			"item_a"	: "ui-state-active",
+			"item_open"	: "ui-icon-folder-open",
+			"item_clsd"	: "ui-icon-folder-collapsed",
+			"item_leaf"	: "ui-icon-document"
+		}
+	});
+	$(function() {
+		var css_string = '' + 
+			'.jstree-themeroller .ui-icon { overflow:visible; } ' + 
+			'.jstree-themeroller a { padding:0 2px; } ' + 
+			'.jstree-themeroller .jstree-no-icon { display:none; }';
+		$.vakata.css.add_sheet({ str : css_string, title : "jstree" });
+	});
+})(jQuery);
+//*/
+
+/* 
+ * jsTree unique plugin
+ * Forces different names amongst siblings (still a bit experimental)
+ * NOTE: does not check language versions (it will not be possible to have nodes with the same title, even in different languages)
+ */
+(function ($) {
+	$.jstree.plugin("unique", {
+		__init : function () {
+			this.get_container()
+				.bind("before.jstree", $.proxy(function (e, data) { 
+						var nms = [], res = true, p, t;
+						if(data.func == "move_node") {
+							// obj, ref, position, is_copy, is_prepared, skip_check
+							if(data.args[4] === true) {
+								if(data.args[0].o && data.args[0].o.length) {
+									data.args[0].o.children("a").each(function () { nms.push($(this).text().replace(/^\s+/g,"")); });
+									res = this._check_unique(nms, data.args[0].np.find("> ul > li").not(data.args[0].o), "move_node");
+								}
+							}
+						}
+						if(data.func == "create_node") {
+							// obj, position, js, callback, is_loaded
+							if(data.args[4] || this._is_loaded(data.args[0])) {
+								p = this._get_node(data.args[0]);
+								if(data.args[1] && (data.args[1] === "before" || data.args[1] === "after")) {
+									p = this._get_parent(data.args[0]);
+									if(!p || p === -1) { p = this.get_container(); }
+								}
+								if(typeof data.args[2] === "string") { nms.push(data.args[2]); }
+								else if(!data.args[2] || !data.args[2].data) { nms.push(this._get_string("new_node")); }
+								else { nms.push(data.args[2].data); }
+								res = this._check_unique(nms, p.find("> ul > li"), "create_node");
+							}
+						}
+						if(data.func == "rename_node") {
+							// obj, val
+							nms.push(data.args[1]);
+							t = this._get_node(data.args[0]);
+							p = this._get_parent(t);
+							if(!p || p === -1) { p = this.get_container(); }
+							res = this._check_unique(nms, p.find("> ul > li").not(t), "rename_node");
+						}
+						if(!res) {
+							e.stopPropagation();
+							return false;
+						}
+					}, this));
+		},
+		defaults : { 
+			error_callback : $.noop
+		},
+		_fn : { 
+			_check_unique : function (nms, p, func) {
+				var cnms = [];
+				p.children("a").each(function () { cnms.push($(this).text().replace(/^\s+/g,"")); });
+				if(!cnms.length || !nms.length) { return true; }
+				cnms = cnms.sort().join(",,").replace(/(,|^)([^,]+)(,,\2)+(,|$)/g,"$1$2$4").replace(/,,+/g,",").replace(/,$/,"").split(",");
+				if((cnms.length + nms.length) != cnms.concat(nms).sort().join(",,").replace(/(,|^)([^,]+)(,,\2)+(,|$)/g,"$1$2$4").replace(/,,+/g,",").replace(/,$/,"").split(",").length) {
+					this._get_settings().unique.error_callback.call(null, nms, p, func);
+					return false;
+				}
+				return true;
+			},
+			check_move : function () {
+				if(!this.__call_old()) { return false; }
+				var p = this._get_move(), nms = [];
+				if(p.o && p.o.length) {
+					p.o.children("a").each(function () { nms.push($(this).text().replace(/^\s+/g,"")); });
+					return this._check_unique(nms, p.np.find("> ul > li").not(p.o), "check_move");
+				}
+				return true;
+			}
+		}
+	});
+})(jQuery);
+//*/
+
+/*
+ * jsTree wholerow plugin
+ * Makes select and hover work on the entire width of the node
+ * MAY BE HEAVY IN LARGE DOM
+ */
+(function ($) {
+	$.jstree.plugin("wholerow", {
+		__init : function () {
+			if(!this.data.ui) { throw "jsTree wholerow: jsTree UI plugin not included."; }
+			this.data.wholerow.html = false;
+			this.data.wholerow.to = false;
+			this.get_container()
+				.bind("init.jstree", $.proxy(function (e, data) { 
+						this._get_settings().core.animation = 0;
+					}, this))
+				.bind("open_node.jstree create_node.jstree clean_node.jstree loaded.jstree", $.proxy(function (e, data) { 
+						this._prepare_wholerow_span( data && data.rslt && data.rslt.obj ? data.rslt.obj : -1 );
+					}, this))
+				.bind("search.jstree clear_search.jstree reopen.jstree after_open.jstree after_close.jstree create_node.jstree delete_node.jstree clean_node.jstree", $.proxy(function (e, data) { 
+						if(this.data.to) { clearTimeout(this.data.to); }
+						this.data.to = setTimeout( (function (t, o) { return function() { t._prepare_wholerow_ul(o); }; })(this,  data && data.rslt && data.rslt.obj ? data.rslt.obj : -1), 0);
+					}, this))
+				.bind("deselect_all.jstree", $.proxy(function (e, data) { 
+						this.get_container().find(" > .jstree-wholerow .jstree-clicked").removeClass("jstree-clicked " + (this.data.themeroller ? this._get_settings().themeroller.item_a : "" ));
+					}, this))
+				.bind("select_node.jstree deselect_node.jstree ", $.proxy(function (e, data) { 
+						data.rslt.obj.each(function () { 
+							var ref = data.inst.get_container().find(" > .jstree-wholerow li:visible:eq(" + ( parseInt((($(this).offset().top - data.inst.get_container().offset().top + data.inst.get_container()[0].scrollTop) / data.inst.data.core.li_height),10)) + ")");
+							// ref.children("a")[e.type === "select_node" ? "addClass" : "removeClass"]("jstree-clicked");
+							ref.children("a").attr("class",data.rslt.obj.children("a").attr("class"));
+						});
+					}, this))
+				.bind("hover_node.jstree dehover_node.jstree", $.proxy(function (e, data) { 
+						this.get_container().find(" > .jstree-wholerow .jstree-hovered").removeClass("jstree-hovered " + (this.data.themeroller ? this._get_settings().themeroller.item_h : "" ));
+						if(e.type === "hover_node") {
+							var ref = this.get_container().find(" > .jstree-wholerow li:visible:eq(" + ( parseInt(((data.rslt.obj.offset().top - this.get_container().offset().top + this.get_container()[0].scrollTop) / this.data.core.li_height),10)) + ")");
+							// ref.children("a").addClass("jstree-hovered");
+							ref.children("a").attr("class",data.rslt.obj.children(".jstree-hovered").attr("class"));
+						}
+					}, this))
+				.delegate(".jstree-wholerow-span, ins.jstree-icon, li", "click.jstree", function (e) {
+						var n = $(e.currentTarget);
+						if(e.target.tagName === "A" || (e.target.tagName === "INS" && n.closest("li").is(".jstree-open, .jstree-closed"))) { return; }
+						n.closest("li").children("a:visible:eq(0)").click();
+						e.stopImmediatePropagation();
+					})
+				.delegate("li", "mouseover.jstree", $.proxy(function (e) {
+						e.stopImmediatePropagation();
+						if($(e.currentTarget).children(".jstree-hovered, .jstree-clicked").length) { return false; }
+						this.hover_node(e.currentTarget);
+						return false;
+					}, this))
+				.delegate("li", "mouseleave.jstree", $.proxy(function (e) {
+						if($(e.currentTarget).children("a").hasClass("jstree-hovered").length) { return; }
+						this.dehover_node(e.currentTarget);
+					}, this));
+			if(is_ie7 || is_ie6) {
+				$.vakata.css.add_sheet({ str : ".jstree-" + this.get_index() + " { position:relative; } ", title : "jstree" });
+			}
+		},
+		defaults : {
+		},
+		__destroy : function () {
+			this.get_container().children(".jstree-wholerow").remove();
+			this.get_container().find(".jstree-wholerow-span").remove();
+		},
+		_fn : {
+			_prepare_wholerow_span : function (obj) {
+				obj = !obj || obj == -1 ? this.get_container().find("> ul > li") : this._get_node(obj);
+				if(obj === false) { return; } // added for removing root nodes
+				obj.each(function () {
+					$(this).find("li").andSelf().each(function () {
+						var $t = $(this);
+						if($t.children(".jstree-wholerow-span").length) { return true; }
+						$t.prepend("<span class='jstree-wholerow-span' style='width:" + ($t.parentsUntil(".jstree","li").length * 18) + "px;'> </span>");
+					});
+				});
+			},
+			_prepare_wholerow_ul : function () {
+				var o = this.get_container().children("ul").eq(0), h = o.html();
+				o.addClass("jstree-wholerow-real");
+				if(this.data.wholerow.last_html !== h) {
+					this.data.wholerow.last_html = h;
+					this.get_container().children(".jstree-wholerow").remove();
+					this.get_container().append(
+						o.clone().removeClass("jstree-wholerow-real")
+							.wrapAll("<div class='jstree-wholerow' />").parent()
+							.width(o.parent()[0].scrollWidth)
+							.css("top", (o.height() + ( is_ie7 ? 5 : 0)) * -1 )
+							.find("li[id]").each(function () { this.removeAttribute("id"); }).end()
+					);
+				}
+			}
+		}
+	});
+	$(function() {
+		var css_string = '' + 
+			'.jstree .jstree-wholerow-real { position:relative; z-index:1; } ' + 
+			'.jstree .jstree-wholerow-real li { cursor:pointer; } ' + 
+			'.jstree .jstree-wholerow-real a { border-left-color:transparent !important; border-right-color:transparent !important; } ' + 
+			'.jstree .jstree-wholerow { position:relative; z-index:0; height:0; } ' + 
+			'.jstree .jstree-wholerow ul, .jstree .jstree-wholerow li { width:100%; } ' + 
+			'.jstree .jstree-wholerow, .jstree .jstree-wholerow ul, .jstree .jstree-wholerow li, .jstree .jstree-wholerow a { margin:0 !important; padding:0 !important; } ' + 
+			'.jstree .jstree-wholerow, .jstree .jstree-wholerow ul, .jstree .jstree-wholerow li { background:transparent !important; }' + 
+			'.jstree .jstree-wholerow ins, .jstree .jstree-wholerow span, .jstree .jstree-wholerow input { display:none !important; }' + 
+			'.jstree .jstree-wholerow a, .jstree .jstree-wholerow a:hover { text-indent:-9999px; !important; width:100%; padding:0 !important; border-right-width:0px !important; border-left-width:0px !important; } ' + 
+			'.jstree .jstree-wholerow-span { position:absolute; left:0; margin:0px; padding:0; height:18px; border-width:0; padding:0; z-index:0; }';
+		if(is_ff2) {
+			css_string += '' + 
+				'.jstree .jstree-wholerow a { display:block; height:18px; margin:0; padding:0; border:0; } ' + 
+				'.jstree .jstree-wholerow-real a { border-color:transparent !important; } ';
+		}
+		if(is_ie7 || is_ie6) {
+			css_string += '' + 
+				'.jstree .jstree-wholerow, .jstree .jstree-wholerow li, .jstree .jstree-wholerow ul, .jstree .jstree-wholerow a { margin:0; padding:0; line-height:18px; } ' + 
+				'.jstree .jstree-wholerow a { display:block; height:18px; line-height:18px; overflow:hidden; } ';
+		}
+		$.vakata.css.add_sheet({ str : css_string, title : "jstree" });
+	});
+})(jQuery);
+//*/
+
+/*
+* jsTree model plugin
+* This plugin gets jstree to use a class model to retrieve data, creating great dynamism
+*/
+(function ($) {
+	var nodeInterface = ["getChildren","getChildrenCount","getAttr","getName","getProps"],
+		validateInterface = function(obj, inter) {
+			var valid = true;
+			obj = obj || {};
+			inter = [].concat(inter);
+			$.each(inter, function (i, v) {
+				if(!$.isFunction(obj[v])) { valid = false; return false; }
+			});
+			return valid;
+		};
+	$.jstree.plugin("model", {
+		__init : function () {
+			if(!this.data.json_data) { throw "jsTree model: jsTree json_data plugin not included."; }
+			this._get_settings().json_data.data = function (n, b) {
+				var obj = (n == -1) ? this._get_settings().model.object : n.data("jstree_model");
+				if(!validateInterface(obj, nodeInterface)) { return b.call(null, false); }
+				if(this._get_settings().model.async) {
+					obj.getChildren($.proxy(function (data) {
+						this.model_done(data, b);
+					}, this));
+				}
+				else {
+					this.model_done(obj.getChildren(), b);
+				}
+			};
+		},
+		defaults : {
+			object : false,
+			id_prefix : false,
+			async : false
+		},
+		_fn : {
+			model_done : function (data, callback) {
+				var ret = [], 
+					s = this._get_settings(),
+					_this = this;
+
+				if(!$.isArray(data)) { data = [data]; }
+				$.each(data, function (i, nd) {
+					var r = nd.getProps() || {};
+					r.attr = nd.getAttr() || {};
+					if(nd.getChildrenCount()) { r.state = "closed"; }
+					r.data = nd.getName();
+					if(!$.isArray(r.data)) { r.data = [r.data]; }
+					if(_this.data.types && $.isFunction(nd.getType)) {
+						r.attr[s.types.type_attr] = nd.getType();
+					}
+					if(r.attr.id && s.model.id_prefix) { r.attr.id = s.model.id_prefix + r.attr.id; }
+					if(!r.metadata) { r.metadata = { }; }
+					r.metadata.jstree_model = nd;
+					ret.push(r);
+				});
+				callback.call(null, ret);
+			}
+		}
+	});
+})(jQuery);
+//*/
+
+})();
\ No newline at end of file
-- 
1.7.3.4




More information about the vlc-devel mailing list