ext-all.css 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845
  1. /*!
  2. * Ext JS Library 3.4.0
  3. * Copyright(c) 2006-2011 Sencha Inc.
  4. * licensing@sencha.com
  5. * http://www.sencha.com/license
  6. */
  7. html,
  8. body,
  9. div,
  10. dl,
  11. dt,
  12. dd,
  13. ul,
  14. ol,
  15. li,
  16. h1,
  17. h2,
  18. h3,
  19. h4,
  20. h5,
  21. h6,
  22. pre,
  23. form,
  24. fieldset,
  25. input,
  26. p,
  27. blockquote,
  28. th,
  29. td {
  30. margin: 0;
  31. padding: 0;
  32. }
  33. img,
  34. body,
  35. html {
  36. border: 0;
  37. }
  38. address,
  39. caption,
  40. cite,
  41. code,
  42. dfn,
  43. em,
  44. strong,
  45. th,
  46. var {
  47. font-style: normal;
  48. font-weight: normal;
  49. }
  50. ol,
  51. ul {
  52. list-style: none;
  53. }
  54. caption,
  55. th {
  56. text-align: left;
  57. }
  58. h1,
  59. h2,
  60. h3,
  61. h4,
  62. h5,
  63. h6 {
  64. font-size: 100%;
  65. }
  66. q:before,
  67. q:after {
  68. content: "";
  69. }
  70. .ext-forced-border-box,
  71. .ext-forced-border-box * {
  72. -moz-box-sizing: border-box;
  73. -ms-box-sizing: border-box;
  74. -webkit-box-sizing: border-box;
  75. } /*!
  76. * Ext JS Library 3.4.0
  77. * Copyright(c) 2006-2011 Sencha Inc.
  78. * licensing@sencha.com
  79. * http://www.sencha.com/license
  80. */
  81. .ext-el-mask {
  82. z-index: 100;
  83. position: absolute;
  84. top: 0;
  85. left: 0;
  86. -moz-opacity: 0.5;
  87. opacity: 0.5;
  88. filter: alpha(opacity=50);
  89. width: 100%;
  90. height: 100%;
  91. zoom: 1;
  92. }
  93. .ext-el-mask-msg {
  94. z-index: 20001;
  95. position: absolute;
  96. top: 0;
  97. left: 0;
  98. border: 1px solid;
  99. background: repeat-x 0 -16px;
  100. padding: 2px;
  101. }
  102. .ext-el-mask-msg div {
  103. padding: 5px 10px 5px 10px;
  104. border: 1px solid;
  105. cursor: wait;
  106. }
  107. .ext-shim {
  108. position: absolute;
  109. visibility: hidden;
  110. left: 0;
  111. top: 0;
  112. overflow: hidden;
  113. }
  114. .ext-ie .ext-shim {
  115. filter: alpha(opacity=0);
  116. }
  117. .ext-ie6 .ext-shim {
  118. margin-left: 5px;
  119. margin-top: 3px;
  120. }
  121. .x-mask-loading div {
  122. padding: 5px 10px 5px 25px;
  123. background: no-repeat 5px 5px;
  124. line-height: 16px;
  125. }
  126. .x-hidden,
  127. .x-hide-offsets {
  128. position: absolute !important;
  129. left: -10000px;
  130. top: -10000px;
  131. visibility: hidden;
  132. }
  133. .x-hide-display {
  134. display: none !important;
  135. }
  136. .x-hide-nosize,
  137. .x-hide-nosize * {
  138. height: 0px !important;
  139. width: 0px !important;
  140. visibility: hidden !important;
  141. border: none !important;
  142. zoom: 1;
  143. }
  144. .x-hide-visibility {
  145. visibility: hidden !important;
  146. }
  147. .x-masked {
  148. overflow: hidden !important;
  149. }
  150. .x-masked-relative {
  151. position: relative !important;
  152. }
  153. .x-masked select,
  154. .x-masked object,
  155. .x-masked embed {
  156. visibility: hidden;
  157. }
  158. .x-layer {
  159. visibility: hidden;
  160. }
  161. .x-unselectable,
  162. .x-unselectable * {
  163. -moz-user-select: none;
  164. -khtml-user-select: none;
  165. -webkit-user-select: ignore;
  166. }
  167. .x-repaint {
  168. zoom: 1;
  169. background-color: transparent;
  170. -moz-outline: none;
  171. outline: none;
  172. }
  173. .x-item-disabled {
  174. cursor: default;
  175. opacity: 0.6;
  176. -moz-opacity: 0.6;
  177. filter: alpha(opacity=60);
  178. }
  179. .x-item-disabled * {
  180. cursor: default !important;
  181. }
  182. .x-form-radio-group .x-item-disabled {
  183. filter: none;
  184. }
  185. .x-splitbar-proxy {
  186. position: absolute;
  187. visibility: hidden;
  188. z-index: 20001;
  189. zoom: 1;
  190. line-height: 1px;
  191. font-size: 1px;
  192. overflow: hidden;
  193. }
  194. .x-splitbar-h,
  195. .x-splitbar-proxy-h {
  196. cursor: e-resize;
  197. cursor: col-resize;
  198. }
  199. .x-splitbar-v,
  200. .x-splitbar-proxy-v {
  201. cursor: s-resize;
  202. cursor: row-resize;
  203. }
  204. .x-color-palette {
  205. width: 150px;
  206. height: 92px;
  207. cursor: pointer;
  208. }
  209. .x-color-palette a {
  210. border: 1px solid;
  211. float: left;
  212. padding: 2px;
  213. text-decoration: none;
  214. -moz-outline: 0 none;
  215. outline: 0 none;
  216. cursor: pointer;
  217. }
  218. .x-color-palette a:hover,
  219. .x-color-palette a.x-color-palette-sel {
  220. border: 1px solid;
  221. }
  222. .x-color-palette em {
  223. display: block;
  224. border: 1px solid;
  225. }
  226. .x-color-palette em span {
  227. cursor: pointer;
  228. display: block;
  229. height: 10px;
  230. line-height: 10px;
  231. width: 10px;
  232. }
  233. .x-ie-shadow {
  234. display: none;
  235. position: absolute;
  236. overflow: hidden;
  237. left: 0;
  238. top: 0;
  239. zoom: 1;
  240. }
  241. .x-shadow {
  242. display: none;
  243. position: absolute;
  244. overflow: hidden;
  245. left: 0;
  246. top: 0;
  247. }
  248. .x-shadow * {
  249. overflow: hidden;
  250. }
  251. .x-shadow * {
  252. padding: 0;
  253. border: 0;
  254. margin: 0;
  255. clear: none;
  256. zoom: 1;
  257. }
  258. .x-shadow .xstc,
  259. .x-shadow .xsbc {
  260. height: 6px;
  261. float: left;
  262. }
  263. .x-shadow .xstl,
  264. .x-shadow .xstr,
  265. .x-shadow .xsbl,
  266. .x-shadow .xsbr {
  267. width: 6px;
  268. height: 6px;
  269. float: left;
  270. }
  271. .x-shadow .xsc {
  272. width: 100%;
  273. }
  274. .x-shadow .xsml,
  275. .x-shadow .xsmr {
  276. width: 6px;
  277. float: left;
  278. height: 100%;
  279. }
  280. .x-shadow .xsmc {
  281. float: left;
  282. height: 100%;
  283. background-color: transparent;
  284. }
  285. .x-shadow .xst,
  286. .x-shadow .xsb {
  287. height: 6px;
  288. overflow: hidden;
  289. width: 100%;
  290. }
  291. .x-shadow .xsml {
  292. background: transparent repeat-y 0 0;
  293. }
  294. .x-shadow .xsmr {
  295. background: transparent repeat-y -6px 0;
  296. }
  297. .x-shadow .xstl {
  298. background: transparent no-repeat 0 0;
  299. }
  300. .x-shadow .xstc {
  301. background: transparent repeat-x 0 -30px;
  302. }
  303. .x-shadow .xstr {
  304. background: transparent repeat-x 0 -18px;
  305. }
  306. .x-shadow .xsbl {
  307. background: transparent no-repeat 0 -12px;
  308. }
  309. .x-shadow .xsbc {
  310. background: transparent repeat-x 0 -36px;
  311. }
  312. .x-shadow .xsbr {
  313. background: transparent repeat-x 0 -6px;
  314. }
  315. .loading-indicator {
  316. background: no-repeat left;
  317. padding-left: 20px;
  318. line-height: 16px;
  319. margin: 3px;
  320. }
  321. .x-text-resize {
  322. position: absolute;
  323. left: -1000px;
  324. top: -1000px;
  325. visibility: hidden;
  326. zoom: 1;
  327. }
  328. .x-drag-overlay {
  329. width: 100%;
  330. height: 100%;
  331. display: none;
  332. position: absolute;
  333. left: 0;
  334. top: 0;
  335. background-image: url(../images/default/s.gif);
  336. z-index: 20000;
  337. }
  338. .x-clear {
  339. clear: both;
  340. height: 0;
  341. overflow: hidden;
  342. line-height: 0;
  343. font-size: 0;
  344. }
  345. .x-spotlight {
  346. z-index: 8999;
  347. position: absolute;
  348. top: 0;
  349. left: 0;
  350. -moz-opacity: 0.5;
  351. opacity: 0.5;
  352. filter: alpha(opacity=50);
  353. width: 0;
  354. height: 0;
  355. zoom: 1;
  356. }
  357. #x-history-frame {
  358. position: absolute;
  359. top: -1px;
  360. left: 0;
  361. width: 1px;
  362. height: 1px;
  363. visibility: hidden;
  364. }
  365. #x-history-field {
  366. position: absolute;
  367. top: 0;
  368. left: -1px;
  369. width: 1px;
  370. height: 1px;
  371. visibility: hidden;
  372. } /*!
  373. * Ext JS Library 3.4.0
  374. * Copyright(c) 2006-2011 Sencha Inc.
  375. * licensing@sencha.com
  376. * http://www.sencha.com/license
  377. */
  378. .x-tab-panel {
  379. overflow: hidden;
  380. }
  381. .x-tab-panel-header,
  382. .x-tab-panel-footer {
  383. border: 1px solid;
  384. overflow: hidden;
  385. zoom: 1;
  386. }
  387. .x-tab-panel-header {
  388. border: 1px solid;
  389. padding-bottom: 2px;
  390. }
  391. .x-tab-panel-footer {
  392. border: 1px solid;
  393. padding-top: 2px;
  394. }
  395. .x-tab-strip-wrap {
  396. width: 100%;
  397. overflow: hidden;
  398. position: relative;
  399. zoom: 1;
  400. }
  401. ul.x-tab-strip {
  402. display: block;
  403. width: 5000px;
  404. zoom: 1;
  405. }
  406. ul.x-tab-strip-top {
  407. padding-top: 1px;
  408. background: repeat-x bottom;
  409. border-bottom: 1px solid;
  410. }
  411. ul.x-tab-strip-bottom {
  412. padding-bottom: 1px;
  413. background: repeat-x top;
  414. border-top: 1px solid;
  415. border-bottom: 0 none;
  416. }
  417. .x-tab-panel-header-plain .x-tab-strip-top {
  418. background: transparent !important;
  419. padding-top: 0 !important;
  420. }
  421. .x-tab-panel-header-plain {
  422. background: transparent !important;
  423. border-width: 0 !important;
  424. padding-bottom: 0 !important;
  425. }
  426. .x-tab-panel-header-plain .x-tab-strip-spacer,
  427. .x-tab-panel-footer-plain .x-tab-strip-spacer {
  428. border: 1px solid;
  429. height: 2px;
  430. font-size: 1px;
  431. line-height: 1px;
  432. }
  433. .x-tab-panel-header-plain .x-tab-strip-spacer {
  434. border-top: 0 none;
  435. }
  436. .x-tab-panel-footer-plain .x-tab-strip-spacer {
  437. border-bottom: 0 none;
  438. }
  439. .x-tab-panel-footer-plain .x-tab-strip-bottom {
  440. background: transparent !important;
  441. padding-bottom: 0 !important;
  442. }
  443. .x-tab-panel-footer-plain {
  444. background: transparent !important;
  445. border-width: 0 !important;
  446. padding-top: 0 !important;
  447. }
  448. .ext-border-box .x-tab-panel-header-plain .x-tab-strip-spacer,
  449. .ext-border-box .x-tab-panel-footer-plain .x-tab-strip-spacer {
  450. height: 3px;
  451. }
  452. ul.x-tab-strip li {
  453. float: left;
  454. margin-left: 2px;
  455. }
  456. ul.x-tab-strip li.x-tab-edge {
  457. float: left;
  458. margin: 0 !important;
  459. padding: 0 !important;
  460. border: 0 none !important;
  461. font-size: 1px !important;
  462. line-height: 1px !important;
  463. overflow: hidden;
  464. zoom: 1;
  465. background: transparent !important;
  466. width: 1px;
  467. }
  468. .x-tab-strip a,
  469. .x-tab-strip span,
  470. .x-tab-strip em {
  471. display: block;
  472. }
  473. .x-tab-strip a {
  474. text-decoration: none !important;
  475. -moz-outline: none;
  476. outline: none;
  477. cursor: pointer;
  478. }
  479. .x-tab-strip-inner {
  480. overflow: hidden;
  481. text-overflow: ellipsis;
  482. }
  483. .x-tab-strip span.x-tab-strip-text {
  484. white-space: nowrap;
  485. cursor: pointer;
  486. padding: 4px 0;
  487. }
  488. .x-tab-strip-top .x-tab-with-icon .x-tab-right {
  489. padding-left: 6px;
  490. }
  491. .x-tab-strip .x-tab-with-icon span.x-tab-strip-text {
  492. padding-left: 20px;
  493. background-position: 0 3px;
  494. background-repeat: no-repeat;
  495. }
  496. .x-tab-strip-active,
  497. .x-tab-strip-active a.x-tab-right {
  498. cursor: default;
  499. }
  500. .x-tab-strip-active span.x-tab-strip-text {
  501. cursor: default;
  502. }
  503. .x-tab-strip-disabled .x-tabs-text {
  504. cursor: default;
  505. }
  506. .x-tab-panel-body {
  507. overflow: hidden;
  508. }
  509. .x-tab-panel-bwrap {
  510. overflow: hidden;
  511. }
  512. .ext-ie .x-tab-strip .x-tab-right {
  513. position: relative;
  514. }
  515. .x-tab-strip-top .x-tab-strip-active .x-tab-right {
  516. margin-bottom: -1px;
  517. }
  518. .ext-ie8 .x-tab-strip li {
  519. position: relative;
  520. }
  521. .ext-border-box .ext-ie8 .x-tab-strip-top .x-tab-right {
  522. top: 1px;
  523. }
  524. .ext-ie8 .x-tab-strip-top {
  525. padding-top: 1;
  526. }
  527. .ext-border-box .ext-ie8 .x-tab-strip-top {
  528. padding-top: 0;
  529. }
  530. .ext-ie8 .x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
  531. top: 3px;
  532. }
  533. .ext-border-box
  534. .ext-ie8
  535. .x-tab-strip
  536. .x-tab-strip-closable
  537. a.x-tab-strip-close {
  538. top: 4px;
  539. }
  540. .ext-ie8 .x-tab-strip-bottom .x-tab-right {
  541. top: 0;
  542. }
  543. .x-tab-strip-top .x-tab-strip-active .x-tab-right span.x-tab-strip-text {
  544. padding-bottom: 5px;
  545. }
  546. .x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
  547. margin-top: -1px;
  548. }
  549. .x-tab-strip-bottom .x-tab-strip-active .x-tab-right span.x-tab-strip-text {
  550. padding-top: 5px;
  551. }
  552. .x-tab-strip-top .x-tab-right {
  553. background: transparent no-repeat 0 -51px;
  554. padding-left: 10px;
  555. }
  556. .x-tab-strip-top .x-tab-left {
  557. background: transparent no-repeat right -351px;
  558. padding-right: 10px;
  559. }
  560. .x-tab-strip-top .x-tab-strip-inner {
  561. background: transparent repeat-x 0 -201px;
  562. }
  563. .x-tab-strip-top .x-tab-strip-over .x-tab-right {
  564. background-position: 0 -101px;
  565. }
  566. .x-tab-strip-top .x-tab-strip-over .x-tab-left {
  567. background-position: right -401px;
  568. }
  569. .x-tab-strip-top .x-tab-strip-over .x-tab-strip-inner {
  570. background-position: 0 -251px;
  571. }
  572. .x-tab-strip-top .x-tab-strip-active .x-tab-right {
  573. background-position: 0 0;
  574. }
  575. .x-tab-strip-top .x-tab-strip-active .x-tab-left {
  576. background-position: right -301px;
  577. }
  578. .x-tab-strip-top .x-tab-strip-active .x-tab-strip-inner {
  579. background-position: 0 -151px;
  580. }
  581. .x-tab-strip-bottom .x-tab-right {
  582. background: no-repeat bottom right;
  583. }
  584. .x-tab-strip-bottom .x-tab-left {
  585. background: no-repeat bottom left;
  586. }
  587. .x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
  588. background: no-repeat bottom right;
  589. }
  590. .x-tab-strip-bottom .x-tab-strip-active .x-tab-left {
  591. background: no-repeat bottom left;
  592. }
  593. .x-tab-strip-bottom .x-tab-left {
  594. margin-right: 3px;
  595. padding: 0 10px;
  596. }
  597. .x-tab-strip-bottom .x-tab-right {
  598. padding: 0;
  599. }
  600. .x-tab-strip .x-tab-strip-close {
  601. display: none;
  602. }
  603. .x-tab-strip-closable {
  604. position: relative;
  605. }
  606. .x-tab-strip-closable .x-tab-left {
  607. padding-right: 19px;
  608. }
  609. .x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
  610. opacity: 0.6;
  611. -moz-opacity: 0.6;
  612. background-repeat: no-repeat;
  613. display: block;
  614. width: 11px;
  615. height: 11px;
  616. position: absolute;
  617. top: 3px;
  618. right: 3px;
  619. cursor: pointer;
  620. z-index: 2;
  621. }
  622. .x-tab-strip .x-tab-strip-active a.x-tab-strip-close {
  623. opacity: 0.8;
  624. -moz-opacity: 0.8;
  625. }
  626. .x-tab-strip .x-tab-strip-closable a.x-tab-strip-close:hover {
  627. opacity: 1;
  628. -moz-opacity: 1;
  629. }
  630. .x-tab-panel-body {
  631. border: 1px solid;
  632. }
  633. .x-tab-panel-body-top {
  634. border-top: 0 none;
  635. }
  636. .x-tab-panel-body-bottom {
  637. border-bottom: 0 none;
  638. }
  639. .x-tab-scroller-left {
  640. background: transparent no-repeat -18px 0;
  641. border-bottom: 1px solid;
  642. width: 18px;
  643. position: absolute;
  644. left: 0;
  645. top: 0;
  646. z-index: 10;
  647. cursor: pointer;
  648. }
  649. .x-tab-scroller-left-over {
  650. background-position: 0 0;
  651. }
  652. .x-tab-scroller-left-disabled {
  653. background-position: -18px 0;
  654. opacity: 0.5;
  655. -moz-opacity: 0.5;
  656. filter: alpha(opacity=50);
  657. cursor: default;
  658. }
  659. .x-tab-scroller-right {
  660. background: transparent no-repeat 0 0;
  661. border-bottom: 1px solid;
  662. width: 18px;
  663. position: absolute;
  664. right: 0;
  665. top: 0;
  666. z-index: 10;
  667. cursor: pointer;
  668. }
  669. .x-tab-scroller-right-over {
  670. background-position: -18px 0;
  671. }
  672. .x-tab-scroller-right-disabled {
  673. background-position: 0 0;
  674. opacity: 0.5;
  675. -moz-opacity: 0.5;
  676. filter: alpha(opacity=50);
  677. cursor: default;
  678. }
  679. .x-tab-scrolling-bottom .x-tab-scroller-left,
  680. .x-tab-scrolling-bottom .x-tab-scroller-right {
  681. margin-top: 1px;
  682. }
  683. .x-tab-scrolling .x-tab-strip-wrap {
  684. margin-left: 18px;
  685. margin-right: 18px;
  686. }
  687. .x-tab-scrolling {
  688. position: relative;
  689. }
  690. .x-tab-panel-bbar .x-toolbar {
  691. border: 1px solid;
  692. border-top: 0 none;
  693. overflow: hidden;
  694. padding: 2px;
  695. }
  696. .x-tab-panel-tbar .x-toolbar {
  697. border: 1px solid;
  698. border-top: 0 none;
  699. overflow: hidden;
  700. padding: 2px;
  701. } /*!
  702. * Ext JS Library 3.4.0
  703. * Copyright(c) 2006-2011 Sencha Inc.
  704. * licensing@sencha.com
  705. * http://www.sencha.com/license
  706. */
  707. .x-form-field {
  708. margin: 0 0 0 0;
  709. }
  710. .ext-webkit *:focus {
  711. outline: none !important;
  712. }
  713. .x-form-text,
  714. textarea.x-form-field {
  715. padding: 1px 3px;
  716. background: repeat-x 0 0;
  717. border: 1px solid;
  718. }
  719. textarea.x-form-field {
  720. padding: 2px 3px;
  721. }
  722. .x-form-text,
  723. .ext-ie .x-form-file {
  724. height: 22px;
  725. line-height: 18px;
  726. vertical-align: middle;
  727. }
  728. .ext-ie6 .x-form-text,
  729. .ext-ie7 .x-form-text {
  730. margin: -1px 0;
  731. height: 22px;
  732. line-height: 18px;
  733. }
  734. .x-quirks .ext-ie9 .x-form-text {
  735. height: 22px;
  736. padding-top: 3px;
  737. padding-bottom: 0px;
  738. }
  739. .x-quirks .ext-ie9 .x-input-wrapper .x-form-text,
  740. .x-quirks .ext-ie9 .x-form-field-trigger-wrap .x-form-text {
  741. margin-top: -1px;
  742. margin-bottom: -1px;
  743. }
  744. .x-quirks .ext-ie9 .x-input-wrapper .x-form-element {
  745. margin-bottom: -1px;
  746. }
  747. .ext-ie6 .x-form-field-wrap .x-form-file-btn,
  748. .ext-ie7 .x-form-field-wrap .x-form-file-btn {
  749. top: -1px;
  750. }
  751. .ext-ie6 textarea.x-form-field,
  752. .ext-ie7 textarea.x-form-field {
  753. margin: -1px 0;
  754. }
  755. .ext-strict .x-form-text {
  756. height: 18px;
  757. }
  758. .ext-safari.ext-mac textarea.x-form-field {
  759. margin-bottom: -2px;
  760. }
  761. .ext-ie6 .x-form-composite .x-form-text.x-box-item,
  762. .ext-ie7 .x-form-composite .x-form-text.x-box-item {
  763. margin: 0 !important;
  764. }
  765. textarea {
  766. resize: none;
  767. }
  768. .x-form-select-one {
  769. height: 20px;
  770. line-height: 18px;
  771. vertical-align: middle;
  772. border: 1px solid;
  773. }
  774. .x-form-check-wrap {
  775. line-height: 18px;
  776. height: auto;
  777. }
  778. .ext-ie .x-form-check-wrap input {
  779. width: 15px;
  780. height: 15px;
  781. }
  782. .x-form-check-wrap input {
  783. vertical-align: bottom;
  784. }
  785. .x-editor .x-form-check-wrap {
  786. padding: 3px;
  787. }
  788. .x-editor .x-form-checkbox {
  789. height: 13px;
  790. }
  791. .x-form-check-group-label {
  792. border-bottom: 1px solid;
  793. margin-bottom: 5px;
  794. padding-left: 3px !important;
  795. float: none !important;
  796. }
  797. .x-form-field-wrap .x-form-trigger {
  798. width: 17px;
  799. height: 21px;
  800. border: 0;
  801. background: transparent no-repeat 0 0;
  802. cursor: pointer;
  803. border-bottom: 1px solid;
  804. position: absolute;
  805. top: 0;
  806. }
  807. .x-form-field-wrap .x-form-date-trigger,
  808. .x-form-field-wrap .x-form-clear-trigger,
  809. .x-form-field-wrap .x-form-search-trigger {
  810. cursor: pointer;
  811. }
  812. .x-form-field-wrap .x-form-twin-triggers .x-form-trigger {
  813. position: static;
  814. top: auto;
  815. vertical-align: top;
  816. }
  817. .x-form-field-wrap {
  818. position: relative;
  819. left: 0;
  820. top: 0;
  821. text-align: left;
  822. zoom: 1;
  823. white-space: nowrap;
  824. }
  825. .ext-strict
  826. .ext-ie8
  827. .x-toolbar-cell
  828. .x-form-field-trigger-wrap
  829. .x-form-trigger {
  830. right: 0;
  831. }
  832. .x-form-field-wrap .x-form-trigger-over {
  833. background-position: -17px 0;
  834. }
  835. .x-form-field-wrap .x-form-trigger-click {
  836. background-position: -34px 0;
  837. }
  838. .x-trigger-wrap-focus .x-form-trigger {
  839. background-position: -51px 0;
  840. }
  841. .x-trigger-wrap-focus .x-form-trigger-over {
  842. background-position: -68px 0;
  843. }
  844. .x-trigger-wrap-focus .x-form-trigger-click {
  845. background-position: -85px 0;
  846. }
  847. .x-trigger-wrap-focus .x-form-trigger {
  848. border-bottom: 1px solid;
  849. }
  850. .x-item-disabled .x-form-trigger-over {
  851. background-position: 0 0 !important;
  852. border-bottom: 1px solid;
  853. }
  854. .x-item-disabled .x-form-trigger-click {
  855. background-position: 0 0 !important;
  856. border-bottom: 1px solid;
  857. }
  858. .x-trigger-noedit {
  859. cursor: pointer;
  860. }
  861. .x-form-focus,
  862. textarea.x-form-focus {
  863. border: 1px solid;
  864. }
  865. .x-form-invalid,
  866. textarea.x-form-invalid {
  867. background: repeat-x bottom;
  868. border: 1px solid;
  869. }
  870. .x-form-inner-invalid,
  871. textarea.x-form-inner-invalid {
  872. background: repeat-x bottom;
  873. }
  874. .x-editor {
  875. visibility: hidden;
  876. padding: 0;
  877. margin: 0;
  878. }
  879. .x-form-grow-sizer {
  880. left: -10000px;
  881. padding: 8px 3px;
  882. position: absolute;
  883. visibility: hidden;
  884. top: -10000px;
  885. white-space: pre-wrap;
  886. white-space: -moz-pre-wrap;
  887. white-space: -pre-wrap;
  888. white-space: -o-pre-wrap;
  889. word-wrap: break-word;
  890. zoom: 1;
  891. }
  892. .x-form-grow-sizer p {
  893. margin: 0 !important;
  894. border: 0 none !important;
  895. padding: 0 !important;
  896. }
  897. .x-form-item {
  898. display: block;
  899. margin-bottom: 6px;
  900. zoom: 1;
  901. }
  902. .x-form-item label.x-form-item-label {
  903. display: block;
  904. float: left;
  905. width: 100px;
  906. padding: 3px;
  907. padding-left: 0;
  908. clear: left;
  909. z-index: 2;
  910. position: relative;
  911. }
  912. .x-form-element {
  913. padding-left: 105px;
  914. position: relative;
  915. }
  916. .x-form-invalid-msg {
  917. padding: 2px;
  918. padding-left: 18px;
  919. background: transparent no-repeat 0 2px;
  920. line-height: 16px;
  921. width: 200px;
  922. }
  923. .x-form-label-left label.x-form-item-label {
  924. text-align: left;
  925. }
  926. .x-form-label-right label.x-form-item-label {
  927. text-align: right;
  928. }
  929. .x-form-label-top .x-form-item label.x-form-item-label {
  930. width: auto;
  931. float: none;
  932. clear: none;
  933. display: inline;
  934. margin-bottom: 4px;
  935. position: static;
  936. }
  937. .x-form-label-top .x-form-element {
  938. padding-left: 0;
  939. padding-top: 4px;
  940. }
  941. .x-form-label-top .x-form-item {
  942. padding-bottom: 4px;
  943. }
  944. .x-small-editor .x-form-text {
  945. height: 20px;
  946. line-height: 16px;
  947. vertical-align: middle;
  948. }
  949. .ext-ie6 .x-small-editor .x-form-text,
  950. .ext-ie7 .x-small-editor .x-form-text {
  951. margin-top: -1px !important;
  952. margin-bottom: -1px !important;
  953. height: 20px !important;
  954. line-height: 16px !important;
  955. }
  956. .ext-strict .x-small-editor .x-form-text {
  957. height: 20px;
  958. }
  959. .ext-ie6 .x-small-editor .x-form-text,
  960. .ext-ie7 .x-small-editor .x-form-text {
  961. height: 20px;
  962. line-height: 16px;
  963. }
  964. .ext-border-box .x-small-editor .x-form-text {
  965. height: 20px;
  966. }
  967. .x-small-editor .x-form-select-one {
  968. height: 20px;
  969. line-height: 16px;
  970. vertical-align: middle;
  971. }
  972. .x-small-editor .x-form-num-field {
  973. text-align: right;
  974. }
  975. .x-small-editor .x-form-field-wrap .x-form-trigger {
  976. height: 19px;
  977. }
  978. .ext-webkit .x-small-editor .x-form-text {
  979. padding-top: 3px;
  980. font-size: 100%;
  981. }
  982. .ext-strict .ext-webkit .x-small-editor .x-form-text {
  983. height: 20px;
  984. }
  985. .x-form-clear {
  986. clear: both;
  987. height: 0;
  988. overflow: hidden;
  989. line-height: 0;
  990. font-size: 0;
  991. }
  992. .x-form-clear-left {
  993. clear: left;
  994. height: 0;
  995. overflow: hidden;
  996. line-height: 0;
  997. font-size: 0;
  998. }
  999. .ext-ie6 .x-form-check-wrap input,
  1000. .ext-border-box .x-form-check-wrap input {
  1001. margin-top: 3px;
  1002. }
  1003. .x-form-cb-label {
  1004. position: relative;
  1005. margin-left: 4px;
  1006. top: 2px;
  1007. }
  1008. .ext-ie .x-form-cb-label {
  1009. top: 1px;
  1010. }
  1011. .ext-ie6 .x-form-cb-label,
  1012. .ext-border-box .x-form-cb-label {
  1013. top: 3px;
  1014. }
  1015. .x-form-display-field {
  1016. padding-top: 2px;
  1017. }
  1018. .ext-gecko .x-form-display-field,
  1019. .ext-strict .ext-ie7 .x-form-display-field {
  1020. padding-top: 1px;
  1021. }
  1022. .ext-ie .x-form-display-field {
  1023. padding-top: 3px;
  1024. }
  1025. .ext-strict .ext-ie8 .x-form-display-field {
  1026. padding-top: 0;
  1027. }
  1028. .x-form-column {
  1029. float: left;
  1030. padding: 0;
  1031. margin: 0;
  1032. width: 48%;
  1033. overflow: hidden;
  1034. zoom: 1;
  1035. }
  1036. .x-form .x-form-btns-ct .x-btn {
  1037. float: right;
  1038. clear: none;
  1039. }
  1040. .x-form .x-form-btns-ct .x-form-btns td {
  1041. border: 0;
  1042. padding: 0;
  1043. }
  1044. .x-form .x-form-btns-ct .x-form-btns-right table {
  1045. float: right;
  1046. clear: none;
  1047. }
  1048. .x-form .x-form-btns-ct .x-form-btns-left table {
  1049. float: left;
  1050. clear: none;
  1051. }
  1052. .x-form .x-form-btns-ct .x-form-btns-center {
  1053. text-align: center;
  1054. }
  1055. .x-form .x-form-btns-ct .x-form-btns-center table {
  1056. margin: 0 auto;
  1057. }
  1058. .x-form .x-form-btns-ct table td.x-form-btn-td {
  1059. padding: 3px;
  1060. }
  1061. .x-form .x-form-btns-ct .x-btn-focus .x-btn-left {
  1062. background-position: 0 -147px;
  1063. }
  1064. .x-form .x-form-btns-ct .x-btn-focus .x-btn-right {
  1065. background-position: 0 -168px;
  1066. }
  1067. .x-form .x-form-btns-ct .x-btn-focus .x-btn-center {
  1068. background-position: 0 -189px;
  1069. }
  1070. .x-form .x-form-btns-ct .x-btn-click .x-btn-center {
  1071. background-position: 0 -126px;
  1072. }
  1073. .x-form .x-form-btns-ct .x-btn-click .x-btn-right {
  1074. background-position: 0 -84px;
  1075. }
  1076. .x-form .x-form-btns-ct .x-btn-click .x-btn-left {
  1077. background-position: 0 -63px;
  1078. }
  1079. .x-form-invalid-icon {
  1080. width: 16px;
  1081. height: 18px;
  1082. visibility: hidden;
  1083. position: absolute;
  1084. left: 0;
  1085. top: 0;
  1086. display: block;
  1087. background: transparent no-repeat 0 2px;
  1088. }
  1089. .x-fieldset {
  1090. border: 1px solid;
  1091. padding: 10px;
  1092. margin-bottom: 10px;
  1093. display: block;
  1094. }
  1095. .ext-webkit .x-fieldset-header {
  1096. padding-top: 1px;
  1097. }
  1098. .ext-ie .x-fieldset legend {
  1099. margin-bottom: 10px;
  1100. }
  1101. .ext-strict .ext-ie9 .x-fieldset legend.x-fieldset-header {
  1102. padding-top: 1px;
  1103. }
  1104. .ext-ie .x-fieldset {
  1105. padding-top: 0;
  1106. padding-bottom: 10px;
  1107. }
  1108. .x-fieldset legend .x-tool-toggle {
  1109. margin-right: 3px;
  1110. margin-left: 0;
  1111. }
  1112. .x-fieldset legend input {
  1113. margin-right: 3px;
  1114. float: left !important;
  1115. height: 13px;
  1116. width: 13px;
  1117. }
  1118. fieldset.x-panel-collapsed {
  1119. padding-bottom: 0 !important;
  1120. border-width: 1px 1px 0 1px !important;
  1121. border-left-color: transparent;
  1122. border-right-color: transparent;
  1123. }
  1124. .ext-ie6 fieldset.x-panel-collapsed {
  1125. padding-bottom: 0 !important;
  1126. border-width: 1px 0 0 0 !important;
  1127. margin-left: 1px;
  1128. margin-right: 1px;
  1129. }
  1130. fieldset.x-panel-collapsed .x-fieldset-bwrap {
  1131. visibility: hidden;
  1132. position: absolute;
  1133. left: -1000px;
  1134. top: -1000px;
  1135. }
  1136. .ext-ie .x-fieldset-bwrap {
  1137. zoom: 1;
  1138. }
  1139. .x-fieldset-noborder {
  1140. border: 0px none transparent;
  1141. }
  1142. .x-fieldset-noborder legend {
  1143. margin-left: -3px;
  1144. }
  1145. .ext-ie .x-fieldset-noborder legend {
  1146. position: relative;
  1147. margin-bottom: 23px;
  1148. }
  1149. .ext-ie .x-fieldset-noborder legend span {
  1150. position: absolute;
  1151. left: 16px;
  1152. }
  1153. .ext-gecko .x-window-body .x-form-item {
  1154. -moz-outline: none;
  1155. outline: none;
  1156. overflow: auto;
  1157. }
  1158. .ext-mac.ext-gecko .x-window-body .x-form-item {
  1159. overflow: hidden;
  1160. }
  1161. .ext-gecko .x-form-item {
  1162. -moz-outline: none;
  1163. outline: none;
  1164. }
  1165. .x-hide-label label.x-form-item-label {
  1166. display: none;
  1167. }
  1168. .x-hide-label .x-form-element {
  1169. padding-left: 0 !important;
  1170. }
  1171. .x-form-label-top .x-hide-label label.x-form-item-label {
  1172. display: none;
  1173. }
  1174. .x-fieldset {
  1175. overflow: hidden;
  1176. }
  1177. .x-fieldset-bwrap {
  1178. overflow: hidden;
  1179. zoom: 1;
  1180. }
  1181. .x-fieldset-body {
  1182. overflow: hidden;
  1183. } /*!
  1184. * Ext JS Library 3.4.0
  1185. * Copyright(c) 2006-2011 Sencha Inc.
  1186. * licensing@sencha.com
  1187. * http://www.sencha.com/license
  1188. */
  1189. .x-btn {
  1190. cursor: pointer;
  1191. white-space: nowrap;
  1192. }
  1193. .x-btn button {
  1194. border: 0 none;
  1195. background-color: transparent;
  1196. padding-left: 3px;
  1197. padding-right: 3px;
  1198. cursor: pointer;
  1199. margin: 0;
  1200. overflow: visible;
  1201. width: auto;
  1202. -moz-outline: 0 none;
  1203. outline: 0 none;
  1204. }
  1205. * html .ext-ie .x-btn button {
  1206. width: 1px;
  1207. }
  1208. .ext-gecko .x-btn button,
  1209. .ext-webkit .x-btn button {
  1210. padding-left: 0;
  1211. padding-right: 0;
  1212. }
  1213. .ext-gecko .x-btn button::-moz-focus-inner {
  1214. padding: 0;
  1215. }
  1216. .ext-ie .x-btn button {
  1217. padding-top: 2px;
  1218. }
  1219. .x-btn td {
  1220. padding: 0 !important;
  1221. }
  1222. .x-btn-text {
  1223. cursor: pointer;
  1224. white-space: nowrap;
  1225. padding: 0;
  1226. }
  1227. .x-btn-noicon .x-btn-small .x-btn-text {
  1228. height: 16px;
  1229. }
  1230. .x-btn-noicon .x-btn-medium .x-btn-text {
  1231. height: 24px;
  1232. }
  1233. .x-btn-noicon .x-btn-large .x-btn-text {
  1234. height: 32px;
  1235. }
  1236. .x-btn-icon .x-btn-text {
  1237. background-position: center;
  1238. background-repeat: no-repeat;
  1239. }
  1240. .x-btn-icon .x-btn-small .x-btn-text {
  1241. height: 16px;
  1242. width: 16px;
  1243. }
  1244. .x-btn-icon .x-btn-medium .x-btn-text {
  1245. height: 24px;
  1246. width: 24px;
  1247. }
  1248. .x-btn-icon .x-btn-large .x-btn-text {
  1249. height: 32px;
  1250. width: 32px;
  1251. }
  1252. .x-btn-text-icon .x-btn-icon-small-left .x-btn-text {
  1253. background-position: 0 center;
  1254. background-repeat: no-repeat;
  1255. padding-left: 18px;
  1256. height: 16px;
  1257. }
  1258. .x-btn-text-icon .x-btn-icon-medium-left .x-btn-text {
  1259. background-position: 0 center;
  1260. background-repeat: no-repeat;
  1261. padding-left: 26px;
  1262. height: 24px;
  1263. }
  1264. .x-btn-text-icon .x-btn-icon-large-left .x-btn-text {
  1265. background-position: 0 center;
  1266. background-repeat: no-repeat;
  1267. padding-left: 34px;
  1268. height: 32px;
  1269. }
  1270. .x-btn-text-icon .x-btn-icon-small-top .x-btn-text {
  1271. background-position: center 0;
  1272. background-repeat: no-repeat;
  1273. padding-top: 18px;
  1274. }
  1275. .x-btn-text-icon .x-btn-icon-medium-top .x-btn-text {
  1276. background-position: center 0;
  1277. background-repeat: no-repeat;
  1278. padding-top: 26px;
  1279. }
  1280. .x-btn-text-icon .x-btn-icon-large-top .x-btn-text {
  1281. background-position: center 0;
  1282. background-repeat: no-repeat;
  1283. padding-top: 34px;
  1284. }
  1285. .x-btn-text-icon .x-btn-icon-small-right .x-btn-text {
  1286. background-position: right center;
  1287. background-repeat: no-repeat;
  1288. padding-right: 18px;
  1289. height: 16px;
  1290. }
  1291. .x-btn-text-icon .x-btn-icon-medium-right .x-btn-text {
  1292. background-position: right center;
  1293. background-repeat: no-repeat;
  1294. padding-right: 26px;
  1295. height: 24px;
  1296. }
  1297. .x-btn-text-icon .x-btn-icon-large-right .x-btn-text {
  1298. background-position: right center;
  1299. background-repeat: no-repeat;
  1300. padding-right: 34px;
  1301. height: 32px;
  1302. }
  1303. .x-btn-text-icon .x-btn-icon-small-bottom .x-btn-text {
  1304. background-position: center bottom;
  1305. background-repeat: no-repeat;
  1306. padding-bottom: 18px;
  1307. }
  1308. .x-btn-text-icon .x-btn-icon-medium-bottom .x-btn-text {
  1309. background-position: center bottom;
  1310. background-repeat: no-repeat;
  1311. padding-bottom: 26px;
  1312. }
  1313. .x-btn-text-icon .x-btn-icon-large-bottom .x-btn-text {
  1314. background-position: center bottom;
  1315. background-repeat: no-repeat;
  1316. padding-bottom: 34px;
  1317. }
  1318. .x-btn-tr i,
  1319. .x-btn-tl i,
  1320. .x-btn-mr i,
  1321. .x-btn-ml i,
  1322. .x-btn-br i,
  1323. .x-btn-bl i {
  1324. font-size: 1px;
  1325. line-height: 1px;
  1326. width: 3px;
  1327. display: block;
  1328. overflow: hidden;
  1329. }
  1330. .x-btn-tr i,
  1331. .x-btn-tl i,
  1332. .x-btn-br i,
  1333. .x-btn-bl i {
  1334. height: 3px;
  1335. }
  1336. .x-btn-tl {
  1337. width: 3px;
  1338. height: 3px;
  1339. background: no-repeat 0 0;
  1340. }
  1341. .x-btn-tr {
  1342. width: 3px;
  1343. height: 3px;
  1344. background: no-repeat -3px 0;
  1345. }
  1346. .x-btn-tc {
  1347. height: 3px;
  1348. background: repeat-x 0 -6px;
  1349. }
  1350. .x-btn-ml {
  1351. width: 3px;
  1352. background: no-repeat 0 -24px;
  1353. }
  1354. .x-btn-mr {
  1355. width: 3px;
  1356. background: no-repeat -3px -24px;
  1357. }
  1358. .x-btn-mc {
  1359. background: repeat-x 0 -1096px;
  1360. vertical-align: middle;
  1361. text-align: center;
  1362. padding: 0 5px;
  1363. cursor: pointer;
  1364. white-space: nowrap;
  1365. }
  1366. .ext-strict .ext-ie6 .x-btn-mc,
  1367. .ext-strict .ext-ie7 .x-btn-mc {
  1368. height: 100%;
  1369. }
  1370. .x-btn-bl {
  1371. width: 3px;
  1372. height: 3px;
  1373. background: no-repeat 0 -3px;
  1374. }
  1375. .x-btn-br {
  1376. width: 3px;
  1377. height: 3px;
  1378. background: no-repeat -3px -3px;
  1379. }
  1380. .x-btn-bc {
  1381. height: 3px;
  1382. background: repeat-x 0 -15px;
  1383. }
  1384. .x-btn-over .x-btn-tl {
  1385. background-position: -6px 0;
  1386. }
  1387. .x-btn-over .x-btn-tr {
  1388. background-position: -9px 0;
  1389. }
  1390. .x-btn-over .x-btn-tc {
  1391. background-position: 0 -9px;
  1392. }
  1393. .x-btn-over .x-btn-ml {
  1394. background-position: -6px -24px;
  1395. }
  1396. .x-btn-over .x-btn-mr {
  1397. background-position: -9px -24px;
  1398. }
  1399. .x-btn-over .x-btn-mc {
  1400. background-position: 0 -2168px;
  1401. }
  1402. .x-btn-over .x-btn-bl {
  1403. background-position: -6px -3px;
  1404. }
  1405. .x-btn-over .x-btn-br {
  1406. background-position: -9px -3px;
  1407. }
  1408. .x-btn-over .x-btn-bc {
  1409. background-position: 0 -18px;
  1410. }
  1411. .x-btn-click .x-btn-tl,
  1412. .x-btn-menu-active .x-btn-tl,
  1413. .x-btn-pressed .x-btn-tl {
  1414. background-position: -12px 0;
  1415. }
  1416. .x-btn-click .x-btn-tr,
  1417. .x-btn-menu-active .x-btn-tr,
  1418. .x-btn-pressed .x-btn-tr {
  1419. background-position: -15px 0;
  1420. }
  1421. .x-btn-click .x-btn-tc,
  1422. .x-btn-menu-active .x-btn-tc,
  1423. .x-btn-pressed .x-btn-tc {
  1424. background-position: 0 -12px;
  1425. }
  1426. .x-btn-click .x-btn-ml,
  1427. .x-btn-menu-active .x-btn-ml,
  1428. .x-btn-pressed .x-btn-ml {
  1429. background-position: -12px -24px;
  1430. }
  1431. .x-btn-click .x-btn-mr,
  1432. .x-btn-menu-active .x-btn-mr,
  1433. .x-btn-pressed .x-btn-mr {
  1434. background-position: -15px -24px;
  1435. }
  1436. .x-btn-click .x-btn-mc,
  1437. .x-btn-menu-active .x-btn-mc,
  1438. .x-btn-pressed .x-btn-mc {
  1439. background-position: 0 -3240px;
  1440. }
  1441. .x-btn-click .x-btn-bl,
  1442. .x-btn-menu-active .x-btn-bl,
  1443. .x-btn-pressed .x-btn-bl {
  1444. background-position: -12px -3px;
  1445. }
  1446. .x-btn-click .x-btn-br,
  1447. .x-btn-menu-active .x-btn-br,
  1448. .x-btn-pressed .x-btn-br {
  1449. background-position: -15px -3px;
  1450. }
  1451. .x-btn-click .x-btn-bc,
  1452. .x-btn-menu-active .x-btn-bc,
  1453. .x-btn-pressed .x-btn-bc {
  1454. background-position: 0 -21px;
  1455. }
  1456. .x-btn-disabled * {
  1457. cursor: default !important;
  1458. }
  1459. .x-btn-mc em.x-btn-arrow {
  1460. display: block;
  1461. background: transparent no-repeat right center;
  1462. padding-right: 10px;
  1463. }
  1464. .x-btn-mc em.x-btn-split {
  1465. display: block;
  1466. background: transparent no-repeat right center;
  1467. padding-right: 14px;
  1468. }
  1469. .x-btn-mc em.x-btn-arrow-bottom {
  1470. display: block;
  1471. background: transparent no-repeat center bottom;
  1472. padding-bottom: 14px;
  1473. }
  1474. .x-btn-mc em.x-btn-split-bottom {
  1475. display: block;
  1476. background: transparent no-repeat center bottom;
  1477. padding-bottom: 14px;
  1478. }
  1479. .x-btn-as-arrow .x-btn-mc em {
  1480. display: block;
  1481. background-color: transparent;
  1482. padding-bottom: 14px;
  1483. }
  1484. .x-btn-group {
  1485. padding: 1px;
  1486. }
  1487. .x-btn-group-header {
  1488. padding: 2px;
  1489. text-align: center;
  1490. }
  1491. .x-btn-group-tc {
  1492. background: transparent repeat-x 0 0;
  1493. overflow: hidden;
  1494. }
  1495. .x-btn-group-tl {
  1496. background: transparent no-repeat 0 0;
  1497. padding-left: 3px;
  1498. zoom: 1;
  1499. }
  1500. .x-btn-group-tr {
  1501. background: transparent no-repeat right 0;
  1502. zoom: 1;
  1503. padding-right: 3px;
  1504. }
  1505. .x-btn-group-bc {
  1506. background: transparent repeat-x 0 bottom;
  1507. zoom: 1;
  1508. }
  1509. .x-btn-group-bc .x-panel-footer {
  1510. zoom: 1;
  1511. }
  1512. .x-btn-group-bl {
  1513. background: transparent no-repeat 0 bottom;
  1514. padding-left: 3px;
  1515. zoom: 1;
  1516. }
  1517. .x-btn-group-br {
  1518. background: transparent no-repeat right bottom;
  1519. padding-right: 3px;
  1520. zoom: 1;
  1521. }
  1522. .x-btn-group-mc {
  1523. border: 0 none;
  1524. padding: 1px 0 0 0;
  1525. margin: 0;
  1526. }
  1527. .x-btn-group-mc .x-btn-group-body {
  1528. background-color: transparent;
  1529. border: 0 none;
  1530. }
  1531. .x-btn-group-ml {
  1532. background: transparent repeat-y 0 0;
  1533. padding-left: 3px;
  1534. zoom: 1;
  1535. }
  1536. .x-btn-group-mr {
  1537. background: transparent repeat-y right 0;
  1538. padding-right: 3px;
  1539. zoom: 1;
  1540. }
  1541. .x-btn-group-bc .x-btn-group-footer {
  1542. padding-bottom: 6px;
  1543. }
  1544. .x-panel-nofooter .x-btn-group-bc {
  1545. height: 3px;
  1546. font-size: 0;
  1547. line-height: 0;
  1548. }
  1549. .x-btn-group-bwrap {
  1550. overflow: hidden;
  1551. zoom: 1;
  1552. }
  1553. .x-btn-group-body {
  1554. overflow: hidden;
  1555. zoom: 1;
  1556. }
  1557. .x-btn-group-notitle .x-btn-group-tc {
  1558. background: transparent repeat-x 0 0;
  1559. overflow: hidden;
  1560. height: 2px;
  1561. } /*!
  1562. * Ext JS Library 3.4.0
  1563. * Copyright(c) 2006-2011 Sencha Inc.
  1564. * licensing@sencha.com
  1565. * http://www.sencha.com/license
  1566. */
  1567. .x-toolbar {
  1568. border-style: solid;
  1569. border-width: 0 0 1px 0;
  1570. display: block;
  1571. padding: 2px;
  1572. background: repeat-x top left;
  1573. position: relative;
  1574. left: 0;
  1575. top: 0;
  1576. zoom: 1;
  1577. overflow: hidden;
  1578. }
  1579. .x-toolbar-left {
  1580. width: 100%;
  1581. }
  1582. .x-toolbar .x-item-disabled .x-btn-icon {
  1583. opacity: 0.35;
  1584. -moz-opacity: 0.35;
  1585. filter: alpha(opacity=35);
  1586. }
  1587. .x-toolbar td {
  1588. vertical-align: middle;
  1589. }
  1590. .x-toolbar td,
  1591. .x-toolbar span,
  1592. .x-toolbar input,
  1593. .x-toolbar div,
  1594. .x-toolbar select,
  1595. .x-toolbar label {
  1596. white-space: nowrap;
  1597. }
  1598. .x-toolbar .x-item-disabled {
  1599. cursor: default;
  1600. opacity: 0.6;
  1601. -moz-opacity: 0.6;
  1602. filter: alpha(opacity=60);
  1603. }
  1604. .x-toolbar .x-item-disabled * {
  1605. cursor: default;
  1606. }
  1607. .x-toolbar .x-toolbar-cell {
  1608. vertical-align: middle;
  1609. }
  1610. .x-toolbar .x-btn-tl,
  1611. .x-toolbar .x-btn-tr,
  1612. .x-toolbar .x-btn-tc,
  1613. .x-toolbar .x-btn-ml,
  1614. .x-toolbar .x-btn-mr,
  1615. .x-toolbar .x-btn-mc,
  1616. .x-toolbar .x-btn-bl,
  1617. .x-toolbar .x-btn-br,
  1618. .x-toolbar .x-btn-bc {
  1619. background-position: 500px 500px;
  1620. }
  1621. .x-toolbar .x-btn-over .x-btn-tl {
  1622. background-position: -6px 0;
  1623. }
  1624. .x-toolbar .x-btn-over .x-btn-tr {
  1625. background-position: -9px 0;
  1626. }
  1627. .x-toolbar .x-btn-over .x-btn-tc {
  1628. background-position: 0 -9px;
  1629. }
  1630. .x-toolbar .x-btn-over .x-btn-ml {
  1631. background-position: -6px -24px;
  1632. }
  1633. .x-toolbar .x-btn-over .x-btn-mr {
  1634. background-position: -9px -24px;
  1635. }
  1636. .x-toolbar .x-btn-over .x-btn-mc {
  1637. background-position: 0 -2168px;
  1638. }
  1639. .x-toolbar .x-btn-over .x-btn-bl {
  1640. background-position: -6px -3px;
  1641. }
  1642. .x-toolbar .x-btn-over .x-btn-br {
  1643. background-position: -9px -3px;
  1644. }
  1645. .x-toolbar .x-btn-over .x-btn-bc {
  1646. background-position: 0 -18px;
  1647. }
  1648. .x-toolbar .x-btn-click .x-btn-tl,
  1649. .x-toolbar .x-btn-menu-active .x-btn-tl,
  1650. .x-toolbar .x-btn-pressed .x-btn-tl {
  1651. background-position: -12px 0;
  1652. }
  1653. .x-toolbar .x-btn-click .x-btn-tr,
  1654. .x-toolbar .x-btn-menu-active .x-btn-tr,
  1655. .x-toolbar .x-btn-pressed .x-btn-tr {
  1656. background-position: -15px 0;
  1657. }
  1658. .x-toolbar .x-btn-click .x-btn-tc,
  1659. .x-toolbar .x-btn-menu-active .x-btn-tc,
  1660. .x-toolbar .x-btn-pressed .x-btn-tc {
  1661. background-position: 0 -12px;
  1662. }
  1663. .x-toolbar .x-btn-click .x-btn-ml,
  1664. .x-toolbar .x-btn-menu-active .x-btn-ml,
  1665. .x-toolbar .x-btn-pressed .x-btn-ml {
  1666. background-position: -12px -24px;
  1667. }
  1668. .x-toolbar .x-btn-click .x-btn-mr,
  1669. .x-toolbar .x-btn-menu-active .x-btn-mr,
  1670. .x-toolbar .x-btn-pressed .x-btn-mr {
  1671. background-position: -15px -24px;
  1672. }
  1673. .x-toolbar .x-btn-click .x-btn-mc,
  1674. .x-toolbar .x-btn-menu-active .x-btn-mc,
  1675. .x-toolbar .x-btn-pressed .x-btn-mc {
  1676. background-position: 0 -3240px;
  1677. }
  1678. .x-toolbar .x-btn-click .x-btn-bl,
  1679. .x-toolbar .x-btn-menu-active .x-btn-bl,
  1680. .x-toolbar .x-btn-pressed .x-btn-bl {
  1681. background-position: -12px -3px;
  1682. }
  1683. .x-toolbar .x-btn-click .x-btn-br,
  1684. .x-toolbar .x-btn-menu-active .x-btn-br,
  1685. .x-toolbar .x-btn-pressed .x-btn-br {
  1686. background-position: -15px -3px;
  1687. }
  1688. .x-toolbar .x-btn-click .x-btn-bc,
  1689. .x-toolbar .x-btn-menu-active .x-btn-bc,
  1690. .x-toolbar .x-btn-pressed .x-btn-bc {
  1691. background-position: 0 -21px;
  1692. }
  1693. .x-toolbar div.xtb-text {
  1694. padding: 2px 2px 0;
  1695. line-height: 16px;
  1696. display: block;
  1697. }
  1698. .x-toolbar .xtb-sep {
  1699. background-position: center;
  1700. background-repeat: no-repeat;
  1701. display: block;
  1702. font-size: 1px;
  1703. height: 16px;
  1704. width: 4px;
  1705. overflow: hidden;
  1706. cursor: default;
  1707. margin: 0 2px 0;
  1708. border: 0;
  1709. }
  1710. .x-toolbar .xtb-spacer {
  1711. width: 2px;
  1712. }
  1713. .x-tbar-page-number {
  1714. width: 30px;
  1715. height: 14px;
  1716. }
  1717. .ext-ie .x-tbar-page-number {
  1718. margin-top: 2px;
  1719. }
  1720. .x-paging-info {
  1721. position: absolute;
  1722. top: 5px;
  1723. right: 8px;
  1724. }
  1725. .x-toolbar-ct {
  1726. width: 100%;
  1727. }
  1728. .x-toolbar-right td {
  1729. text-align: center;
  1730. }
  1731. .x-panel-tbar,
  1732. .x-panel-bbar,
  1733. .x-window-tbar,
  1734. .x-window-bbar,
  1735. .x-tab-panel-tbar,
  1736. .x-tab-panel-bbar,
  1737. .x-plain-tbar,
  1738. .x-plain-bbar {
  1739. overflow: hidden;
  1740. zoom: 1;
  1741. }
  1742. .x-toolbar-more .x-btn-small .x-btn-text {
  1743. height: 16px;
  1744. width: 12px;
  1745. }
  1746. .x-toolbar-more em.x-btn-arrow {
  1747. display: inline;
  1748. background-color: transparent;
  1749. padding-right: 0;
  1750. }
  1751. .x-toolbar-more .x-btn-mc em.x-btn-arrow {
  1752. background-image: none;
  1753. }
  1754. div.x-toolbar-no-items {
  1755. color: gray !important;
  1756. padding: 5px 10px !important;
  1757. }
  1758. .ext-border-box .x-toolbar-cell .x-form-text {
  1759. margin-bottom: -1px !important;
  1760. }
  1761. .ext-border-box .x-toolbar-cell .x-form-field-wrap .x-form-text {
  1762. margin: 0 !important;
  1763. }
  1764. .ext-ie .x-toolbar-cell .x-form-field-wrap {
  1765. height: 21px;
  1766. }
  1767. .ext-ie .x-toolbar-cell .x-form-text {
  1768. position: relative;
  1769. top: -1px;
  1770. }
  1771. .ext-strict .ext-ie8 .x-toolbar-cell .x-form-field-trigger-wrap .x-form-text,
  1772. .ext-strict .ext-ie .x-toolbar-cell .x-form-text {
  1773. top: 0px;
  1774. }
  1775. .x-toolbar-right td .x-form-field-trigger-wrap {
  1776. text-align: left;
  1777. }
  1778. .x-toolbar-cell .x-form-checkbox,
  1779. .x-toolbar-cell .x-form-radio {
  1780. margin-top: 5px;
  1781. }
  1782. .x-toolbar-cell .x-form-cb-label {
  1783. vertical-align: bottom;
  1784. top: 1px;
  1785. }
  1786. .ext-ie .x-toolbar-cell .x-form-checkbox,
  1787. .ext-ie .x-toolbar-cell .x-form-radio {
  1788. margin-top: 4px;
  1789. }
  1790. .ext-ie .x-toolbar-cell .x-form-cb-label {
  1791. top: 0;
  1792. } /*!
  1793. * Ext JS Library 3.4.0
  1794. * Copyright(c) 2006-2011 Sencha Inc.
  1795. * licensing@sencha.com
  1796. * http://www.sencha.com/license
  1797. */
  1798. .x-resizable-handle {
  1799. position: absolute;
  1800. z-index: 100;
  1801. font-size: 1px;
  1802. line-height: 6px;
  1803. overflow: hidden;
  1804. filter: alpha(opacity=0);
  1805. opacity: 0;
  1806. zoom: 1;
  1807. }
  1808. .x-resizable-handle-east {
  1809. width: 6px;
  1810. cursor: e-resize;
  1811. right: 0;
  1812. top: 0;
  1813. height: 100%;
  1814. }
  1815. .ext-ie .x-resizable-handle-east {
  1816. margin-right: -1px;
  1817. }
  1818. .x-resizable-handle-south {
  1819. width: 100%;
  1820. cursor: s-resize;
  1821. left: 0;
  1822. bottom: 0;
  1823. height: 6px;
  1824. }
  1825. .ext-ie .x-resizable-handle-south {
  1826. margin-bottom: -1px;
  1827. }
  1828. .x-resizable-handle-west {
  1829. width: 6px;
  1830. cursor: w-resize;
  1831. left: 0;
  1832. top: 0;
  1833. height: 100%;
  1834. }
  1835. .x-resizable-handle-north {
  1836. width: 100%;
  1837. cursor: n-resize;
  1838. left: 0;
  1839. top: 0;
  1840. height: 6px;
  1841. }
  1842. .x-resizable-handle-southeast {
  1843. width: 6px;
  1844. cursor: se-resize;
  1845. right: 0;
  1846. bottom: 0;
  1847. height: 6px;
  1848. z-index: 101;
  1849. }
  1850. .x-resizable-handle-northwest {
  1851. width: 6px;
  1852. cursor: nw-resize;
  1853. left: 0;
  1854. top: 0;
  1855. height: 6px;
  1856. z-index: 101;
  1857. }
  1858. .x-resizable-handle-northeast {
  1859. width: 6px;
  1860. cursor: ne-resize;
  1861. right: 0;
  1862. top: 0;
  1863. height: 6px;
  1864. z-index: 101;
  1865. }
  1866. .x-resizable-handle-southwest {
  1867. width: 6px;
  1868. cursor: sw-resize;
  1869. left: 0;
  1870. bottom: 0;
  1871. height: 6px;
  1872. z-index: 101;
  1873. }
  1874. .x-resizable-over .x-resizable-handle,
  1875. .x-resizable-pinned .x-resizable-handle {
  1876. filter: alpha(opacity=100);
  1877. opacity: 1;
  1878. }
  1879. .x-resizable-over .x-resizable-handle-east,
  1880. .x-resizable-pinned .x-resizable-handle-east,
  1881. .x-resizable-over .x-resizable-handle-west,
  1882. .x-resizable-pinned .x-resizable-handle-west {
  1883. background-position: left;
  1884. }
  1885. .x-resizable-over .x-resizable-handle-south,
  1886. .x-resizable-pinned .x-resizable-handle-south,
  1887. .x-resizable-over .x-resizable-handle-north,
  1888. .x-resizable-pinned .x-resizable-handle-north {
  1889. background-position: top;
  1890. }
  1891. .x-resizable-over .x-resizable-handle-southeast,
  1892. .x-resizable-pinned .x-resizable-handle-southeast {
  1893. background-position: top left;
  1894. }
  1895. .x-resizable-over .x-resizable-handle-northwest,
  1896. .x-resizable-pinned .x-resizable-handle-northwest {
  1897. background-position: bottom right;
  1898. }
  1899. .x-resizable-over .x-resizable-handle-northeast,
  1900. .x-resizable-pinned .x-resizable-handle-northeast {
  1901. background-position: bottom left;
  1902. }
  1903. .x-resizable-over .x-resizable-handle-southwest,
  1904. .x-resizable-pinned .x-resizable-handle-southwest {
  1905. background-position: top right;
  1906. }
  1907. .x-resizable-proxy {
  1908. border: 1px dashed;
  1909. position: absolute;
  1910. overflow: hidden;
  1911. display: none;
  1912. left: 0;
  1913. top: 0;
  1914. z-index: 50000;
  1915. }
  1916. .x-resizable-overlay {
  1917. width: 100%;
  1918. height: 100%;
  1919. display: none;
  1920. position: absolute;
  1921. left: 0;
  1922. top: 0;
  1923. z-index: 200000;
  1924. -moz-opacity: 0;
  1925. opacity: 0;
  1926. filter: alpha(opacity=0);
  1927. } /*!
  1928. * Ext JS Library 3.4.0
  1929. * Copyright(c) 2006-2011 Sencha Inc.
  1930. * licensing@sencha.com
  1931. * http://www.sencha.com/license
  1932. */
  1933. .x-grid3 {
  1934. position: relative;
  1935. overflow: hidden;
  1936. }
  1937. .x-grid-panel .x-panel-body {
  1938. overflow: hidden !important;
  1939. }
  1940. .x-grid-panel .x-panel-mc .x-panel-body {
  1941. border: 1px solid;
  1942. }
  1943. .x-grid3 table {
  1944. table-layout: fixed;
  1945. }
  1946. .x-grid3-viewport {
  1947. overflow: hidden;
  1948. }
  1949. .x-grid3-hd-row td,
  1950. .x-grid3-row td,
  1951. .x-grid3-summary-row td {
  1952. -moz-outline: none;
  1953. outline: none;
  1954. -moz-user-focus: normal;
  1955. }
  1956. .x-grid3-row td,
  1957. .x-grid3-summary-row td {
  1958. line-height: 13px;
  1959. vertical-align: top;
  1960. padding-left: 1px;
  1961. padding-right: 1px;
  1962. -moz-user-select: none;
  1963. -khtml-user-select: none;
  1964. -webkit-user-select: ignore;
  1965. }
  1966. .x-grid3-cell {
  1967. -moz-user-select: none;
  1968. -khtml-user-select: none;
  1969. -webkit-user-select: ignore;
  1970. }
  1971. .x-grid3-hd-row td {
  1972. line-height: 15px;
  1973. vertical-align: middle;
  1974. border-left: 1px solid;
  1975. border-right: 1px solid;
  1976. }
  1977. .x-grid3-hd-row .x-grid3-marker-hd {
  1978. padding: 3px;
  1979. }
  1980. .x-grid3-row .x-grid3-marker {
  1981. padding: 3px;
  1982. }
  1983. .x-grid3-cell-inner,
  1984. .x-grid3-hd-inner {
  1985. overflow: hidden;
  1986. -o-text-overflow: ellipsis;
  1987. text-overflow: ellipsis;
  1988. padding: 3px 3px 3px 5px;
  1989. white-space: nowrap;
  1990. }
  1991. .x-action-col-cell .x-grid3-cell-inner {
  1992. padding-top: 1px;
  1993. padding-bottom: 1px;
  1994. }
  1995. .x-action-col-icon {
  1996. cursor: pointer;
  1997. }
  1998. .x-grid3-hd-inner {
  1999. position: relative;
  2000. cursor: inherit;
  2001. padding: 4px 3px 4px 5px;
  2002. }
  2003. .x-grid3-row-body {
  2004. white-space: normal;
  2005. }
  2006. .x-grid3-body-cell {
  2007. -moz-outline: 0 none;
  2008. outline: 0 none;
  2009. }
  2010. .ext-ie .x-grid3-cell-inner,
  2011. .ext-ie .x-grid3-hd-inner {
  2012. width: 100%;
  2013. }
  2014. .ext-strict .x-grid3-cell-inner,
  2015. .ext-strict .x-grid3-hd-inner {
  2016. width: auto;
  2017. }
  2018. .x-grid-row-loading {
  2019. background: no-repeat center center;
  2020. }
  2021. .x-grid-page {
  2022. overflow: hidden;
  2023. }
  2024. .x-grid3-row {
  2025. cursor: default;
  2026. border: 1px solid;
  2027. width: 100%;
  2028. }
  2029. .x-grid3-row-over {
  2030. border: 1px solid;
  2031. background: repeat-x left top;
  2032. }
  2033. .x-grid3-resize-proxy {
  2034. width: 1px;
  2035. left: 0;
  2036. cursor: e-resize;
  2037. cursor: col-resize;
  2038. position: absolute;
  2039. top: 0;
  2040. height: 100px;
  2041. overflow: hidden;
  2042. visibility: hidden;
  2043. border: 0 none;
  2044. z-index: 7;
  2045. background: #505a64;
  2046. }
  2047. .x-grid3-resize-marker {
  2048. width: 1px;
  2049. left: 0;
  2050. position: absolute;
  2051. top: 0;
  2052. height: 100px;
  2053. overflow: hidden;
  2054. visibility: hidden;
  2055. border: 0 none;
  2056. z-index: 7;
  2057. background: #505a64;
  2058. }
  2059. .x-grid3-focus {
  2060. position: absolute;
  2061. left: 0;
  2062. top: 0;
  2063. width: 1px;
  2064. height: 1px;
  2065. line-height: 1px;
  2066. font-size: 1px;
  2067. -moz-outline: 0 none;
  2068. outline: 0 none;
  2069. -moz-user-select: text;
  2070. -khtml-user-select: text;
  2071. -webkit-user-select: ignore;
  2072. }
  2073. .x-grid3-header {
  2074. background: repeat-x 0 bottom;
  2075. cursor: default;
  2076. zoom: 1;
  2077. padding: 1px 0 0 0;
  2078. }
  2079. .x-grid3-header-pop {
  2080. border-left: 1px solid;
  2081. float: right;
  2082. clear: none;
  2083. }
  2084. .x-grid3-header-pop-inner {
  2085. border-left: 1px solid;
  2086. width: 14px;
  2087. height: 19px;
  2088. background: transparent no-repeat center center;
  2089. }
  2090. .ext-ie .x-grid3-header-pop-inner {
  2091. width: 15px;
  2092. }
  2093. .ext-strict .x-grid3-header-pop-inner {
  2094. width: 14px;
  2095. }
  2096. .x-grid3-header-inner {
  2097. overflow: hidden;
  2098. zoom: 1;
  2099. float: left;
  2100. }
  2101. .x-grid3-header-offset {
  2102. padding-left: 1px;
  2103. text-align: left;
  2104. }
  2105. td.x-grid3-hd-over,
  2106. td.sort-desc,
  2107. td.sort-asc,
  2108. td.x-grid3-hd-menu-open {
  2109. border-left: 1px solid;
  2110. border-right: 1px solid;
  2111. }
  2112. td.x-grid3-hd-over .x-grid3-hd-inner,
  2113. td.sort-desc .x-grid3-hd-inner,
  2114. td.sort-asc .x-grid3-hd-inner,
  2115. td.x-grid3-hd-menu-open .x-grid3-hd-inner {
  2116. background: repeat-x left bottom;
  2117. }
  2118. .x-grid3-sort-icon {
  2119. background-repeat: no-repeat;
  2120. display: none;
  2121. height: 4px;
  2122. width: 13px;
  2123. margin-left: 3px;
  2124. vertical-align: middle;
  2125. }
  2126. .sort-asc .x-grid3-sort-icon,
  2127. .sort-desc .x-grid3-sort-icon {
  2128. display: inline;
  2129. }
  2130. .ext-strict .ext-ie .x-grid3-header-inner,
  2131. .ext-strict .ext-ie6 .x-grid3-hd {
  2132. position: relative;
  2133. }
  2134. .ext-strict .ext-ie6 .x-grid3-hd-inner {
  2135. position: static;
  2136. }
  2137. .x-grid3-body {
  2138. zoom: 1;
  2139. }
  2140. .x-grid3-scroller {
  2141. overflow: auto;
  2142. zoom: 1;
  2143. position: relative;
  2144. }
  2145. .x-grid3-cell-text,
  2146. .x-grid3-hd-text {
  2147. display: block;
  2148. padding: 3px 5px 3px 5px;
  2149. -moz-user-select: none;
  2150. -khtml-user-select: none;
  2151. -webkit-user-select: ignore;
  2152. }
  2153. .x-grid3-split {
  2154. background-position: center;
  2155. background-repeat: no-repeat;
  2156. cursor: e-resize;
  2157. cursor: col-resize;
  2158. display: block;
  2159. font-size: 1px;
  2160. height: 16px;
  2161. overflow: hidden;
  2162. position: absolute;
  2163. top: 2px;
  2164. width: 6px;
  2165. z-index: 3;
  2166. }
  2167. .x-dd-drag-proxy .x-grid3-hd-inner {
  2168. background: repeat-x left bottom;
  2169. width: 120px;
  2170. padding: 3px;
  2171. border: 1px solid;
  2172. overflow: hidden;
  2173. }
  2174. .col-move-top,
  2175. .col-move-bottom {
  2176. width: 9px;
  2177. height: 9px;
  2178. position: absolute;
  2179. top: 0;
  2180. line-height: 1px;
  2181. font-size: 1px;
  2182. overflow: hidden;
  2183. visibility: hidden;
  2184. z-index: 20000;
  2185. background: transparent no-repeat left top;
  2186. }
  2187. .x-grid3-row-selected {
  2188. border: 1px dotted;
  2189. }
  2190. .x-grid3-locked td.x-grid3-row-marker,
  2191. .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker {
  2192. background: repeat-x 0 bottom !important;
  2193. vertical-align: middle !important;
  2194. padding: 0;
  2195. border-top: 1px solid;
  2196. border-bottom: none !important;
  2197. border-right: 1px solid !important;
  2198. text-align: center;
  2199. }
  2200. .x-grid3-locked td.x-grid3-row-marker div,
  2201. .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker div {
  2202. padding: 0 4px;
  2203. text-align: center;
  2204. }
  2205. .x-grid3-dirty-cell {
  2206. background: transparent no-repeat 0 0;
  2207. }
  2208. .x-grid3-topbar,
  2209. .x-grid3-bottombar {
  2210. overflow: hidden;
  2211. display: none;
  2212. zoom: 1;
  2213. position: relative;
  2214. }
  2215. .x-grid3-topbar .x-toolbar {
  2216. border-right: 0 none;
  2217. }
  2218. .x-grid3-bottombar .x-toolbar {
  2219. border-right: 0 none;
  2220. border-bottom: 0 none;
  2221. border-top: 1px solid;
  2222. }
  2223. .x-props-grid .x-grid3-cell {
  2224. padding: 1px;
  2225. }
  2226. .x-props-grid .x-grid3-td-name .x-grid3-cell-inner {
  2227. background: transparent repeat-y -16px !important;
  2228. padding-left: 12px;
  2229. }
  2230. .x-props-grid .x-grid3-body .x-grid3-td-name {
  2231. padding: 1px;
  2232. padding-right: 0;
  2233. border: 0 none;
  2234. border-right: 1px solid;
  2235. }
  2236. .x-grid3-col-dd {
  2237. border: 0 none;
  2238. padding: 0;
  2239. background-color: transparent;
  2240. }
  2241. .x-dd-drag-ghost .x-grid3-dd-wrap {
  2242. padding: 1px 3px 3px 1px;
  2243. }
  2244. .x-grid3-hd {
  2245. -moz-user-select: none;
  2246. -khtml-user-select: none;
  2247. -webkit-user-select: ignore;
  2248. }
  2249. .x-grid3-hd-btn {
  2250. display: none;
  2251. position: absolute;
  2252. width: 14px;
  2253. background: no-repeat left center;
  2254. right: 0;
  2255. top: 0;
  2256. z-index: 2;
  2257. cursor: pointer;
  2258. }
  2259. .x-grid3-hd-over .x-grid3-hd-btn,
  2260. .x-grid3-hd-menu-open .x-grid3-hd-btn {
  2261. display: block;
  2262. }
  2263. a.x-grid3-hd-btn:hover {
  2264. background-position: -14px center;
  2265. }
  2266. .x-grid3-body .x-grid3-td-expander {
  2267. background: transparent repeat-y right;
  2268. }
  2269. .x-grid3-body .x-grid3-td-expander .x-grid3-cell-inner {
  2270. padding: 0 !important;
  2271. height: 100%;
  2272. }
  2273. .x-grid3-row-expander {
  2274. width: 100%;
  2275. height: 18px;
  2276. background-position: 4px 2px;
  2277. background-repeat: no-repeat;
  2278. background-color: transparent;
  2279. }
  2280. .x-grid3-row-collapsed .x-grid3-row-expander {
  2281. background-position: 4px 2px;
  2282. }
  2283. .x-grid3-row-expanded .x-grid3-row-expander {
  2284. background-position: -21px 2px;
  2285. }
  2286. .x-grid3-row-collapsed .x-grid3-row-body {
  2287. display: none !important;
  2288. }
  2289. .x-grid3-row-expanded .x-grid3-row-body {
  2290. display: block !important;
  2291. }
  2292. .x-grid3-body .x-grid3-td-checker {
  2293. background: transparent repeat-y right;
  2294. }
  2295. .x-grid3-body .x-grid3-td-checker .x-grid3-cell-inner,
  2296. .x-grid3-header .x-grid3-td-checker .x-grid3-hd-inner {
  2297. padding: 0 !important;
  2298. height: 100%;
  2299. }
  2300. .x-grid3-row-checker,
  2301. .x-grid3-hd-checker {
  2302. width: 100%;
  2303. height: 18px;
  2304. background-position: 2px 2px;
  2305. background-repeat: no-repeat;
  2306. background-color: transparent;
  2307. }
  2308. .x-grid3-row .x-grid3-row-checker {
  2309. background-position: 2px 2px;
  2310. }
  2311. .x-grid3-row-selected .x-grid3-row-checker,
  2312. .x-grid3-hd-checker-on .x-grid3-hd-checker,
  2313. .x-grid3-row-checked .x-grid3-row-checker {
  2314. background-position: -23px 2px;
  2315. }
  2316. .x-grid3-hd-checker {
  2317. background-position: 2px 1px;
  2318. }
  2319. .ext-border-box .x-grid3-hd-checker {
  2320. background-position: 2px 3px;
  2321. }
  2322. .x-grid3-hd-checker-on .x-grid3-hd-checker {
  2323. background-position: -23px 1px;
  2324. }
  2325. .ext-border-box .x-grid3-hd-checker-on .x-grid3-hd-checker {
  2326. background-position: -23px 3px;
  2327. }
  2328. .x-grid3-body .x-grid3-td-numberer {
  2329. background: transparent repeat-y right;
  2330. }
  2331. .x-grid3-body .x-grid3-td-numberer .x-grid3-cell-inner {
  2332. padding: 3px 5px 0 0 !important;
  2333. text-align: right;
  2334. }
  2335. .x-grid3-body .x-grid3-td-row-icon {
  2336. background: transparent repeat-y right;
  2337. vertical-align: top;
  2338. text-align: center;
  2339. }
  2340. .x-grid3-body .x-grid3-td-row-icon .x-grid3-cell-inner {
  2341. padding: 0 !important;
  2342. background-position: center center;
  2343. background-repeat: no-repeat;
  2344. width: 16px;
  2345. height: 16px;
  2346. margin-left: 2px;
  2347. margin-top: 3px;
  2348. }
  2349. .x-grid3-body .x-grid3-row-selected .x-grid3-td-numberer,
  2350. .x-grid3-body .x-grid3-row-selected .x-grid3-td-checker,
  2351. .x-grid3-body .x-grid3-row-selected .x-grid3-td-expander {
  2352. background: transparent repeat-y right;
  2353. }
  2354. .x-grid3-body .x-grid3-check-col-td .x-grid3-cell-inner {
  2355. padding: 1px 0 0 0 !important;
  2356. }
  2357. .x-grid3-check-col {
  2358. width: 100%;
  2359. height: 16px;
  2360. background-position: center center;
  2361. background-repeat: no-repeat;
  2362. background-color: transparent;
  2363. }
  2364. .x-grid3-check-col-on {
  2365. width: 100%;
  2366. height: 16px;
  2367. background-position: center center;
  2368. background-repeat: no-repeat;
  2369. background-color: transparent;
  2370. }
  2371. .x-grid-group,
  2372. .x-grid-group-body,
  2373. .x-grid-group-hd {
  2374. zoom: 1;
  2375. }
  2376. .x-grid-group-hd {
  2377. border-bottom: 2px solid;
  2378. cursor: pointer;
  2379. padding-top: 6px;
  2380. }
  2381. .x-grid-group-hd div.x-grid-group-title {
  2382. background: transparent no-repeat 3px 3px;
  2383. padding: 4px 4px 4px 17px;
  2384. }
  2385. .x-grid-group-collapsed .x-grid-group-body {
  2386. display: none;
  2387. }
  2388. .ext-ie6 .x-grid3 .x-editor .x-form-text,
  2389. .ext-ie7 .x-grid3 .x-editor .x-form-text {
  2390. position: relative;
  2391. top: -1px;
  2392. }
  2393. .ext-ie .x-props-grid .x-editor .x-form-text {
  2394. position: static;
  2395. top: 0;
  2396. }
  2397. .x-grid-empty {
  2398. padding: 10px;
  2399. }
  2400. .ext-ie7 .x-grid-panel .x-panel-bbar {
  2401. position: relative;
  2402. }
  2403. .ext-ie7 .x-grid-panel .x-panel-mc .x-panel-bbar {
  2404. position: static;
  2405. }
  2406. .ext-ie6 .x-grid3-header {
  2407. position: relative;
  2408. }
  2409. .ext-webkit .x-grid-panel .x-panel-bwrap {
  2410. -webkit-user-select: none;
  2411. }
  2412. .ext-webkit .x-tbar-page-number {
  2413. -webkit-user-select: ignore;
  2414. }
  2415. .x-grid-with-col-lines .x-grid3-row td.x-grid3-cell {
  2416. padding-right: 0;
  2417. border-right: 1px solid;
  2418. } /*!
  2419. * Ext JS Library 3.4.0
  2420. * Copyright(c) 2006-2011 Sencha Inc.
  2421. * licensing@sencha.com
  2422. * http://www.sencha.com/license
  2423. */
  2424. .x-dd-drag-proxy {
  2425. position: absolute;
  2426. left: 0;
  2427. top: 0;
  2428. visibility: hidden;
  2429. z-index: 15000;
  2430. }
  2431. .x-dd-drag-ghost {
  2432. -moz-opacity: 0.85;
  2433. opacity: 0.85;
  2434. filter: alpha(opacity=85);
  2435. border: 1px solid;
  2436. padding: 3px;
  2437. padding-left: 20px;
  2438. white-space: nowrap;
  2439. }
  2440. .x-dd-drag-repair .x-dd-drag-ghost {
  2441. -moz-opacity: 0.4;
  2442. opacity: 0.4;
  2443. filter: alpha(opacity=40);
  2444. border: 0 none;
  2445. padding: 0;
  2446. background-color: transparent;
  2447. }
  2448. .x-dd-drag-repair .x-dd-drop-icon {
  2449. visibility: hidden;
  2450. }
  2451. .x-dd-drop-icon {
  2452. position: absolute;
  2453. top: 3px;
  2454. left: 3px;
  2455. display: block;
  2456. width: 16px;
  2457. height: 16px;
  2458. background-color: transparent;
  2459. background-position: center;
  2460. background-repeat: no-repeat;
  2461. z-index: 1;
  2462. }
  2463. .x-view-selector {
  2464. position: absolute;
  2465. left: 0;
  2466. top: 0;
  2467. width: 0;
  2468. border: 1px dotted;
  2469. opacity: 0.5;
  2470. -moz-opacity: 0.5;
  2471. filter: alpha(opacity=50);
  2472. zoom: 1;
  2473. } /*!
  2474. * Ext JS Library 3.4.0
  2475. * Copyright(c) 2006-2011 Sencha Inc.
  2476. * licensing@sencha.com
  2477. * http://www.sencha.com/license
  2478. */
  2479. .ext-strict .ext-ie .x-tree .x-panel-bwrap {
  2480. position: relative;
  2481. overflow: hidden;
  2482. }
  2483. .x-tree-icon,
  2484. .x-tree-ec-icon,
  2485. .x-tree-elbow-line,
  2486. .x-tree-elbow,
  2487. .x-tree-elbow-end,
  2488. .x-tree-elbow-plus,
  2489. .x-tree-elbow-minus,
  2490. .x-tree-elbow-end-plus,
  2491. .x-tree-elbow-end-minus {
  2492. border: 0 none;
  2493. height: 18px;
  2494. margin: 0;
  2495. padding: 0;
  2496. vertical-align: top;
  2497. width: 16px;
  2498. background-repeat: no-repeat;
  2499. }
  2500. .x-tree-node-collapsed .x-tree-node-icon,
  2501. .x-tree-node-expanded .x-tree-node-icon,
  2502. .x-tree-node-leaf .x-tree-node-icon {
  2503. border: 0 none;
  2504. height: 18px;
  2505. margin: 0;
  2506. padding: 0;
  2507. vertical-align: top;
  2508. width: 16px;
  2509. background-position: center;
  2510. background-repeat: no-repeat;
  2511. }
  2512. .ext-ie .x-tree-node-indent img,
  2513. .ext-ie .x-tree-node-icon,
  2514. .ext-ie .x-tree-ec-icon {
  2515. vertical-align: middle !important;
  2516. }
  2517. .ext-strict .ext-ie8 .x-tree-node-indent img,
  2518. .ext-strict .ext-ie8 .x-tree-node-icon,
  2519. .ext-strict .ext-ie8 .x-tree-ec-icon {
  2520. vertical-align: top !important;
  2521. }
  2522. input.x-tree-node-cb {
  2523. margin-left: 1px;
  2524. height: 19px;
  2525. vertical-align: bottom;
  2526. }
  2527. .ext-ie input.x-tree-node-cb {
  2528. margin-left: 0;
  2529. margin-top: 1px;
  2530. width: 16px;
  2531. height: 16px;
  2532. vertical-align: middle;
  2533. }
  2534. .ext-strict .ext-ie8 input.x-tree-node-cb {
  2535. margin: 1px 1px;
  2536. height: 14px;
  2537. vertical-align: bottom;
  2538. }
  2539. .ext-strict .ext-ie8 input.x-tree-node-cb + a {
  2540. vertical-align: bottom;
  2541. }
  2542. .ext-opera input.x-tree-node-cb {
  2543. height: 14px;
  2544. vertical-align: middle;
  2545. }
  2546. .x-tree-noicon .x-tree-node-icon {
  2547. width: 0;
  2548. height: 0;
  2549. }
  2550. .x-tree-no-lines .x-tree-elbow {
  2551. background-color: transparent;
  2552. }
  2553. .x-tree-no-lines .x-tree-elbow-end {
  2554. background-color: transparent;
  2555. }
  2556. .x-tree-no-lines .x-tree-elbow-line {
  2557. background-color: transparent;
  2558. }
  2559. .x-tree-arrows .x-tree-elbow {
  2560. background-color: transparent;
  2561. }
  2562. .x-tree-arrows .x-tree-elbow-plus {
  2563. background: transparent no-repeat 0 0;
  2564. }
  2565. .x-tree-arrows .x-tree-elbow-minus {
  2566. background: transparent no-repeat -16px 0;
  2567. }
  2568. .x-tree-arrows .x-tree-elbow-end {
  2569. background-color: transparent;
  2570. }
  2571. .x-tree-arrows .x-tree-elbow-end-plus {
  2572. background: transparent no-repeat 0 0;
  2573. }
  2574. .x-tree-arrows .x-tree-elbow-end-minus {
  2575. background: transparent no-repeat -16px 0;
  2576. }
  2577. .x-tree-arrows .x-tree-elbow-line {
  2578. background-color: transparent;
  2579. }
  2580. .x-tree-arrows .x-tree-ec-over .x-tree-elbow-plus {
  2581. background-position: -32px 0;
  2582. }
  2583. .x-tree-arrows .x-tree-ec-over .x-tree-elbow-minus {
  2584. background-position: -48px 0;
  2585. }
  2586. .x-tree-arrows .x-tree-ec-over .x-tree-elbow-end-plus {
  2587. background-position: -32px 0;
  2588. }
  2589. .x-tree-arrows .x-tree-ec-over .x-tree-elbow-end-minus {
  2590. background-position: -48px 0;
  2591. }
  2592. .x-tree-elbow-plus,
  2593. .x-tree-elbow-minus,
  2594. .x-tree-elbow-end-plus,
  2595. .x-tree-elbow-end-minus {
  2596. cursor: pointer;
  2597. }
  2598. .ext-ie ul.x-tree-node-ct {
  2599. font-size: 0;
  2600. line-height: 0;
  2601. zoom: 1;
  2602. }
  2603. .x-tree-node {
  2604. white-space: nowrap;
  2605. }
  2606. .x-tree-node-el {
  2607. line-height: 18px;
  2608. cursor: pointer;
  2609. }
  2610. .x-tree-node a,
  2611. .x-dd-drag-ghost a {
  2612. text-decoration: none;
  2613. -khtml-user-select: none;
  2614. -moz-user-select: none;
  2615. -webkit-user-select: ignore;
  2616. -kthml-user-focus: normal;
  2617. -moz-user-focus: normal;
  2618. -moz-outline: 0 none;
  2619. outline: 0 none;
  2620. }
  2621. .x-tree-node a span,
  2622. .x-dd-drag-ghost a span {
  2623. text-decoration: none;
  2624. padding: 1px 3px 1px 2px;
  2625. }
  2626. .x-tree-node .x-tree-node-disabled .x-tree-node-icon {
  2627. -moz-opacity: 0.5;
  2628. opacity: 0.5;
  2629. filter: alpha(opacity=50);
  2630. }
  2631. .x-tree-node .x-tree-node-inline-icon {
  2632. background-color: transparent;
  2633. }
  2634. .x-tree-node a:hover,
  2635. .x-dd-drag-ghost a:hover {
  2636. text-decoration: none;
  2637. }
  2638. .x-tree-node div.x-tree-drag-insert-below {
  2639. border-bottom: 1px dotted;
  2640. }
  2641. .x-tree-node div.x-tree-drag-insert-above {
  2642. border-top: 1px dotted;
  2643. }
  2644. .x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below {
  2645. border-bottom: 0 none;
  2646. }
  2647. .x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above {
  2648. border-top: 0 none;
  2649. }
  2650. .x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below a {
  2651. border-bottom: 2px solid;
  2652. }
  2653. .x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above a {
  2654. border-top: 2px solid;
  2655. }
  2656. .x-tree-node .x-tree-drag-append a span {
  2657. border: 1px dotted;
  2658. }
  2659. .x-dd-drag-ghost .x-tree-node-indent,
  2660. .x-dd-drag-ghost .x-tree-ec-icon {
  2661. display: none !important;
  2662. }
  2663. .x-tree-root-ct {
  2664. zoom: 1;
  2665. } /*!
  2666. * Ext JS Library 3.4.0
  2667. * Copyright(c) 2006-2011 Sencha Inc.
  2668. * licensing@sencha.com
  2669. * http://www.sencha.com/license
  2670. */
  2671. .x-date-picker {
  2672. border: 1px solid;
  2673. border-top: 0 none;
  2674. position: relative;
  2675. }
  2676. .x-date-picker a {
  2677. -moz-outline: 0 none;
  2678. outline: 0 none;
  2679. }
  2680. .x-date-inner,
  2681. .x-date-inner td,
  2682. .x-date-inner th {
  2683. border-collapse: separate;
  2684. }
  2685. .x-date-middle,
  2686. .x-date-left,
  2687. .x-date-right {
  2688. background: repeat-x 0 -83px;
  2689. overflow: hidden;
  2690. }
  2691. .x-date-middle .x-btn-tc,
  2692. .x-date-middle .x-btn-tl,
  2693. .x-date-middle .x-btn-tr,
  2694. .x-date-middle .x-btn-mc,
  2695. .x-date-middle .x-btn-ml,
  2696. .x-date-middle .x-btn-mr,
  2697. .x-date-middle .x-btn-bc,
  2698. .x-date-middle .x-btn-bl,
  2699. .x-date-middle .x-btn-br {
  2700. background: transparent !important;
  2701. vertical-align: middle;
  2702. }
  2703. .x-date-middle .x-btn-mc em.x-btn-arrow {
  2704. background: transparent no-repeat right 0;
  2705. }
  2706. .x-date-right,
  2707. .x-date-left {
  2708. width: 18px;
  2709. }
  2710. .x-date-right {
  2711. text-align: right;
  2712. }
  2713. .x-date-middle {
  2714. padding-top: 2px;
  2715. padding-bottom: 2px;
  2716. width: 130px;
  2717. }
  2718. .x-date-right a,
  2719. .x-date-left a {
  2720. display: block;
  2721. width: 16px;
  2722. height: 16px;
  2723. background-position: center;
  2724. background-repeat: no-repeat;
  2725. cursor: pointer;
  2726. -moz-opacity: 0.6;
  2727. opacity: 0.6;
  2728. filter: alpha(opacity=60);
  2729. }
  2730. .x-date-right a:hover,
  2731. .x-date-left a:hover {
  2732. -moz-opacity: 1;
  2733. opacity: 1;
  2734. filter: alpha(opacity=100);
  2735. }
  2736. .x-item-disabled .x-date-right a:hover,
  2737. .x-item-disabled .x-date-left a:hover {
  2738. -moz-opacity: 0.6;
  2739. opacity: 0.6;
  2740. filter: alpha(opacity=60);
  2741. }
  2742. .x-date-right a {
  2743. margin-right: 2px;
  2744. text-decoration: none !important;
  2745. }
  2746. .x-date-left a {
  2747. margin-left: 2px;
  2748. text-decoration: none !important;
  2749. }
  2750. table.x-date-inner {
  2751. width: 100%;
  2752. table-layout: fixed;
  2753. }
  2754. .ext-webkit table.x-date-inner {
  2755. width: 175px;
  2756. }
  2757. .x-date-inner th {
  2758. width: 25px;
  2759. }
  2760. .x-date-inner th {
  2761. background: repeat-x left top;
  2762. text-align: right !important;
  2763. border-bottom: 1px solid;
  2764. cursor: default;
  2765. padding: 0;
  2766. border-collapse: separate;
  2767. }
  2768. .x-date-inner th span {
  2769. display: block;
  2770. padding: 2px;
  2771. padding-right: 7px;
  2772. }
  2773. .x-date-inner td {
  2774. border: 1px solid;
  2775. text-align: right;
  2776. padding: 0;
  2777. }
  2778. .x-date-inner a {
  2779. padding: 2px 5px;
  2780. display: block;
  2781. text-decoration: none;
  2782. text-align: right;
  2783. zoom: 1;
  2784. }
  2785. .x-date-inner .x-date-active {
  2786. cursor: pointer;
  2787. color: black;
  2788. }
  2789. .x-date-inner .x-date-selected a {
  2790. background: repeat-x left top;
  2791. border: 1px solid;
  2792. padding: 1px 4px;
  2793. }
  2794. .x-date-inner .x-date-today a {
  2795. border: 1px solid;
  2796. padding: 1px 4px;
  2797. }
  2798. .x-date-inner .x-date-prevday a,
  2799. .x-date-inner .x-date-nextday a {
  2800. text-decoration: none !important;
  2801. }
  2802. .x-date-bottom {
  2803. padding: 4px;
  2804. border-top: 1px solid;
  2805. background: repeat-x left top;
  2806. }
  2807. .x-date-inner a:hover,
  2808. .x-date-inner .x-date-disabled a:hover {
  2809. text-decoration: none !important;
  2810. }
  2811. .x-item-disabled .x-date-inner a:hover {
  2812. background: none;
  2813. }
  2814. .x-date-inner .x-date-disabled a {
  2815. cursor: default;
  2816. }
  2817. .x-date-menu .x-menu-item {
  2818. padding: 1px 24px 1px 4px;
  2819. white-space: nowrap;
  2820. }
  2821. .x-date-menu .x-menu-item .x-menu-item-icon {
  2822. width: 10px;
  2823. height: 10px;
  2824. margin-right: 5px;
  2825. background-position: center -4px !important;
  2826. }
  2827. .x-date-mp {
  2828. position: absolute;
  2829. left: 0;
  2830. top: 0;
  2831. display: none;
  2832. }
  2833. .x-date-mp td {
  2834. padding: 2px;
  2835. font: normal 11px arial, helvetica, tahoma, sans-serif;
  2836. }
  2837. td.x-date-mp-month,
  2838. td.x-date-mp-year,
  2839. td.x-date-mp-ybtn {
  2840. border: 0 none;
  2841. text-align: center;
  2842. vertical-align: middle;
  2843. width: 25%;
  2844. }
  2845. .x-date-mp-ok {
  2846. margin-right: 3px;
  2847. }
  2848. .x-date-mp-btns button {
  2849. text-decoration: none;
  2850. text-align: center;
  2851. text-decoration: none !important;
  2852. border: 1px solid;
  2853. padding: 1px 3px 1px;
  2854. cursor: pointer;
  2855. }
  2856. .x-date-mp-btns {
  2857. background: repeat-x left top;
  2858. }
  2859. .x-date-mp-btns td {
  2860. border-top: 1px solid;
  2861. text-align: center;
  2862. }
  2863. td.x-date-mp-month a,
  2864. td.x-date-mp-year a {
  2865. display: block;
  2866. padding: 2px 4px;
  2867. text-decoration: none;
  2868. text-align: center;
  2869. }
  2870. td.x-date-mp-month a:hover,
  2871. td.x-date-mp-year a:hover {
  2872. text-decoration: none;
  2873. cursor: pointer;
  2874. }
  2875. td.x-date-mp-sel a {
  2876. padding: 1px 3px;
  2877. background: repeat-x left top;
  2878. border: 1px solid;
  2879. }
  2880. .x-date-mp-ybtn a {
  2881. overflow: hidden;
  2882. width: 15px;
  2883. height: 15px;
  2884. cursor: pointer;
  2885. background: transparent no-repeat;
  2886. display: block;
  2887. margin: 0 auto;
  2888. }
  2889. .x-date-mp-ybtn a.x-date-mp-next {
  2890. background-position: 0 -120px;
  2891. }
  2892. .x-date-mp-ybtn a.x-date-mp-next:hover {
  2893. background-position: -15px -120px;
  2894. }
  2895. .x-date-mp-ybtn a.x-date-mp-prev {
  2896. background-position: 0 -105px;
  2897. }
  2898. .x-date-mp-ybtn a.x-date-mp-prev:hover {
  2899. background-position: -15px -105px;
  2900. }
  2901. .x-date-mp-ybtn {
  2902. text-align: center;
  2903. }
  2904. td.x-date-mp-sep {
  2905. border-right: 1px solid;
  2906. } /*!
  2907. * Ext JS Library 3.4.0
  2908. * Copyright(c) 2006-2011 Sencha Inc.
  2909. * licensing@sencha.com
  2910. * http://www.sencha.com/license
  2911. */
  2912. .x-tip {
  2913. position: absolute;
  2914. top: 0;
  2915. left: 0;
  2916. visibility: hidden;
  2917. z-index: 20002;
  2918. border: 0 none;
  2919. }
  2920. .x-tip .x-tip-close {
  2921. height: 15px;
  2922. float: right;
  2923. width: 15px;
  2924. margin: 0 0 2px 2px;
  2925. cursor: pointer;
  2926. display: none;
  2927. }
  2928. .x-tip .x-tip-tc {
  2929. background: transparent no-repeat 0 -62px;
  2930. padding-top: 3px;
  2931. overflow: hidden;
  2932. zoom: 1;
  2933. }
  2934. .x-tip .x-tip-tl {
  2935. background: transparent no-repeat 0 0;
  2936. padding-left: 6px;
  2937. overflow: hidden;
  2938. zoom: 1;
  2939. }
  2940. .x-tip .x-tip-tr {
  2941. background: transparent no-repeat right 0;
  2942. padding-right: 6px;
  2943. overflow: hidden;
  2944. zoom: 1;
  2945. }
  2946. .x-tip .x-tip-bc {
  2947. background: transparent no-repeat 0 -121px;
  2948. height: 3px;
  2949. overflow: hidden;
  2950. }
  2951. .x-tip .x-tip-bl {
  2952. background: transparent no-repeat 0 -59px;
  2953. padding-left: 6px;
  2954. zoom: 1;
  2955. }
  2956. .x-tip .x-tip-br {
  2957. background: transparent no-repeat right -59px;
  2958. padding-right: 6px;
  2959. zoom: 1;
  2960. }
  2961. .x-tip .x-tip-mc {
  2962. border: 0 none;
  2963. }
  2964. .x-tip .x-tip-ml {
  2965. background: no-repeat 0 -124px;
  2966. padding-left: 6px;
  2967. zoom: 1;
  2968. }
  2969. .x-tip .x-tip-mr {
  2970. background: transparent no-repeat right -124px;
  2971. padding-right: 6px;
  2972. zoom: 1;
  2973. }
  2974. .ext-ie .x-tip .x-tip-header,
  2975. .ext-ie .x-tip .x-tip-tc {
  2976. font-size: 0;
  2977. line-height: 0;
  2978. }
  2979. .ext-border-box .x-tip .x-tip-header,
  2980. .ext-border-box .x-tip .x-tip-tc {
  2981. line-height: 1px;
  2982. }
  2983. .x-tip .x-tip-header-text {
  2984. padding: 0;
  2985. margin: 0 0 2px 0;
  2986. }
  2987. .x-tip .x-tip-body {
  2988. margin: 0 !important;
  2989. line-height: 14px;
  2990. padding: 0;
  2991. }
  2992. .x-tip .x-tip-body .loading-indicator {
  2993. margin: 0;
  2994. }
  2995. .x-tip-draggable .x-tip-header,
  2996. .x-tip-draggable .x-tip-header-text {
  2997. cursor: move;
  2998. }
  2999. .x-form-invalid-tip .x-tip-tc {
  3000. background: repeat-x 0 -12px;
  3001. padding-top: 6px;
  3002. }
  3003. .x-form-invalid-tip .x-tip-bc {
  3004. background: repeat-x 0 -18px;
  3005. height: 6px;
  3006. }
  3007. .x-form-invalid-tip .x-tip-bl {
  3008. background: no-repeat 0 -6px;
  3009. }
  3010. .x-form-invalid-tip .x-tip-br {
  3011. background: no-repeat right -6px;
  3012. }
  3013. .x-form-invalid-tip .x-tip-body {
  3014. padding: 2px;
  3015. }
  3016. .x-form-invalid-tip .x-tip-body {
  3017. padding-left: 24px;
  3018. background: transparent no-repeat 2px 2px;
  3019. }
  3020. .x-tip-anchor {
  3021. position: absolute;
  3022. width: 9px;
  3023. height: 10px;
  3024. overflow: hidden;
  3025. background: transparent no-repeat 0 0;
  3026. zoom: 1;
  3027. }
  3028. .x-tip-anchor-bottom {
  3029. background-position: -9px 0;
  3030. }
  3031. .x-tip-anchor-right {
  3032. background-position: -18px 0;
  3033. width: 10px;
  3034. }
  3035. .x-tip-anchor-left {
  3036. background-position: -28px 0;
  3037. width: 10px;
  3038. } /*!
  3039. * Ext JS Library 3.4.0
  3040. * Copyright(c) 2006-2011 Sencha Inc.
  3041. * licensing@sencha.com
  3042. * http://www.sencha.com/license
  3043. */
  3044. .x-menu {
  3045. z-index: 15000;
  3046. zoom: 1;
  3047. background: repeat-y;
  3048. }
  3049. .x-menu-floating {
  3050. border: 1px solid;
  3051. }
  3052. .x-menu a {
  3053. text-decoration: none !important;
  3054. }
  3055. .ext-ie .x-menu {
  3056. zoom: 1;
  3057. overflow: hidden;
  3058. }
  3059. .x-menu-list {
  3060. padding: 2px;
  3061. background-color: transparent;
  3062. border: 0 none;
  3063. overflow: hidden;
  3064. overflow-y: hidden;
  3065. }
  3066. .ext-strict .ext-ie .x-menu-list {
  3067. position: relative;
  3068. }
  3069. .x-menu li {
  3070. line-height: 100%;
  3071. }
  3072. .x-menu li.x-menu-sep-li {
  3073. font-size: 1px;
  3074. line-height: 1px;
  3075. }
  3076. .x-menu-list-item {
  3077. white-space: nowrap;
  3078. display: block;
  3079. padding: 1px;
  3080. }
  3081. .x-menu-item {
  3082. -moz-user-select: none;
  3083. -khtml-user-select: none;
  3084. -webkit-user-select: ignore;
  3085. }
  3086. .x-menu-item-arrow {
  3087. background: transparent no-repeat right;
  3088. }
  3089. .x-menu-sep {
  3090. display: block;
  3091. font-size: 1px;
  3092. line-height: 1px;
  3093. margin: 2px 3px;
  3094. border-bottom: 1px solid;
  3095. overflow: hidden;
  3096. }
  3097. .x-menu-focus {
  3098. position: absolute;
  3099. left: -1px;
  3100. top: -1px;
  3101. width: 1px;
  3102. height: 1px;
  3103. line-height: 1px;
  3104. font-size: 1px;
  3105. -moz-outline: 0 none;
  3106. outline: 0 none;
  3107. -moz-user-select: none;
  3108. -khtml-user-select: none;
  3109. -webkit-user-select: ignore;
  3110. overflow: hidden;
  3111. display: block;
  3112. }
  3113. a.x-menu-item {
  3114. cursor: pointer;
  3115. display: block;
  3116. line-height: 16px;
  3117. outline-color: -moz-use-text-color;
  3118. outline-style: none;
  3119. outline-width: 0;
  3120. padding: 3px 21px 3px 27px;
  3121. position: relative;
  3122. text-decoration: none;
  3123. white-space: nowrap;
  3124. }
  3125. .x-menu-item-active {
  3126. background-repeat: repeat-x;
  3127. background-position: left bottom;
  3128. border-style: solid;
  3129. border-width: 1px 0;
  3130. margin: 0 1px;
  3131. padding: 0;
  3132. }
  3133. .x-menu-item-active a.x-menu-item {
  3134. border-style: solid;
  3135. border-width: 0 1px;
  3136. margin: 0 -1px;
  3137. }
  3138. .x-menu-item-icon {
  3139. border: 0 none;
  3140. height: 16px;
  3141. padding: 0;
  3142. vertical-align: top;
  3143. width: 16px;
  3144. position: absolute;
  3145. left: 3px;
  3146. top: 3px;
  3147. margin: 0;
  3148. background-position: center;
  3149. }
  3150. .ext-ie .x-menu-item-icon {
  3151. left: -24px;
  3152. }
  3153. .ext-strict .x-menu-item-icon {
  3154. left: 3px;
  3155. }
  3156. .ext-ie6 .x-menu-item-icon {
  3157. left: -24px;
  3158. }
  3159. .ext-ie .x-menu-item-icon {
  3160. vertical-align: middle;
  3161. }
  3162. .x-menu-check-item .x-menu-item-icon {
  3163. background: transparent no-repeat center;
  3164. }
  3165. .x-menu-group-item .x-menu-item-icon {
  3166. background-color: transparent;
  3167. }
  3168. .x-menu-item-checked .x-menu-group-item .x-menu-item-icon {
  3169. background: transparent no-repeat center;
  3170. }
  3171. .x-date-menu .x-menu-list {
  3172. padding: 0;
  3173. }
  3174. .x-menu-date-item {
  3175. padding: 0;
  3176. }
  3177. .x-menu .x-color-palette,
  3178. .x-menu .x-date-picker {
  3179. margin-left: 26px;
  3180. margin-right: 4px;
  3181. }
  3182. .x-menu .x-date-picker {
  3183. border: 1px solid;
  3184. margin-top: 2px;
  3185. margin-bottom: 2px;
  3186. }
  3187. .x-menu-plain .x-color-palette,
  3188. .x-menu-plain .x-date-picker {
  3189. margin: 0;
  3190. border: 0 none;
  3191. }
  3192. .x-date-menu {
  3193. padding: 0 !important;
  3194. }
  3195. .ext-strict .ext-ie6 .x-menu-sep-li {
  3196. padding: 3px 4px;
  3197. }
  3198. .ext-strict .ext-ie6 .x-menu-sep {
  3199. margin: 0;
  3200. height: 1px;
  3201. }
  3202. .ext-webkit .x-menu-sep {
  3203. height: 1px;
  3204. }
  3205. .ext-ie .x-date-menu {
  3206. height: 199px;
  3207. }
  3208. .ext-strict .ext-ie .x-date-menu,
  3209. .ext-border-box .ext-ie8 .x-date-menu {
  3210. height: 197px;
  3211. }
  3212. .ext-strict .ext-ie7 .x-date-menu {
  3213. height: 195px;
  3214. }
  3215. .ext-strict .ext-ie8 .x-date-menu {
  3216. height: auto;
  3217. }
  3218. .x-cycle-menu .x-menu-item-checked {
  3219. border: 1px dotted !important;
  3220. padding: 0;
  3221. }
  3222. .x-menu .x-menu-scroller {
  3223. width: 100%;
  3224. background-repeat: no-repeat;
  3225. background-position: center;
  3226. height: 8px;
  3227. line-height: 8px;
  3228. cursor: pointer;
  3229. margin: 0;
  3230. padding: 0;
  3231. }
  3232. .x-menu .x-menu-scroller-active {
  3233. height: 6px;
  3234. line-height: 6px;
  3235. }
  3236. .x-menu-list-item-indent {
  3237. padding-left: 27px;
  3238. } /*!
  3239. * Ext JS Library 3.4.0
  3240. * Copyright(c) 2006-2011 Sencha Inc.
  3241. * licensing@sencha.com
  3242. * http://www.sencha.com/license
  3243. */
  3244. .x-box-tl {
  3245. background: transparent no-repeat 0 0;
  3246. zoom: 1;
  3247. }
  3248. .x-box-tc {
  3249. height: 8px;
  3250. background: transparent repeat-x 0 0;
  3251. overflow: hidden;
  3252. }
  3253. .x-box-tr {
  3254. background: transparent no-repeat right -8px;
  3255. }
  3256. .x-box-ml {
  3257. background: transparent repeat-y 0;
  3258. padding-left: 4px;
  3259. overflow: hidden;
  3260. zoom: 1;
  3261. }
  3262. .x-box-mc {
  3263. background: repeat-x 0 -16px;
  3264. padding: 4px 10px;
  3265. }
  3266. .x-box-mc h3 {
  3267. margin: 0 0 4px 0;
  3268. zoom: 1;
  3269. }
  3270. .x-box-mr {
  3271. background: transparent repeat-y right;
  3272. padding-right: 4px;
  3273. overflow: hidden;
  3274. }
  3275. .x-box-bl {
  3276. background: transparent no-repeat 0 -16px;
  3277. zoom: 1;
  3278. }
  3279. .x-box-bc {
  3280. background: transparent repeat-x 0 -8px;
  3281. height: 8px;
  3282. overflow: hidden;
  3283. }
  3284. .x-box-br {
  3285. background: transparent no-repeat right -24px;
  3286. }
  3287. .x-box-tl,
  3288. .x-box-bl {
  3289. padding-left: 8px;
  3290. overflow: hidden;
  3291. }
  3292. .x-box-tr,
  3293. .x-box-br {
  3294. padding-right: 8px;
  3295. overflow: hidden;
  3296. } /*!
  3297. * Ext JS Library 3.4.0
  3298. * Copyright(c) 2006-2011 Sencha Inc.
  3299. * licensing@sencha.com
  3300. * http://www.sencha.com/license
  3301. */
  3302. #x-debug-browser .x-tree .x-tree-node a span {
  3303. padding-top: 2px;
  3304. line-height: 18px;
  3305. }
  3306. #x-debug-browser .x-tool-toggle {
  3307. background-position: 0 -75px;
  3308. }
  3309. #x-debug-browser .x-tool-toggle-over {
  3310. background-position: -15px -75px;
  3311. }
  3312. #x-debug-browser.x-panel-collapsed .x-tool-toggle {
  3313. background-position: 0 -60px;
  3314. }
  3315. #x-debug-browser.x-panel-collapsed .x-tool-toggle-over {
  3316. background-position: -15px -60px;
  3317. } /*!
  3318. * Ext JS Library 3.4.0
  3319. * Copyright(c) 2006-2011 Sencha Inc.
  3320. * licensing@sencha.com
  3321. * http://www.sencha.com/license
  3322. */
  3323. .x-combo-list {
  3324. border: 1px solid;
  3325. zoom: 1;
  3326. overflow: hidden;
  3327. }
  3328. .x-combo-list-inner {
  3329. overflow: auto;
  3330. position: relative;
  3331. zoom: 1;
  3332. overflow-x: hidden;
  3333. }
  3334. .x-combo-list-hd {
  3335. border-bottom: 1px solid;
  3336. padding: 3px;
  3337. }
  3338. .x-resizable-pinned .x-combo-list-inner {
  3339. border-bottom: 1px solid;
  3340. }
  3341. .x-combo-list-item {
  3342. white-space: nowrap;
  3343. overflow: hidden;
  3344. text-overflow: ellipsis;
  3345. }
  3346. .x-combo-list .x-combo-selected {
  3347. cursor: pointer;
  3348. }
  3349. .x-combo-list .x-toolbar {
  3350. border-top: 1px solid;
  3351. border-bottom: 0 none;
  3352. } /*!
  3353. * Ext JS Library 3.4.0
  3354. * Copyright(c) 2006-2011 Sencha Inc.
  3355. * licensing@sencha.com
  3356. * http://www.sencha.com/license
  3357. */
  3358. .x-panel {
  3359. border-style: solid;
  3360. border-width: 0;
  3361. }
  3362. .x-panel-header {
  3363. overflow: hidden;
  3364. zoom: 1;
  3365. padding: 5px 3px 4px 5px;
  3366. border: 1px solid;
  3367. line-height: 15px;
  3368. background: transparent repeat-x 0 -1px;
  3369. }
  3370. .x-panel-body {
  3371. border: 1px solid;
  3372. border-top: 0 none;
  3373. overflow: hidden;
  3374. position: relative;
  3375. }
  3376. .x-panel-bbar .x-toolbar,
  3377. .x-panel-tbar .x-toolbar {
  3378. border: 1px solid;
  3379. border-top: 0 none;
  3380. overflow: hidden;
  3381. padding: 2px;
  3382. }
  3383. .x-panel-tbar-noheader .x-toolbar,
  3384. .x-panel-mc .x-panel-tbar .x-toolbar {
  3385. border-top: 1px solid;
  3386. border-bottom: 0 none;
  3387. }
  3388. .x-panel-body-noheader,
  3389. .x-panel-mc .x-panel-body {
  3390. border-top: 1px solid;
  3391. }
  3392. .x-panel-header {
  3393. overflow: hidden;
  3394. zoom: 1;
  3395. }
  3396. .x-panel-tl .x-panel-header {
  3397. padding: 5px 0 4px 0;
  3398. border: 0 none;
  3399. background: transparent no-repeat;
  3400. }
  3401. .x-panel-tl .x-panel-icon,
  3402. .x-window-tl .x-panel-icon {
  3403. padding-left: 20px;
  3404. background-repeat: no-repeat;
  3405. background-position: 0 4px;
  3406. zoom: 1;
  3407. }
  3408. .x-panel-inline-icon {
  3409. width: 16px;
  3410. height: 16px;
  3411. background-repeat: no-repeat;
  3412. background-position: 0 0;
  3413. vertical-align: middle;
  3414. margin-right: 4px;
  3415. margin-top: -1px;
  3416. margin-bottom: -1px;
  3417. }
  3418. .x-panel-tc {
  3419. background: transparent repeat-x 0 0;
  3420. overflow: hidden;
  3421. }
  3422. .ext-strict .ext-ie7 .x-panel-tc {
  3423. overflow: visible;
  3424. }
  3425. .x-panel-tl {
  3426. background: transparent no-repeat 0 0;
  3427. padding-left: 6px;
  3428. zoom: 1;
  3429. border-bottom: 1px solid;
  3430. }
  3431. .x-panel-tr {
  3432. background: transparent no-repeat right 0;
  3433. zoom: 1;
  3434. padding-right: 6px;
  3435. }
  3436. .x-panel-bc {
  3437. background: transparent repeat-x 0 bottom;
  3438. zoom: 1;
  3439. }
  3440. .x-panel-bc .x-panel-footer {
  3441. zoom: 1;
  3442. }
  3443. .x-panel-bl {
  3444. background: transparent no-repeat 0 bottom;
  3445. padding-left: 6px;
  3446. zoom: 1;
  3447. }
  3448. .x-panel-br {
  3449. background: transparent no-repeat right bottom;
  3450. padding-right: 6px;
  3451. zoom: 1;
  3452. }
  3453. .x-panel-mc {
  3454. border: 0 none;
  3455. padding: 0;
  3456. margin: 0;
  3457. padding-top: 6px;
  3458. }
  3459. .x-panel-mc .x-panel-body {
  3460. background-color: transparent;
  3461. border: 0 none;
  3462. }
  3463. .x-panel-ml {
  3464. background: repeat-y 0 0;
  3465. padding-left: 6px;
  3466. zoom: 1;
  3467. }
  3468. .x-panel-mr {
  3469. background: transparent repeat-y right 0;
  3470. padding-right: 6px;
  3471. zoom: 1;
  3472. }
  3473. .x-panel-bc .x-panel-footer {
  3474. padding-bottom: 6px;
  3475. }
  3476. .x-panel-nofooter .x-panel-bc,
  3477. .x-panel-nofooter .x-window-bc {
  3478. height: 6px;
  3479. font-size: 0;
  3480. line-height: 0;
  3481. }
  3482. .x-panel-bwrap {
  3483. overflow: hidden;
  3484. zoom: 1;
  3485. left: 0;
  3486. top: 0;
  3487. }
  3488. .x-panel-body {
  3489. overflow: hidden;
  3490. zoom: 1;
  3491. }
  3492. .x-panel-collapsed .x-resizable-handle {
  3493. display: none;
  3494. }
  3495. .ext-gecko .x-panel-animated div {
  3496. overflow: hidden !important;
  3497. }
  3498. .x-plain-body {
  3499. overflow: hidden;
  3500. }
  3501. .x-plain-bbar .x-toolbar {
  3502. overflow: hidden;
  3503. padding: 2px;
  3504. }
  3505. .x-plain-tbar .x-toolbar {
  3506. overflow: hidden;
  3507. padding: 2px;
  3508. }
  3509. .x-plain-bwrap {
  3510. overflow: hidden;
  3511. zoom: 1;
  3512. }
  3513. .x-plain {
  3514. overflow: hidden;
  3515. }
  3516. .x-tool {
  3517. overflow: hidden;
  3518. width: 15px;
  3519. height: 15px;
  3520. float: right;
  3521. cursor: pointer;
  3522. background: transparent no-repeat;
  3523. margin-left: 2px;
  3524. }
  3525. .x-tool-toggle {
  3526. background-position: 0 -60px;
  3527. }
  3528. .x-tool-toggle-over {
  3529. background-position: -15px -60px;
  3530. }
  3531. .x-panel-collapsed .x-tool-toggle {
  3532. background-position: 0 -75px;
  3533. }
  3534. .x-panel-collapsed .x-tool-toggle-over {
  3535. background-position: -15px -75px;
  3536. }
  3537. .x-tool-close {
  3538. background-position: 0 -0;
  3539. }
  3540. .x-tool-close-over {
  3541. background-position: -15px 0;
  3542. }
  3543. .x-tool-minimize {
  3544. background-position: 0 -15px;
  3545. }
  3546. .x-tool-minimize-over {
  3547. background-position: -15px -15px;
  3548. }
  3549. .x-tool-maximize {
  3550. background-position: 0 -30px;
  3551. }
  3552. .x-tool-maximize-over {
  3553. background-position: -15px -30px;
  3554. }
  3555. .x-tool-restore {
  3556. background-position: 0 -45px;
  3557. }
  3558. .x-tool-restore-over {
  3559. background-position: -15px -45px;
  3560. }
  3561. .x-tool-gear {
  3562. background-position: 0 -90px;
  3563. }
  3564. .x-tool-gear-over {
  3565. background-position: -15px -90px;
  3566. }
  3567. .x-tool-prev {
  3568. background-position: 0 -105px;
  3569. }
  3570. .x-tool-prev-over {
  3571. background-position: -15px -105px;
  3572. }
  3573. .x-tool-next {
  3574. background-position: 0 -120px;
  3575. }
  3576. .x-tool-next-over {
  3577. background-position: -15px -120px;
  3578. }
  3579. .x-tool-pin {
  3580. background-position: 0 -135px;
  3581. }
  3582. .x-tool-pin-over {
  3583. background-position: -15px -135px;
  3584. }
  3585. .x-tool-unpin {
  3586. background-position: 0 -150px;
  3587. }
  3588. .x-tool-unpin-over {
  3589. background-position: -15px -150px;
  3590. }
  3591. .x-tool-right {
  3592. background-position: 0 -165px;
  3593. }
  3594. .x-tool-right-over {
  3595. background-position: -15px -165px;
  3596. }
  3597. .x-tool-left {
  3598. background-position: 0 -180px;
  3599. }
  3600. .x-tool-left-over {
  3601. background-position: -15px -180px;
  3602. }
  3603. .x-tool-down {
  3604. background-position: 0 -195px;
  3605. }
  3606. .x-tool-down-over {
  3607. background-position: -15px -195px;
  3608. }
  3609. .x-tool-up {
  3610. background-position: 0 -210px;
  3611. }
  3612. .x-tool-up-over {
  3613. background-position: -15px -210px;
  3614. }
  3615. .x-tool-refresh {
  3616. background-position: 0 -225px;
  3617. }
  3618. .x-tool-refresh-over {
  3619. background-position: -15px -225px;
  3620. }
  3621. .x-tool-plus {
  3622. background-position: 0 -240px;
  3623. }
  3624. .x-tool-plus-over {
  3625. background-position: -15px -240px;
  3626. }
  3627. .x-tool-minus {
  3628. background-position: 0 -255px;
  3629. }
  3630. .x-tool-minus-over {
  3631. background-position: -15px -255px;
  3632. }
  3633. .x-tool-search {
  3634. background-position: 0 -270px;
  3635. }
  3636. .x-tool-search-over {
  3637. background-position: -15px -270px;
  3638. }
  3639. .x-tool-save {
  3640. background-position: 0 -285px;
  3641. }
  3642. .x-tool-save-over {
  3643. background-position: -15px -285px;
  3644. }
  3645. .x-tool-help {
  3646. background-position: 0 -300px;
  3647. }
  3648. .x-tool-help-over {
  3649. background-position: -15px -300px;
  3650. }
  3651. .x-tool-print {
  3652. background-position: 0 -315px;
  3653. }
  3654. .x-tool-print-over {
  3655. background-position: -15px -315px;
  3656. }
  3657. .x-tool-expand {
  3658. background-position: 0 -330px;
  3659. }
  3660. .x-tool-expand-over {
  3661. background-position: -15px -330px;
  3662. }
  3663. .x-tool-collapse {
  3664. background-position: 0 -345px;
  3665. }
  3666. .x-tool-collapse-over {
  3667. background-position: -15px -345px;
  3668. }
  3669. .x-tool-resize {
  3670. background-position: 0 -360px;
  3671. }
  3672. .x-tool-resize-over {
  3673. background-position: -15px -360px;
  3674. }
  3675. .x-tool-move {
  3676. background-position: 0 -375px;
  3677. }
  3678. .x-tool-move-over {
  3679. background-position: -15px -375px;
  3680. }
  3681. .x-panel-ghost {
  3682. z-index: 12000;
  3683. overflow: hidden;
  3684. position: absolute;
  3685. left: 0;
  3686. top: 0;
  3687. opacity: 0.65;
  3688. -moz-opacity: 0.65;
  3689. filter: alpha(opacity=65);
  3690. }
  3691. .x-panel-ghost ul {
  3692. margin: 0;
  3693. padding: 0;
  3694. overflow: hidden;
  3695. font-size: 0;
  3696. line-height: 0;
  3697. display: block;
  3698. }
  3699. .x-panel-ghost * {
  3700. cursor: move !important;
  3701. }
  3702. .x-panel-dd-spacer {
  3703. border: 2px dashed;
  3704. }
  3705. .x-panel-btns {
  3706. padding: 5px;
  3707. overflow: hidden;
  3708. }
  3709. .x-panel-btns td.x-toolbar-cell {
  3710. padding: 3px;
  3711. }
  3712. .x-panel-btns .x-btn-focus .x-btn-left {
  3713. background-position: 0 -147px;
  3714. }
  3715. .x-panel-btns .x-btn-focus .x-btn-right {
  3716. background-position: 0 -168px;
  3717. }
  3718. .x-panel-btns .x-btn-focus .x-btn-center {
  3719. background-position: 0 -189px;
  3720. }
  3721. .x-panel-btns .x-btn-over .x-btn-left {
  3722. background-position: 0 -63px;
  3723. }
  3724. .x-panel-btns .x-btn-over .x-btn-right {
  3725. background-position: 0 -84px;
  3726. }
  3727. .x-panel-btns .x-btn-over .x-btn-center {
  3728. background-position: 0 -105px;
  3729. }
  3730. .x-panel-btns .x-btn-click .x-btn-center {
  3731. background-position: 0 -126px;
  3732. }
  3733. .x-panel-btns .x-btn-click .x-btn-right {
  3734. background-position: 0 -84px;
  3735. }
  3736. .x-panel-btns .x-btn-click .x-btn-left {
  3737. background-position: 0 -63px;
  3738. }
  3739. .x-panel-fbar td,
  3740. .x-panel-fbar span,
  3741. .x-panel-fbar input,
  3742. .x-panel-fbar div,
  3743. .x-panel-fbar select,
  3744. .x-panel-fbar label {
  3745. white-space: nowrap;
  3746. } /*!
  3747. * Ext JS Library 3.4.0
  3748. * Copyright(c) 2006-2011 Sencha Inc.
  3749. * licensing@sencha.com
  3750. * http://www.sencha.com/license
  3751. */
  3752. .x-panel-reset .x-panel-body html,
  3753. .x-panel-reset .x-panel-body address,
  3754. .x-panel-reset .x-panel-body blockquote,
  3755. .x-panel-reset .x-panel-body body,
  3756. .x-panel-reset .x-panel-body dd,
  3757. .x-panel-reset .x-panel-body div,
  3758. .x-panel-reset .x-panel-body dl,
  3759. .x-panel-reset .x-panel-body dt,
  3760. .x-panel-reset .x-panel-body fieldset,
  3761. .x-panel-reset .x-panel-body form,
  3762. .x-panel-reset .x-panel-body frame,
  3763. frameset,
  3764. .x-panel-reset .x-panel-body h1,
  3765. .x-panel-reset .x-panel-body h2,
  3766. .x-panel-reset .x-panel-body h3,
  3767. .x-panel-reset .x-panel-body h4,
  3768. .x-panel-reset .x-panel-body h5,
  3769. .x-panel-reset .x-panel-body h6,
  3770. .x-panel-reset .x-panel-body noframes,
  3771. .x-panel-reset .x-panel-body ol,
  3772. .x-panel-reset .x-panel-body p,
  3773. .x-panel-reset .x-panel-body ul,
  3774. .x-panel-reset .x-panel-body center,
  3775. .x-panel-reset .x-panel-body dir,
  3776. .x-panel-reset .x-panel-body hr,
  3777. .x-panel-reset .x-panel-body menu,
  3778. .x-panel-reset .x-panel-body pre {
  3779. display: block;
  3780. }
  3781. .x-panel-reset .x-panel-body li {
  3782. display: list-item;
  3783. }
  3784. .x-panel-reset .x-panel-body head {
  3785. display: none;
  3786. }
  3787. .x-panel-reset .x-panel-body table {
  3788. display: table;
  3789. }
  3790. .x-panel-reset .x-panel-body tr {
  3791. display: table-row;
  3792. }
  3793. .x-panel-reset .x-panel-body thead {
  3794. display: table-header-group;
  3795. }
  3796. .x-panel-reset .x-panel-body tbody {
  3797. display: table-row-group;
  3798. }
  3799. .x-panel-reset .x-panel-body tfoot {
  3800. display: table-footer-group;
  3801. }
  3802. .x-panel-reset .x-panel-body col {
  3803. display: table-column;
  3804. }
  3805. .x-panel-reset .x-panel-body colgroup {
  3806. display: table-column-group;
  3807. }
  3808. .x-panel-reset .x-panel-body td,
  3809. .x-panel-reset .x-panel-body th {
  3810. display: table-cell;
  3811. }
  3812. .x-panel-reset .x-panel-body caption {
  3813. display: table-caption;
  3814. }
  3815. .x-panel-reset .x-panel-body th {
  3816. font-weight: bolder;
  3817. text-align: center;
  3818. }
  3819. .x-panel-reset .x-panel-body caption {
  3820. text-align: center;
  3821. }
  3822. .x-panel-reset .x-panel-body body {
  3823. margin: 8px;
  3824. }
  3825. .x-panel-reset .x-panel-body h1 {
  3826. font-size: 2em;
  3827. margin: 0.67em 0;
  3828. }
  3829. .x-panel-reset .x-panel-body h2 {
  3830. font-size: 1.5em;
  3831. margin: 0.75em 0;
  3832. }
  3833. .x-panel-reset .x-panel-body h3 {
  3834. font-size: 1.17em;
  3835. margin: 0.83em 0;
  3836. }
  3837. .x-panel-reset .x-panel-body h4,
  3838. .x-panel-reset .x-panel-body p,
  3839. .x-panel-reset .x-panel-body blockquote,
  3840. .x-panel-reset .x-panel-body ul,
  3841. .x-panel-reset .x-panel-body fieldset,
  3842. .x-panel-reset .x-panel-body form,
  3843. .x-panel-reset .x-panel-body ol,
  3844. .x-panel-reset .x-panel-body dl,
  3845. .x-panel-reset .x-panel-body dir,
  3846. .x-panel-reset .x-panel-body menu {
  3847. margin: 1.12em 0;
  3848. }
  3849. .x-panel-reset .x-panel-body h5 {
  3850. font-size: 0.83em;
  3851. margin: 1.5em 0;
  3852. }
  3853. .x-panel-reset .x-panel-body h6 {
  3854. font-size: 0.75em;
  3855. margin: 1.67em 0;
  3856. }
  3857. .x-panel-reset .x-panel-body h1,
  3858. .x-panel-reset .x-panel-body h2,
  3859. .x-panel-reset .x-panel-body h3,
  3860. .x-panel-reset .x-panel-body h4,
  3861. .x-panel-reset .x-panel-body h5,
  3862. .x-panel-reset .x-panel-body h6,
  3863. .x-panel-reset .x-panel-body b,
  3864. .x-panel-reset .x-panel-body strong {
  3865. font-weight: bolder;
  3866. }
  3867. .x-panel-reset .x-panel-body blockquote {
  3868. margin-left: 40px;
  3869. margin-right: 40px;
  3870. }
  3871. .x-panel-reset .x-panel-body i,
  3872. .x-panel-reset .x-panel-body cite,
  3873. .x-panel-reset .x-panel-body em,
  3874. .x-panel-reset .x-panel-body var,
  3875. .x-panel-reset .x-panel-body address {
  3876. font-style: italic;
  3877. }
  3878. .x-panel-reset .x-panel-body pre,
  3879. .x-panel-reset .x-panel-body tt,
  3880. .x-panel-reset .x-panel-body code,
  3881. .x-panel-reset .x-panel-body kbd,
  3882. .x-panel-reset .x-panel-body samp {
  3883. font-family: monospace;
  3884. }
  3885. .x-panel-reset .x-panel-body pre {
  3886. white-space: pre;
  3887. }
  3888. .x-panel-reset .x-panel-body button,
  3889. .x-panel-reset .x-panel-body textarea,
  3890. .x-panel-reset .x-panel-body input,
  3891. .x-panel-reset .x-panel-body select {
  3892. display: inline-block;
  3893. }
  3894. .x-panel-reset .x-panel-body big {
  3895. font-size: 1.17em;
  3896. }
  3897. .x-panel-reset .x-panel-body small,
  3898. .x-panel-reset .x-panel-body sub,
  3899. .x-panel-reset .x-panel-body sup {
  3900. font-size: 0.83em;
  3901. }
  3902. .x-panel-reset .x-panel-body sub {
  3903. vertical-align: sub;
  3904. }
  3905. .x-panel-reset .x-panel-body sup {
  3906. vertical-align: super;
  3907. }
  3908. .x-panel-reset .x-panel-body table {
  3909. border-spacing: 2px;
  3910. }
  3911. .x-panel-reset .x-panel-body thead,
  3912. .x-panel-reset .x-panel-body tbody,
  3913. .x-panel-reset .x-panel-body tfoot {
  3914. vertical-align: middle;
  3915. }
  3916. .x-panel-reset .x-panel-body td,
  3917. .x-panel-reset .x-panel-body th {
  3918. vertical-align: inherit;
  3919. }
  3920. .x-panel-reset .x-panel-body s,
  3921. .x-panel-reset .x-panel-body strike,
  3922. .x-panel-reset .x-panel-body del {
  3923. text-decoration: line-through;
  3924. }
  3925. .x-panel-reset .x-panel-body hr {
  3926. border: 1px inset;
  3927. }
  3928. .x-panel-reset .x-panel-body ol,
  3929. .x-panel-reset .x-panel-body ul,
  3930. .x-panel-reset .x-panel-body dir,
  3931. .x-panel-reset .x-panel-body menu,
  3932. .x-panel-reset .x-panel-body dd {
  3933. margin-left: 40px;
  3934. }
  3935. .x-panel-reset .x-panel-body ul,
  3936. .x-panel-reset .x-panel-body menu,
  3937. .x-panel-reset .x-panel-body dir {
  3938. list-style-type: disc;
  3939. }
  3940. .x-panel-reset .x-panel-body ol {
  3941. list-style-type: decimal;
  3942. }
  3943. .x-panel-reset .x-panel-body ol ul,
  3944. .x-panel-reset .x-panel-body ul ol,
  3945. .x-panel-reset .x-panel-body ul ul,
  3946. .x-panel-reset .x-panel-body ol ol {
  3947. margin-top: 0;
  3948. margin-bottom: 0;
  3949. }
  3950. .x-panel-reset .x-panel-body u,
  3951. .x-panel-reset .x-panel-body ins {
  3952. text-decoration: underline;
  3953. }
  3954. .x-panel-reset .x-panel-body br:before {
  3955. content: "\a";
  3956. }
  3957. .x-panel-reset .x-panel-body :before,
  3958. .x-panel-reset .x-panel-body :after {
  3959. white-space: pre-line;
  3960. }
  3961. .x-panel-reset .x-panel-body center {
  3962. text-align: center;
  3963. }
  3964. .x-panel-reset .x-panel-body :link,
  3965. .x-panel-reset .x-panel-body :visited {
  3966. text-decoration: underline;
  3967. }
  3968. .x-panel-reset .x-panel-body :focus {
  3969. outline: invert dotted thin;
  3970. }
  3971. .x-panel-reset .x-panel-body BDO[DIR="ltr"] {
  3972. direction: ltr;
  3973. unicode-bidi: bidi-override;
  3974. }
  3975. .x-panel-reset .x-panel-body BDO[DIR="rtl"] {
  3976. direction: rtl;
  3977. unicode-bidi: bidi-override;
  3978. } /*!
  3979. * Ext JS Library 3.4.0
  3980. * Copyright(c) 2006-2011 Sencha Inc.
  3981. * licensing@sencha.com
  3982. * http://www.sencha.com/license
  3983. */
  3984. .x-window {
  3985. zoom: 1;
  3986. }
  3987. .x-window .x-window-handle {
  3988. opacity: 0;
  3989. -moz-opacity: 0;
  3990. filter: alpha(opacity=0);
  3991. }
  3992. .x-window-proxy {
  3993. border: 0px solid;
  3994. z-index: 12000;
  3995. overflow: hidden;
  3996. position: absolute;
  3997. left: 0;
  3998. top: 0;
  3999. display: none;
  4000. opacity: 0.5;
  4001. -moz-opacity: 0.5;
  4002. filter: alpha(opacity=50);
  4003. }
  4004. .x-window-header {
  4005. overflow: hidden;
  4006. zoom: 1;
  4007. }
  4008. .x-window-bwrap {
  4009. z-index: 1;
  4010. position: relative;
  4011. zoom: 1;
  4012. left: 0;
  4013. top: 0;
  4014. }
  4015. .x-window-tl .x-window-header {
  4016. padding: 5px 0 4px 0;
  4017. }
  4018. .x-window-header-text {
  4019. cursor: pointer;
  4020. }
  4021. .x-window-tc {
  4022. background: transparent repeat-x 0 0;
  4023. overflow: hidden;
  4024. zoom: 1;
  4025. }
  4026. .x-window-tl {
  4027. background: transparent no-repeat 0 0;
  4028. padding-left: 6px;
  4029. zoom: 1;
  4030. z-index: 1;
  4031. position: relative;
  4032. }
  4033. .x-window-tr {
  4034. background: transparent no-repeat right 0;
  4035. padding-right: 6px;
  4036. }
  4037. .x-window-bc {
  4038. background: transparent repeat-x 0 bottom;
  4039. zoom: 1;
  4040. }
  4041. .x-window-bc .x-window-footer {
  4042. padding-bottom: 6px;
  4043. zoom: 1;
  4044. font-size: 0;
  4045. line-height: 0;
  4046. }
  4047. .x-window-bl {
  4048. background: transparent no-repeat 0 bottom;
  4049. padding-left: 6px;
  4050. zoom: 1;
  4051. }
  4052. .x-window-br {
  4053. background: transparent no-repeat right bottom;
  4054. padding-right: 6px;
  4055. zoom: 1;
  4056. }
  4057. .x-window-mc {
  4058. border: 1px solid;
  4059. padding: 0;
  4060. margin: 0;
  4061. }
  4062. .x-window-ml {
  4063. background: transparent repeat-y 0 0;
  4064. padding-left: 6px;
  4065. zoom: 1;
  4066. }
  4067. .x-window-mr {
  4068. background: transparent repeat-y right 0;
  4069. padding-right: 6px;
  4070. zoom: 1;
  4071. }
  4072. .x-window-body {
  4073. overflow: hidden;
  4074. }
  4075. .x-window-bwrap {
  4076. overflow: hidden;
  4077. }
  4078. .x-window-maximized .x-window-bl,
  4079. .x-window-maximized .x-window-br,
  4080. .x-window-maximized .x-window-ml,
  4081. .x-window-maximized .x-window-mr,
  4082. .x-window-maximized .x-window-tl,
  4083. .x-window-maximized .x-window-tr {
  4084. padding: 0;
  4085. }
  4086. .x-window-maximized .x-window-footer {
  4087. padding-bottom: 0;
  4088. }
  4089. .x-window-maximized .x-window-mc {
  4090. border-left: 0 none;
  4091. border-right: 0 none;
  4092. }
  4093. .x-window-tbar .x-toolbar,
  4094. .x-window-bbar .x-toolbar {
  4095. border-left: 0 none;
  4096. border-right: 0 none;
  4097. }
  4098. .x-window-bbar .x-toolbar {
  4099. border-top: 1px solid;
  4100. border-bottom: 0 none;
  4101. }
  4102. .x-window-draggable,
  4103. .x-window-draggable .x-window-header-text {
  4104. cursor: move;
  4105. }
  4106. .x-window-maximized .x-window-draggable,
  4107. .x-window-maximized .x-window-draggable .x-window-header-text {
  4108. cursor: default;
  4109. }
  4110. .x-window-body {
  4111. background-color: transparent;
  4112. }
  4113. .x-panel-ghost .x-window-tl {
  4114. border-bottom: 1px solid;
  4115. }
  4116. .x-panel-collapsed .x-window-tl {
  4117. border-bottom: 1px solid;
  4118. }
  4119. .x-window-maximized-ct {
  4120. overflow: hidden;
  4121. }
  4122. .x-window-maximized .x-window-handle {
  4123. display: none;
  4124. }
  4125. .x-window-sizing-ghost ul {
  4126. border: 0 none !important;
  4127. }
  4128. .x-dlg-focus {
  4129. -moz-outline: 0 none;
  4130. outline: 0 none;
  4131. width: 0;
  4132. height: 0;
  4133. overflow: hidden;
  4134. position: absolute;
  4135. top: 0;
  4136. left: 0;
  4137. }
  4138. .ext-webkit .x-dlg-focus {
  4139. width: 1px;
  4140. height: 1px;
  4141. }
  4142. .x-dlg-mask {
  4143. z-index: 10000;
  4144. display: none;
  4145. position: absolute;
  4146. top: 0;
  4147. left: 0;
  4148. -moz-opacity: 0.5;
  4149. opacity: 0.5;
  4150. filter: alpha(opacity=50);
  4151. }
  4152. body.ext-ie6.x-body-masked select {
  4153. visibility: hidden;
  4154. }
  4155. body.ext-ie6.x-body-masked .x-window select {
  4156. visibility: visible;
  4157. }
  4158. .x-window-plain .x-window-mc {
  4159. border: 1px solid;
  4160. }
  4161. .x-window-plain .x-window-body {
  4162. border: 1px solid;
  4163. background: transparent !important;
  4164. } /*!
  4165. * Ext JS Library 3.4.0
  4166. * Copyright(c) 2006-2011 Sencha Inc.
  4167. * licensing@sencha.com
  4168. * http://www.sencha.com/license
  4169. */
  4170. .x-html-editor-wrap {
  4171. border: 1px solid;
  4172. }
  4173. .x-html-editor-tb .x-btn-text {
  4174. background: transparent no-repeat;
  4175. }
  4176. .x-html-editor-tb .x-edit-bold,
  4177. .x-menu-item img.x-edit-bold {
  4178. background-position: 0 0;
  4179. background-image: url(../images/default/editor/tb-sprite.gif);
  4180. }
  4181. .x-html-editor-tb .x-edit-italic,
  4182. .x-menu-item img.x-edit-italic {
  4183. background-position: -16px 0;
  4184. background-image: url(../images/default/editor/tb-sprite.gif);
  4185. }
  4186. .x-html-editor-tb .x-edit-underline,
  4187. .x-menu-item img.x-edit-underline {
  4188. background-position: -32px 0;
  4189. background-image: url(../images/default/editor/tb-sprite.gif);
  4190. }
  4191. .x-html-editor-tb .x-edit-forecolor,
  4192. .x-menu-item img.x-edit-forecolor {
  4193. background-position: -160px 0;
  4194. background-image: url(../images/default/editor/tb-sprite.gif);
  4195. }
  4196. .x-html-editor-tb .x-edit-backcolor,
  4197. .x-menu-item img.x-edit-backcolor {
  4198. background-position: -176px 0;
  4199. background-image: url(../images/default/editor/tb-sprite.gif);
  4200. }
  4201. .x-html-editor-tb .x-edit-justifyleft,
  4202. .x-menu-item img.x-edit-justifyleft {
  4203. background-position: -112px 0;
  4204. background-image: url(../images/default/editor/tb-sprite.gif);
  4205. }
  4206. .x-html-editor-tb .x-edit-justifycenter,
  4207. .x-menu-item img.x-edit-justifycenter {
  4208. background-position: -128px 0;
  4209. background-image: url(../images/default/editor/tb-sprite.gif);
  4210. }
  4211. .x-html-editor-tb .x-edit-justifyright,
  4212. .x-menu-item img.x-edit-justifyright {
  4213. background-position: -144px 0;
  4214. background-image: url(../images/default/editor/tb-sprite.gif);
  4215. }
  4216. .x-html-editor-tb .x-edit-insertorderedlist,
  4217. .x-menu-item img.x-edit-insertorderedlist {
  4218. background-position: -80px 0;
  4219. background-image: url(../images/default/editor/tb-sprite.gif);
  4220. }
  4221. .x-html-editor-tb .x-edit-insertunorderedlist,
  4222. .x-menu-item img.x-edit-insertunorderedlist {
  4223. background-position: -96px 0;
  4224. background-image: url(../images/default/editor/tb-sprite.gif);
  4225. }
  4226. .x-html-editor-tb .x-edit-increasefontsize,
  4227. .x-menu-item img.x-edit-increasefontsize {
  4228. background-position: -48px 0;
  4229. background-image: url(../images/default/editor/tb-sprite.gif);
  4230. }
  4231. .x-html-editor-tb .x-edit-decreasefontsize,
  4232. .x-menu-item img.x-edit-decreasefontsize {
  4233. background-position: -64px 0;
  4234. background-image: url(../images/default/editor/tb-sprite.gif);
  4235. }
  4236. .x-html-editor-tb .x-edit-sourceedit,
  4237. .x-menu-item img.x-edit-sourceedit {
  4238. background-position: -192px 0;
  4239. background-image: url(../images/default/editor/tb-sprite.gif);
  4240. }
  4241. .x-html-editor-tb .x-edit-createlink,
  4242. .x-menu-item img.x-edit-createlink {
  4243. background-position: -208px 0;
  4244. background-image: url(../images/default/editor/tb-sprite.gif);
  4245. }
  4246. .x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
  4247. padding: 5px;
  4248. padding-bottom: 1px;
  4249. }
  4250. .x-html-editor-tb .x-toolbar {
  4251. position: static !important;
  4252. }
  4253. .x-panel-noborder .x-panel-body-noborder {
  4254. border-width: 0;
  4255. }
  4256. .x-panel-noborder .x-panel-header-noborder {
  4257. border-width: 0 0 1px;
  4258. border-style: solid;
  4259. }
  4260. .x-panel-noborder .x-panel-tbar-noborder .x-toolbar {
  4261. border-width: 0 0 1px;
  4262. border-style: solid;
  4263. }
  4264. .x-panel-noborder .x-panel-bbar-noborder .x-toolbar {
  4265. border-width: 1px 0 0 0;
  4266. border-style: solid;
  4267. }
  4268. .x-window-noborder .x-window-mc {
  4269. border-width: 0;
  4270. }
  4271. .x-window-plain .x-window-body-noborder {
  4272. border-width: 0;
  4273. }
  4274. .x-tab-panel-noborder .x-tab-panel-body-noborder {
  4275. border-width: 0;
  4276. }
  4277. .x-tab-panel-noborder .x-tab-panel-header-noborder {
  4278. border-width: 0 0 1px 0;
  4279. }
  4280. .x-tab-panel-noborder .x-tab-panel-footer-noborder {
  4281. border-width: 1px 0 0 0;
  4282. }
  4283. .x-tab-panel-bbar-noborder .x-toolbar {
  4284. border-width: 1px 0 0 0;
  4285. border-style: solid;
  4286. }
  4287. .x-tab-panel-tbar-noborder .x-toolbar {
  4288. border-width: 0 0 1px;
  4289. border-style: solid;
  4290. } /*!
  4291. * Ext JS Library 3.4.0
  4292. * Copyright(c) 2006-2011 Sencha Inc.
  4293. * licensing@sencha.com
  4294. * http://www.sencha.com/license
  4295. */
  4296. .x-border-layout-ct {
  4297. position: relative;
  4298. }
  4299. .x-border-panel {
  4300. position: absolute;
  4301. left: 0;
  4302. top: 0;
  4303. }
  4304. .x-tool-collapse-south {
  4305. background-position: 0 -195px;
  4306. }
  4307. .x-tool-collapse-south-over {
  4308. background-position: -15px -195px;
  4309. }
  4310. .x-tool-collapse-north {
  4311. background-position: 0 -210px;
  4312. }
  4313. .x-tool-collapse-north-over {
  4314. background-position: -15px -210px;
  4315. }
  4316. .x-tool-collapse-west {
  4317. background-position: 0 -180px;
  4318. }
  4319. .x-tool-collapse-west-over {
  4320. background-position: -15px -180px;
  4321. }
  4322. .x-tool-collapse-east {
  4323. background-position: 0 -165px;
  4324. }
  4325. .x-tool-collapse-east-over {
  4326. background-position: -15px -165px;
  4327. }
  4328. .x-tool-expand-south {
  4329. background-position: 0 -210px;
  4330. }
  4331. .x-tool-expand-south-over {
  4332. background-position: -15px -210px;
  4333. }
  4334. .x-tool-expand-north {
  4335. background-position: 0 -195px;
  4336. }
  4337. .x-tool-expand-north-over {
  4338. background-position: -15px -195px;
  4339. }
  4340. .x-tool-expand-west {
  4341. background-position: 0 -165px;
  4342. }
  4343. .x-tool-expand-west-over {
  4344. background-position: -15px -165px;
  4345. }
  4346. .x-tool-expand-east {
  4347. background-position: 0 -180px;
  4348. }
  4349. .x-tool-expand-east-over {
  4350. background-position: -15px -180px;
  4351. }
  4352. .x-tool-expand-north,
  4353. .x-tool-expand-south {
  4354. float: right;
  4355. margin: 3px;
  4356. }
  4357. .x-tool-expand-east,
  4358. .x-tool-expand-west {
  4359. float: none;
  4360. margin: 3px 2px;
  4361. }
  4362. .x-accordion-hd .x-tool-toggle {
  4363. background-position: 0 -255px;
  4364. }
  4365. .x-accordion-hd .x-tool-toggle-over {
  4366. background-position: -15px -255px;
  4367. }
  4368. .x-panel-collapsed .x-accordion-hd .x-tool-toggle {
  4369. background-position: 0 -240px;
  4370. }
  4371. .x-panel-collapsed .x-accordion-hd .x-tool-toggle-over {
  4372. background-position: -15px -240px;
  4373. }
  4374. .x-accordion-hd {
  4375. padding-top: 4px;
  4376. padding-bottom: 3px;
  4377. border-top: 0 none;
  4378. background: transparent repeat-x 0 -9px;
  4379. }
  4380. .x-layout-collapsed {
  4381. position: absolute;
  4382. left: -10000px;
  4383. top: -10000px;
  4384. visibility: hidden;
  4385. width: 20px;
  4386. height: 20px;
  4387. overflow: hidden;
  4388. border: 1px solid;
  4389. z-index: 20;
  4390. }
  4391. .ext-border-box .x-layout-collapsed {
  4392. width: 22px;
  4393. height: 22px;
  4394. }
  4395. .x-layout-collapsed-over {
  4396. cursor: pointer;
  4397. }
  4398. .x-layout-collapsed-west .x-layout-collapsed-tools,
  4399. .x-layout-collapsed-east .x-layout-collapsed-tools {
  4400. position: absolute;
  4401. top: 0;
  4402. left: 0;
  4403. width: 20px;
  4404. height: 20px;
  4405. }
  4406. .x-layout-split {
  4407. position: absolute;
  4408. height: 5px;
  4409. width: 5px;
  4410. line-height: 1px;
  4411. font-size: 1px;
  4412. z-index: 3;
  4413. background-color: transparent;
  4414. }
  4415. .ext-strict .ext-ie6 .x-layout-split {
  4416. background-color: #fff !important;
  4417. filter: alpha(opacity=1);
  4418. }
  4419. .x-layout-split-h {
  4420. background-image: url(../images/default/s.gif);
  4421. background-position: left;
  4422. }
  4423. .x-layout-split-v {
  4424. background-image: url(../images/default/s.gif);
  4425. background-position: top;
  4426. }
  4427. .x-column-layout-ct {
  4428. overflow: hidden;
  4429. zoom: 1;
  4430. }
  4431. .x-column {
  4432. float: left;
  4433. padding: 0;
  4434. margin: 0;
  4435. overflow: hidden;
  4436. zoom: 1;
  4437. }
  4438. .x-column-inner {
  4439. overflow: hidden;
  4440. zoom: 1;
  4441. }
  4442. .x-layout-mini {
  4443. position: absolute;
  4444. top: 0;
  4445. left: 0;
  4446. display: block;
  4447. width: 5px;
  4448. height: 35px;
  4449. cursor: pointer;
  4450. opacity: 0.5;
  4451. -moz-opacity: 0.5;
  4452. filter: alpha(opacity=50);
  4453. }
  4454. .x-layout-mini-over,
  4455. .x-layout-collapsed-over .x-layout-mini {
  4456. opacity: 1;
  4457. -moz-opacity: 1;
  4458. filter: none;
  4459. }
  4460. .x-layout-split-west .x-layout-mini {
  4461. top: 48%;
  4462. }
  4463. .x-layout-split-east .x-layout-mini {
  4464. top: 48%;
  4465. }
  4466. .x-layout-split-north .x-layout-mini {
  4467. left: 48%;
  4468. height: 5px;
  4469. width: 35px;
  4470. }
  4471. .x-layout-split-south .x-layout-mini {
  4472. left: 48%;
  4473. height: 5px;
  4474. width: 35px;
  4475. }
  4476. .x-layout-cmini-west .x-layout-mini {
  4477. top: 48%;
  4478. }
  4479. .x-layout-cmini-east .x-layout-mini {
  4480. top: 48%;
  4481. }
  4482. .x-layout-cmini-north .x-layout-mini {
  4483. left: 48%;
  4484. height: 5px;
  4485. width: 35px;
  4486. }
  4487. .x-layout-cmini-south .x-layout-mini {
  4488. left: 48%;
  4489. height: 5px;
  4490. width: 35px;
  4491. }
  4492. .x-layout-cmini-west,
  4493. .x-layout-cmini-east {
  4494. border: 0 none;
  4495. width: 5px !important;
  4496. padding: 0;
  4497. background-color: transparent;
  4498. }
  4499. .x-layout-cmini-north,
  4500. .x-layout-cmini-south {
  4501. border: 0 none;
  4502. height: 5px !important;
  4503. padding: 0;
  4504. background-color: transparent;
  4505. }
  4506. .x-viewport,
  4507. .x-viewport body {
  4508. margin: 0;
  4509. padding: 0;
  4510. border: 0 none;
  4511. overflow: hidden;
  4512. height: 100%;
  4513. }
  4514. .x-abs-layout-item {
  4515. position: absolute;
  4516. left: 0;
  4517. top: 0;
  4518. }
  4519. .ext-ie input.x-abs-layout-item,
  4520. .ext-ie textarea.x-abs-layout-item {
  4521. margin: 0;
  4522. }
  4523. .x-box-layout-ct {
  4524. overflow: hidden;
  4525. zoom: 1;
  4526. }
  4527. .x-box-inner {
  4528. overflow: hidden;
  4529. zoom: 1;
  4530. position: relative;
  4531. left: 0;
  4532. top: 0;
  4533. }
  4534. .x-box-item {
  4535. position: absolute;
  4536. left: 0;
  4537. top: 0;
  4538. } /*!
  4539. * Ext JS Library 3.4.0
  4540. * Copyright(c) 2006-2011 Sencha Inc.
  4541. * licensing@sencha.com
  4542. * http://www.sencha.com/license
  4543. */
  4544. .x-progress-wrap {
  4545. border: 1px solid;
  4546. overflow: hidden;
  4547. }
  4548. .x-progress-inner {
  4549. height: 18px;
  4550. background: repeat-x;
  4551. position: relative;
  4552. }
  4553. .x-progress-bar {
  4554. height: 18px;
  4555. float: left;
  4556. width: 0;
  4557. background: repeat-x left center;
  4558. border-top: 1px solid;
  4559. border-bottom: 1px solid;
  4560. border-right: 1px solid;
  4561. }
  4562. .x-progress-text {
  4563. padding: 1px 5px;
  4564. overflow: hidden;
  4565. position: absolute;
  4566. left: 0;
  4567. text-align: center;
  4568. }
  4569. .x-progress-text-back {
  4570. line-height: 16px;
  4571. }
  4572. .ext-ie .x-progress-text-back {
  4573. line-height: 15px;
  4574. }
  4575. .ext-strict .ext-ie7 .x-progress-text-back {
  4576. width: 100%;
  4577. } /*!
  4578. * Ext JS Library 3.4.0
  4579. * Copyright(c) 2006-2011 Sencha Inc.
  4580. * licensing@sencha.com
  4581. * http://www.sencha.com/license
  4582. */
  4583. .x-list-header {
  4584. background: repeat-x 0 bottom;
  4585. cursor: default;
  4586. zoom: 1;
  4587. height: 22px;
  4588. }
  4589. .x-list-header-inner div {
  4590. display: block;
  4591. float: left;
  4592. overflow: hidden;
  4593. -o-text-overflow: ellipsis;
  4594. text-overflow: ellipsis;
  4595. white-space: nowrap;
  4596. }
  4597. .x-list-header-inner div em {
  4598. display: block;
  4599. border-left: 1px solid;
  4600. padding: 4px 4px;
  4601. overflow: hidden;
  4602. -moz-user-select: none;
  4603. -khtml-user-select: none;
  4604. line-height: 14px;
  4605. }
  4606. .x-list-body {
  4607. overflow: auto;
  4608. overflow-x: hidden;
  4609. overflow-y: auto;
  4610. zoom: 1;
  4611. float: left;
  4612. width: 100%;
  4613. }
  4614. .x-list-body dl {
  4615. zoom: 1;
  4616. }
  4617. .x-list-body dt {
  4618. display: block;
  4619. float: left;
  4620. overflow: hidden;
  4621. -o-text-overflow: ellipsis;
  4622. text-overflow: ellipsis;
  4623. white-space: nowrap;
  4624. cursor: pointer;
  4625. zoom: 1;
  4626. }
  4627. .x-list-body dt em {
  4628. display: block;
  4629. padding: 3px 4px;
  4630. overflow: hidden;
  4631. -moz-user-select: none;
  4632. -khtml-user-select: none;
  4633. }
  4634. .x-list-resizer {
  4635. border-left: 1px solid;
  4636. border-right: 1px solid;
  4637. position: absolute;
  4638. left: 0;
  4639. top: 0;
  4640. }
  4641. .x-list-header-inner em.sort-asc {
  4642. background: transparent no-repeat center 0;
  4643. border-style: solid;
  4644. border-width: 0 1px 1px;
  4645. padding-bottom: 3px;
  4646. }
  4647. .x-list-header-inner em.sort-desc {
  4648. background: transparent no-repeat center -23px;
  4649. border-style: solid;
  4650. border-width: 0 1px 1px;
  4651. padding-bottom: 3px;
  4652. } /*!
  4653. * Ext JS Library 3.4.0
  4654. * Copyright(c) 2006-2011 Sencha Inc.
  4655. * licensing@sencha.com
  4656. * http://www.sencha.com/license
  4657. */
  4658. .x-slider {
  4659. zoom: 1;
  4660. }
  4661. .x-slider-inner {
  4662. position: relative;
  4663. left: 0;
  4664. top: 0;
  4665. overflow: visible;
  4666. zoom: 1;
  4667. }
  4668. .x-slider-focus {
  4669. position: absolute;
  4670. left: 0;
  4671. top: 0;
  4672. width: 1px;
  4673. height: 1px;
  4674. line-height: 1px;
  4675. font-size: 1px;
  4676. -moz-outline: 0 none;
  4677. outline: 0 none;
  4678. -moz-user-select: none;
  4679. -khtml-user-select: none;
  4680. -webkit-user-select: ignore;
  4681. display: block;
  4682. overflow: hidden;
  4683. }
  4684. .x-slider-horz {
  4685. padding-left: 7px;
  4686. background: transparent no-repeat 0 -22px;
  4687. }
  4688. .x-slider-horz .x-slider-end {
  4689. padding-right: 7px;
  4690. zoom: 1;
  4691. background: transparent no-repeat right -44px;
  4692. }
  4693. .x-slider-horz .x-slider-inner {
  4694. background: transparent repeat-x 0 0;
  4695. height: 22px;
  4696. }
  4697. .x-slider-horz .x-slider-thumb {
  4698. width: 14px;
  4699. height: 15px;
  4700. position: absolute;
  4701. left: 0;
  4702. top: 3px;
  4703. background: transparent no-repeat 0 0;
  4704. }
  4705. .x-slider-horz .x-slider-thumb-over {
  4706. background-position: -14px -15px;
  4707. }
  4708. .x-slider-horz .x-slider-thumb-drag {
  4709. background-position: -28px -30px;
  4710. }
  4711. .x-slider-vert {
  4712. padding-top: 7px;
  4713. background: transparent no-repeat -44px 0;
  4714. width: 22px;
  4715. }
  4716. .x-slider-vert .x-slider-end {
  4717. padding-bottom: 7px;
  4718. zoom: 1;
  4719. background: transparent no-repeat -22px bottom;
  4720. }
  4721. .x-slider-vert .x-slider-inner {
  4722. background: transparent repeat-y 0 0;
  4723. }
  4724. .x-slider-vert .x-slider-thumb {
  4725. width: 15px;
  4726. height: 14px;
  4727. position: absolute;
  4728. left: 3px;
  4729. bottom: 0;
  4730. background: transparent no-repeat 0 0;
  4731. }
  4732. .x-slider-vert .x-slider-thumb-over {
  4733. background-position: -15px -14px;
  4734. }
  4735. .x-slider-vert .x-slider-thumb-drag {
  4736. background-position: -30px -28px;
  4737. } /*!
  4738. * Ext JS Library 3.4.0
  4739. * Copyright(c) 2006-2011 Sencha Inc.
  4740. * licensing@sencha.com
  4741. * http://www.sencha.com/license
  4742. */
  4743. .x-window-dlg .x-window-body {
  4744. border: 0 none !important;
  4745. padding: 5px 10px;
  4746. overflow: hidden !important;
  4747. }
  4748. .x-window-dlg .x-window-mc {
  4749. border: 0 none !important;
  4750. }
  4751. .x-window-dlg .ext-mb-input {
  4752. margin-top: 4px;
  4753. width: 95%;
  4754. }
  4755. .x-window-dlg .ext-mb-textarea {
  4756. margin-top: 4px;
  4757. }
  4758. .x-window-dlg .x-progress-wrap {
  4759. margin-top: 4px;
  4760. }
  4761. .ext-ie .x-window-dlg .x-progress-wrap {
  4762. margin-top: 6px;
  4763. }
  4764. .x-window-dlg .x-msg-box-wait {
  4765. background: transparent no-repeat left;
  4766. display: block;
  4767. width: 300px;
  4768. padding-left: 18px;
  4769. line-height: 18px;
  4770. }
  4771. .x-window-dlg .ext-mb-icon {
  4772. float: left;
  4773. width: 47px;
  4774. height: 32px;
  4775. }
  4776. .x-window-dlg .x-dlg-icon .ext-mb-content {
  4777. zoom: 1;
  4778. margin-left: 47px;
  4779. }
  4780. .x-window-dlg .ext-mb-info,
  4781. .x-window-dlg .ext-mb-warning,
  4782. .x-window-dlg .ext-mb-question,
  4783. .x-window-dlg .ext-mb-error {
  4784. background: transparent no-repeat top left;
  4785. }
  4786. .ext-gecko2 .ext-mb-fix-cursor {
  4787. overflow: auto;
  4788. } /*!
  4789. * Ext JS Library 3.4.0
  4790. * Copyright(c) 2006-2011 Sencha Inc.
  4791. * licensing@sencha.com
  4792. * http://www.sencha.com/license
  4793. */
  4794. .x-pivotgrid .x-grid3-header-offset table {
  4795. width: 100%;
  4796. border-collapse: collapse;
  4797. }
  4798. .x-pivotgrid .x-grid3-header-offset table td {
  4799. padding: 4px 3px 4px 5px;
  4800. text-align: center;
  4801. white-space: nowrap;
  4802. overflow: hidden;
  4803. text-overflow: ellipsis;
  4804. font-size: 11px;
  4805. line-height: 13px;
  4806. font-family: tahoma;
  4807. }
  4808. .x-pivotgrid .x-grid3-row-headers {
  4809. display: block;
  4810. float: left;
  4811. }
  4812. .x-pivotgrid .x-grid3-row-headers table {
  4813. height: 100%;
  4814. width: 100%;
  4815. border-collapse: collapse;
  4816. }
  4817. .x-pivotgrid .x-grid3-row-headers table td {
  4818. height: 18px;
  4819. padding: 2px 7px 0 0;
  4820. text-align: right;
  4821. text-overflow: ellipsis;
  4822. font-size: 11px;
  4823. font-family: tahoma;
  4824. }
  4825. .ext-gecko .x-pivotgrid .x-grid3-row-headers table td {
  4826. height: 21px;
  4827. }
  4828. .x-grid3-header-title {
  4829. top: 0%;
  4830. left: 0%;
  4831. position: absolute;
  4832. text-align: center;
  4833. vertical-align: middle;
  4834. font-family: tahoma;
  4835. font-size: 11px;
  4836. padding: auto 1px;
  4837. display: table-cell;
  4838. }
  4839. .x-grid3-header-title span {
  4840. position: absolute;
  4841. top: 50%;
  4842. left: 0%;
  4843. width: 100%;
  4844. margin-top: -6px;
  4845. }