ext-ie.css 216 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779
  1. html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td
  2. {
  3. margin: 0;
  4. padding: 0
  5. }
  6. body {
  7. SCROLLBAR-SHADOW-COLOR: #999;
  8. SCROLLBAR-ARROW-COLOR: #999;
  9. SCROLLBAR-TRACK-COLOR: #EEE;
  10. SCROLLBAR-FACE-COLOR: #CCC;
  11. SCROLLBAR-3DLIGHT-COLOR: #CCC;
  12. SCROLLBAR-DARKSHADOW-COLOR: #CCC;
  13. SCROLLBAR-BASE-COLOR: #CCC
  14. }
  15. table {
  16. border-collapse: collapse;
  17. border-spacing: 0
  18. }
  19. fieldset,img {
  20. border: 0
  21. }
  22. address,caption,cite,code,dfn,em,strong,th,var {
  23. font-style: normal;
  24. font-weight: normal
  25. }
  26. li {
  27. list-style: none
  28. }
  29. caption,th {
  30. text-align: left
  31. }
  32. h1,h2,h3,h4,h5,h6 {
  33. font-size: 100%
  34. }
  35. q:before,q:after {
  36. content: ""
  37. }
  38. abbr,acronym {
  39. border: 0;
  40. font-variant: normal
  41. }
  42. sup {
  43. vertical-align: text-top
  44. }
  45. sub {
  46. vertical-align: text-bottom
  47. }
  48. input,textarea,select {
  49. font-family: inherit;
  50. font-size: inherit;
  51. font-weight: inherit
  52. }
  53. *:focus {
  54. outline: none
  55. }
  56. .x-border-box,.x-border-box * {
  57. box-sizing: border-box;
  58. -moz-box-sizing: border-box;
  59. -ms-box-sizing: border-box;
  60. -webkit-box-sizing: border-box
  61. }
  62. .x-body {
  63. color: black;
  64. font-size: 12px;
  65. font-family: tahoma, arial, verdana, sans-serif
  66. }
  67. .x-clear {
  68. overflow: hidden;
  69. clear: both;
  70. height: 0;
  71. width: 0;
  72. font-size: 0;
  73. line-height: 0
  74. }
  75. .x-layer {
  76. position: absolute;
  77. overflow: hidden;
  78. zoom: 1
  79. }
  80. .x-shim {
  81. position: absolute;
  82. left: 0;
  83. top: 0;
  84. overflow: hidden;
  85. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0 );
  86. opacity: 0
  87. }
  88. .x-hide-display {
  89. display: none !important
  90. }
  91. .x-hide-visibility {
  92. visibility: hidden !important
  93. }
  94. .x-item-disabled {
  95. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30 );
  96. opacity: 0.3
  97. }
  98. .x-ie6 .x-item-disabled {
  99. filter: none
  100. }
  101. .x-hidden,.x-hide-offsets {
  102. display: block !important;
  103. position: absolute !important;
  104. left: -10000px !important;
  105. top: -10000px !important
  106. }
  107. .x-hide-nosize {
  108. height: 0 !important;
  109. width: 0 !important
  110. }
  111. .x-masked-relative {
  112. position: relative
  113. }
  114. .x-ie6 .x-masked select,.x-ie6.x-body-masked select {
  115. visibility: hidden !important
  116. }
  117. .x-css-shadow {
  118. position: absolute;
  119. -moz-border-radius: 5px 5px;
  120. -webkit-border-radius: 5px 5px;
  121. -o-border-radius: 5px 5px;
  122. -ms-border-radius: 5px 5px;
  123. -khtml-border-radius: 5px 5px;
  124. border-radius: 5px 5px
  125. }
  126. .x-ie-shadow {
  127. background-color: #777;
  128. display: none;
  129. position: absolute;
  130. overflow: hidden;
  131. zoom: 1
  132. }
  133. .x-frame-shadow {
  134. display: none;
  135. position: absolute;
  136. overflow: hidden
  137. }
  138. .x-frame-shadow * {
  139. overflow: hidden
  140. }
  141. .x-frame-shadow * {
  142. padding: 0;
  143. border: 0;
  144. margin: 0;
  145. clear: none;
  146. zoom: 1
  147. }
  148. .x-frame-shadow .xstc,.x-frame-shadow .xsbc {
  149. height: 6px;
  150. float: left
  151. }
  152. .x-frame-shadow .xsc {
  153. width: 100%
  154. }
  155. .x-frame-shadow .xsml {
  156. background: transparent repeat-y 0 0
  157. }
  158. .x-frame-shadow .xsmr {
  159. background: transparent repeat-y -6px 0
  160. }
  161. .x-frame-shadow .xstl {
  162. background: transparent no-repeat 0 0
  163. }
  164. .x-frame-shadow .xstc {
  165. background: transparent repeat-x 0 -30px
  166. }
  167. .x-frame-shadow .xstr {
  168. background: transparent repeat-x 0 -18px
  169. }
  170. .x-frame-shadow .xsbl {
  171. background: transparent no-repeat 0 -12px
  172. }
  173. .x-frame-shadow .xsbc {
  174. background: transparent repeat-x 0 -36px
  175. }
  176. .x-frame-shadow .xsbr {
  177. background: transparent repeat-x 0 -6px
  178. }
  179. .x-frame-shadow .xstl,.x-frame-shadow .xstc,.x-frame-shadow .xstr,.x-frame-shadow .xsbl,.x-frame-shadow .xsbc,.x-frame-shadow .xsbr
  180. {
  181. width: 6px;
  182. height: 6px;
  183. float: left;
  184. background-image:
  185. url('../../resources/themes/images/default/shared/shadow.png')
  186. }
  187. .x-frame-shadow .xsml,.x-frame-shadow .xsmr {
  188. width: 6px;
  189. float: left;
  190. height: 100%;
  191. background-image:
  192. url('../../resources/themes/images/default/shared/shadow-lr.png')
  193. }
  194. .x-frame-shadow .xsmc {
  195. float: left;
  196. height: 100%;
  197. background-image:
  198. url('../../resources/themes/images/default/shared/shadow-c.png')
  199. }
  200. .x-frame-shadow .xst,.x-frame-shadow .xsb {
  201. height: 6px;
  202. overflow: hidden;
  203. width: 100%
  204. }
  205. .x-box-tl {
  206. background: transparent no-repeat 0 0;
  207. zoom: 1
  208. }
  209. .x-box-tc {
  210. height: 8px;
  211. background: transparent repeat-x 0 0;
  212. overflow: hidden
  213. }
  214. .x-box-tr {
  215. background: transparent no-repeat right -8px
  216. }
  217. .x-box-ml {
  218. background: transparent repeat-y 0;
  219. padding-left: 4px;
  220. overflow: hidden;
  221. zoom: 1
  222. }
  223. .x-box-mc {
  224. background: repeat-x 0 -16px;
  225. padding: 4px 10px
  226. }
  227. .x-box-mc h3 {
  228. margin: 0 0 4px 0;
  229. zoom: 1
  230. }
  231. .x-box-mr {
  232. background: transparent repeat-y right;
  233. padding-right: 4px;
  234. overflow: hidden
  235. }
  236. .x-box-bl {
  237. background: transparent no-repeat 0 -16px;
  238. zoom: 1
  239. }
  240. .x-box-bc {
  241. background: transparent repeat-x 0 -8px;
  242. height: 8px;
  243. overflow: hidden
  244. }
  245. .x-box-br {
  246. background: transparent no-repeat right -24px
  247. }
  248. .x-box-tl,.x-box-bl {
  249. padding-left: 8px;
  250. overflow: hidden
  251. }
  252. .x-box-tr,.x-box-br {
  253. padding-right: 8px;
  254. overflow: hidden
  255. }
  256. .x-box-tl {
  257. background-image:
  258. url('../../resources/themes/images/default/box/corners.gif')
  259. }
  260. .x-box-tc {
  261. background-image:
  262. url('../../resources/themes/images/default/box/tb.gif')
  263. }
  264. .x-box-tr {
  265. background-image:
  266. url('../../resources/themes/images/default/box/corners.gif')
  267. }
  268. .x-box-ml {
  269. background-image: url('../../resources/themes/images/default/box/l.gif')
  270. }
  271. .x-box-mc {
  272. background-color: #eee;
  273. background-image:
  274. url('../../resources/themes/images/default/box/tb.gif');
  275. font-family: "Myriad Pro", "Myriad Web", "Tahoma", "Helvetica", "Arial",
  276. sans-serif;
  277. color: #393939;
  278. font-size: 15px
  279. }
  280. .x-box-mc h3 {
  281. font-size: 18px;
  282. font-weight: bold
  283. }
  284. .x-box-mr {
  285. background-image: url('../../resources/themes/images/default/box/r.gif')
  286. }
  287. .x-box-bl {
  288. background-image:
  289. url('../../resources/themes/images/default/box/corners.gif')
  290. }
  291. .x-box-bc {
  292. background-image:
  293. url('../../resources/themes/images/default/box/tb.gif')
  294. }
  295. .x-box-br {
  296. background-image:
  297. url('../../resources/themes/images/default/box/corners.gif')
  298. }
  299. .x-box-blue .x-box-bl,.x-box-blue .x-box-br,.x-box-blue .x-box-tl,.x-box-blue .x-box-tr
  300. {
  301. background-image:
  302. url('../../resources/themes/images/default/box/corners-blue.gif')
  303. }
  304. .x-box-blue .x-box-bc,.x-box-blue .x-box-mc,.x-box-blue .x-box-tc {
  305. background-image:
  306. url('../../resources/themes/images/default/box/tb-blue.gif')
  307. }
  308. .x-box-blue .x-box-mc {
  309. background-color: #c3daf9
  310. }
  311. .x-box-blue .x-box-mc h3 {
  312. color: #17385b
  313. }
  314. .x-box-blue .x-box-ml {
  315. background-image:
  316. url('../../resources/themes/images/default/box/l-blue.gif')
  317. }
  318. .x-box-blue .x-box-mr {
  319. background-image:
  320. url('../../resources/themes/images/default/box/r-blue.gif')
  321. }
  322. .x-focus-element {
  323. position: absolute;
  324. top: -10px;
  325. left: -10px;
  326. width: 0px;
  327. height: 0px
  328. }
  329. .x-focus-frame {
  330. position: absolute;
  331. left: 0px;
  332. top: 0px;
  333. z-index: 100000000;
  334. width: 0px;
  335. height: 0px
  336. }
  337. .x-focus-frame-top,.x-focus-frame-bottom,.x-focus-frame-left,.x-focus-frame-right
  338. {
  339. position: absolute;
  340. top: 0px;
  341. left: 0px
  342. }
  343. .x-focus-frame-top,.x-focus-frame-bottom {
  344. border-top: solid 2px #15428b;
  345. height: 2px
  346. }
  347. .x-focus-frame-left,.x-focus-frame-right {
  348. border-left: solid 2px #15428b;
  349. width: 2px
  350. }
  351. .x-mask {
  352. z-index: 100;
  353. position: absolute;
  354. top: 0;
  355. left: 0;
  356. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50 );
  357. opacity: 0.5;
  358. width: 100%;
  359. height: 100%;
  360. zoom: 1;
  361. background: #cccccc
  362. }
  363. .x-mask-msg {
  364. z-index: 20001;
  365. position: absolute;
  366. top: 0;
  367. left: 0;
  368. padding: 2px;
  369. border: 1px solid;
  370. border-color: #99bce8
  371. }
  372. .x-mask-msg div {
  373. padding: 5px 10px 5px 25px;
  374. background-image:
  375. url('../../resources/themes/images/default/grid/loading.gif');
  376. background-repeat: no-repeat;
  377. background-position: 5px center;
  378. cursor: wait;
  379. border: 1px solid #a3bad9;
  380. background-color: #eeeeee;
  381. color: #222222;
  382. font: normal 11px tahoma, arial, verdana, sans-serif
  383. }
  384. .x-boundlist {
  385. border-width: 1px;
  386. border-style: solid;
  387. border-color: #98c0f4;
  388. background: white
  389. }
  390. .x-boundlist .x-toolbar {
  391. border-width: 1px 0 0 0
  392. }
  393. .x-boundlist-item {
  394. padding: 2px;
  395. user-select: none;
  396. -o-user-select: none;
  397. -ms-user-select: none;
  398. -moz-user-select: -moz-none;
  399. -webkit-user-select: none;
  400. cursor: default;
  401. cursor: pointer;
  402. cursor: hand;
  403. position: relative;
  404. border-width: 1px;
  405. border-style: dotted;
  406. border-color: white
  407. }
  408. .x-boundlist-selected {
  409. background: #cbdaf0;
  410. border-color: #8eabe4
  411. }
  412. .x-boundlist-item-over {
  413. background: #dfe8f6;
  414. border-color: #a3bae9
  415. }
  416. .x-boundlist-floating {
  417. border-top-width: 0
  418. }
  419. .x-boundlist-above {
  420. border-top-width: 1px;
  421. border-bottom-width: 1px
  422. }
  423. .x-btn {
  424. display: inline-block;
  425. zoom: 1;
  426. *display: inline;
  427. position: relative;
  428. cursor: pointer;
  429. cursor: hand;
  430. white-space: nowrap;
  431. vertical-align: middle;
  432. background-repeat: no-repeat
  433. }
  434. .x-btn * {
  435. cursor: pointer;
  436. cursor: hand
  437. }
  438. .x-btn em {
  439. background-repeat: no-repeat
  440. }
  441. .x-btn em a {
  442. text-decoration: none;
  443. display: inline-block;
  444. color: inherit
  445. }
  446. .x-btn button {
  447. margin: 0;
  448. padding: 0;
  449. border: 0;
  450. width: auto;
  451. background: none;
  452. outline: 0 none;
  453. overflow: hidden;
  454. vertical-align: bottom;
  455. -webkit-appearance: none
  456. }
  457. .x-btn button::-moz-focus-inner {
  458. border: 0;
  459. padding: 0
  460. }
  461. .x-btn .x-btn-inner {
  462. display: block;
  463. white-space: nowrap;
  464. background-color: transparent;
  465. background-repeat: no-repeat;
  466. background-position: left center
  467. }
  468. .x-btn .x-btn-left .x-btn-inner {
  469. text-align: left
  470. }
  471. .x-btn .x-btn-center .x-btn-inner {
  472. text-align: center
  473. }
  474. .x-btn .x-btn-right .x-btn-inner {
  475. text-align: right
  476. }
  477. .x-btn-disabled {
  478. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100 );
  479. opacity: 1
  480. }
  481. .x-btn-disabled span {
  482. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50 );
  483. opacity: 0.5
  484. }
  485. .x-ie6 .x-btn-disabled span,.x-ie7 .x-btn-disabled span {
  486. filter: none
  487. }
  488. .x-ie7 .x-btn-disabled,.x-ie8 .x-btn-disabled {
  489. filter: none
  490. }
  491. .x-ie6 .x-btn-disabled .x-btn-icon,.x-ie7 .x-btn-disabled .x-btn-icon,.x-ie8 .x-btn-disabled .x-btn-icon
  492. {
  493. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60 );
  494. opacity: 0.6
  495. }
  496. * html .x-ie .x-btn button {
  497. width: 1px
  498. }
  499. .x-ie .x-btn button {
  500. overflow-x: visible;
  501. vertical-align: baseline
  502. }
  503. .x-strict .x-ie6 .x-btn .x-frame-mc,.x-strict .x-ie7 .x-btn .x-frame-mc
  504. {
  505. height: 100%
  506. }
  507. .x-nbr .x-btn .x-frame-mc {
  508. vertical-align: middle;
  509. white-space: nowrap;
  510. text-align: center;
  511. cursor: pointer
  512. }
  513. .x-btn-icon-text-left .x-btn-icon {
  514. background-position: left center
  515. }
  516. .x-btn-icon-text-right .x-btn-icon {
  517. background-position: right center
  518. }
  519. .x-btn-icon-text-top .x-btn-icon {
  520. background-position: center top
  521. }
  522. .x-btn-icon-text-bottom .x-btn-icon {
  523. background-position: center bottom
  524. }
  525. .x-btn button,.x-btn a {
  526. position: relative
  527. }
  528. .x-btn button .x-btn-icon,.x-btn a .x-btn-icon {
  529. position: absolute;
  530. background-repeat: no-repeat
  531. }
  532. .x-btn-arrow-right {
  533. background: transparent no-repeat right center;
  534. padding-right: 12px
  535. }
  536. .x-btn-arrow-right .x-btn-inner {
  537. padding-right: 0 !important
  538. }
  539. .x-toolbar .x-btn-arrow-right {
  540. padding-right: 12px
  541. }
  542. .x-btn-arrow-bottom {
  543. background: transparent no-repeat center bottom;
  544. padding-bottom: 12px
  545. }
  546. .x-btn-arrow {
  547. background-image:
  548. url('../../resources/themes/images/default/button/arrow.gif');
  549. display: block
  550. }
  551. .x-btn-split-right,.x-btn-over .x-btn-split-right {
  552. background: transparent no-repeat right center;
  553. background-image:
  554. url('../../resources/themes/images/default/button/s-arrow.gif');
  555. padding-right: 14px !important
  556. }
  557. .x-btn-split-bottom,.x-btn-over .x-btn-split-bottom {
  558. background: transparent no-repeat center bottom;
  559. background-image:
  560. url('../../resources/themes/images/default/button/s-arrow-b.gif');
  561. padding-bottom: 14px
  562. }
  563. .x-toolbar .x-btn-split-right {
  564. background-image:
  565. url('../../resources/themes/images/default/button/s-arrow-noline.gif');
  566. padding-right: 12px !important
  567. }
  568. .x-toolbar .x-btn-split-bottom {
  569. background-image:
  570. url('../../resources/themes/images/default/button/s-arrow-b-noline.gif')
  571. }
  572. .x-btn-split {
  573. display: block
  574. }
  575. .x-item-disabled,.x-item-disabled * {
  576. cursor: default
  577. }
  578. .x-cycle-fixed-width .x-btn-inner {
  579. text-align: inherit
  580. }
  581. .x-btn-over .x-btn-split-right {
  582. background-image:
  583. url('../../resources/themes/images/default/button/s-arrow-o.gif')
  584. }
  585. .x-btn-over .x-btn-split-bottom {
  586. background-image:
  587. url('../../resources/themes/images/default/button/s-arrow-bo.gif')
  588. }
  589. .x-btn-default-small {
  590. border-color: #d1d1d1
  591. }
  592. .x-btn-default-small {
  593. padding: 2px 2px 2px 2px;
  594. border-width: 1px;
  595. border-style: solid;
  596. }
  597. .x-nlg .x-btn-default-small-mc {
  598. background-image:
  599. url('../../resources/themes/images/default/btn/btn-default-small-bg.gif');
  600. }
  601. .x-nbr .x-btn-default-small {
  602. padding: 0 !important;
  603. border-width: 0 !important;
  604. -moz-border-radius: 0px;
  605. -webkit-border-radius: 0px;
  606. -o-border-radius: 0px;
  607. -ms-border-radius: 0px;
  608. -khtml-border-radius: 0px;
  609. border-radius: 0px;
  610. background-color: transparent;
  611. background-position: 1100303px 1000303px
  612. }
  613. .x-nbr .x-btn-default-small-tl,.x-nbr .x-btn-default-small-bl,.x-nbr .x-btn-default-small-tr,.x-nbr .x-btn-default-small-br,.x-nbr .x-btn-default-small-tc,.x-nbr .x-btn-default-small-bc,.x-nbr .x-btn-default-small-ml,.x-nbr .x-btn-default-small-mr
  614. {
  615. zoom: 1;
  616. background-image:
  617. url('../../resources/themes/images/default/btn/btn-default-small-corners.gif')
  618. }
  619. .x-nbr .x-btn-default-small-ml,.x-nbr .x-btn-default-small-mr {
  620. zoom: 1;
  621. background-image:
  622. url('../../resources/themes/images/default/btn/btn-default-small-sides.gif');
  623. background-position: 0 0
  624. }
  625. .x-nbr .x-btn-default-small-mc {
  626. padding: 0 0 0 0
  627. }
  628. .x-btn-default-small .x-btn-inner {
  629. font-size: 14px;
  630. font-weight: normal;
  631. font-family: tahoma, arial, verdana, sans-serif;
  632. color: #333333;
  633. background-repeat: no-repeat;
  634. padding: 0 4px
  635. }
  636. .x-btn-default-small-icon button,.x-btn-default-small-icon .x-btn-inner,.x-btn-default-small-noicon button,.x-btn-default-small-noicon .x-btn-inner
  637. {
  638. height: 16px;
  639. line-height: 16px
  640. }
  641. .x-btn-default-small-icon button {
  642. padding: 0;
  643. width: 16px !important;
  644. height: 16px
  645. }
  646. .x-btn-default-small-icon .x-btn-icon {
  647. width: 16px;
  648. height: 16px;
  649. top: 0;
  650. left: 0;
  651. bottom: 0;
  652. right: 0
  653. }
  654. .x-btn-default-small-icon-text-left button {
  655. height: 16px
  656. }
  657. .x-btn-default-small-icon-text-left .x-btn-inner {
  658. height: 16px;
  659. line-height: 16px;
  660. padding-left: 20px
  661. }
  662. .x-btn-default-small-icon-text-left .x-btn-icon {
  663. width: 16px;
  664. height: auto;
  665. top: 0;
  666. left: 0;
  667. bottom: 0;
  668. right: auto
  669. }
  670. .x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon,.x-quirks .x-btn-default-small-icon-text-left .x-btn-icon
  671. {
  672. height: 16px
  673. }
  674. .x-btn-default-small-icon-text-right button {
  675. height: 16px
  676. }
  677. .x-btn-default-small-icon-text-right .x-btn-inner {
  678. height: 16px;
  679. line-height: 16px;
  680. padding-right: 20px !important
  681. }
  682. .x-btn-default-small-icon-text-right .x-btn-icon {
  683. width: 16px;
  684. height: auto;
  685. top: 0;
  686. left: auto;
  687. bottom: 0;
  688. right: 0
  689. }
  690. .x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon,.x-quirks .x-btn-default-small-icon-text-right .x-btn-icon
  691. {
  692. height: 16px
  693. }
  694. .x-btn-default-small-icon-text-top .x-btn-inner {
  695. padding-top: 20px
  696. }
  697. .x-btn-default-small-icon-text-top .x-btn-icon {
  698. width: auto;
  699. height: 16px;
  700. top: 0;
  701. left: 0;
  702. bottom: auto;
  703. right: 0
  704. }
  705. .x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon,.x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon
  706. {
  707. width: 16px
  708. }
  709. .x-btn-default-small-icon-text-bottom .x-btn-inner {
  710. padding-bottom: 20px
  711. }
  712. .x-btn-default-small-icon-text-bottom .x-btn-icon {
  713. width: auto;
  714. height: 16px;
  715. top: auto;
  716. left: 0;
  717. bottom: 0;
  718. right: 0
  719. }
  720. .x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon,.x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon
  721. {
  722. width: 16px
  723. }
  724. .x-btn-default-small-over {
  725. border-color: #b0ccf2;
  726. background-image: none;
  727. background-color: #e4f3ff;
  728. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff),
  729. color-stop(48%, #d9edff), color-stop(52%, #c2d8f2),
  730. color-stop(100%, #c6dcf6) );
  731. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  732. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  733. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  734. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  735. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6)
  736. }
  737. .x-btn-default-small-focus {
  738. border-color: #b0ccf2;
  739. background-image: none;
  740. background-color: #e4f3ff;
  741. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff),
  742. color-stop(48%, #d9edff), color-stop(52%, #c2d8f2),
  743. color-stop(100%, #c6dcf6) );
  744. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  745. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  746. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  747. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  748. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6)
  749. }
  750. .x-btn-default-small-menu-active,.x-btn-default-small-pressed {
  751. border-color: #9ebae1;
  752. background-image: none;
  753. background-color: #b6cbe4;
  754. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4),
  755. color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5),
  756. color-stop(100%, #98c5f5) );
  757. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  758. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  759. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  760. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  761. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5)
  762. }
  763. .x-btn-default-small-disabled {
  764. border-color: #e1e1e1;
  765. background-image: none;
  766. background-color: #f7f7f7;
  767. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7),
  768. color-stop(48%, #f1f1f1), color-stop(52%, #dadada),
  769. color-stop(100%, #dfdfdf) );
  770. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  771. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  772. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  773. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  774. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf)
  775. }
  776. .x-btn-default-small-disabled .x-btn-inner {
  777. color: #333333 !important
  778. }
  779. .x-ie .x-btn-default-small-disabled .x-btn-inner {
  780. color: #595959 !important
  781. }
  782. .x-ie6 .x-btn-default-small-disabled .x-btn-inner {
  783. color: #8c8c8c !important
  784. }
  785. .x-nbr .x-btn-default-small-over .x-frame-tl,.x-nbr .x-btn-default-small-over .x-frame-bl,.x-nbr .x-btn-default-small-over .x-frame-tr,.x-nbr .x-btn-default-small-over .x-frame-br,.x-nbr .x-btn-default-small-over .x-frame-tc,.x-nbr .x-btn-default-small-over .x-frame-bc
  786. {
  787. background-image:
  788. url('../../resources/themes/images/default/btn/btn-default-small-over-corners.gif')
  789. }
  790. .x-nbr .x-btn-default-small-over .x-frame-ml,.x-nbr .x-btn-default-small-over .x-frame-mr
  791. {
  792. background-image:
  793. url('../../resources/themes/images/default/btn/btn-default-small-over-sides.gif')
  794. }
  795. .x-nbr .x-btn-default-small-over .x-frame-mc {
  796. background-color: #e4f3ff;
  797. background-image:
  798. url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif')
  799. }
  800. .x-nbr .x-btn-default-small-focus .x-frame-tl,.x-nbr .x-btn-default-small-focus .x-frame-bl,.x-nbr .x-btn-default-small-focus .x-frame-tr,.x-nbr .x-btn-default-small-focus .x-frame-br,.x-nbr .x-btn-default-small-focus .x-frame-tc,.x-nbr .x-btn-default-small-focus .x-frame-bc
  801. {
  802. background-image:
  803. url('../../resources/themes/images/default/btn/btn-default-small-focus-corners.gif')
  804. }
  805. .x-nbr .x-btn-default-small-focus .x-frame-ml,.x-nbr .x-btn-default-small-focus .x-frame-mr
  806. {
  807. background-image:
  808. url('../../resources/themes/images/default/btn/btn-default-small-focus-sides.gif')
  809. }
  810. .x-nbr .x-btn-default-small-focus .x-frame-mc {
  811. background-color: #e4f3ff;
  812. background-image:
  813. url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif')
  814. }
  815. .x-nbr .x-btn-default-small-menu-active .x-frame-tl,.x-nbr .x-btn-default-small-menu-active .x-frame-bl,.x-nbr .x-btn-default-small-menu-active .x-frame-tr,.x-nbr .x-btn-default-small-menu-active .x-frame-br,.x-nbr .x-btn-default-small-menu-active .x-frame-tc,.x-nbr .x-btn-default-small-menu-active .x-frame-bc,.x-nbr .x-btn-default-small-pressed .x-frame-tl,.x-nbr .x-btn-default-small-pressed .x-frame-bl,.x-nbr .x-btn-default-small-pressed .x-frame-tr,.x-nbr .x-btn-default-small-pressed .x-frame-br,.x-nbr .x-btn-default-small-pressed .x-frame-tc,.x-nbr .x-btn-default-small-pressed .x-frame-bc
  816. {
  817. background-image:
  818. url('../../resources/themes/images/default/btn/btn-default-small-pressed-corners.gif')
  819. }
  820. .x-nbr .x-btn-default-small-menu-active .x-frame-ml,.x-nbr .x-btn-default-small-menu-active .x-frame-mr,.x-nbr .x-btn-default-small-pressed .x-frame-ml,.x-nbr .x-btn-default-small-pressed .x-frame-mr
  821. {
  822. background-image:
  823. url('../../resources/themes/images/default/btn/btn-default-small-pressed-sides.gif')
  824. }
  825. .x-nbr .x-btn-default-small-menu-active .x-frame-mc,.x-nbr .x-btn-default-small-pressed .x-frame-mc
  826. {
  827. background-color: #b6cbe4;
  828. background-image:
  829. url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif')
  830. }
  831. .x-nbr .x-btn-default-small-disabled .x-frame-tl,.x-nbr .x-btn-default-small-disabled .x-frame-bl,.x-nbr .x-btn-default-small-disabled .x-frame-tr,.x-nbr .x-btn-default-small-disabled .x-frame-br,.x-nbr .x-btn-default-small-disabled .x-frame-tc,.x-nbr .x-btn-default-small-disabled .x-frame-bc
  832. {
  833. background-image:
  834. url('../../resources/themes/images/default/btn/btn-default-small-disabled-corners.gif')
  835. }
  836. .x-nbr .x-btn-default-small-disabled .x-frame-ml,.x-nbr .x-btn-default-small-disabled .x-frame-mr
  837. {
  838. background-image:
  839. url('../../resources/themes/images/default/btn/btn-default-small-disabled-sides.gif')
  840. }
  841. .x-nbr .x-btn-default-small-disabled .x-frame-mc {
  842. background-color: #f7f7f7;
  843. background-image:
  844. url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif')
  845. }
  846. .x-nlg .x-btn-default-small {
  847. background-repeat: repeat-x;
  848. background-image:
  849. url('../../resources/themes/images/default/btn/btn-default-small-bg.gif')
  850. }
  851. .x-nlg .x-btn-default-small-over {
  852. background-repeat: repeat-x;
  853. background-image:
  854. url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif')
  855. }
  856. .x-nlg .x-btn-default-small-focus {
  857. background-repeat: repeat-x;
  858. background-image:
  859. url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif')
  860. }
  861. .x-nlg .x-btn-default-small-menu-active,.x-nlg .x-btn-default-small-pressed
  862. {
  863. background-repeat: repeat-x;
  864. background-image:
  865. url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif')
  866. }
  867. .x-nlg .x-btn-default-small-disabled {
  868. background-repeat: repeat-x;
  869. background-image:
  870. url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif')
  871. }
  872. .x-btn-default-medium {
  873. border-color: #d1d1d1
  874. }
  875. .x-btn-default-medium {
  876. padding: 3px 3px 3px 3px;
  877. border-width: 1px;
  878. border-style: solid;
  879. background-color: white
  880. }
  881. .x-nlg .x-btn-default-medium-mc {
  882. background-image:
  883. url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif');
  884. background-color: white
  885. }
  886. .x-nbr .x-btn-default-medium {
  887. padding: 0 !important;
  888. border-width: 0 !important;
  889. -moz-border-radius: 0px;
  890. -webkit-border-radius: 0px;
  891. -o-border-radius: 0px;
  892. -ms-border-radius: 0px;
  893. -khtml-border-radius: 0px;
  894. border-radius: 0px;
  895. background-color: transparent;
  896. background-position: 1100303px 1000303px
  897. }
  898. .x-nbr .x-btn-default-medium-tl,.x-nbr .x-btn-default-medium-bl,.x-nbr .x-btn-default-medium-tr,.x-nbr .x-btn-default-medium-br,.x-nbr .x-btn-default-medium-tc,.x-nbr .x-btn-default-medium-bc,.x-nbr .x-btn-default-medium-ml,.x-nbr .x-btn-default-medium-mr
  899. {
  900. zoom: 1;
  901. background-image:
  902. url('../../resources/themes/images/default/btn/btn-default-medium-corners.gif')
  903. }
  904. .x-nbr .x-btn-default-medium-ml,.x-nbr .x-btn-default-medium-mr {
  905. zoom: 1;
  906. background-image:
  907. url('../../resources/themes/images/default/btn/btn-default-medium-sides.gif');
  908. background-position: 0 0
  909. }
  910. .x-nbr .x-btn-default-medium-mc {
  911. padding: 0px 0px 0px 0px
  912. }
  913. .x-btn-default-medium .x-btn-inner {
  914. font-size: 11px;
  915. font-weight: normal;
  916. font-family: tahoma, arial, verdana, sans-serif;
  917. color: #333333;
  918. background-repeat: no-repeat;
  919. padding: 0 3px
  920. }
  921. .x-btn-default-medium-icon button,.x-btn-default-medium-icon .x-btn-inner,.x-btn-default-medium-noicon button,.x-btn-default-medium-noicon .x-btn-inner
  922. {
  923. height: 24px;
  924. line-height: 24px
  925. }
  926. .x-btn-default-medium-icon button {
  927. padding: 0;
  928. width: 24px !important;
  929. height: 24px
  930. }
  931. .x-btn-default-medium-icon .x-btn-icon {
  932. width: 24px;
  933. height: 24px;
  934. top: 0;
  935. left: 0;
  936. bottom: 0;
  937. right: 0
  938. }
  939. .x-btn-default-medium-icon-text-left button {
  940. height: 24px
  941. }
  942. .x-btn-default-medium-icon-text-left .x-btn-inner {
  943. height: 24px;
  944. line-height: 24px;
  945. padding-left: 28px
  946. }
  947. .x-btn-default-medium-icon-text-left .x-btn-icon {
  948. width: 24px;
  949. height: auto;
  950. top: 0;
  951. left: 0;
  952. bottom: 0;
  953. right: auto
  954. }
  955. .x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon,.x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon
  956. {
  957. height: 24px
  958. }
  959. .x-btn-default-medium-icon-text-right button {
  960. height: 24px
  961. }
  962. .x-btn-default-medium-icon-text-right .x-btn-inner {
  963. height: 24px;
  964. line-height: 24px;
  965. padding-right: 28px !important
  966. }
  967. .x-btn-default-medium-icon-text-right .x-btn-icon {
  968. width: 24px;
  969. height: auto;
  970. top: 0;
  971. left: auto;
  972. bottom: 0;
  973. right: 0
  974. }
  975. .x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon,.x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon
  976. {
  977. height: 24px
  978. }
  979. .x-btn-default-medium-icon-text-top .x-btn-inner {
  980. padding-top: 28px
  981. }
  982. .x-btn-default-medium-icon-text-top .x-btn-icon {
  983. width: auto;
  984. height: 24px;
  985. top: 0;
  986. left: 0;
  987. bottom: auto;
  988. right: 0
  989. }
  990. .x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon,.x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon
  991. {
  992. width: 24px
  993. }
  994. .x-btn-default-medium-icon-text-bottom .x-btn-inner {
  995. padding-bottom: 28px
  996. }
  997. .x-btn-default-medium-icon-text-bottom .x-btn-icon {
  998. width: auto;
  999. height: 24px;
  1000. top: auto;
  1001. left: 0;
  1002. bottom: 0;
  1003. right: 0
  1004. }
  1005. .x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon,.x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon
  1006. {
  1007. width: 24px
  1008. }
  1009. .x-btn-default-medium-over {
  1010. border-color: #b0ccf2;
  1011. background-image: none;
  1012. background-color: #e4f3ff;
  1013. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff),
  1014. color-stop(48%, #d9edff), color-stop(52%, #c2d8f2),
  1015. color-stop(100%, #c6dcf6) );
  1016. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1017. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1018. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1019. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1020. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6)
  1021. }
  1022. .x-btn-default-medium-focus {
  1023. border-color: #b0ccf2;
  1024. background-image: none;
  1025. background-color: #e4f3ff;
  1026. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff),
  1027. color-stop(48%, #d9edff), color-stop(52%, #c2d8f2),
  1028. color-stop(100%, #c6dcf6) );
  1029. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1030. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1031. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1032. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1033. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6)
  1034. }
  1035. .x-btn-default-medium-menu-active,.x-btn-default-medium-pressed {
  1036. border-color: #9ebae1;
  1037. background-image: none;
  1038. background-color: #b6cbe4;
  1039. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4),
  1040. color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5),
  1041. color-stop(100%, #98c5f5) );
  1042. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1043. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1044. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1045. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1046. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5)
  1047. }
  1048. .x-btn-default-medium-disabled {
  1049. border-color: #e1e1e1;
  1050. background-image: none;
  1051. background-color: #f7f7f7;
  1052. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7),
  1053. color-stop(48%, #f1f1f1), color-stop(52%, #dadada),
  1054. color-stop(100%, #dfdfdf) );
  1055. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1056. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1057. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1058. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1059. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf)
  1060. }
  1061. .x-btn-default-medium-disabled .x-btn-inner {
  1062. color: #333333 !important
  1063. }
  1064. .x-ie .x-btn-default-medium-disabled .x-btn-inner {
  1065. color: #595959 !important
  1066. }
  1067. .x-ie6 .x-btn-default-medium-disabled .x-btn-inner {
  1068. color: #8c8c8c !important
  1069. }
  1070. .x-nbr .x-btn-default-medium-over .x-frame-tl,.x-nbr .x-btn-default-medium-over .x-frame-bl,.x-nbr .x-btn-default-medium-over .x-frame-tr,.x-nbr .x-btn-default-medium-over .x-frame-br,.x-nbr .x-btn-default-medium-over .x-frame-tc,.x-nbr .x-btn-default-medium-over .x-frame-bc
  1071. {
  1072. background-image:
  1073. url('../../resources/themes/images/default/btn/btn-default-medium-over-corners.gif')
  1074. }
  1075. .x-nbr .x-btn-default-medium-over .x-frame-ml,.x-nbr .x-btn-default-medium-over .x-frame-mr
  1076. {
  1077. background-image:
  1078. url('../../resources/themes/images/default/btn/btn-default-medium-over-sides.gif')
  1079. }
  1080. .x-nbr .x-btn-default-medium-over .x-frame-mc {
  1081. background-color: #e4f3ff;
  1082. background-image:
  1083. url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif')
  1084. }
  1085. .x-nbr .x-btn-default-medium-focus .x-frame-tl,.x-nbr .x-btn-default-medium-focus .x-frame-bl,.x-nbr .x-btn-default-medium-focus .x-frame-tr,.x-nbr .x-btn-default-medium-focus .x-frame-br,.x-nbr .x-btn-default-medium-focus .x-frame-tc,.x-nbr .x-btn-default-medium-focus .x-frame-bc
  1086. {
  1087. background-image:
  1088. url('../../resources/themes/images/default/btn/btn-default-medium-focus-corners.gif')
  1089. }
  1090. .x-nbr .x-btn-default-medium-focus .x-frame-ml,.x-nbr .x-btn-default-medium-focus .x-frame-mr
  1091. {
  1092. background-image:
  1093. url('../../resources/themes/images/default/btn/btn-default-medium-focus-sides.gif')
  1094. }
  1095. .x-nbr .x-btn-default-medium-focus .x-frame-mc {
  1096. background-color: #e4f3ff;
  1097. background-image:
  1098. url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif')
  1099. }
  1100. .x-nbr .x-btn-default-medium-menu-active .x-frame-tl,.x-nbr .x-btn-default-medium-menu-active .x-frame-bl,.x-nbr .x-btn-default-medium-menu-active .x-frame-tr,.x-nbr .x-btn-default-medium-menu-active .x-frame-br,.x-nbr .x-btn-default-medium-menu-active .x-frame-tc,.x-nbr .x-btn-default-medium-menu-active .x-frame-bc,.x-nbr .x-btn-default-medium-pressed .x-frame-tl,.x-nbr .x-btn-default-medium-pressed .x-frame-bl,.x-nbr .x-btn-default-medium-pressed .x-frame-tr,.x-nbr .x-btn-default-medium-pressed .x-frame-br,.x-nbr .x-btn-default-medium-pressed .x-frame-tc,.x-nbr .x-btn-default-medium-pressed .x-frame-bc
  1101. {
  1102. background-image:
  1103. url('../../resources/themes/images/default/btn/btn-default-medium-pressed-corners.gif')
  1104. }
  1105. .x-nbr .x-btn-default-medium-menu-active .x-frame-ml,.x-nbr .x-btn-default-medium-menu-active .x-frame-mr,.x-nbr .x-btn-default-medium-pressed .x-frame-ml,.x-nbr .x-btn-default-medium-pressed .x-frame-mr
  1106. {
  1107. background-image:
  1108. url('../../resources/themes/images/default/btn/btn-default-medium-pressed-sides.gif')
  1109. }
  1110. .x-nbr .x-btn-default-medium-menu-active .x-frame-mc,.x-nbr .x-btn-default-medium-pressed .x-frame-mc
  1111. {
  1112. background-color: #b6cbe4;
  1113. background-image:
  1114. url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif')
  1115. }
  1116. .x-nbr .x-btn-default-medium-disabled .x-frame-tl,.x-nbr .x-btn-default-medium-disabled .x-frame-bl,.x-nbr .x-btn-default-medium-disabled .x-frame-tr,.x-nbr .x-btn-default-medium-disabled .x-frame-br,.x-nbr .x-btn-default-medium-disabled .x-frame-tc,.x-nbr .x-btn-default-medium-disabled .x-frame-bc
  1117. {
  1118. background-image:
  1119. url('../../resources/themes/images/default/btn/btn-default-medium-disabled-corners.gif')
  1120. }
  1121. .x-nbr .x-btn-default-medium-disabled .x-frame-ml,.x-nbr .x-btn-default-medium-disabled .x-frame-mr
  1122. {
  1123. background-image:
  1124. url('../../resources/themes/images/default/btn/btn-default-medium-disabled-sides.gif')
  1125. }
  1126. .x-nbr .x-btn-default-medium-disabled .x-frame-mc {
  1127. background-color: #f7f7f7;
  1128. background-image:
  1129. url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif')
  1130. }
  1131. .x-nlg .x-btn-default-medium {
  1132. background-repeat: repeat-x;
  1133. background-image:
  1134. url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif')
  1135. }
  1136. .x-nlg .x-btn-default-medium-over {
  1137. background-repeat: repeat-x;
  1138. background-image:
  1139. url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif')
  1140. }
  1141. .x-nlg .x-btn-default-medium-focus {
  1142. background-repeat: repeat-x;
  1143. background-image:
  1144. url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif')
  1145. }
  1146. .x-nlg .x-btn-default-medium-menu-active,.x-nlg .x-btn-default-medium-pressed
  1147. {
  1148. background-repeat: repeat-x;
  1149. background-image:
  1150. url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif')
  1151. }
  1152. .x-nlg .x-btn-default-medium-disabled {
  1153. background-repeat: repeat-x;
  1154. background-image:
  1155. url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif')
  1156. }
  1157. .x-btn-default-large {
  1158. border-color: #d1d1d1
  1159. }
  1160. .x-btn-default-large {
  1161. padding: 3px 3px 3px 3px;
  1162. border-width: 1px;
  1163. border-style: solid;
  1164. background-color: white
  1165. }
  1166. .x-nlg .x-btn-default-large-mc {
  1167. background-image:
  1168. url('../../resources/themes/images/default/btn/btn-default-large-bg.gif');
  1169. background-color: white
  1170. }
  1171. .x-nbr .x-btn-default-large {
  1172. padding: 0 !important;
  1173. border-width: 0 !important;
  1174. -moz-border-radius: 0px;
  1175. -webkit-border-radius: 0px;
  1176. -o-border-radius: 0px;
  1177. -ms-border-radius: 0px;
  1178. -khtml-border-radius: 0px;
  1179. border-radius: 0px;
  1180. background-color: transparent;
  1181. background-position: 1100303px 1000303px
  1182. }
  1183. .x-nbr .x-btn-default-large-tl,.x-nbr .x-btn-default-large-bl,.x-nbr .x-btn-default-large-tr,.x-nbr .x-btn-default-large-br,.x-nbr .x-btn-default-large-tc,.x-nbr .x-btn-default-large-bc,.x-nbr .x-btn-default-large-ml,.x-nbr .x-btn-default-large-mr
  1184. {
  1185. zoom: 1;
  1186. background-image:
  1187. url('../../resources/themes/images/default/btn/btn-default-large-corners.gif')
  1188. }
  1189. .x-nbr .x-btn-default-large-ml,.x-nbr .x-btn-default-large-mr {
  1190. zoom: 1;
  1191. background-image:
  1192. url('../../resources/themes/images/default/btn/btn-default-large-sides.gif');
  1193. background-position: 0 0
  1194. }
  1195. .x-nbr .x-btn-default-large-mc {
  1196. padding: 0px 0px 0px 0px
  1197. }
  1198. .x-btn-default-large .x-btn-inner {
  1199. font-size: 11px;
  1200. font-weight: normal;
  1201. font-family: tahoma, arial, verdana, sans-serif;
  1202. color: #333333;
  1203. background-repeat: no-repeat;
  1204. padding: 0 3px
  1205. }
  1206. .x-btn-default-large-icon button,.x-btn-default-large-icon .x-btn-inner,.x-btn-default-large-noicon button,.x-btn-default-large-noicon .x-btn-inner
  1207. {
  1208. height: 32px;
  1209. line-height: 32px
  1210. }
  1211. .x-btn-default-large-icon button {
  1212. padding: 0;
  1213. width: 32px !important;
  1214. height: 32px
  1215. }
  1216. .x-btn-default-large-icon .x-btn-icon {
  1217. width: 32px;
  1218. height: 32px;
  1219. top: 0;
  1220. left: 0;
  1221. bottom: 0;
  1222. right: 0
  1223. }
  1224. .x-btn-default-large-icon-text-left button {
  1225. height: 32px
  1226. }
  1227. .x-btn-default-large-icon-text-left .x-btn-inner {
  1228. height: 32px;
  1229. line-height: 32px;
  1230. padding-left: 36px
  1231. }
  1232. .x-btn-default-large-icon-text-left .x-btn-icon {
  1233. width: 32px;
  1234. height: auto;
  1235. top: 0;
  1236. left: 0;
  1237. bottom: 0;
  1238. right: auto
  1239. }
  1240. .x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon,.x-quirks .x-btn-default-large-icon-text-left .x-btn-icon
  1241. {
  1242. height: 32px
  1243. }
  1244. .x-btn-default-large-icon-text-right button {
  1245. height: 32px
  1246. }
  1247. .x-btn-default-large-icon-text-right .x-btn-inner {
  1248. height: 32px;
  1249. line-height: 32px;
  1250. padding-right: 36px !important
  1251. }
  1252. .x-btn-default-large-icon-text-right .x-btn-icon {
  1253. width: 32px;
  1254. height: auto;
  1255. top: 0;
  1256. left: auto;
  1257. bottom: 0;
  1258. right: 0
  1259. }
  1260. .x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon,.x-quirks .x-btn-default-large-icon-text-right .x-btn-icon
  1261. {
  1262. height: 32px
  1263. }
  1264. .x-btn-default-large-icon-text-top .x-btn-inner {
  1265. padding-top: 36px
  1266. }
  1267. .x-btn-default-large-icon-text-top .x-btn-icon {
  1268. width: auto;
  1269. height: 32px;
  1270. top: 0;
  1271. left: 0;
  1272. bottom: auto;
  1273. right: 0
  1274. }
  1275. .x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon,.x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon
  1276. {
  1277. width: 32px
  1278. }
  1279. .x-btn-default-large-icon-text-bottom .x-btn-inner {
  1280. padding-bottom: 36px
  1281. }
  1282. .x-btn-default-large-icon-text-bottom .x-btn-icon {
  1283. width: auto;
  1284. height: 32px;
  1285. top: auto;
  1286. left: 0;
  1287. bottom: 0;
  1288. right: 0
  1289. }
  1290. .x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon,.x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon
  1291. {
  1292. width: 32px
  1293. }
  1294. .x-btn-default-large-over {
  1295. border-color: #b0ccf2;
  1296. background-image: none;
  1297. background-color: #e4f3ff;
  1298. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff),
  1299. color-stop(48%, #d9edff), color-stop(52%, #c2d8f2),
  1300. color-stop(100%, #c6dcf6) );
  1301. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1302. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1303. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1304. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1305. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6)
  1306. }
  1307. .x-btn-default-large-focus {
  1308. border-color: #b0ccf2;
  1309. background-image: none;
  1310. background-color: #e4f3ff;
  1311. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff),
  1312. color-stop(48%, #d9edff), color-stop(52%, #c2d8f2),
  1313. color-stop(100%, #c6dcf6) );
  1314. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1315. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1316. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1317. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1318. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6)
  1319. }
  1320. .x-btn-default-large-menu-active,.x-btn-default-large-pressed {
  1321. border-color: #9ebae1;
  1322. background-image: none;
  1323. background-color: #b6cbe4;
  1324. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4),
  1325. color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5),
  1326. color-stop(100%, #98c5f5) );
  1327. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1328. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1329. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1330. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1331. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5)
  1332. }
  1333. .x-btn-default-large-disabled {
  1334. border-color: #e1e1e1;
  1335. background-image: none;
  1336. background-color: #f7f7f7;
  1337. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7),
  1338. color-stop(48%, #f1f1f1), color-stop(52%, #dadada),
  1339. color-stop(100%, #dfdfdf) );
  1340. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1341. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1342. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1343. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1344. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf)
  1345. }
  1346. .x-btn-default-large-disabled .x-btn-inner {
  1347. color: #333333 !important
  1348. }
  1349. .x-ie .x-btn-default-large-disabled .x-btn-inner {
  1350. color: #595959 !important
  1351. }
  1352. .x-ie6 .x-btn-default-large-disabled .x-btn-inner {
  1353. color: #8c8c8c !important
  1354. }
  1355. .x-nbr .x-btn-default-large-over .x-frame-tl,.x-nbr .x-btn-default-large-over .x-frame-bl,.x-nbr .x-btn-default-large-over .x-frame-tr,.x-nbr .x-btn-default-large-over .x-frame-br,.x-nbr .x-btn-default-large-over .x-frame-tc,.x-nbr .x-btn-default-large-over .x-frame-bc
  1356. {
  1357. background-image:
  1358. url('../../resources/themes/images/default/btn/btn-default-large-over-corners.gif')
  1359. }
  1360. .x-nbr .x-btn-default-large-over .x-frame-ml,.x-nbr .x-btn-default-large-over .x-frame-mr
  1361. {
  1362. background-image:
  1363. url('../../resources/themes/images/default/btn/btn-default-large-over-sides.gif')
  1364. }
  1365. .x-nbr .x-btn-default-large-over .x-frame-mc {
  1366. background-color: #e4f3ff;
  1367. background-image:
  1368. url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif')
  1369. }
  1370. .x-nbr .x-btn-default-large-focus .x-frame-tl,.x-nbr .x-btn-default-large-focus .x-frame-bl,.x-nbr .x-btn-default-large-focus .x-frame-tr,.x-nbr .x-btn-default-large-focus .x-frame-br,.x-nbr .x-btn-default-large-focus .x-frame-tc,.x-nbr .x-btn-default-large-focus .x-frame-bc
  1371. {
  1372. background-image:
  1373. url('../../resources/themes/images/default/btn/btn-default-large-focus-corners.gif')
  1374. }
  1375. .x-nbr .x-btn-default-large-focus .x-frame-ml,.x-nbr .x-btn-default-large-focus .x-frame-mr
  1376. {
  1377. background-image:
  1378. url('../../resources/themes/images/default/btn/btn-default-large-focus-sides.gif')
  1379. }
  1380. .x-nbr .x-btn-default-large-focus .x-frame-mc {
  1381. background-color: #e4f3ff;
  1382. background-image:
  1383. url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif')
  1384. }
  1385. .x-nbr .x-btn-default-large-menu-active .x-frame-tl,.x-nbr .x-btn-default-large-menu-active .x-frame-bl,.x-nbr .x-btn-default-large-menu-active .x-frame-tr,.x-nbr .x-btn-default-large-menu-active .x-frame-br,.x-nbr .x-btn-default-large-menu-active .x-frame-tc,.x-nbr .x-btn-default-large-menu-active .x-frame-bc,.x-nbr .x-btn-default-large-pressed .x-frame-tl,.x-nbr .x-btn-default-large-pressed .x-frame-bl,.x-nbr .x-btn-default-large-pressed .x-frame-tr,.x-nbr .x-btn-default-large-pressed .x-frame-br,.x-nbr .x-btn-default-large-pressed .x-frame-tc,.x-nbr .x-btn-default-large-pressed .x-frame-bc
  1386. {
  1387. background-image:
  1388. url('../../resources/themes/images/default/btn/btn-default-large-pressed-corners.gif')
  1389. }
  1390. .x-nbr .x-btn-default-large-menu-active .x-frame-ml,.x-nbr .x-btn-default-large-menu-active .x-frame-mr,.x-nbr .x-btn-default-large-pressed .x-frame-ml,.x-nbr .x-btn-default-large-pressed .x-frame-mr
  1391. {
  1392. background-image:
  1393. url('../../resources/themes/images/default/btn/btn-default-large-pressed-sides.gif')
  1394. }
  1395. .x-nbr .x-btn-default-large-menu-active .x-frame-mc,.x-nbr .x-btn-default-large-pressed .x-frame-mc
  1396. {
  1397. background-color: #b6cbe4;
  1398. background-image:
  1399. url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif')
  1400. }
  1401. .x-nbr .x-btn-default-large-disabled .x-frame-tl,.x-nbr .x-btn-default-large-disabled .x-frame-bl,.x-nbr .x-btn-default-large-disabled .x-frame-tr,.x-nbr .x-btn-default-large-disabled .x-frame-br,.x-nbr .x-btn-default-large-disabled .x-frame-tc,.x-nbr .x-btn-default-large-disabled .x-frame-bc
  1402. {
  1403. background-image:
  1404. url('../../resources/themes/images/default/btn/btn-default-large-disabled-corners.gif')
  1405. }
  1406. .x-nbr .x-btn-default-large-disabled .x-frame-ml,.x-nbr .x-btn-default-large-disabled .x-frame-mr
  1407. {
  1408. background-image:
  1409. url('../../resources/themes/images/default/btn/btn-default-large-disabled-sides.gif')
  1410. }
  1411. .x-nbr .x-btn-default-large-disabled .x-frame-mc {
  1412. background-color: #f7f7f7;
  1413. background-image:
  1414. url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif')
  1415. }
  1416. .x-nlg .x-btn-default-large {
  1417. background-repeat: repeat-x;
  1418. background-image:
  1419. url('../../resources/themes/images/default/btn/btn-default-large-bg.gif')
  1420. }
  1421. .x-nlg .x-btn-default-large-over {
  1422. background-repeat: repeat-x;
  1423. background-image:
  1424. url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif')
  1425. }
  1426. .x-nlg .x-btn-default-large-focus {
  1427. background-repeat: repeat-x;
  1428. background-image:
  1429. url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif')
  1430. }
  1431. .x-nlg .x-btn-default-large-menu-active,.x-nlg .x-btn-default-large-pressed
  1432. {
  1433. background-repeat: repeat-x;
  1434. background-image:
  1435. url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif')
  1436. }
  1437. .x-nlg .x-btn-default-large-disabled {
  1438. background-repeat: repeat-x;
  1439. background-image:
  1440. url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif')
  1441. }
  1442. .x-btn-default-toolbar-small {
  1443. border-color: gray;
  1444. /* border-color: transparent */
  1445. /* background-color: #dbeeff; */
  1446. }
  1447. .x-btn-default-toolbar-small {
  1448. padding: 2px 2px 2px 2px;
  1449. border-width: 1px;
  1450. border-style: solid;
  1451. /*update by yingp
  1452. border-color: transparent
  1453. */
  1454. border-color: gray;
  1455. /* background-color: transparent; */
  1456. }
  1457. .x-nlg .x-btn-default-toolbar-small-mc {
  1458. /* background-color: transparent; */
  1459. border-color: gray;
  1460. }
  1461. .x-nbr .x-btn-default-toolbar-small {
  1462. /* padding: 0 !important;
  1463. border-width: 0 ;
  1464. -moz-border-radius: 0px;
  1465. -webkit-border-radius: 0px;
  1466. -o-border-radius: 0px;
  1467. -ms-border-radius: 0px;
  1468. -khtml-border-radius: 0px;
  1469. border-radius: 0px;
  1470. background-color: transparent;
  1471. background-position: 1100303px 1000303px; */
  1472. }
  1473. .x-nbr .x-btn-default-toolbar-small-tl,.x-nbr .x-btn-default-toolbar-small-bl,.x-nbr .x-btn-default-toolbar-small-tr,.x-nbr .x-btn-default-toolbar-small-br,.x-nbr .x-btn-default-toolbar-small-tc,.x-nbr .x-btn-default-toolbar-small-bc,.x-nbr .x-btn-default-toolbar-small-ml,.x-nbr .x-btn-default-toolbar-small-mr
  1474. {
  1475. zoom: 1
  1476. }
  1477. .x-nbr .x-btn-default-toolbar-small-ml,.x-nbr .x-btn-default-toolbar-small-mr
  1478. {
  1479. zoom: 1
  1480. }
  1481. .x-nbr .x-btn-default-toolbar-small-mc {
  1482. padding: 0 0 0 0
  1483. }
  1484. .x-btn-default-toolbar-small .x-btn-inner {
  1485. font-size: 14px;
  1486. font-weight: normal;
  1487. font-family: tahoma, arial, verdana, sans-serif;
  1488. color: #333333;
  1489. background-repeat: no-repeat;
  1490. padding: 0 4px
  1491. }
  1492. .x-btn-default-toolbar-small-icon button,.x-btn-default-toolbar-small-icon .x-btn-inner,.x-btn-default-toolbar-small-noicon button,.x-btn-default-toolbar-small-noicon .x-btn-inner
  1493. {
  1494. height: 16px;
  1495. line-height: 16px
  1496. }
  1497. .x-btn-default-toolbar-small-icon button {
  1498. padding: 0;
  1499. width:16px !important;
  1500. height: 16px
  1501. }
  1502. .x-btn-default-toolbar-small-icon .x-btn-icon {
  1503. width: 16px;
  1504. height: 16px;
  1505. top: 0;
  1506. left: 0;
  1507. bottom: 0;
  1508. right: 0
  1509. }
  1510. .x-btn-default-toolbar-small-icon-text-left button {
  1511. height: 16px
  1512. }
  1513. .x-btn-default-toolbar-small-icon-text-left .x-btn-inner {
  1514. height: 16px;
  1515. line-height: 16px;
  1516. padding-left: 20px
  1517. }
  1518. .x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
  1519. width: 16px;
  1520. height: auto;
  1521. top: 0;
  1522. left: 0;
  1523. bottom: 0;
  1524. right: auto
  1525. }
  1526. .x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon,.x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon
  1527. {
  1528. height: 16px
  1529. }
  1530. .x-btn-default-toolbar-small-icon-text-right button {
  1531. height: 16px
  1532. }
  1533. .x-btn-default-toolbar-small-icon-text-right .x-btn-inner {
  1534. height: 16px;
  1535. line-height: 16px;
  1536. padding-right: 20px !important
  1537. }
  1538. .x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
  1539. width: 16px;
  1540. height: auto;
  1541. top: 0;
  1542. left: auto;
  1543. bottom: 0;
  1544. right: 0
  1545. }
  1546. .x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon,.x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon
  1547. {
  1548. height: 16px
  1549. }
  1550. .x-btn-default-toolbar-small-icon-text-top .x-btn-inner {
  1551. padding-top: 20px
  1552. }
  1553. .x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
  1554. width: auto;
  1555. height: 16px;
  1556. top: 0;
  1557. left: 0;
  1558. bottom: auto;
  1559. right: 0
  1560. }
  1561. .x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon
  1562. {
  1563. width: 16px
  1564. }
  1565. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner {
  1566. padding-bottom: 20px
  1567. }
  1568. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
  1569. width: auto;
  1570. height: 16px;
  1571. top: auto;
  1572. left: 0;
  1573. bottom: 0;
  1574. right: 0
  1575. }
  1576. .x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon
  1577. {
  1578. width: 16px
  1579. }
  1580. .x-btn-default-toolbar-small-over {
  1581. border-color: #81a4d0;
  1582. background-image: none;
  1583. background-color: #dbeeff;
  1584. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff),
  1585. color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0),
  1586. color-stop(100%, #bed6f5) );
  1587. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1588. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1589. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1590. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1591. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5)
  1592. }
  1593. .x-btn-default-toolbar-small-focus {
  1594. border-color: #81a4d0;
  1595. background-image: none;
  1596. background-color: #dbeeff;
  1597. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff),
  1598. color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0),
  1599. color-stop(100%, #bed6f5) );
  1600. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1601. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1602. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1603. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1604. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5)
  1605. }
  1606. .x-btn-default-toolbar-small-menu-active,.x-btn-default-toolbar-small-pressed
  1607. {
  1608. border-color: #7a9ac4;
  1609. background-image: none;
  1610. background-color: #bccfe5;
  1611. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5),
  1612. color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4),
  1613. color-stop(100%, #9fc9f5) );
  1614. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1615. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1616. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1617. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1618. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5)
  1619. }
  1620. .x-btn-default-toolbar-small-disabled {
  1621. background-image: none;
  1622. background-color: transparent
  1623. }
  1624. .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1625. color: #333333 !important
  1626. }
  1627. .x-ie .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1628. color: #595959 !important
  1629. }
  1630. .x-ie6 .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1631. color: #8c8c8c !important
  1632. }
  1633. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tl,.x-nbr .x-btn-default-toolbar-small-over .x-frame-bl,.x-nbr .x-btn-default-toolbar-small-over .x-frame-tr,.x-nbr .x-btn-default-toolbar-small-over .x-frame-br,.x-nbr .x-btn-default-toolbar-small-over .x-frame-tc,.x-nbr .x-btn-default-toolbar-small-over .x-frame-bc
  1634. {
  1635. background-image:
  1636. url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-corners.gif')
  1637. }
  1638. .x-nbr .x-btn-default-toolbar-small-over .x-frame-ml,.x-nbr .x-btn-default-toolbar-small-over .x-frame-mr
  1639. {
  1640. background-image:
  1641. url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-sides.gif')
  1642. }
  1643. .x-nbr .x-btn-default-toolbar-small-over .x-frame-mc {
  1644. background-color: #dbeeff;
  1645. background-image:
  1646. url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif')
  1647. }
  1648. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tl,.x-nbr .x-btn-default-toolbar-small-focus .x-frame-bl,.x-nbr .x-btn-default-toolbar-small-focus .x-frame-tr,.x-nbr .x-btn-default-toolbar-small-focus .x-frame-br,.x-nbr .x-btn-default-toolbar-small-focus .x-frame-tc,.x-nbr .x-btn-default-toolbar-small-focus .x-frame-bc
  1649. {
  1650. background-image:
  1651. url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-corners.gif')
  1652. }
  1653. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-ml,.x-nbr .x-btn-default-toolbar-small-focus .x-frame-mr
  1654. {
  1655. background-image:
  1656. url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-sides.gif')
  1657. }
  1658. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-mc {
  1659. background-color: #dbeeff;
  1660. background-image:
  1661. url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif')
  1662. }
  1663. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tl,.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bl,.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tr,.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-br,.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tc,.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bc,.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tl,.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bl,.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tr,.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-br,.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tc,.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bc
  1664. {
  1665. background-image:
  1666. url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-corners.gif')
  1667. }
  1668. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-ml,.x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mr,.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-ml,.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mr
  1669. {
  1670. background-image:
  1671. url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-sides.gif')
  1672. }
  1673. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mc,.x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mc
  1674. {
  1675. background-color: #bccfe5;
  1676. background-image:
  1677. url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif')
  1678. }
  1679. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tl,.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bl,.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tr,.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-br,.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tc,.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bc
  1680. {
  1681. background-image:
  1682. url('../../resources/themes/images/default/btn/btn-default-toolbar-small-disabled-corners.gif')
  1683. }
  1684. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-ml,.x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mr
  1685. {
  1686. background-image:
  1687. url('../../resources/themes/images/default/btn/btn-default-toolbar-small-disabled-sides.gif')
  1688. }
  1689. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mc {
  1690. background-color: transparent
  1691. }
  1692. .x-nlg .x-btn-default-toolbar-small-over {
  1693. background-repeat: repeat-x;
  1694. background-image:
  1695. url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif')
  1696. }
  1697. .x-nlg .x-btn-default-toolbar-small-focus {
  1698. background-repeat: repeat-x;
  1699. background-image:
  1700. url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif')
  1701. }
  1702. .x-nlg .x-btn-default-toolbar-small-menu-active,.x-nlg .x-btn-default-toolbar-small-pressed
  1703. {
  1704. background-repeat: repeat-x;
  1705. background-image:
  1706. url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif')
  1707. }
  1708. .x-btn-default-toolbar-medium {
  1709. border-color: transparent
  1710. }
  1711. .x-btn-default-toolbar-medium {
  1712. padding: 3px 3px 3px 3px;
  1713. border-width: 1px;
  1714. border-style: solid;
  1715. background-color: transparent
  1716. }
  1717. .x-nlg .x-btn-default-toolbar-medium-mc {
  1718. background-color: transparent
  1719. }
  1720. .x-nbr .x-btn-default-toolbar-medium {
  1721. padding: 0 !important;
  1722. border-width: 0 !important;
  1723. -moz-border-radius: 0px;
  1724. -webkit-border-radius: 0px;
  1725. -o-border-radius: 0px;
  1726. -ms-border-radius: 0px;
  1727. -khtml-border-radius: 0px;
  1728. border-radius: 0px;
  1729. background-color: transparent;
  1730. background-position: 1100303px 1000303px
  1731. }
  1732. .x-nbr .x-btn-default-toolbar-medium-tl,.x-nbr .x-btn-default-toolbar-medium-bl,.x-nbr .x-btn-default-toolbar-medium-tr,.x-nbr .x-btn-default-toolbar-medium-br,.x-nbr .x-btn-default-toolbar-medium-tc,.x-nbr .x-btn-default-toolbar-medium-bc,.x-nbr .x-btn-default-toolbar-medium-ml,.x-nbr .x-btn-default-toolbar-medium-mr
  1733. {
  1734. zoom: 1
  1735. }
  1736. .x-nbr .x-btn-default-toolbar-medium-ml,.x-nbr .x-btn-default-toolbar-medium-mr
  1737. {
  1738. zoom: 1
  1739. }
  1740. .x-nbr .x-btn-default-toolbar-medium-mc {
  1741. padding: 0px 0px 0px 0px
  1742. }
  1743. .x-btn-default-toolbar-medium .x-btn-inner {
  1744. font-size: 11px;
  1745. font-weight: normal;
  1746. font-family: tahoma, arial, verdana, sans-serif;
  1747. color: #333333;
  1748. background-repeat: no-repeat;
  1749. padding: 0 3px
  1750. }
  1751. .x-btn-default-toolbar-medium-icon button,.x-btn-default-toolbar-medium-icon .x-btn-inner,.x-btn-default-toolbar-medium-noicon button,.x-btn-default-toolbar-medium-noicon .x-btn-inner
  1752. {
  1753. height: 24px;
  1754. line-height: 24px
  1755. }
  1756. .x-btn-default-toolbar-medium-icon button {
  1757. padding: 0;
  1758. width: 24px !important;
  1759. height: 24px
  1760. }
  1761. .x-btn-default-toolbar-medium-icon .x-btn-icon {
  1762. width: 24px;
  1763. height: 24px;
  1764. top: 0;
  1765. left: 0;
  1766. bottom: 0;
  1767. right: 0
  1768. }
  1769. .x-btn-default-toolbar-medium-icon-text-left button {
  1770. height: 24px
  1771. }
  1772. .x-btn-default-toolbar-medium-icon-text-left .x-btn-inner {
  1773. height: 24px;
  1774. line-height: 24px;
  1775. padding-left: 28px
  1776. }
  1777. .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
  1778. width: 24px;
  1779. height: auto;
  1780. top: 0;
  1781. left: 0;
  1782. bottom: 0;
  1783. right: auto
  1784. }
  1785. .x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon,.x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon
  1786. {
  1787. height: 24px
  1788. }
  1789. .x-btn-default-toolbar-medium-icon-text-right button {
  1790. height: 24px
  1791. }
  1792. .x-btn-default-toolbar-medium-icon-text-right .x-btn-inner {
  1793. height: 24px;
  1794. line-height: 24px;
  1795. padding-right: 28px !important
  1796. }
  1797. .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
  1798. width: 24px;
  1799. height: auto;
  1800. top: 0;
  1801. left: auto;
  1802. bottom: 0;
  1803. right: 0
  1804. }
  1805. .x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon,.x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon
  1806. {
  1807. height: 24px
  1808. }
  1809. .x-btn-default-toolbar-medium-icon-text-top .x-btn-inner {
  1810. padding-top: 28px
  1811. }
  1812. .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
  1813. width: auto;
  1814. height: 24px;
  1815. top: 0;
  1816. left: 0;
  1817. bottom: auto;
  1818. right: 0
  1819. }
  1820. .x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon
  1821. {
  1822. width: 24px
  1823. }
  1824. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner {
  1825. padding-bottom: 28px
  1826. }
  1827. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
  1828. width: auto;
  1829. height: 24px;
  1830. top: auto;
  1831. left: 0;
  1832. bottom: 0;
  1833. right: 0
  1834. }
  1835. .x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon
  1836. {
  1837. width: 24px
  1838. }
  1839. .x-btn-default-toolbar-medium-over {
  1840. border-color: #81a4d0;
  1841. background-image: none;
  1842. background-color: #dbeeff;
  1843. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff),
  1844. color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0),
  1845. color-stop(100%, #bed6f5) );
  1846. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1847. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1848. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1849. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1850. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5)
  1851. }
  1852. .x-btn-default-toolbar-medium-focus {
  1853. border-color: #81a4d0;
  1854. background-image: none;
  1855. background-color: #dbeeff;
  1856. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff),
  1857. color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0),
  1858. color-stop(100%, #bed6f5) );
  1859. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1860. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1861. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1862. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1863. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5)
  1864. }
  1865. .x-btn-default-toolbar-medium-menu-active,.x-btn-default-toolbar-medium-pressed
  1866. {
  1867. border-color: #7a9ac4;
  1868. background-image: none;
  1869. background-color: #bccfe5;
  1870. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5),
  1871. color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4),
  1872. color-stop(100%, #9fc9f5) );
  1873. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1874. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1875. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1876. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1877. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5)
  1878. }
  1879. .x-btn-default-toolbar-medium-disabled {
  1880. background-image: none;
  1881. background-color: transparent
  1882. }
  1883. .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  1884. color: #333333 !important
  1885. }
  1886. .x-ie .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  1887. color: #595959 !important
  1888. }
  1889. .x-ie6 .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  1890. color: #8c8c8c !important
  1891. }
  1892. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tl,.x-nbr .x-btn-default-toolbar-medium-over .x-frame-bl,.x-nbr .x-btn-default-toolbar-medium-over .x-frame-tr,.x-nbr .x-btn-default-toolbar-medium-over .x-frame-br,.x-nbr .x-btn-default-toolbar-medium-over .x-frame-tc,.x-nbr .x-btn-default-toolbar-medium-over .x-frame-bc
  1893. {
  1894. background-image:
  1895. url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-corners.gif')
  1896. }
  1897. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-ml,.x-nbr .x-btn-default-toolbar-medium-over .x-frame-mr
  1898. {
  1899. background-image:
  1900. url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-sides.gif')
  1901. }
  1902. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-mc {
  1903. background-color: #dbeeff;
  1904. background-image:
  1905. url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif')
  1906. }
  1907. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tl,.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bl,.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tr,.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-br,.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tc,.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bc
  1908. {
  1909. background-image:
  1910. url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-corners.gif')
  1911. }
  1912. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-ml,.x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mr
  1913. {
  1914. background-image:
  1915. url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-sides.gif')
  1916. }
  1917. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mc {
  1918. background-color: #dbeeff;
  1919. background-image:
  1920. url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif')
  1921. }
  1922. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tl,.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bl,.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tr,.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-br,.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tc,.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bc,.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tl,.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bl,.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tr,.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-br,.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tc,.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bc
  1923. {
  1924. background-image:
  1925. url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-corners.gif')
  1926. }
  1927. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-ml,.x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mr,.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-ml,.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mr
  1928. {
  1929. background-image:
  1930. url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-sides.gif')
  1931. }
  1932. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mc,.x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mc
  1933. {
  1934. background-color: #bccfe5;
  1935. background-image:
  1936. url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif')
  1937. }
  1938. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tl,.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bl,.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tr,.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-br,.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tc,.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bc
  1939. {
  1940. background-image:
  1941. url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-disabled-corners.gif')
  1942. }
  1943. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-ml,.x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mr
  1944. {
  1945. background-image:
  1946. url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-disabled-sides.gif')
  1947. }
  1948. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mc {
  1949. background-color: transparent
  1950. }
  1951. .x-nlg .x-btn-default-toolbar-medium-over {
  1952. background-repeat: repeat-x;
  1953. background-image:
  1954. url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif')
  1955. }
  1956. .x-nlg .x-btn-default-toolbar-medium-focus {
  1957. background-repeat: repeat-x;
  1958. background-image:
  1959. url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif')
  1960. }
  1961. .x-nlg .x-btn-default-toolbar-medium-menu-active,.x-nlg .x-btn-default-toolbar-medium-pressed
  1962. {
  1963. background-repeat: repeat-x;
  1964. background-image:
  1965. url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif')
  1966. }
  1967. .x-btn-default-toolbar-large {
  1968. border-color: transparent
  1969. }
  1970. .x-btn-default-toolbar-large {
  1971. padding: 3px 3px 3px 3px;
  1972. border-width: 1px;
  1973. border-style: solid;
  1974. background-color: transparent
  1975. }
  1976. .x-nlg .x-btn-default-toolbar-large-mc {
  1977. background-color: transparent
  1978. }
  1979. .x-nbr .x-btn-default-toolbar-large {
  1980. padding: 0 !important;
  1981. border-width: 0 !important;
  1982. -moz-border-radius: 0px;
  1983. -webkit-border-radius: 0px;
  1984. -o-border-radius: 0px;
  1985. -ms-border-radius: 0px;
  1986. -khtml-border-radius: 0px;
  1987. border-radius: 0px;
  1988. background-color: transparent;
  1989. background-position: 1100303px 1000303px
  1990. }
  1991. .x-nbr .x-btn-default-toolbar-large-tl,.x-nbr .x-btn-default-toolbar-large-bl,.x-nbr .x-btn-default-toolbar-large-tr,.x-nbr .x-btn-default-toolbar-large-br,.x-nbr .x-btn-default-toolbar-large-tc,.x-nbr .x-btn-default-toolbar-large-bc,.x-nbr .x-btn-default-toolbar-large-ml,.x-nbr .x-btn-default-toolbar-large-mr
  1992. {
  1993. zoom: 1
  1994. }
  1995. .x-nbr .x-btn-default-toolbar-large-ml,.x-nbr .x-btn-default-toolbar-large-mr
  1996. {
  1997. zoom: 1
  1998. }
  1999. .x-nbr .x-btn-default-toolbar-large-mc {
  2000. padding: 0px 0px 0px 0px
  2001. }
  2002. .x-btn-default-toolbar-large .x-btn-inner {
  2003. font-size: 11px;
  2004. font-weight: normal;
  2005. font-family: tahoma, arial, verdana, sans-serif;
  2006. color: #333333;
  2007. background-repeat: no-repeat;
  2008. padding: 0 3px
  2009. }
  2010. .x-btn-default-toolbar-large-icon button,.x-btn-default-toolbar-large-icon .x-btn-inner,.x-btn-default-toolbar-large-noicon button,.x-btn-default-toolbar-large-noicon .x-btn-inner
  2011. {
  2012. height: 32px;
  2013. line-height: 32px
  2014. }
  2015. .x-btn-default-toolbar-large-icon button {
  2016. padding: 0;
  2017. width: 32px !important;
  2018. height: 32px
  2019. }
  2020. .x-btn-default-toolbar-large-icon .x-btn-icon {
  2021. width: 32px;
  2022. height: 32px;
  2023. top: 0;
  2024. left: 0;
  2025. bottom: 0;
  2026. right: 0
  2027. }
  2028. .x-btn-default-toolbar-large-icon-text-left button {
  2029. height: 32px
  2030. }
  2031. .x-btn-default-toolbar-large-icon-text-left .x-btn-inner {
  2032. height: 32px;
  2033. line-height: 32px;
  2034. padding-left: 36px
  2035. }
  2036. .x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
  2037. width: 32px;
  2038. height: auto;
  2039. top: 0;
  2040. left: 0;
  2041. bottom: 0;
  2042. right: auto
  2043. }
  2044. .x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon,.x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon
  2045. {
  2046. height: 32px
  2047. }
  2048. .x-btn-default-toolbar-large-icon-text-right button {
  2049. height: 32px
  2050. }
  2051. .x-btn-default-toolbar-large-icon-text-right .x-btn-inner {
  2052. height: 32px;
  2053. line-height: 32px;
  2054. padding-right: 36px !important
  2055. }
  2056. .x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
  2057. width: 32px;
  2058. height: auto;
  2059. top: 0;
  2060. left: auto;
  2061. bottom: 0;
  2062. right: 0
  2063. }
  2064. .x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon,.x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon
  2065. {
  2066. height: 32px
  2067. }
  2068. .x-btn-default-toolbar-large-icon-text-top .x-btn-inner {
  2069. padding-top: 36px
  2070. }
  2071. .x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
  2072. width: auto;
  2073. height: 32px;
  2074. top: 0;
  2075. left: 0;
  2076. bottom: auto;
  2077. right: 0
  2078. }
  2079. .x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon
  2080. {
  2081. width: 32px;
  2082. background-color: #dbeeff;
  2083. }
  2084. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner {
  2085. padding-bottom: 36px
  2086. }
  2087. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
  2088. width: auto;
  2089. height: 32px;
  2090. top: auto;
  2091. left: 0;
  2092. bottom: 0;
  2093. right: 0
  2094. }
  2095. .x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon
  2096. {
  2097. width: 32px
  2098. }
  2099. .x-btn-default-toolbar-large-over {
  2100. border-color: #81a4d0;
  2101. background-image: none;
  2102. background-color: #dbeeff;
  2103. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff),
  2104. color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0),
  2105. color-stop(100%, #bed6f5) );
  2106. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2107. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2108. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2109. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2110. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5)
  2111. }
  2112. .x-btn-default-toolbar-large-focus {
  2113. border-color: #81a4d0;
  2114. background-image: none;
  2115. background-color: #dbeeff;
  2116. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff),
  2117. color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0),
  2118. color-stop(100%, #bed6f5) );
  2119. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2120. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2121. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2122. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2123. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5)
  2124. }
  2125. .x-btn-default-toolbar-large-menu-active,.x-btn-default-toolbar-large-pressed
  2126. {
  2127. border-color: #7a9ac4;
  2128. background-image: none;
  2129. background-color: #bccfe5;
  2130. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5),
  2131. color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4),
  2132. color-stop(100%, #9fc9f5) );
  2133. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2134. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2135. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2136. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2137. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5)
  2138. }
  2139. .x-btn-default-toolbar-large-disabled {
  2140. background-image: none;
  2141. background-color: transparent
  2142. }
  2143. .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2144. color: #333333 !important
  2145. }
  2146. .x-ie .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2147. color: #595959 !important
  2148. }
  2149. .x-ie6 .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2150. color: #8c8c8c !important
  2151. }
  2152. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tl,.x-nbr .x-btn-default-toolbar-large-over .x-frame-bl,.x-nbr .x-btn-default-toolbar-large-over .x-frame-tr,.x-nbr .x-btn-default-toolbar-large-over .x-frame-br,.x-nbr .x-btn-default-toolbar-large-over .x-frame-tc,.x-nbr .x-btn-default-toolbar-large-over .x-frame-bc
  2153. {
  2154. background-image:
  2155. url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-corners.gif')
  2156. }
  2157. .x-nbr .x-btn-default-toolbar-large-over .x-frame-ml,.x-nbr .x-btn-default-toolbar-large-over .x-frame-mr
  2158. {
  2159. background-image:
  2160. url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-sides.gif')
  2161. }
  2162. .x-nbr .x-btn-default-toolbar-large-over .x-frame-mc {
  2163. background-color: #dbeeff;
  2164. background-image:
  2165. url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif')
  2166. }
  2167. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tl,.x-nbr .x-btn-default-toolbar-large-focus .x-frame-bl,.x-nbr .x-btn-default-toolbar-large-focus .x-frame-tr,.x-nbr .x-btn-default-toolbar-large-focus .x-frame-br,.x-nbr .x-btn-default-toolbar-large-focus .x-frame-tc,.x-nbr .x-btn-default-toolbar-large-focus .x-frame-bc
  2168. {
  2169. background-image:
  2170. url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-corners.gif')
  2171. }
  2172. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-ml,.x-nbr .x-btn-default-toolbar-large-focus .x-frame-mr
  2173. {
  2174. background-image:
  2175. url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-sides.gif')
  2176. }
  2177. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-mc {
  2178. background-color: #dbeeff;
  2179. background-image:
  2180. url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif')
  2181. }
  2182. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tl,.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bl,.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tr,.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-br,.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tc,.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bc,.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tl,.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bl,.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tr,.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-br,.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tc,.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bc
  2183. {
  2184. background-image:
  2185. url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-corners.gif')
  2186. }
  2187. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-ml,.x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mr,.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-ml,.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mr
  2188. {
  2189. background-image:
  2190. url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-sides.gif')
  2191. }
  2192. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mc,.x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mc
  2193. {
  2194. background-color: #bccfe5;
  2195. background-image:
  2196. url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif')
  2197. }
  2198. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tl,.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bl,.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tr,.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-br,.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tc,.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bc
  2199. {
  2200. background-image:
  2201. url('../../resources/themes/images/default/btn/btn-default-toolbar-large-disabled-corners.gif')
  2202. }
  2203. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-ml,.x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mr
  2204. {
  2205. background-image:
  2206. url('../../resources/themes/images/default/btn/btn-default-toolbar-large-disabled-sides.gif')
  2207. }
  2208. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mc {
  2209. background-color: transparent
  2210. }
  2211. .x-nlg .x-btn-default-toolbar-large-over {
  2212. background-repeat: repeat-x;
  2213. background-image:
  2214. url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif')
  2215. }
  2216. .x-nlg .x-btn-default-toolbar-large-focus {
  2217. background-repeat: repeat-x;
  2218. background-image:
  2219. url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif')
  2220. }
  2221. .x-nlg .x-btn-default-toolbar-large-menu-active,.x-nlg .x-btn-default-toolbar-large-pressed
  2222. {
  2223. background-repeat: repeat-x;
  2224. background-image:
  2225. url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif')
  2226. }
  2227. .x-btn-default-toolbar-small-disabled,.x-btn-default-toolbar-medium-disabled,.x-btn-default-toolbar-large-disabled
  2228. {
  2229. border-color: transparent;
  2230. background-image: none;
  2231. background: transparent
  2232. }
  2233. .x-btn-group {
  2234. position: relative;
  2235. overflow: hidden
  2236. }
  2237. .x-btn-group-body {
  2238. position: relative;
  2239. zoom: 1;
  2240. padding: 0 1px
  2241. }
  2242. .x-btn-group-body .x-table-layout-cell {
  2243. vertical-align: top
  2244. }
  2245. .x-btn-group-header-text {
  2246. white-space: nowrap
  2247. }
  2248. .x-btn-group-default-framed {
  2249. padding: 1px 1px 1px 1px;
  2250. border-width: 1px;
  2251. border-style: solid;
  2252. background-color: #d0def0
  2253. }
  2254. .x-nlg .x-btn-group-default-framed-mc {
  2255. background-color: #d0def0
  2256. }
  2257. .x-nbr .x-btn-group-default-framed {
  2258. padding: 0 !important;
  2259. border-width: 0 !important;
  2260. -moz-border-radius: 0px;
  2261. -webkit-border-radius: 0px;
  2262. -o-border-radius: 0px;
  2263. -ms-border-radius: 0px;
  2264. -khtml-border-radius: 0px;
  2265. border-radius: 0px;
  2266. background-color: transparent;
  2267. background-position: 1000202px 1000202px
  2268. }
  2269. .x-nbr .x-btn-group-default-framed-tl,.x-nbr .x-btn-group-default-framed-bl,.x-nbr .x-btn-group-default-framed-tr,.x-nbr .x-btn-group-default-framed-br,.x-nbr .x-btn-group-default-framed-tc,.x-nbr .x-btn-group-default-framed-bc,.x-nbr .x-btn-group-default-framed-ml,.x-nbr .x-btn-group-default-framed-mr
  2270. {
  2271. zoom: 1;
  2272. background-image:
  2273. url('../../resources/themes/images/default/btn-group/btn-group-default-framed-corners.gif')
  2274. }
  2275. .x-nbr .x-btn-group-default-framed-ml,.x-nbr .x-btn-group-default-framed-mr
  2276. {
  2277. zoom: 1;
  2278. background-image:
  2279. url('../../resources/themes/images/default/btn-group/btn-group-default-framed-sides.gif');
  2280. background-position: 0 0;
  2281. background-repeat: repeat-y
  2282. }
  2283. .x-nbr .x-btn-group-default-framed-mc {
  2284. padding: 0 0 0 0
  2285. }
  2286. .x-btn-group-default-framed {
  2287. border-color: #b7c8d7;
  2288. -moz-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset,
  2289. #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
  2290. -webkit-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0
  2291. inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
  2292. -o-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset,
  2293. #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
  2294. box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset,
  2295. #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset
  2296. }
  2297. .x-btn-group-header-default-framed {
  2298. margin: 2px 2px 0 2px
  2299. }
  2300. .x-btn-group-header-body-default-framed {
  2301. padding: 1px 0;
  2302. background: #c2d8f0;
  2303. -moz-border-radius-topleft: 2px;
  2304. -webkit-border-top-left-radius: 2px;
  2305. -o-border-top-left-radius: 2px;
  2306. -ms-border-top-left-radius: 2px;
  2307. -khtml-border-top-left-radius: 2px;
  2308. border-top-left-radius: 2px;
  2309. -moz-border-radius-topright: 2px;
  2310. -webkit-border-top-right-radius: 2px;
  2311. -o-border-top-right-radius: 2px;
  2312. -ms-border-top-right-radius: 2px;
  2313. -khtml-border-top-right-radius: 2px;
  2314. border-top-right-radius: 2px
  2315. }
  2316. .x-btn-group-header-text-default-framed {
  2317. font: normal 11px tahoma, arial, verdana, sans-serif;
  2318. color: #3e6aaa
  2319. }
  2320. .x-datepicker {
  2321. border: 1px solid #1b376c;
  2322. background-color: white;
  2323. position: relative
  2324. }
  2325. .x-datepicker a {
  2326. -moz-outline: 0 none;
  2327. outline: 0 none;
  2328. color: #15428b;
  2329. text-decoration: none;
  2330. border-width: 0
  2331. }
  2332. .x-datepicker-inner,.x-datepicker-inner td,.x-datepicker-inner th {
  2333. border-collapse: separate
  2334. }
  2335. .x-datepicker-header {
  2336. position: relative;
  2337. height: 26px;
  2338. background-image: none;
  2339. background-color: #23427c;
  2340. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #264888),
  2341. color-stop(100%, #1f3a6c) );
  2342. background-image: -webkit-linear-gradient(top, #264888, #1f3a6c);
  2343. background-image: -moz-linear-gradient(top, #264888, #1f3a6c);
  2344. background-image: -o-linear-gradient(top, #264888, #1f3a6c);
  2345. background-image: -ms-linear-gradient(top, #264888, #1f3a6c);
  2346. background-image: linear-gradient(top, #264888, #1f3a6c)
  2347. }
  2348. .x-datepicker-prev,.x-datepicker-next {
  2349. position: absolute;
  2350. top: 5px;
  2351. width: 18px
  2352. }
  2353. .x-datepicker-prev a,.x-datepicker-next a {
  2354. display: block;
  2355. width: 16px;
  2356. height: 16px;
  2357. background-position: top;
  2358. background-repeat: no-repeat;
  2359. cursor: pointer;
  2360. text-decoration: none !important;
  2361. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70 );
  2362. opacity: 0.7
  2363. }
  2364. .x-datepicker-prev a:hover,.x-datepicker-next a:hover {
  2365. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100 );
  2366. opacity: 1
  2367. }
  2368. .x-datepicker-next {
  2369. right: 5px
  2370. }
  2371. .x-datepicker-next a {
  2372. background-image:
  2373. url('../../resources/themes/images/default/shared/right-btn.gif')
  2374. }
  2375. .x-datepicker-prev {
  2376. left: 5px
  2377. }
  2378. .x-datepicker-prev a {
  2379. background-image:
  2380. url('../../resources/themes/images/default/shared/left-btn.gif')
  2381. }
  2382. .x-item-disabled .x-datepicker-prev a:hover,.x-item-disabled .x-datepicker-next a:hover
  2383. {
  2384. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60 );
  2385. opacity: 0.6
  2386. }
  2387. .x-datepicker-month {
  2388. padding-top: 3px
  2389. }
  2390. .x-datepicker-month .x-btn,.x-datepicker-month button,.x-datepicker-month .x-btn-tc,.x-datepicker-month .x-btn-tl,.x-datepicker-month .x-btn-tr,.x-datepicker-month .x-btn-mc,.x-datepicker-month .x-btn-ml,.x-datepicker-month .x-btn-mr,.x-datepicker-month .x-btn-bc,.x-datepicker-month .x-btn-bl,.x-datepicker-month .x-btn-br
  2391. {
  2392. background: transparent !important;
  2393. border-width: 0 !important
  2394. }
  2395. .x-datepicker-month span {
  2396. color: #fff !important
  2397. }
  2398. .x-datepicker-month .x-btn-split-right {
  2399. background: no-repeat right center !important;
  2400. background-image:
  2401. url('../../resources/themes/images/default/button/s-arrow-light.gif');
  2402. padding-right: 12px
  2403. }
  2404. .x-datepicker-next {
  2405. text-align: right
  2406. }
  2407. .x-datepicker-month {
  2408. text-align: center
  2409. }
  2410. .x-datepicker-month button {
  2411. color: white !important
  2412. }
  2413. table.x-datepicker-inner {
  2414. width: 100%;
  2415. table-layout: fixed
  2416. }
  2417. table.x-datepicker-inner th {
  2418. width: 25px;
  2419. height: 19px;
  2420. padding: 0;
  2421. color: #233d6d;
  2422. font: normal 10px tahoma, arial, verdana, sans-serif;
  2423. text-align: right;
  2424. border-bottom: 1px solid #b2d1f5;
  2425. border-collapse: separate;
  2426. background-image: none;
  2427. background-color: #dfecfb;
  2428. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #edf4fd),
  2429. color-stop(100%, #cde1f9) );
  2430. background-image: -webkit-linear-gradient(top, #edf4fd, #cde1f9);
  2431. background-image: -moz-linear-gradient(top, #edf4fd, #cde1f9);
  2432. background-image: -o-linear-gradient(top, #edf4fd, #cde1f9);
  2433. background-image: -ms-linear-gradient(top, #edf4fd, #cde1f9);
  2434. background-image: linear-gradient(top, #edf4fd, #cde1f9);
  2435. cursor: default
  2436. }
  2437. table.x-datepicker-inner th span {
  2438. display: block;
  2439. padding-right: 7px
  2440. }
  2441. table.x-datepicker-inner tr {
  2442. height: 20px
  2443. }
  2444. table.x-datepicker-inner td {
  2445. border: 1px solid;
  2446. height: 17px;
  2447. border-color: white;
  2448. text-align: right;
  2449. padding: 0
  2450. }
  2451. table.x-datepicker-inner a {
  2452. padding-right: 4px;
  2453. display: block;
  2454. zoom: 1;
  2455. font: normal 11px tahoma, arial, verdana, sans-serif;
  2456. color: black;
  2457. text-decoration: none;
  2458. text-align: right
  2459. }
  2460. table.x-datepicker-inner .x-datepicker-active {
  2461. cursor: pointer;
  2462. color: black
  2463. }
  2464. table.x-datepicker-inner .x-datepicker-selected a {
  2465. background: repeat-x left top;
  2466. background-color: #dae5f3;
  2467. border: 1px solid #8db2e3
  2468. }
  2469. table.x-datepicker-inner .x-datepicker-selected span {
  2470. font-weight: bold
  2471. }
  2472. table.x-datepicker-inner .x-datepicker-today a {
  2473. border: 1px solid;
  2474. border-color: darkred
  2475. }
  2476. table.x-datepicker-inner .x-datepicker-prevday a,table.x-datepicker-inner .x-datepicker-nextday a
  2477. {
  2478. text-decoration: none !important;
  2479. color: #aaa
  2480. }
  2481. table.x-datepicker-inner a:hover,table.x-datepicker-inner .x-datepicker-disabled a:hover
  2482. {
  2483. text-decoration: none !important;
  2484. color: #000;
  2485. background-color: #ddecfe
  2486. }
  2487. table.x-datepicker-inner .x-datepicker-disabled a {
  2488. cursor: default;
  2489. background-color: #eee;
  2490. color: #bbb
  2491. }
  2492. .x-datepicker-footer,.x-monthpicker-buttons {
  2493. position: relative;
  2494. border-top: 1px solid #b2d1f5;
  2495. background-image: none;
  2496. background-color: #dfecfb;
  2497. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dee8f5),
  2498. color-stop(49%, #d1dff0), color-stop(51%, #c7d8ed),
  2499. color-stop(100%, #cbdaee) );
  2500. background-image: -webkit-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2501. background-image: -moz-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2502. background-image: -o-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2503. background-image: -ms-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2504. background-image: linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2505. text-align: center
  2506. }
  2507. .x-datepicker-footer .x-btn,.x-monthpicker-buttons .x-btn {
  2508. position: relative;
  2509. margin: 4px
  2510. }
  2511. .x-item-disabled .x-datepicker-inner a:hover {
  2512. background: none
  2513. }
  2514. .x-datepicker .x-monthpicker {
  2515. position: absolute;
  2516. left: 0;
  2517. top: 0
  2518. }
  2519. .x-monthpicker {
  2520. border: 1px solid #1b376c;
  2521. background-color: white
  2522. }
  2523. .x-monthpicker-months,.x-monthpicker-years {
  2524. float: left;
  2525. height: 167px;
  2526. width: 88px
  2527. }
  2528. .x-monthpicker-item {
  2529. float: left;
  2530. margin: 4px 0 5px 0;
  2531. font: normal 11px tahoma, arial, verdana, sans-serif;
  2532. text-align: center;
  2533. vertical-align: middle;
  2534. height: 18px;
  2535. width: 43px;
  2536. border: 0 none
  2537. }
  2538. .x-monthpicker-item a {
  2539. display: block;
  2540. margin: 0 5px 0 5px;
  2541. text-decoration: none;
  2542. color: #15428b;
  2543. border: 1px solid white;
  2544. line-height: 17px
  2545. }
  2546. .x-monthpicker-item a:hover {
  2547. background-color: #ddecfe
  2548. }
  2549. .x-monthpicker-item a.x-monthpicker-selected {
  2550. background-color: #dfecfb;
  2551. border: 1px solid #8db2e3
  2552. }
  2553. .x-monthpicker-months {
  2554. border-right: 1px solid #1b376c;
  2555. width: 87px
  2556. }
  2557. .x-monthpicker-years .x-monthpicker-item {
  2558. width: 44px
  2559. }
  2560. .x-monthpicker-yearnav {
  2561. height: 28px
  2562. }
  2563. .x-monthpicker-yearnav button {
  2564. background-image:
  2565. url('../../resources/themes/images/default/tools/tool-sprites.gif');
  2566. height: 15px;
  2567. width: 15px;
  2568. padding: 0;
  2569. margin: 6px 12px 5px 15px;
  2570. border: 0;
  2571. outline: 0 none
  2572. }
  2573. .x-monthpicker-yearnav button::-moz-focus-inner {
  2574. border: 0;
  2575. padding: 0
  2576. }
  2577. .x-monthpicker-yearnav-next {
  2578. background-position: 0 -120px
  2579. }
  2580. .x-monthpicker-yearnav-next-over {
  2581. cursor: pointer;
  2582. cursor: hand;
  2583. background-position: -15px -120px
  2584. }
  2585. .x-monthpicker-yearnav-prev {
  2586. background-position: 0 -105px
  2587. }
  2588. .x-monthpicker-yearnav-prev-over {
  2589. cursor: pointer;
  2590. cursor: hand;
  2591. background-position: -15px -105px
  2592. }
  2593. .x-monthpicker-small .x-monthpicker-item {
  2594. margin: 2px 0 2px 0
  2595. }
  2596. .x-monthpicker-small .x-monthpicker-yearnav {
  2597. height: 23px
  2598. }
  2599. .x-monthpicker-small .x-monthpicker-months,.x-monthpicker-small .x-monthpicker-years
  2600. {
  2601. height: 136px
  2602. }
  2603. .x-quirks .x-ie7 .x-monthpicker-buttons .x-btn,.x-quirks .x-ie8 .x-monthpicker-buttons .x-btn
  2604. {
  2605. margin-top: 2px
  2606. }
  2607. .x-quirks .x-monthpicker-small .x-monthpicker-yearnav button {
  2608. margin-top: 3px;
  2609. margin-bottom: 3px
  2610. }
  2611. .x-ie6 .x-monthpicker-small .x-monthpicker-yearnav button {
  2612. margin-top: 3px;
  2613. margin-bottom: 3px
  2614. }
  2615. .x-nlg .x-datepicker-header {
  2616. background-image:
  2617. url('../../resources/themes/images/default/datepicker/datepicker-header-bg.gif');
  2618. background-repeat: repeat-x;
  2619. background-position: top left
  2620. }
  2621. .x-nlg .x-datepicker-footer,.x-nlg .x-monthpicker-buttons {
  2622. background-image:
  2623. url('../../resources/themes/images/default/datepicker/datepicker-footer-bg.gif');
  2624. background-repeat: repeat-x;
  2625. background-position: top left
  2626. }
  2627. .x-color-picker {
  2628. width: 144px;
  2629. height: 90px;
  2630. cursor: pointer
  2631. }
  2632. .x-color-picker a {
  2633. border: 1px solid #fff;
  2634. float: left;
  2635. padding: 2px;
  2636. text-decoration: none;
  2637. -moz-outline: 0 none;
  2638. outline: 0 none;
  2639. cursor: pointer
  2640. }
  2641. .x-color-picker a:hover,.x-color-picker a.x-color-picker-selected {
  2642. border-color: #8bb8f3;
  2643. background-color: #deecfd
  2644. }
  2645. .x-color-picker em {
  2646. display: block;
  2647. border: 1px solid #aca899
  2648. }
  2649. .x-color-picker em span {
  2650. cursor: pointer;
  2651. display: block;
  2652. height: 10px;
  2653. width: 10px;
  2654. line-height: 10px
  2655. }
  2656. .x-menu-body {
  2657. user-select: none;
  2658. -o-user-select: none;
  2659. -ms-user-select: none;
  2660. -moz-user-select: -moz-none;
  2661. -webkit-user-select: none;
  2662. cursor: default;
  2663. background: #f0f0f0 !important;
  2664. padding: 2px
  2665. }
  2666. .x-menu-item .x-form-text {
  2667. user-select: text;
  2668. -webkit-user-select: text;
  2669. -o-user-select: text;
  2670. -ie-user-select: text;
  2671. -moz-user-select: text;
  2672. -ie-user-select: text
  2673. }
  2674. .x-menu-icon-separator {
  2675. position: absolute;
  2676. top: 0px;
  2677. left: 27px;
  2678. z-index: 0;
  2679. border-left: solid 1px #e0e0e0;
  2680. background-color: white;
  2681. width: 2px;
  2682. height: 100% !important;
  2683. overflow: hidden
  2684. }
  2685. .x-menu-plain .x-menu-icon-separator {
  2686. display: none
  2687. }
  2688. .x-menu-focus {
  2689. display: block;
  2690. position: absolute;
  2691. top: -10px;
  2692. left: -10px;
  2693. width: 0px;
  2694. height: 0px
  2695. }
  2696. .x-menu-item {
  2697. white-space: nowrap;
  2698. overflow: hidden;
  2699. z-index: 1
  2700. }
  2701. .x-menu-item-cmp {
  2702. margin-bottom: 1px
  2703. }
  2704. .x-menu-item-link {
  2705. display: block;
  2706. margin: 1px;
  2707. padding: 6px 2px 3px 32px;
  2708. text-decoration: none !important;
  2709. line-height: 16px;
  2710. cursor: default
  2711. }
  2712. .x-menu-item-icon {
  2713. width: 16px;
  2714. height: 16px;
  2715. position: absolute;
  2716. top: 5px;
  2717. left: 4px;
  2718. background: no-repeat center center
  2719. }
  2720. .x-menu-item-text {
  2721. font-size: 11px;
  2722. color: #222222
  2723. }
  2724. .x-menu-item-checked .x-menu-item-icon {
  2725. background-image:
  2726. url('../../resources/themes/images/default/menu/checked.gif')
  2727. }
  2728. .x-menu-item-checked .x-menu-group-icon {
  2729. background-image:
  2730. url('../../resources/themes/images/default/menu/group-checked.gif')
  2731. }
  2732. .x-menu-item-unchecked .x-menu-item-icon {
  2733. background-image:
  2734. url('../../resources/themes/images/default/menu/unchecked.gif')
  2735. }
  2736. .x-menu-item-unchecked .x-menu-group-icon {
  2737. background-image: none
  2738. }
  2739. .x-menu-item-separator {
  2740. height: 2px;
  2741. border-top: solid 1px #e0e0e0;
  2742. background-color: white;
  2743. margin: 2px 0px;
  2744. overflow: hidden
  2745. }
  2746. .x-menu-item-arrow {
  2747. position: absolute;
  2748. width: 12px;
  2749. height: 9px;
  2750. top: 9px;
  2751. right: 0px;
  2752. background: no-repeat center center;
  2753. background-image:
  2754. url('../../resources/themes/images/default/menu/menu-parent.gif')
  2755. }
  2756. .x-menu-item-indent {
  2757. margin-left: 31px
  2758. }
  2759. .x-menu-item-active {
  2760. cursor: pointer
  2761. }
  2762. .x-menu-item-active .x-menu-item-link {
  2763. background-image: none;
  2764. background-color: #d9e8fb;
  2765. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7f0fc),
  2766. color-stop(100%, #c7ddf9) );
  2767. background-image: -webkit-linear-gradient(top, #e7f0fc, #c7ddf9);
  2768. background-image: -moz-linear-gradient(top, #e7f0fc, #c7ddf9);
  2769. background-image: -o-linear-gradient(top, #e7f0fc, #c7ddf9);
  2770. background-image: -ms-linear-gradient(top, #e7f0fc, #c7ddf9);
  2771. background-image: linear-gradient(top, #e7f0fc, #c7ddf9);
  2772. margin: 0px;
  2773. border: 1px solid #a9cbf5;
  2774. cursor: pointer;
  2775. -moz-border-radius: 3px;
  2776. -webkit-border-radius: 3px;
  2777. -o-border-radius: 3px;
  2778. -ms-border-radius: 3px;
  2779. -khtml-border-radius: 3px;
  2780. border-radius: 3px
  2781. }
  2782. .x-menu-item-disabled {
  2783. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50 );
  2784. opacity: 0.5
  2785. }
  2786. .x-ie .x-menu-item-disabled .x-menu-item-icon {
  2787. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50 );
  2788. opacity: 0.5
  2789. }
  2790. .x-ie .x-menu-item-disabled .x-menu-item-text {
  2791. background-color: transparent
  2792. }
  2793. .x-strict .x-ie .x-menu-icon-separator {
  2794. width: 1px
  2795. }
  2796. .x-strict .x-ie .x-menu-item-separator {
  2797. height: 1px
  2798. }
  2799. .x-ie6 .x-menu-item-link,.x-ie7 .x-menu-item-link,.x-quirks .x-ie8 .x-menu-item-link
  2800. {
  2801. padding-bottom: 2px
  2802. }
  2803. .x-nlg .x-menu-item-active .x-menu-item-link {
  2804. background: #d9e8fb repeat-x left top;
  2805. background-image:
  2806. url('../../resources/themes/images/default/menu/menu-item-active-bg.gif')
  2807. }
  2808. .x-menu-date-item {
  2809. border-color: #99BBE8
  2810. }
  2811. .x-panel .x-grid-body {
  2812. background: white;
  2813. border-color: #99bce8;
  2814. border-style: solid;
  2815. border-width: 1px;
  2816. border-top-color: #c5c5c5
  2817. }
  2818. .x-panel .x-grid-header-ct-hidden {
  2819. border-top-width: 0 !important
  2820. }
  2821. .x-grid-header-hidden .x-grid-body {
  2822. border-top-color: #99bce8 !important
  2823. }
  2824. .x-grid-view {
  2825. overflow: hidden;
  2826. position: relative
  2827. }
  2828. .x-grid-table {
  2829. table-layout: fixed;
  2830. border-collapse: separate
  2831. }
  2832. .x-grid-row .x-grid-table {
  2833. border-collapse: collapse
  2834. }
  2835. .x-grid-locked .x-grid-inner-locked {
  2836. border-width: 0 1px 0 0 !important;
  2837. border-style: solid
  2838. }
  2839. .x-grid-header-ct {
  2840. cursor: default;
  2841. zoom: 1;
  2842. padding: 0;
  2843. border: 1px solid #99bce8
  2844. }
  2845. .x-accordion-item .x-grid-header-ct {
  2846. border: 0 none
  2847. }
  2848. .x-border-box .x-ie9 .x-grid-header-ct {
  2849. padding-left: 1px
  2850. }
  2851. .x-ie6 .x-grid-header-ct,.x-ie7 .x-grid-header-ct {
  2852. padding-left: 1px
  2853. }
  2854. .x-column-header {
  2855. padding: 0;
  2856. position: absolute;
  2857. overflow: hidden;
  2858. border-right: 1px solid #c5c5c5;
  2859. border-left: 0 none;
  2860. border-top: 0 none;
  2861. border-bottom: 0 none;
  2862. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  2863. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  2864. color: null;
  2865. font: normal 11px tahoma, arial, verdana, sans-serif
  2866. }
  2867. .x-group-header {
  2868. padding: 0;
  2869. border-left-width: 0
  2870. }
  2871. .x-group-sub-header {
  2872. background: transparent;
  2873. border-top: 1px solid #c5c5c5;
  2874. border-left-width: 0
  2875. }
  2876. .x-column-header-inner {
  2877. zoom: 1;
  2878. position: relative;
  2879. white-space: nowrap;
  2880. line-height: 22px;
  2881. padding: 0px 6px
  2882. }
  2883. .x-column-header-inner .x-column-header-text {
  2884. white-space: nowrap
  2885. }
  2886. .x-column-header-over,.x-column-header-sort-ASC,.x-column-header-sort-DESC
  2887. {
  2888. border-left-color: #aaccf6;
  2889. border-right-color: #aaccf6
  2890. }
  2891. .x-nlg .x-grid-header-ct,.x-nlg .x-column-header {
  2892. background: repeat-x 0 top;
  2893. background-image:
  2894. url('../../resources/themes/images/default/grid/column-header-bg.gif')
  2895. }
  2896. .x-nlg .x-column-header-over,.x-nlg .x-column-header-sort-ASC,.x-nlg .x-column-header-sort-DESC
  2897. {
  2898. background: #ebf3fd repeat-x 0 top;
  2899. background-image:
  2900. url('../../resources/themes/images/default/grid/column-header-over-bg.gif')
  2901. }
  2902. .x-column-header-trigger {
  2903. display: none;
  2904. height: 100%;
  2905. width: 14px;
  2906. background: no-repeat left center;
  2907. background-color: #c3daf9;
  2908. background-image:
  2909. url('../../resources/themes/images/default/grid/grid3-hd-btn.gif');
  2910. position: absolute;
  2911. right: 0;
  2912. top: 0;
  2913. z-index: 2;
  2914. cursor: pointer
  2915. }
  2916. .x-column-header-over .x-column-header-trigger,.x-column-header-open .x-column-header-trigger
  2917. {
  2918. display: block
  2919. }
  2920. .x-column-header-align-right {
  2921. text-align: right
  2922. }
  2923. .x-column-header-align-right .x-column-header-text {
  2924. padding-right: 0.5ex;
  2925. margin-right: 6px
  2926. }
  2927. .x-column-header-align-center {
  2928. text-align: center
  2929. }
  2930. .x-column-header-align-left {
  2931. text-align: left
  2932. }
  2933. .x-column-header-sort-ASC .x-column-header-text {
  2934. padding-right: 16px;
  2935. background: no-repeat right 6px;
  2936. background-image:
  2937. url('../../resources/themes/images/default/grid/sort_asc.gif')
  2938. }
  2939. .x-column-header-sort-DESC .x-column-header-text {
  2940. padding-right: 16px;
  2941. background: no-repeat right 6px;
  2942. background-image:
  2943. url('../../resources/themes/images/default/grid/sort_desc.gif')
  2944. }
  2945. .x-grid-row {
  2946. line-height: 13px;
  2947. vertical-align: top;
  2948. padding: 0 1px;
  2949. user-select: none;
  2950. -o-user-select: none;
  2951. -ms-user-select: none;
  2952. -moz-user-select: -moz-none;
  2953. -webkit-user-select: none;
  2954. cursor: default
  2955. }
  2956. .x-grid-row .x-grid-cell {
  2957. color: null;
  2958. font: normal 11px tahoma, arial, verdana, sans-serif;
  2959. border-color: #ededed;
  2960. border-style: solid;
  2961. border-width: 1px 0;
  2962. border-top-color: #fafafa
  2963. }
  2964. .x-grid-rowwrap-div {
  2965. border-width: 1px 0;
  2966. border-color: #ededed;
  2967. border-style: solid;
  2968. border-top-color: #fafafa;
  2969. overflow: hidden
  2970. }
  2971. .x-grid-row-alt .x-grid-cell,.x-grid-row-alt .x-grid-rowwrap-div {
  2972. /* background-color: #fafafa */
  2973. }
  2974. .x-grid-row-over .x-grid-cell,.x-grid-row-over .x-grid-rowwrap-div {
  2975. border-color: #dddddd;
  2976. background-color: #efefef
  2977. }
  2978. .x-grid-row-focused .x-grid-cell,.x-grid-row-focused .x-grid-rowwrap-div
  2979. {
  2980. border-color: #dddddd;
  2981. background-color: #efefef
  2982. }
  2983. .x-grid-row-selected .x-grid-cell,.x-grid-row-selected .x-grid-rowwrap-div
  2984. {
  2985. border-style: dotted;
  2986. border-color: #a3bae9;
  2987. background-color: #dfe8f6 !important
  2988. }
  2989. .x-grid-rowwrap-div .x-grid-cell,.x-grid-rowwrap-div .x-grid-cell-inner
  2990. {
  2991. border-width: 0;
  2992. background: transparent
  2993. }
  2994. .x-grid-row-body-hidden {
  2995. display: none
  2996. }
  2997. .x-grid-rowbody {
  2998. font: normal 11px/13px tahoma, arial, verdana, sans-serif;
  2999. padding: 4px
  3000. }
  3001. .x-grid-rowbody p {
  3002. margin: 5px 5px 10px 5px
  3003. }
  3004. .x-grid-cell {
  3005. overflow: hidden;
  3006. font: normal 13px tahoma, arial, verdana, sans-serif;
  3007. user-select: none;
  3008. -o-user-select: none;
  3009. -ms-user-select: none;
  3010. -moz-user-select: -moz-none;
  3011. -webkit-user-select: none;
  3012. cursor: default
  3013. }
  3014. .x-grid-cell-inner {
  3015. height: 26px;
  3016. line-height: 26px;
  3017. overflow: hidden;
  3018. -o-text-overflow: ellipsis;
  3019. text-overflow: ellipsis;
  3020. padding: 0px 6px;
  3021. white-space: nowrap
  3022. }
  3023. .x-action-col-cell .x-grid-cell-inner {
  3024. padding: 1px 2px 0 2px
  3025. }
  3026. .x-ie6 .x-action-col-cell .x-grid-cell-inner,.x-ie7 .x-action-col-cell .x-grid-cell-inner,.x-quirks .x-ie9 .x-action-col-cell .x-grid-cell-inner,.x-quirks .x-ie8 .x-action-col-cell .x-grid-cell-inner,.x-strict .x-ie8 .x-action-col-cell .x-grid-cell-inner
  3027. {
  3028. padding: 2px 2px 1px 2px
  3029. }
  3030. .x-grid-row .x-grid-cell-special {
  3031. padding: 0;
  3032. border-right: 1px solid #d0d0d0;
  3033. background-image: none;
  3034. background-color: #f6f6f6;
  3035. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f6f6f6),
  3036. color-stop(100%, #e9e9e9) );
  3037. background-image: -webkit-linear-gradient(left, #f6f6f6, #e9e9e9);
  3038. background-image: -moz-linear-gradient(left, #f6f6f6, #e9e9e9);
  3039. background-image: -o-linear-gradient(left, #f6f6f6, #e9e9e9);
  3040. background-image: -ms-linear-gradient(left, #f6f6f6, #e9e9e9);
  3041. background-image: linear-gradient(left, #f6f6f6, #e9e9e9)
  3042. }
  3043. .x-ie6 .x-grid-header-row,.x-ie7 .x-grid-header-row,.x-quirks .x-ie8 .x-grid-header-row,.x-strict .x-ie8 .x-grid-header-row
  3044. {
  3045. position: absolute
  3046. }
  3047. .x-grid-row-selected .x-grid-cell-special {
  3048. border-right: 1px solid #aaccf6;
  3049. background-image: none;
  3050. background-color: #dfe8f6;
  3051. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfe8f6),
  3052. color-stop(100%, #cbdaf0) );
  3053. background-image: -webkit-linear-gradient(left, #dfe8f6, #cbdaf0);
  3054. background-image: -moz-linear-gradient(left, #dfe8f6, #cbdaf0);
  3055. background-image: -o-linear-gradient(left, #dfe8f6, #cbdaf0);
  3056. background-image: -ms-linear-gradient(left, #dfe8f6, #cbdaf0);
  3057. background-image: linear-gradient(left, #dfe8f6, #cbdaf0)
  3058. }
  3059. .x-grid-dirty-cell {
  3060. background-image:
  3061. url('../../resources/themes/images/default/grid/dirty.gif');
  3062. background-position: 0 0;
  3063. background-repeat: no-repeat
  3064. }
  3065. .x-grid-cell-selected {
  3066. background-color: #B8CFEE !important
  3067. }
  3068. .x-nlg .x-grid-cell-special {
  3069. background-repeat: repeat-y;
  3070. background-position: top right
  3071. }
  3072. .x-nlg .x-grid-row .x-grid-cell-special,.x-nlg .x-grid-row-over .x-grid-cell-special
  3073. {
  3074. background-image:
  3075. url('../../resources/themes/images/default/grid/cell-special-bg.gif')
  3076. }
  3077. .x-nlg .x-grid-row-focused .x-grid-cell-special,.x-nlg .x-grid-row-selected .x-grid-cell-special
  3078. {
  3079. background-image:
  3080. url('../../resources/themes/images/default/grid/cell-special-selected-bg.gif')
  3081. }
  3082. .x-panel-with-col-lines .x-grid-row .x-grid-cell {
  3083. padding-right: 0;
  3084. border-right: 1px solid #d0d0d0
  3085. }
  3086. .x-ie .x-grid-cell-special {
  3087. border-right-width: 0 !important
  3088. }
  3089. .x-property-grid .x-grid-row .x-grid-cell-inner {
  3090. padding: 3px 6px 5px
  3091. }
  3092. .x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,.x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner
  3093. {
  3094. padding-left: 12px;
  3095. background-image:
  3096. url('../../resources/themes/images/default/grid/property-cell-bg.gif');
  3097. background-repeat: no-repeat;
  3098. background-position: -16px 1px
  3099. }
  3100. .x-quirks .x-ie .x-grid-row .x-grid-property-name .x-grid-cell-inner {
  3101. background-position: -16px 2px
  3102. }
  3103. .x-unselectable {
  3104. user-select: none;
  3105. -o-user-select: none;
  3106. -ms-user-select: none;
  3107. -moz-user-select: -moz-none;
  3108. -webkit-user-select: none;
  3109. cursor: default
  3110. }
  3111. .x-grid-row-body-hidden {
  3112. display: none
  3113. }
  3114. .x-grid-group-collapsed {
  3115. display: none
  3116. }
  3117. .x-grid-view .x-grid-td-expander {
  3118. vertical-align: top
  3119. }
  3120. .x-grid-td-expander {
  3121. background: repeat-y right transparent
  3122. }
  3123. .x-grid-view .x-grid-td-expander .x-grid-cell-inner {
  3124. padding: 0 !important
  3125. }
  3126. .x-grid-row-expander {
  3127. background-image:
  3128. url('../../resources/themes/images/default/grid/group-collapse.gif');
  3129. background-color: transparent;
  3130. width: 9px;
  3131. height: 13px;
  3132. margin-left: 3px;
  3133. background-repeat: no-repeat;
  3134. background-position: 0 -2px
  3135. }
  3136. .x-grid-row-collapsed .x-grid-row-expander {
  3137. background-image:
  3138. url('../../resources/themes/images/default/grid/group-expand.gif')
  3139. }
  3140. .x-grid-resize-marker {
  3141. position: absolute;
  3142. z-index: 5;
  3143. top: 0;
  3144. width: 1px;
  3145. background-color: #0f0f0f
  3146. }
  3147. .col-move-top,.col-move-bottom {
  3148. width: 9px;
  3149. height: 9px;
  3150. position: absolute;
  3151. top: 0;
  3152. line-height: 0;
  3153. font-size: 0;
  3154. overflow: hidden;
  3155. z-index: 20000;
  3156. background: no-repeat left top transparent
  3157. }
  3158. .col-move-top {
  3159. background-image:
  3160. url('../../resources/themes/images/default/grid/col-move-top.gif')
  3161. }
  3162. .col-move-bottom {
  3163. background-image:
  3164. url('../../resources/themes/images/default/grid/col-move-bottom.gif')
  3165. }
  3166. .x-tbar-page-number {
  3167. width: 30px
  3168. }
  3169. .x-grid-group,.x-grid-group-body,.x-grid-group-hd {
  3170. zoom: 1
  3171. }
  3172. .x-grid-group-hd {
  3173. padding-top: 6px
  3174. }
  3175. .x-grid-group-hd .x-grid-cell-inner {
  3176. padding: 10px 4px 4px 4px;
  3177. background: white;
  3178. border-width: 0 0 2px 0;
  3179. border-style: solid;
  3180. border-color: #99bbe8;
  3181. cursor: pointer
  3182. }
  3183. .x-grid-group-title {
  3184. background: transparent no-repeat 0 -1px;
  3185. background-image:
  3186. url('../../resources/themes/images/default/grid/group-collapse.gif');
  3187. color: #3764a0;
  3188. font: bold 11px tahoma, arial, verdana, sans-serif;
  3189. padding: 0 0 0 14px
  3190. }
  3191. .x-grid-group-hd-collapsed .x-grid-group-title {
  3192. background-image:
  3193. url('../../resources/themes/images/default/grid/group-expand.gif')
  3194. }
  3195. .x-grid-group-collapsed .x-grid-group-body {
  3196. display: none
  3197. }
  3198. .x-grid-group-collapsed .x-grid-group-title {
  3199. background-image:
  3200. url('../../resources/themes/images/default/grid/group-expand.gif')
  3201. }
  3202. .x-group-by-icon {
  3203. background-image:
  3204. url('../../resources/themes/images/default/grid/group-by.gif')
  3205. }
  3206. .x-show-groups-icon {
  3207. background-image:
  3208. url('../../resources/themes/images/default/grid/group-by.gif')
  3209. }
  3210. .x-column-header-checkbox .x-column-header-inner {
  3211. padding: 1px
  3212. }
  3213. .x-grid-cell-special .x-grid-cell-inner {
  3214. padding: 4px
  3215. }
  3216. .x-grid-row-checker,.x-column-header-checkbox .x-column-header-text {
  3217. height: 14px;
  3218. width: 14px;
  3219. background-image:
  3220. url('../../resources/themes/images/default/grid/unchecked.gif');
  3221. background-position: -1px -1px;
  3222. background-repeat: no-repeat;
  3223. background-color: transparent
  3224. }
  3225. .x-column-header-checkbox .x-column-header-text {
  3226. display: block;
  3227. margin-top: 4px;
  3228. margin-left: 4px
  3229. }
  3230. .x-quirks .x-ie .x-column-header-checkbox .x-column-header-inner,.x-ie6 .x-column-header-checkbox .x-column-header-inner
  3231. {
  3232. line-height: 18px
  3233. }
  3234. .x-ie6 .x-column-header-checkbox .x-column-header-text,.x-ie7 .x-column-header-checkbox .x-column-header-text,.x-ie9 .x-column-header-checkbox .x-column-header-text
  3235. {
  3236. margin-left: 3px
  3237. }
  3238. .x-grid-hd-checker-on .x-column-header-text {
  3239. background-image:
  3240. url('../../resources/themes/images/default/grid/checked.gif')
  3241. }
  3242. .x-grid-row-checker {
  3243. margin-left: 1px;
  3244. background-position: 50% -2px
  3245. }
  3246. .x-grid-row-selected .x-grid-row-checker,.x-grid-row-checked .x-grid-row-checker
  3247. {
  3248. background-image:
  3249. url('../../resources/themes/images/default/grid/checked.gif')
  3250. }
  3251. .x-tbar-page-first {
  3252. background-image:
  3253. url('../../resources/themes/images/default/grid/page-first.gif')
  3254. !important
  3255. }
  3256. .x-tbar-loading {
  3257. background-image:
  3258. url('../../resources/themes/images/default/grid/refresh.gif')
  3259. !important
  3260. }
  3261. .x-tbar-page-last {
  3262. background-image:
  3263. url('../../resources/themes/images/default/grid/page-last.gif')
  3264. !important
  3265. }
  3266. .x-tbar-page-next {
  3267. background-image:
  3268. url('../../resources/themes/images/default/grid/page-next.gif')
  3269. !important
  3270. }
  3271. .x-tbar-page-prev {
  3272. background-image:
  3273. url('../../resources/themes/images/default/grid/page-prev.gif')
  3274. !important
  3275. }
  3276. .x-item-disabled .x-tbar-loading {
  3277. background-image:
  3278. url('../../resources/themes/images/default/grid/refresh-disabled.gif')
  3279. !important
  3280. }
  3281. .x-item-disabled .x-tbar-page-first {
  3282. background-image:
  3283. url('../../resources/themes/images/default/grid/page-first-disabled.gif')
  3284. !important
  3285. }
  3286. .x-item-disabled .x-tbar-page-last {
  3287. background-image:
  3288. url('../../resources/themes/images/default/grid/page-last-disabled.gif')
  3289. !important
  3290. }
  3291. .x-item-disabled .x-tbar-page-next {
  3292. background-image:
  3293. url('../../resources/themes/images/default/grid/page-next-disabled.gif')
  3294. !important
  3295. }
  3296. .x-item-disabled .x-tbar-page-prev {
  3297. background-image:
  3298. url('../../resources/themes/images/default/grid/page-prev-disabled.gif')
  3299. !important
  3300. }
  3301. .x-hmenu-sort-asc .x-menu-item-icon {
  3302. background-image:
  3303. url('../../resources/themes/images/default/grid/hmenu-asc.gif')
  3304. }
  3305. .x-hmenu-sort-desc .x-menu-item-icon {
  3306. background-image:
  3307. url('../../resources/themes/images/default/grid/hmenu-desc.gif')
  3308. }
  3309. .x-hmenu-lock .x-menu-item-icon {
  3310. background-image:
  3311. url('../../resources/themes/images/default/grid/hmenu-lock.gif')
  3312. }
  3313. .x-hmenu-unlock .x-menu-item-icon {
  3314. background-image:
  3315. url('../../resources/themes/images/default/grid/hmenu-unlock.gif')
  3316. }
  3317. .x-group-by-icon {
  3318. background-image:
  3319. url('../../resources/themes/images/default/grid/group-by.gif')
  3320. }
  3321. .x-cols-icon .x-menu-item-icon {
  3322. background-image:
  3323. url('../../resources/themes/images/default/grid/columns.gif')
  3324. }
  3325. .x-show-groups-icon {
  3326. background-image:
  3327. url('../../resources/themes/images/default/grid/group-by.gif')
  3328. }
  3329. .x-grid-drop-indicator {
  3330. position: absolute;
  3331. height: 1px;
  3332. line-height: 0px;
  3333. background-color: #77BC71;
  3334. overflow: visible
  3335. }
  3336. .x-grid-drop-indicator .x-grid-drop-indicator-left {
  3337. position: absolute;
  3338. top: -8px;
  3339. left: -12px;
  3340. background-image:
  3341. url('../../resources/themes/images/default/grid/dd-insert-arrow-right.png');
  3342. height: 16px;
  3343. width: 16px
  3344. }
  3345. .x-grid-drop-indicator .x-grid-drop-indicator-right {
  3346. position: absolute;
  3347. top: -8px;
  3348. right: -11px;
  3349. background-image:
  3350. url('../../resources/themes/images/default/grid/dd-insert-arrow-left.png');
  3351. height: 16px;
  3352. width: 16px
  3353. }
  3354. .x-ie6 .x-grid-drop-indicator-left {
  3355. background-image:
  3356. url('../../resources/themes/images/default/grid/dd-insert-arrow-right.gif')
  3357. }
  3358. .x-ie6 .x-grid-drop-indicator-right {
  3359. background-image:
  3360. url('../../resources/themes/images/default/grid/dd-insert-arrow-left.gif')
  3361. }
  3362. .x-grid-row-editor {
  3363. position: absolute !important;
  3364. z-index: 1;
  3365. zoom: 1;
  3366. overflow: visible !important
  3367. }
  3368. .x-grid-row-editor .x-form-field {
  3369. font: normal 11px tahoma, arial, verdana, sans-serif !important
  3370. }
  3371. .x-grid-row-editor .x-form-display-field {
  3372. font: normal 11px tahoma, arial, verdana, sans-serif !important;
  3373. padding-top: 0;
  3374. padding-left: 4px
  3375. }
  3376. .x-grid-row-editor .x-panel-body {
  3377. background-color: #eaf1fb;
  3378. border-top: 1px solid #99bce8 !important;
  3379. border-bottom: 1px solid #99bce8 !important
  3380. }
  3381. .x-grid-row-editor .x-form-text {
  3382. padding-left: 2px
  3383. }
  3384. .x-grid-editor .x-form-cb-wrap {
  3385. text-align: center
  3386. }
  3387. .x-grid-row-editor-buttons {
  3388. background-color: #eaf1fb;
  3389. position: absolute;
  3390. bottom: -31px;
  3391. padding: 4px;
  3392. width: 200px;
  3393. height: 32px
  3394. }
  3395. .x-strict .x-grid-row-editor-buttons {
  3396. width: 192px;
  3397. height: 24px
  3398. }
  3399. .x-grid-row-editor-buttons-ml,.x-grid-row-editor-buttons-mr,.x-grid-row-editor-buttons-bl,.x-grid-row-editor-buttons-br,.x-grid-row-editor-buttons-bc
  3400. {
  3401. position: absolute;
  3402. overflow: hidden
  3403. }
  3404. .x-grid-row-editor-buttons-bl,.x-grid-row-editor-buttons-br {
  3405. width: 4px;
  3406. height: 4px;
  3407. bottom: 0px;
  3408. background-image:
  3409. url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif')
  3410. }
  3411. .x-grid-row-editor-buttons-bl {
  3412. left: 0px;
  3413. background-position: 0px -16px
  3414. }
  3415. .x-grid-row-editor-buttons-br {
  3416. right: 0px;
  3417. background-position: 0px -20px
  3418. }
  3419. .x-grid-row-editor-buttons-bc {
  3420. position: absolute;
  3421. left: 4px;
  3422. bottom: 0px;
  3423. width: 192px;
  3424. height: 1px;
  3425. background-color: #99bce8
  3426. }
  3427. .x-grid-row-editor-buttons-ml,.x-grid-row-editor-buttons-mr {
  3428. height: 27px;
  3429. width: 1px;
  3430. top: 1px;
  3431. background-color: #99bce8
  3432. }
  3433. .x-grid-row-editor-buttons-ml {
  3434. left: 0px
  3435. }
  3436. .x-grid-row-editor-buttons-mr {
  3437. background-position: 0px -20px;
  3438. right: 0px
  3439. }
  3440. .x-grid-row-editor-errors ul {
  3441. margin-left: 5px
  3442. }
  3443. .x-grid-row-editor-errors li {
  3444. list-style: disc;
  3445. margin-left: 15px
  3446. }
  3447. .x-webkit *:focus {
  3448. outline: none !important
  3449. }
  3450. .x-form-item {
  3451. display: block;
  3452. zoom: 1;
  3453. position: relative;
  3454. margin-bottom: 1px
  3455. }
  3456. .x-form-item-label {
  3457. float: left;
  3458. padding: 3px 0 0;
  3459. z-index: 2;
  3460. position: relative;
  3461. font-size: 14px;
  3462. user-select: none;
  3463. -o-user-select: none;
  3464. -ms-user-select: none;
  3465. -moz-user-select: -moz-none;
  3466. -webkit-user-select: none;
  3467. cursor: default
  3468. }
  3469. .x-form-item-label-top {
  3470. float: none;
  3471. clear: none;
  3472. padding: 0;
  3473. display: block
  3474. }
  3475. .x-form-item-label-right {
  3476. float: left;
  3477. text-align: right
  3478. }
  3479. .x-form-item-body {
  3480. position: relative;
  3481. float: left
  3482. }
  3483. .x-form-invalid-under {
  3484. padding: 2px 2px 2px 18px;
  3485. clear: left;
  3486. color: #c0272b;
  3487. font: normal 11px tahoma, arial, verdana, sans-serif;
  3488. line-height: 16px;
  3489. background: no-repeat 0 2px;
  3490. background-image:
  3491. url('../../resources/themes/images/default/form/exclamation.gif')
  3492. }
  3493. .x-form-invalid-icon {
  3494. width: 18px;
  3495. height: 18px;
  3496. overflow: hidden;
  3497. text-indent: -9999px;
  3498. position: absolute;
  3499. left: 0;
  3500. top: 0;
  3501. background: no-repeat 2px 3px;
  3502. background-image:
  3503. url('../../resources/themes/images/default/form/exclamation.gif')
  3504. }
  3505. .x-form-invalid-icon ul {
  3506. display: none
  3507. }
  3508. .x-form-field,.x-form-display-field {
  3509. float: left;
  3510. margin: 0 0 0 0;
  3511. font: normal 12px tahoma, arial, verdana, sans-serif;
  3512. color: black
  3513. }
  3514. .x-form-text,textarea.x-form-field {
  3515. padding: 1px 3px;
  3516. background: repeat-x 0 0;
  3517. border: 1px solid;
  3518. background-color: white;
  3519. background-image:
  3520. url('../../resources/themes/images/default/form/text-bg.gif');
  3521. border-color: #b5b8c8
  3522. }
  3523. .x-form-text {
  3524. height: 18px;
  3525. line-height: 18px;
  3526. vertical-align: middle
  3527. }
  3528. .x-ie6 .x-form-text,.x-ie7 .x-form-text,.x-ie8 .x-form-text {
  3529. line-height: 18px
  3530. }
  3531. .x-border-box .x-form-text {
  3532. height: 22px
  3533. }
  3534. textarea.x-form-field {
  3535. color: black;
  3536. overflow: auto;
  3537. height: auto;
  3538. line-height: normal;
  3539. background: repeat-x 0 0;
  3540. background-color: white;
  3541. background-image:
  3542. url('../../resources/themes/images/default/form/text-bg.gif');
  3543. resize: none
  3544. }
  3545. .x-border-box textarea.x-form-field {
  3546. height: auto
  3547. }
  3548. .x-form-focus,textarea.x-form-focus {
  3549. border-color: #7eadd9
  3550. }
  3551. .x-form-invalid-field,textarea.x-form-invalid-field {
  3552. background-color: white;
  3553. background-image:
  3554. url('../../resources/themes/images/default/grid/invalid_line.gif');
  3555. background-repeat: repeat-x;
  3556. background-position: bottom;
  3557. border-color: #cc3300
  3558. }
  3559. .x-form-item {
  3560. font: normal 12px tahoma, arial, verdana, sans-serif
  3561. }
  3562. .x-form-empty-field,textarea.x-form-empty-field {
  3563. color: gray
  3564. }
  3565. .x-webkit .x-form-empty-field {
  3566. line-height: 15px
  3567. }
  3568. .x-form-display-field {
  3569. padding-top: 3px
  3570. }
  3571. .x-ie .x-form-file {
  3572. height: 23px;
  3573. line-height: 18px;
  3574. vertical-align: middle
  3575. }
  3576. .x-field-default-toolbar .x-form-text {
  3577. height: 16px
  3578. }
  3579. .x-border-box .x-field-default-toolbar .x-form-text {
  3580. height: 20px
  3581. }
  3582. .x-field-default-toolbar .x-form-item-label-left {
  3583. padding-left: 4px
  3584. }
  3585. .x-fieldset {
  3586. border: 1px solid #b5b8c8;
  3587. padding: 0 10px;
  3588. margin-bottom: 10px;
  3589. display: block
  3590. }
  3591. .x-ie .x-fieldset {
  3592. padding-top: 0;
  3593. padding-bottom: 10px
  3594. }
  3595. .x-fieldset-header {
  3596. font: 11px bold tahoma, arial, verdana, sans-serif;
  3597. color: #15428b;
  3598. padding: 0 3px;
  3599. line-height: 16px
  3600. }
  3601. .x-fieldset-header .x-fieldset-header-text {
  3602. float: left
  3603. }
  3604. .x-fieldset-header .x-form-item,.x-fieldset-header .x-tool {
  3605. float: left;
  3606. margin: 0 3px 0 0
  3607. }
  3608. .x-fieldset-header .x-form-cb-wrap {
  3609. padding: 0
  3610. }
  3611. .x-webkit .x-fieldset-header {
  3612. padding-top: 1px
  3613. }
  3614. .x-quirks .x-ie .x-fieldset-header,.x-ie6 .x-fieldset-header,.x-ie7 .x-fieldset-header,.x-ie8 .x-fieldset-header
  3615. {
  3616. padding: 0
  3617. }
  3618. .x-ie9 .x-fieldset-header {
  3619. padding-top: 1px
  3620. }
  3621. .x-fieldset-collapsed .x-fieldset-body {
  3622. display: none
  3623. }
  3624. .x-fieldset-collapsed {
  3625. padding-bottom: 0 !important;
  3626. border-width: 1px 1px 0 1px !important;
  3627. border-left-color: transparent !important;
  3628. border-right-color: transparent !important
  3629. }
  3630. .x-ie6 .x-fieldset-collapsed {
  3631. border-width: 1px 0 0 0 !important;
  3632. padding-bottom: 0 !important;
  3633. margin-left: 1px;
  3634. margin-right: 1px
  3635. }
  3636. .x-ie .x-fieldset-bwrap {
  3637. zoom: 1
  3638. }
  3639. .x-ie .x-fieldset-noborder legend {
  3640. position: relative;
  3641. margin-bottom: 23px
  3642. }
  3643. .x-ie .x-fieldset-noborder legend span {
  3644. position: absolute;
  3645. left: 16px
  3646. }
  3647. .x-fieldset {
  3648. overflow: hidden
  3649. }
  3650. .x-fieldset-bwrap {
  3651. overflow: hidden;
  3652. zoom: 1
  3653. }
  3654. .x-fieldset-body {
  3655. overflow: hidden
  3656. }
  3657. .x-form-file-wrap .x-form-text {
  3658. color: #777
  3659. }
  3660. .x-form-file-wrap .x-form-file-btn {
  3661. overflow: hidden;
  3662. float: left
  3663. }
  3664. .x-form-file-wrap .x-form-file-input {
  3665. position: absolute;
  3666. top: -4px;
  3667. right: -2px;
  3668. height: 30px;
  3669. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0 );
  3670. opacity: 0;
  3671. font-size: 100px
  3672. }
  3673. .x-form-cb-wrap {
  3674. padding-top: 3px
  3675. }
  3676. .x-form-checkbox,.x-form-radio {
  3677. float: none;
  3678. vertical-align: -1px;
  3679. width: 13px;
  3680. height: 13px;
  3681. background: no-repeat;
  3682. background-image:
  3683. url('../../resources/themes/images/default/form/checkbox.gif');
  3684. overflow: hidden;
  3685. padding: 0;
  3686. border: 0
  3687. }
  3688. .x-form-checkbox::-moz-focus-inner,.x-form-radio::-moz-focus-inner {
  3689. padding: 0;
  3690. border: 0
  3691. }
  3692. .x-nbr.x-ie .x-form-checkbox,.x-nbr.x-ie .x-form-radio {
  3693. font-size: 0
  3694. }
  3695. .x-form-cb-checked .x-form-checkbox,.x-form-cb-checked .x-form-radio {
  3696. background-position: 0 -13px
  3697. }
  3698. .x-form-cb-focus {
  3699. background-position: -13px 0
  3700. }
  3701. .x-form-cb-checked .x-form-cb-focus {
  3702. background-position: -13px -13px
  3703. }
  3704. .x-form-radio {
  3705. background-image:
  3706. url('../../resources/themes/images/default/form/radio.gif')
  3707. }
  3708. .x-form-cb-label-before {
  3709. margin-right: 4px
  3710. }
  3711. .x-form-cb-label-after {
  3712. margin-left: 4px
  3713. }
  3714. .x-form-invalid .x-form-checkboxgroup-body {
  3715. border: 1px solid #c30;
  3716. background: #fff repeat-x bottom;
  3717. background-image:
  3718. url('../../resources/themes/images/default/grid/invalid_line.gif');
  3719. padding: 2px 3px
  3720. }
  3721. .x-check-group-alt {
  3722. background: #d1ddef;
  3723. border-top: 1px dotted #b5b8c8;
  3724. border-bottom: 1px dotted #b5b8c8
  3725. }
  3726. .x-form-check-group-label {
  3727. color: #333;
  3728. border-bottom: 1px solid #333;
  3729. margin: 0 30px 5px 0;
  3730. padding: 2px
  3731. }
  3732. .x-form-trigger-wrap {
  3733. float: left
  3734. }
  3735. .x-form-trigger {
  3736. background-image:
  3737. url('../../resources/themes/images/default/form/trigger.gif');
  3738. background-position: 0 0;
  3739. width: 17px;
  3740. height: 21px;
  3741. float: left;
  3742. border-bottom: 1px solid #b5b8c8;
  3743. cursor: pointer;
  3744. cursor: hand
  3745. }
  3746. .x-border-box .x-form-trigger {
  3747. height: 22px
  3748. }
  3749. .x-field-default-toolbar .x-form-trigger {
  3750. height: 19px
  3751. }
  3752. .x-border-box .x-field-default-toolbar .x-form-trigger {
  3753. height: 20px
  3754. }
  3755. .x-form-trigger-over {
  3756. background-position: -17px 0;
  3757. border-bottom-color: #7eadd9
  3758. }
  3759. .x-form-trigger-wrap-focus .x-form-trigger {
  3760. background-position: -51px 0;
  3761. border-bottom-color: #7eadd9
  3762. }
  3763. .x-form-trigger-wrap-focus .x-form-trigger-over {
  3764. background-position: -68px 0;
  3765. border-bottom-color: null
  3766. }
  3767. .x-form-trigger-click,.x-form-trigger-wrap-focus .x-form-trigger-click {
  3768. background-position: -34px 0;
  3769. border-bottom-color: null
  3770. }
  3771. .x-form-trigger-icon {
  3772. height: 16px;
  3773. background-repeat: no-repeat;
  3774. background-position: 7px 6px
  3775. }
  3776. .x-pickerfield-open .x-form-field {
  3777. -moz-border-radius-bottomleft: 0;
  3778. -webkit-border-bottom-left-radius: 0;
  3779. -o-border-bottom-left-radius: 0;
  3780. -ms-border-bottom-left-radius: 0;
  3781. -khtml-border-bottom-left-radius: 0;
  3782. border-bottom-left-radius: 0;
  3783. -moz-border-radius-bottomright: 0;
  3784. -webkit-border-bottom-right-radius: 0;
  3785. -o-border-bottom-right-radius: 0;
  3786. -ms-border-bottom-right-radius: 0;
  3787. -khtml-border-bottom-right-radius: 0;
  3788. border-bottom-right-radius: 0
  3789. }
  3790. .x-pickerfield-open-above .x-form-field {
  3791. -moz-border-radius-bottomleft: 3px;
  3792. -webkit-border-bottom-left-radius: 3px;
  3793. -o-border-bottom-left-radius: 3px;
  3794. -ms-border-bottom-left-radius: 3px;
  3795. -khtml-border-bottom-left-radius: 3px;
  3796. border-bottom-left-radius: 3px;
  3797. -moz-border-radius-topleft: 0;
  3798. -webkit-border-top-left-radius: 0;
  3799. -o-border-top-left-radius: 0;
  3800. -ms-border-top-left-radius: 0;
  3801. -khtml-border-top-left-radius: 0;
  3802. border-top-left-radius: 0;
  3803. -moz-border-radius-topright: 0;
  3804. -webkit-border-top-right-radius: 0;
  3805. -o-border-top-right-radius: 0;
  3806. -ms-border-top-right-radius: 0;
  3807. -khtml-border-top-right-radius: 0;
  3808. border-top-right-radius: 0
  3809. }
  3810. .x-form-arrow-trigger .x-form-trigger-icon {
  3811. background-image:
  3812. url('../../resources/themes/images/default/boundlist/trigger-arrow.png')
  3813. }
  3814. .x-form-date-trigger {
  3815. background-image:
  3816. url('../../resources/themes/images/default/form/date-trigger.gif')
  3817. }
  3818. .x-form-trigger-wrap .x-form-spinner-up,.x-form-trigger-wrap .x-form-spinner-down
  3819. {
  3820. background-image:
  3821. url('../../resources/themes/images/default/form/spinner.gif');
  3822. width: 17px !important;
  3823. height: 11px !important;
  3824. font-size: 0;
  3825. border-bottom: 0
  3826. }
  3827. .x-form-trigger-wrap .x-form-spinner-down {
  3828. background-position: 0 -11px
  3829. }
  3830. .x-form-trigger-wrap-focus .x-form-spinner-down {
  3831. background-position: -51px -11px
  3832. }
  3833. .x-form-trigger-wrap .x-form-spinner-down-over {
  3834. background-position: -17px -11px
  3835. }
  3836. .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  3837. background-position: -68px -11px
  3838. }
  3839. .x-form-trigger-wrap .x-form-spinner-down-click {
  3840. background-position: -34px -11px
  3841. }
  3842. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-up,.x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down
  3843. {
  3844. background-image:
  3845. url('../../resources/themes/images/default/form/spinner-small.gif');
  3846. height: 10px !important
  3847. }
  3848. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  3849. background-position: 0 -10px
  3850. }
  3851. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down
  3852. {
  3853. background-position: -51px -10px
  3854. }
  3855. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-over
  3856. {
  3857. background-position: -17px -10px
  3858. }
  3859. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down-over
  3860. {
  3861. background-position: -68px -10px
  3862. }
  3863. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-click
  3864. {
  3865. background-position: -34px -10px
  3866. }
  3867. .x-trigger-noedit {
  3868. cursor: pointer;
  3869. cursor: hand
  3870. }
  3871. .x-form-clear-trigger {
  3872. background-image:
  3873. url('../../resources/themes/images/default/form/clear-trigger.gif')
  3874. }
  3875. .x-form-search-trigger {
  3876. background-image:
  3877. url('../../resources/themes/images/default/form/search-trigger.gif')
  3878. }
  3879. .x-html-editor-wrap {
  3880. border: 1px solid #b5b8c8
  3881. }
  3882. .x-html-editor-wrap .x-toolbar {
  3883. border-top-width: 0;
  3884. border-left-width: 0;
  3885. border-right-width: 0
  3886. }
  3887. .x-html-editor-wrap textarea {
  3888. background-color: white
  3889. }
  3890. .x-html-editor-tb .x-btn-text {
  3891. background: transparent no-repeat;
  3892. background-image:
  3893. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3894. }
  3895. .x-html-editor-tb .x-edit-bold,.x-menu-item img.x-edit-bold {
  3896. background-position: 0 0;
  3897. background-image:
  3898. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3899. }
  3900. .x-html-editor-tb .x-edit-italic,.x-menu-item img.x-edit-italic {
  3901. background-position: -16px 0;
  3902. background-image:
  3903. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3904. }
  3905. .x-html-editor-tb .x-edit-underline,.x-menu-item img.x-edit-underline {
  3906. background-position: -32px 0;
  3907. background-image:
  3908. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3909. }
  3910. .x-html-editor-tb .x-edit-forecolor,.x-menu-item img.x-edit-forecolor {
  3911. background-position: -160px 0;
  3912. background-image:
  3913. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3914. }
  3915. .x-html-editor-tb .x-edit-backcolor,.x-menu-item img.x-edit-backcolor {
  3916. background-position: -176px 0;
  3917. background-image:
  3918. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3919. }
  3920. .x-html-editor-tb .x-edit-justifyleft,.x-menu-item img.x-edit-justifyleft
  3921. {
  3922. background-position: -112px 0;
  3923. background-image:
  3924. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3925. }
  3926. .x-html-editor-tb .x-edit-justifycenter,.x-menu-item img.x-edit-justifycenter
  3927. {
  3928. background-position: -128px 0;
  3929. background-image:
  3930. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3931. }
  3932. .x-html-editor-tb .x-edit-justifyright,.x-menu-item img.x-edit-justifyright
  3933. {
  3934. background-position: -144px 0;
  3935. background-image:
  3936. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3937. }
  3938. .x-html-editor-tb .x-edit-insertorderedlist,.x-menu-item img.x-edit-insertorderedlist
  3939. {
  3940. background-position: -80px 0;
  3941. background-image:
  3942. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3943. }
  3944. .x-html-editor-tb .x-edit-insertunorderedlist,.x-menu-item img.x-edit-insertunorderedlist
  3945. {
  3946. background-position: -96px 0;
  3947. background-image:
  3948. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3949. }
  3950. .x-html-editor-tb .x-edit-increasefontsize,.x-menu-item img.x-edit-increasefontsize
  3951. {
  3952. background-position: -48px 0;
  3953. background-image:
  3954. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3955. }
  3956. .x-html-editor-tb .x-edit-decreasefontsize,.x-menu-item img.x-edit-decreasefontsize
  3957. {
  3958. background-position: -64px 0;
  3959. background-image:
  3960. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3961. }
  3962. .x-html-editor-tb .x-edit-sourceedit,.x-menu-item img.x-edit-sourceedit
  3963. {
  3964. background-position: -192px 0;
  3965. background-image:
  3966. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3967. }
  3968. .x-html-editor-tb .x-edit-createlink,.x-menu-item img.x-edit-createlink
  3969. {
  3970. background-position: -208px 0;
  3971. background-image:
  3972. url('../../resources/themes/images/default/editor/tb-sprite.gif')
  3973. }
  3974. .x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
  3975. padding: 5px;
  3976. padding-bottom: 1px
  3977. }
  3978. .x-html-editor-tb .x-toolbar {
  3979. position: static !important
  3980. }
  3981. .x-html-editor-tb .x-font-select {
  3982. font-size: 11px
  3983. }
  3984. .x-html-editor-wrap textarea {
  3985. border: 0;
  3986. padding: 3px 2px;
  3987. overflow: auto
  3988. }
  3989. .x-panel,.x-plain {
  3990. overflow: hidden;
  3991. position: relative
  3992. }
  3993. .x-ie .x-panel-header,.x-ie .x-panel-header-tl,.x-ie .x-panel-header-tc,.x-ie .x-panel-header-tr,.x-ie .x-panel-header-ml,.x-ie .x-panel-header-mc,.x-ie .x-panel-header-mr,.x-ie .x-panel-header-bl,.x-ie .x-panel-header-bc,.x-ie .x-panel-header-br
  3994. {
  3995. zoom: 1
  3996. }
  3997. .x-ie8 td.x-frame-mc {
  3998. vertical-align: top
  3999. }
  4000. .x-panel-header {
  4001. padding: 5px 4px 4px 5px
  4002. }
  4003. .x-panel-header-icon,.x-window-header-icon {
  4004. width: 16px;
  4005. height: 16px;/*update by yingp*//*height: 16px;*/
  4006. background-repeat: no-repeat;
  4007. background-position: 0 0;
  4008. vertical-align: middle;
  4009. margin-right: 4px;
  4010. margin-top: -1px;
  4011. margin-bottom: -1px
  4012. }
  4013. .x-panel-header-draggable,.x-panel-header-draggable .x-panel-header-text,.x-window-header-draggable,.x-window-header-draggable .x-window-header-text
  4014. {
  4015. cursor: move
  4016. }
  4017. .x-panel-ghost,.x-window-ghost {
  4018. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65 );
  4019. opacity: 0.65;
  4020. cursor: move
  4021. }
  4022. .x-panel-header-horizontal .x-panel-header-body,.x-panel-header-horizontal .x-window-header-body,.x-panel-header-horizontal .x-btn-group-header-body,.x-window-header-horizontal .x-panel-header-body,.x-window-header-horizontal .x-window-header-body,.x-window-header-horizontal .x-btn-group-header-body,.x-btn-group-header-horizontal .x-panel-header-body,.x-btn-group-header-horizontal .x-window-header-body,.x-btn-group-header-horizontal .x-btn-group-header-body
  4023. {
  4024. width: 100%
  4025. }
  4026. .x-panel-header-vertical .x-panel-header-body,.x-panel-header-vertical .x-window-header-body,.x-panel-header-vertical .x-btn-group-header-body,.x-window-header-vertical .x-panel-header-body,.x-window-header-vertical .x-window-header-body,.x-window-header-vertical .x-btn-group-header-body,.x-btn-group-header-vertical .x-panel-header-body,.x-btn-group-header-vertical .x-window-header-body,.x-btn-group-header-vertical .x-btn-group-header-body
  4027. {
  4028. height: 100%
  4029. }
  4030. .x-panel-header-vertical,.x-panel-header-vertical .x-panel-header-body,.x-btn-group-header-vertical,.x-btn-group-header-vertical .x-btn-group-header-body,.x-window-header-vertical,.x-window-header-vertical .x-window-header-body
  4031. {
  4032. display: -moz-inline-stack;
  4033. display: inline-block
  4034. }
  4035. .x-panel-header-text-container {
  4036. overflow: hidden;
  4037. -o-text-overflow: ellipsis;
  4038. text-overflow: ellipsis
  4039. }
  4040. .x-panel-header-text {
  4041. user-select: none;
  4042. -o-user-select: none;
  4043. -ms-user-select: none;
  4044. -moz-user-select: -moz-none;
  4045. -webkit-user-select: none;
  4046. cursor: default;
  4047. white-space: nowrap
  4048. }
  4049. .x-panel-header-left .x-vml-base,.x-panel-header-right .x-vml-base {
  4050. left: -3px !important
  4051. }
  4052. .x-panel-body {
  4053. overflow: hidden;
  4054. position: relative;
  4055. font-size: 13px/*update by yingp*//*font-size: 12px*/
  4056. }
  4057. .x-panel-header-vertical .x-surface {
  4058. margin-top: 2px
  4059. }
  4060. .x-panel-header-plain-vertical .x-surface {
  4061. margin-top: 0
  4062. }
  4063. .x-panel-collapsed .x-panel-header-collapsed-border-top {
  4064. border-bottom-width: 1px !important
  4065. }
  4066. .x-panel-collapsed .x-panel-header-collapsed-border-right {
  4067. border-left-width: 1px !important
  4068. }
  4069. .x-panel-collapsed .x-panel-header-collapsed-border-bottom {
  4070. border-top-width: 1px !important
  4071. }
  4072. .x-panel-collapsed .x-panel-header-collapsed-border-left {
  4073. border-right-width: 1px !important
  4074. }
  4075. .x-nlg .x-panel-header-vertical .x-frame-mc {
  4076. background-repeat: repeat-y
  4077. }
  4078. .x-panel-default {
  4079. border-color: #99bce8
  4080. }
  4081. .x-panel-header-default {
  4082. font-size: 11px;
  4083. line-height: 15px;
  4084. border-color: #99bce8;
  4085. border-width: 1px;
  4086. border-style: solid
  4087. }
  4088. .x-nlg .x-panel-header-default-top {
  4089. background-image:
  4090. url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif')
  4091. }
  4092. .x-nlg .x-panel-header-default-bottom {
  4093. background-image:
  4094. url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif')
  4095. }
  4096. .x-nlg .x-panel-header-default-left {
  4097. background-image:
  4098. url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif')
  4099. }
  4100. .x-nlg .x-panel-header-default-right {
  4101. background-image:
  4102. url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif')
  4103. }
  4104. .x-panel-header-text-default {
  4105. color: #04408c;
  4106. font-size: 13px;/*update by yingp*//*font-size: 11px;*/
  4107. font-weight: normal;/*bold;*/
  4108. font-family: tahoma, arial, verdana, sans-serif
  4109. }
  4110. .x-panel-body-default {
  4111. background: white;
  4112. border-color: #99bce8;
  4113. color: black;
  4114. border-width: 1px;
  4115. border-style: solid
  4116. }
  4117. .x-panel-collapsed .x-window-header-default,.x-panel-collapsed .x-panel-header-default
  4118. {
  4119. border-color: #99bce8
  4120. }
  4121. .x-panel-header-default-vertical {
  4122. border-color: #99bce8
  4123. }
  4124. .x-panel-collapsed .x-panel-header-default-top {
  4125. -moz-border-radius-bottomleft: null;
  4126. -webkit-border-bottom-left-radius: null;
  4127. -o-border-bottom-left-radius: null;
  4128. -ms-border-bottom-left-radius: null;
  4129. -khtml-border-bottom-left-radius: null;
  4130. border-bottom-left-radius: null;
  4131. -moz-border-radius-bottomright: null;
  4132. -webkit-border-bottom-right-radius: null;
  4133. -o-border-bottom-right-radius: null;
  4134. -ms-border-bottom-right-radius: null;
  4135. -khtml-border-bottom-right-radius: null;
  4136. border-bottom-right-radius: null
  4137. }
  4138. .x-panel-collapsed .x-panel-header-default-right {
  4139. -moz-border-radius-topleft: null;
  4140. -webkit-border-top-left-radius: null;
  4141. -o-border-top-left-radius: null;
  4142. -ms-border-top-left-radius: null;
  4143. -khtml-border-top-left-radius: null;
  4144. border-top-left-radius: null;
  4145. -moz-border-radius-bottomleft: null;
  4146. -webkit-border-bottom-left-radius: null;
  4147. -o-border-bottom-left-radius: null;
  4148. -ms-border-bottom-left-radius: null;
  4149. -khtml-border-bottom-left-radius: null;
  4150. border-bottom-left-radius: null
  4151. }
  4152. .x-panel-collapsed .x-panel-header-default-bottom {
  4153. -moz-border-radius-topleft: null;
  4154. -webkit-border-top-left-radius: null;
  4155. -o-border-top-left-radius: null;
  4156. -ms-border-top-left-radius: null;
  4157. -khtml-border-top-left-radius: null;
  4158. border-top-left-radius: null;
  4159. -moz-border-radius-topright: null;
  4160. -webkit-border-top-right-radius: null;
  4161. -o-border-top-right-radius: null;
  4162. -ms-border-top-right-radius: null;
  4163. -khtml-border-top-right-radius: null;
  4164. border-top-right-radius: null
  4165. }
  4166. .x-panel-collapsed .x-panel-header-default-left {
  4167. -moz-border-radius-topright: null;
  4168. -webkit-border-top-right-radius: null;
  4169. -o-border-top-right-radius: null;
  4170. -ms-border-top-right-radius: null;
  4171. -khtml-border-top-right-radius: null;
  4172. border-top-right-radius: null;
  4173. -moz-border-radius-bottomright: null;
  4174. -webkit-border-bottom-right-radius: null;
  4175. -o-border-bottom-right-radius: null;
  4176. -ms-border-bottom-right-radius: null;
  4177. -khtml-border-bottom-right-radius: null;
  4178. border-bottom-right-radius: null
  4179. }
  4180. .x-nlg .x-panel-header-default-right {
  4181. background-position: top right
  4182. }
  4183. .x-panel-header-default-top {
  4184. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  4185. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  4186. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  4187. box-shadow: #f4f8fd 0 1px 0px 0 inset
  4188. }
  4189. .x-panel-header-default-right {
  4190. -moz-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  4191. -webkit-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  4192. -o-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  4193. box-shadow: #f4f8fd -1px 0 0px 0 inset
  4194. }
  4195. .x-panel-header-default-bottom {
  4196. -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  4197. -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  4198. -o-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  4199. box-shadow: #f4f8fd 0 -1px 0px 0 inset
  4200. }
  4201. .x-panel-header-default-left {
  4202. -moz-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  4203. -webkit-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  4204. -o-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  4205. box-shadow: #f4f8fd 1px 0 0px 0 inset
  4206. }
  4207. .x-nlg .x-panel-header-default-bottom {
  4208. background-position: bottom left
  4209. }
  4210. .x-panel-header-default-right-tc,.x-panel-header-default-right-mc,.x-panel-header-default-right-bc
  4211. {
  4212. background-position: right 0
  4213. }
  4214. .x-panel-header-default-bottom-tc,.x-panel-header-default-bottom-mc,.x-panel-header-default-bottom-bc
  4215. {
  4216. background-position: 0 bottom
  4217. }
  4218. .x-panel-default-framed {
  4219. border-color: #99bce8
  4220. }
  4221. .x-panel-header-default-framed {
  4222. font-size: 13px;/*update by yingp*//*11px*/
  4223. line-height: 15px;
  4224. border-color: #99bce8;
  4225. border-width: 1px;
  4226. border-style: solid
  4227. }
  4228. .x-nlg .x-panel-header-default-framed-top {
  4229. background-image:
  4230. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif')
  4231. }
  4232. .x-nlg .x-panel-header-default-framed-bottom {
  4233. background-image:
  4234. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif')
  4235. }
  4236. .x-nlg .x-panel-header-default-framed-left {
  4237. background-image:
  4238. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif')
  4239. }
  4240. .x-nlg .x-panel-header-default-framed-right {
  4241. background-image:
  4242. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif')
  4243. }
  4244. .x-panel-header-text-default-framed {
  4245. color: #04408c;
  4246. font-size: 13px;/*update by yingp*//*11px*/
  4247. font-weight: bold;
  4248. font-family: tahoma, arial, verdana, sans-serif
  4249. }
  4250. .x-panel-body-default-framed {
  4251. background: #dfe9f6;
  4252. border-color: #99bce8;
  4253. color: black;
  4254. border-width: 0;
  4255. border-style: solid
  4256. }
  4257. .x-panel-collapsed .x-window-header-default-framed,.x-panel-collapsed .x-panel-header-default-framed
  4258. {
  4259. border-color: #99bce8
  4260. }
  4261. .x-panel-header-default-framed-vertical {
  4262. border-color: #99bce8
  4263. }
  4264. .x-panel-default-framed {
  4265. padding: 4px 4px 4px 4px;
  4266. border-width: 1px;
  4267. border-style: solid;
  4268. background-color: #dfe9f6
  4269. }
  4270. .x-nlg .x-panel-default-framed-mc {
  4271. background-color: #dfe9f6
  4272. }
  4273. .x-nbr .x-panel-default-framed {
  4274. padding: 0 !important;
  4275. border-width: 0 !important;
  4276. -moz-border-radius: 0px;
  4277. -webkit-border-radius: 0px;
  4278. -o-border-radius: 0px;
  4279. -ms-border-radius: 0px;
  4280. -khtml-border-radius: 0px;
  4281. border-radius: 0px;
  4282. background-color: transparent;
  4283. background-position: 1000404px 1000404px
  4284. }
  4285. .x-nbr .x-panel-default-framed-tl,.x-nbr .x-panel-default-framed-bl,.x-nbr .x-panel-default-framed-tr,.x-nbr .x-panel-default-framed-br,.x-nbr .x-panel-default-framed-tc,.x-nbr .x-panel-default-framed-bc,.x-nbr .x-panel-default-framed-ml,.x-nbr .x-panel-default-framed-mr
  4286. {
  4287. zoom: 1;
  4288. background-image:
  4289. url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif')
  4290. }
  4291. .x-nbr .x-panel-default-framed-ml,.x-nbr .x-panel-default-framed-mr {
  4292. zoom: 1;
  4293. background-image:
  4294. url('../../resources/themes/images/default/panel/panel-default-framed-sides.gif');
  4295. background-position: 0 0;
  4296. background-repeat: repeat-y
  4297. }
  4298. .x-nbr .x-panel-default-framed-mc {
  4299. padding: 0px 0px 0px 0px
  4300. }
  4301. .x-panel-header-default-framed-top {
  4302. padding: 4px 5px 4px 5px;
  4303. border-width: 1px;
  4304. border-style: solid;
  4305. background-color: #cbddf3
  4306. }
  4307. .x-nlg .x-panel-header-default-framed-top-mc {
  4308. background-image:
  4309. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif');
  4310. background-color: #cbddf3
  4311. }
  4312. .x-nbr .x-panel-header-default-framed-top {
  4313. padding: 0 !important;
  4314. border-width: 0 !important;
  4315. -moz-border-radius: 0px;
  4316. -webkit-border-radius: 0px;
  4317. -o-border-radius: 0px;
  4318. -ms-border-radius: 0px;
  4319. -khtml-border-radius: 0px;
  4320. border-radius: 0px;
  4321. background-color: transparent;
  4322. background-position: 1000404px 1000000px
  4323. }
  4324. .x-nbr .x-panel-header-default-framed-top-tl,.x-nbr .x-panel-header-default-framed-top-bl,.x-nbr .x-panel-header-default-framed-top-tr,.x-nbr .x-panel-header-default-framed-top-br,.x-nbr .x-panel-header-default-framed-top-tc,.x-nbr .x-panel-header-default-framed-top-bc,.x-nbr .x-panel-header-default-framed-top-ml,.x-nbr .x-panel-header-default-framed-top-mr
  4325. {
  4326. zoom: 1;
  4327. background-image:
  4328. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-corners.gif')
  4329. }
  4330. .x-nbr .x-panel-header-default-framed-top-ml,.x-nbr .x-panel-header-default-framed-top-mr
  4331. {
  4332. zoom: 1;
  4333. background-image:
  4334. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-sides.gif');
  4335. background-position: 0 0
  4336. }
  4337. .x-nbr .x-panel-header-default-framed-top-mc {
  4338. padding: 0px 1px 4px 1px
  4339. }
  4340. .x-panel-header-default-framed-right {
  4341. padding: 4px 5px 4px 5px;
  4342. border-width: 1px;
  4343. border-style: solid;
  4344. background-color: #cbddf3
  4345. }
  4346. .x-nlg .x-panel-header-default-framed-right-mc {
  4347. background-image:
  4348. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif');
  4349. background-color: #cbddf3
  4350. }
  4351. .x-nbr .x-panel-header-default-framed-right {
  4352. padding: 0 !important;
  4353. border-width: 0 !important;
  4354. -moz-border-radius: 0px;
  4355. -webkit-border-radius: 0px;
  4356. -o-border-radius: 0px;
  4357. -ms-border-radius: 0px;
  4358. -khtml-border-radius: 0px;
  4359. border-radius: 0px;
  4360. background-color: transparent;
  4361. background-position: 1000004px 1100400px
  4362. }
  4363. .x-nbr .x-panel-header-default-framed-right-tl,.x-nbr .x-panel-header-default-framed-right-bl,.x-nbr .x-panel-header-default-framed-right-tr,.x-nbr .x-panel-header-default-framed-right-br,.x-nbr .x-panel-header-default-framed-right-tc,.x-nbr .x-panel-header-default-framed-right-bc,.x-nbr .x-panel-header-default-framed-right-ml,.x-nbr .x-panel-header-default-framed-right-mr
  4364. {
  4365. zoom: 1;
  4366. background-image:
  4367. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-corners.gif')
  4368. }
  4369. .x-nbr .x-panel-header-default-framed-right-tc,.x-nbr .x-panel-header-default-framed-right-bc
  4370. {
  4371. zoom: 1;
  4372. background-image:
  4373. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-sides.gif');
  4374. background-position: 0 0;
  4375. background-repeat: repeat-x
  4376. }
  4377. .x-nbr .x-panel-header-default-framed-right-mc {
  4378. padding: 0px 1px 0px 5px
  4379. }
  4380. .x-panel-header-default-framed-bottom {
  4381. padding: 4px 5px 4px 5px;
  4382. border-width: 1px;
  4383. border-style: solid;
  4384. background-color: #cbddf3
  4385. }
  4386. .x-nlg .x-panel-header-default-framed-bottom-mc {
  4387. background-image:
  4388. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif');
  4389. background-color: #cbddf3
  4390. }
  4391. .x-nbr .x-panel-header-default-framed-bottom {
  4392. padding: 0 !important;
  4393. border-width: 0 !important;
  4394. -moz-border-radius: 0px;
  4395. -webkit-border-radius: 0px;
  4396. -o-border-radius: 0px;
  4397. -ms-border-radius: 0px;
  4398. -khtml-border-radius: 0px;
  4399. border-radius: 0px;
  4400. background-color: transparent;
  4401. background-position: 1000000px 1000404px
  4402. }
  4403. .x-nbr .x-panel-header-default-framed-bottom-tl,.x-nbr .x-panel-header-default-framed-bottom-bl,.x-nbr .x-panel-header-default-framed-bottom-tr,.x-nbr .x-panel-header-default-framed-bottom-br,.x-nbr .x-panel-header-default-framed-bottom-tc,.x-nbr .x-panel-header-default-framed-bottom-bc,.x-nbr .x-panel-header-default-framed-bottom-ml,.x-nbr .x-panel-header-default-framed-bottom-mr
  4404. {
  4405. zoom: 1;
  4406. background-image:
  4407. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-corners.gif')
  4408. }
  4409. .x-nbr .x-panel-header-default-framed-bottom-ml,.x-nbr .x-panel-header-default-framed-bottom-mr
  4410. {
  4411. zoom: 1;
  4412. background-image:
  4413. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-sides.gif');
  4414. background-position: 0 0
  4415. }
  4416. .x-nbr .x-panel-header-default-framed-bottom-mc {
  4417. padding: 4px 1px 0px 1px
  4418. }
  4419. .x-panel-header-default-framed-left {
  4420. padding: 4px 5px 4px 5px;
  4421. border-width: 1px;
  4422. border-style: solid;
  4423. background-color: #cbddf3
  4424. }
  4425. .x-nlg .x-panel-header-default-framed-left-mc {
  4426. background-image:
  4427. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif');
  4428. background-color: #cbddf3
  4429. }
  4430. .x-nbr .x-panel-header-default-framed-left {
  4431. padding: 0 !important;
  4432. border-width: 0 !important;
  4433. -moz-border-radius: 0px;
  4434. -webkit-border-radius: 0px;
  4435. -o-border-radius: 0px;
  4436. -ms-border-radius: 0px;
  4437. -khtml-border-radius: 0px;
  4438. border-radius: 0px;
  4439. background-color: transparent;
  4440. background-position: 1000400px 1100004px
  4441. }
  4442. .x-nbr .x-panel-header-default-framed-left-tl,.x-nbr .x-panel-header-default-framed-left-bl,.x-nbr .x-panel-header-default-framed-left-tr,.x-nbr .x-panel-header-default-framed-left-br,.x-nbr .x-panel-header-default-framed-left-tc,.x-nbr .x-panel-header-default-framed-left-bc,.x-nbr .x-panel-header-default-framed-left-ml,.x-nbr .x-panel-header-default-framed-left-mr
  4443. {
  4444. zoom: 1;
  4445. background-image:
  4446. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-corners.gif')
  4447. }
  4448. .x-nbr .x-panel-header-default-framed-left-tc,.x-nbr .x-panel-header-default-framed-left-bc
  4449. {
  4450. zoom: 1;
  4451. background-image:
  4452. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-sides.gif');
  4453. background-position: 0 0;
  4454. background-repeat: repeat-x
  4455. }
  4456. .x-nbr .x-panel-header-default-framed-left-mc {
  4457. padding: 0px 5px 0px 1px
  4458. }
  4459. .x-panel-header-default-framed-top {
  4460. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset,
  4461. #f4f8fd 1px 0 0px 0 inset;
  4462. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0
  4463. inset, #f4f8fd 1px 0 0px 0 inset;
  4464. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset,
  4465. #f4f8fd 1px 0 0px 0 inset;
  4466. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset,
  4467. #f4f8fd 1px 0 0px 0 inset
  4468. }
  4469. .x-panel-header-default-framed-right {
  4470. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset,
  4471. #f4f8fd -1px 0 0px 0 inset;
  4472. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0
  4473. inset, #f4f8fd -1px 0 0px 0 inset;
  4474. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset,
  4475. #f4f8fd -1px 0 0px 0 inset;
  4476. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset,
  4477. #f4f8fd -1px 0 0px 0 inset
  4478. }
  4479. .x-panel-header-default-framed-bottom {
  4480. -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset,
  4481. #f4f8fd 1px 0 0px 0 inset;
  4482. -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0
  4483. inset, #f4f8fd 1px 0 0px 0 inset;
  4484. -o-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset,
  4485. #f4f8fd 1px 0 0px 0 inset;
  4486. box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset,
  4487. #f4f8fd 1px 0 0px 0 inset
  4488. }
  4489. .x-panel-header-default-framed-left {
  4490. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset,
  4491. #f4f8fd 1px 0 0px 0 inset;
  4492. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0
  4493. inset, #f4f8fd 1px 0 0px 0 inset;
  4494. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset,
  4495. #f4f8fd 1px 0 0px 0 inset;
  4496. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset,
  4497. #f4f8fd 1px 0 0px 0 inset
  4498. }
  4499. .x-nlg .x-panel-header-default-framed-bottom {
  4500. background-position: bottom left
  4501. }
  4502. .x-panel .x-panel-header-default-framed-top {
  4503. border-bottom-width: 1px !important
  4504. }
  4505. .x-panel .x-panel-header-default-framed-right {
  4506. border-left-width: 1px !important
  4507. }
  4508. .x-panel .x-panel-header-default-framed-bottom {
  4509. border-top-width: 1px !important
  4510. }
  4511. .x-panel .x-panel-header-default-framed-left {
  4512. border-right-width: 1px !important
  4513. }
  4514. .x-panel-header-default-framed-collapsed {
  4515. -moz-border-radius: 4px;
  4516. -webkit-border-radius: 4px;
  4517. -o-border-radius: 4px;
  4518. -ms-border-radius: 4px;
  4519. -khtml-border-radius: 4px;
  4520. border-radius: 4px
  4521. }
  4522. .x-panel-header-default-framed-collapsed-top {
  4523. padding: 4px 5px 4px 5px;
  4524. border-width: 1px;
  4525. border-style: solid;
  4526. background-color: #cbddf3
  4527. }
  4528. .x-nlg .x-panel-header-default-framed-collapsed-top-mc {
  4529. background-image:
  4530. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-bg.gif');
  4531. background-color: #cbddf3
  4532. }
  4533. .x-nbr .x-panel-header-default-framed-collapsed-top {
  4534. padding: 0 !important;
  4535. border-width: 0 !important;
  4536. -moz-border-radius: 0px;
  4537. -webkit-border-radius: 0px;
  4538. -o-border-radius: 0px;
  4539. -ms-border-radius: 0px;
  4540. -khtml-border-radius: 0px;
  4541. border-radius: 0px;
  4542. background-color: transparent;
  4543. background-position: 1000404px 1000404px
  4544. }
  4545. .x-nbr .x-panel-header-default-framed-collapsed-top-tl,.x-nbr .x-panel-header-default-framed-collapsed-top-bl,.x-nbr .x-panel-header-default-framed-collapsed-top-tr,.x-nbr .x-panel-header-default-framed-collapsed-top-br,.x-nbr .x-panel-header-default-framed-collapsed-top-tc,.x-nbr .x-panel-header-default-framed-collapsed-top-bc,.x-nbr .x-panel-header-default-framed-collapsed-top-ml,.x-nbr .x-panel-header-default-framed-collapsed-top-mr
  4546. {
  4547. zoom: 1;
  4548. background-image:
  4549. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-corners.gif')
  4550. }
  4551. .x-nbr .x-panel-header-default-framed-collapsed-top-ml,.x-nbr .x-panel-header-default-framed-collapsed-top-mr
  4552. {
  4553. zoom: 1;
  4554. background-image:
  4555. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-sides.gif');
  4556. background-position: 0 0
  4557. }
  4558. .x-nbr .x-panel-header-default-framed-collapsed-top-mc {
  4559. padding: 0px 1px 0px 1px
  4560. }
  4561. .x-panel-header-default-framed-collapsed-right {
  4562. padding: 4px 5px 4px 5px;
  4563. border-width: 1px;
  4564. border-style: solid;
  4565. background-color: #cbddf3
  4566. }
  4567. .x-nlg .x-panel-header-default-framed-collapsed-right-mc {
  4568. background-image:
  4569. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-bg.gif');
  4570. background-color: #cbddf3
  4571. }
  4572. .x-nbr .x-panel-header-default-framed-collapsed-right {
  4573. padding: 0 !important;
  4574. border-width: 0 !important;
  4575. -moz-border-radius: 0px;
  4576. -webkit-border-radius: 0px;
  4577. -o-border-radius: 0px;
  4578. -ms-border-radius: 0px;
  4579. -khtml-border-radius: 0px;
  4580. border-radius: 0px;
  4581. background-color: transparent;
  4582. background-position: 1000404px 1100404px
  4583. }
  4584. .x-nbr .x-panel-header-default-framed-collapsed-right-tl,.x-nbr .x-panel-header-default-framed-collapsed-right-bl,.x-nbr .x-panel-header-default-framed-collapsed-right-tr,.x-nbr .x-panel-header-default-framed-collapsed-right-br,.x-nbr .x-panel-header-default-framed-collapsed-right-tc,.x-nbr .x-panel-header-default-framed-collapsed-right-bc,.x-nbr .x-panel-header-default-framed-collapsed-right-ml,.x-nbr .x-panel-header-default-framed-collapsed-right-mr
  4585. {
  4586. zoom: 1;
  4587. background-image:
  4588. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-corners.gif')
  4589. }
  4590. .x-nbr .x-panel-header-default-framed-collapsed-right-tc,.x-nbr .x-panel-header-default-framed-collapsed-right-bc
  4591. {
  4592. zoom: 1;
  4593. background-image:
  4594. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-sides.gif');
  4595. background-position: 0 0;
  4596. background-repeat: repeat-x
  4597. }
  4598. .x-nbr .x-panel-header-default-framed-collapsed-right-mc {
  4599. padding: 0px 1px 0px 1px
  4600. }
  4601. .x-panel-header-default-framed-collapsed-bottom {
  4602. padding: 4px 5px 4px 5px;
  4603. border-width: 1px;
  4604. border-style: solid;
  4605. background-color: #cbddf3
  4606. }
  4607. .x-nlg .x-panel-header-default-framed-collapsed-bottom-mc {
  4608. background-image:
  4609. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif');
  4610. background-color: #cbddf3
  4611. }
  4612. .x-nbr .x-panel-header-default-framed-collapsed-bottom {
  4613. padding: 0 !important;
  4614. border-width: 0 !important;
  4615. -moz-border-radius: 0px;
  4616. -webkit-border-radius: 0px;
  4617. -o-border-radius: 0px;
  4618. -ms-border-radius: 0px;
  4619. -khtml-border-radius: 0px;
  4620. border-radius: 0px;
  4621. background-color: transparent;
  4622. background-position: 1000404px 1000404px
  4623. }
  4624. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tl,.x-nbr .x-panel-header-default-framed-collapsed-bottom-bl,.x-nbr .x-panel-header-default-framed-collapsed-bottom-tr,.x-nbr .x-panel-header-default-framed-collapsed-bottom-br,.x-nbr .x-panel-header-default-framed-collapsed-bottom-tc,.x-nbr .x-panel-header-default-framed-collapsed-bottom-bc,.x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,.x-nbr .x-panel-header-default-framed-collapsed-bottom-mr
  4625. {
  4626. zoom: 1;
  4627. background-image:
  4628. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif')
  4629. }
  4630. .x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,.x-nbr .x-panel-header-default-framed-collapsed-bottom-mr
  4631. {
  4632. zoom: 1;
  4633. background-image:
  4634. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif');
  4635. background-position: 0 0
  4636. }
  4637. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mc {
  4638. padding: 0px 1px 0px 1px
  4639. }
  4640. .x-panel-header-default-framed-collapsed-left {
  4641. padding: 4px 5px 4px 5px;
  4642. border-width: 1px;
  4643. border-style: solid;
  4644. background-color: #cbddf3
  4645. }
  4646. .x-nlg .x-panel-header-default-framed-collapsed-left-mc {
  4647. background-image:
  4648. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-bg.gif');
  4649. background-color: #cbddf3
  4650. }
  4651. .x-nbr .x-panel-header-default-framed-collapsed-left {
  4652. padding: 0 !important;
  4653. border-width: 0 !important;
  4654. -moz-border-radius: 0px;
  4655. -webkit-border-radius: 0px;
  4656. -o-border-radius: 0px;
  4657. -ms-border-radius: 0px;
  4658. -khtml-border-radius: 0px;
  4659. border-radius: 0px;
  4660. background-color: transparent;
  4661. background-position: 1000404px 1100404px
  4662. }
  4663. .x-nbr .x-panel-header-default-framed-collapsed-left-tl,.x-nbr .x-panel-header-default-framed-collapsed-left-bl,.x-nbr .x-panel-header-default-framed-collapsed-left-tr,.x-nbr .x-panel-header-default-framed-collapsed-left-br,.x-nbr .x-panel-header-default-framed-collapsed-left-tc,.x-nbr .x-panel-header-default-framed-collapsed-left-bc,.x-nbr .x-panel-header-default-framed-collapsed-left-ml,.x-nbr .x-panel-header-default-framed-collapsed-left-mr
  4664. {
  4665. zoom: 1;
  4666. background-image:
  4667. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-corners.gif')
  4668. }
  4669. .x-nbr .x-panel-header-default-framed-collapsed-left-tc,.x-nbr .x-panel-header-default-framed-collapsed-left-bc
  4670. {
  4671. zoom: 1;
  4672. background-image:
  4673. url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-sides.gif');
  4674. background-position: 0 0;
  4675. background-repeat: repeat-x
  4676. }
  4677. .x-nbr .x-panel-header-default-framed-collapsed-left-mc {
  4678. padding: 0px 1px 0px 1px
  4679. }
  4680. .x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-mc,.x-panel-header-default-framed-right-bc
  4681. {
  4682. background-position: right 0
  4683. }
  4684. .x-panel-header-default-framed-bottom-tc,.x-panel-header-default-framed-bottom-mc,.x-panel-header-default-framed-bottom-bc
  4685. {
  4686. background-position: 0 bottom
  4687. }
  4688. .x-panel-header-plain,.x-panel-body-plain {
  4689. border: 0;
  4690. padding: 0
  4691. }
  4692. .x-tip {
  4693. position: absolute;
  4694. overflow: visible;
  4695. border-color: #8eaace
  4696. }
  4697. .x-tip .x-tip-header .x-box-item {
  4698. padding: 3px 3px 0
  4699. }
  4700. .x-tip .x-tip-header .x-tool {
  4701. padding: 0px 1px 0 0 !important
  4702. }
  4703. .x-tip {
  4704. padding: 2px 2px 2px 2px;
  4705. border-width: 1px;
  4706. border-style: solid;
  4707. background-color: #e9f2ff
  4708. }
  4709. .x-nlg .x-tip-mc {
  4710. background-color: #e9f2ff
  4711. }
  4712. .x-nbr .x-tip {
  4713. padding: 0 !important;
  4714. border-width: 0 !important;
  4715. -moz-border-radius: 0px;
  4716. -webkit-border-radius: 0px;
  4717. -o-border-radius: 0px;
  4718. -ms-border-radius: 0px;
  4719. -khtml-border-radius: 0px;
  4720. border-radius: 0px;
  4721. background-color: transparent;
  4722. background-position: 1100303px 1000303px
  4723. }
  4724. .x-nbr .x-tip-tl,.x-nbr .x-tip-bl,.x-nbr .x-tip-tr,.x-nbr .x-tip-br,.x-nbr .x-tip-tc,.x-nbr .x-tip-bc,.x-nbr .x-tip-ml,.x-nbr .x-tip-mr
  4725. {
  4726. zoom: 1;
  4727. background-image:
  4728. url('../../resources/themes/images/default/tip/tip-corners.gif')
  4729. }
  4730. .x-nbr .x-tip-ml,.x-nbr .x-tip-mr {
  4731. zoom: 1;
  4732. background-image:
  4733. url('../../resources/themes/images/default/tip/tip-sides.gif');
  4734. background-position: 0 0;
  4735. background-repeat: repeat-y
  4736. }
  4737. .x-nbr .x-tip-mc {
  4738. padding: 0 0 0 0
  4739. }
  4740. .x-tip-header-text {
  4741. user-select: none;
  4742. -o-user-select: none;
  4743. -ms-user-select: none;
  4744. -moz-user-select: -moz-none;
  4745. -webkit-user-select: none;
  4746. cursor: default;
  4747. color: #444444;
  4748. font-size: 11px;
  4749. font-weight: bold
  4750. }
  4751. .x-tip-header-draggable .x-tip-header-text {
  4752. cursor: move
  4753. }
  4754. .x-tip-body,.x-form-invalid-tip-body {
  4755. overflow: hidden;
  4756. position: relative;
  4757. padding: 3px
  4758. }
  4759. .x-tip-header,.x-tip-body,.x-form-invalid-tip-body {
  4760. color: #444444;
  4761. font-size: 11px;
  4762. font-weight: normal
  4763. }
  4764. .x-tip-header a,.x-tip-body a,.x-form-invalid-tip-body a {
  4765. color: #2a2a2a
  4766. }
  4767. .x-tip-anchor {
  4768. position: absolute;
  4769. overflow: hidden;
  4770. height: 0;
  4771. width: 0;
  4772. border-style: solid;
  4773. border-width: 5px;
  4774. border-color: #8eaace;
  4775. zoom: 1
  4776. }
  4777. .x-border-box .x-tip-anchor {
  4778. width: 10px;
  4779. height: 10px
  4780. }
  4781. .x-tip-anchor-top {
  4782. border-top-color: transparent;
  4783. border-left-color: transparent;
  4784. border-right-color: transparent;
  4785. _border-top-color: pink;
  4786. _border-left-color: pink;
  4787. _border-right-color: pink;
  4788. _filter: chroma(color = pink)
  4789. }
  4790. .x-tip-anchor-bottom {
  4791. border-bottom-color: transparent;
  4792. border-left-color: transparent;
  4793. border-right-color: transparent;
  4794. _border-bottom-color: pink;
  4795. _border-left-color: pink;
  4796. _border-right-color: pink;
  4797. _filter: chroma(color = pink)
  4798. }
  4799. .x-tip-anchor-left {
  4800. border-top-color: transparent;
  4801. border-bottom-color: transparent;
  4802. border-left-color: transparent;
  4803. _border-top-color: pink;
  4804. _border-bottom-color: pink;
  4805. _border-left-color: pink;
  4806. _filter: chroma(color = pink)
  4807. }
  4808. .x-tip-anchor-right {
  4809. border-top-color: transparent;
  4810. border-bottom-color: transparent;
  4811. border-right-color: transparent;
  4812. _border-top-color: pink;
  4813. _border-bottom-color: pink;
  4814. _border-right-color: pink;
  4815. _filter: chroma(color = pink)
  4816. }
  4817. .x-form-invalid-tip {
  4818. border-color: #a1311f;
  4819. -moz-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset,
  4820. #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset;
  4821. -webkit-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0
  4822. inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset;
  4823. -o-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset,
  4824. #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset;
  4825. box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset,
  4826. #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset
  4827. }
  4828. .x-form-invalid-tip-body {
  4829. background: 1px 1px no-repeat;
  4830. background-image:
  4831. url('../../resources/themes/images/default/form/exclamation.gif');
  4832. padding-left: 22px
  4833. }
  4834. .x-form-invalid-tip-body li {
  4835. margin-bottom: 4px
  4836. }
  4837. .x-form-invalid-tip-body li.last {
  4838. margin-bottom: 0
  4839. }
  4840. .x-form-invalid-tip-default {
  4841. padding: 4px 4px 4px 4px;
  4842. border-width: 1px;
  4843. border-style: solid;
  4844. background-color: white
  4845. }
  4846. .x-nlg .x-form-invalid-tip-default-mc {
  4847. background-color: white
  4848. }
  4849. .x-nbr .x-form-invalid-tip-default {
  4850. padding: 0 !important;
  4851. border-width: 0 !important;
  4852. -moz-border-radius: 0px;
  4853. -webkit-border-radius: 0px;
  4854. -o-border-radius: 0px;
  4855. -ms-border-radius: 0px;
  4856. -khtml-border-radius: 0px;
  4857. border-radius: 0px;
  4858. background-color: transparent;
  4859. background-position: 1100505px 1000505px
  4860. }
  4861. .x-nbr .x-form-invalid-tip-default-tl,.x-nbr .x-form-invalid-tip-default-bl,.x-nbr .x-form-invalid-tip-default-tr,.x-nbr .x-form-invalid-tip-default-br,.x-nbr .x-form-invalid-tip-default-tc,.x-nbr .x-form-invalid-tip-default-bc,.x-nbr .x-form-invalid-tip-default-ml,.x-nbr .x-form-invalid-tip-default-mr
  4862. {
  4863. zoom: 1;
  4864. background-image:
  4865. url('../../resources/themes/images/default/form-invalid-tip/form-invalid-tip-default-corners.gif')
  4866. }
  4867. .x-nbr .x-form-invalid-tip-default-ml,.x-nbr .x-form-invalid-tip-default-mr
  4868. {
  4869. zoom: 1;
  4870. background-image:
  4871. url('../../resources/themes/images/default/form-invalid-tip/form-invalid-tip-default-sides.gif');
  4872. background-position: 0 0;
  4873. background-repeat: repeat-y
  4874. }
  4875. .x-nbr .x-form-invalid-tip-default-mc {
  4876. padding: 0 0 0 0
  4877. }
  4878. .x-slider {
  4879. zoom: 1
  4880. }
  4881. .x-slider-inner {
  4882. position: relative;
  4883. left: 0;
  4884. top: 0;
  4885. overflow: visible;
  4886. zoom: 1
  4887. }
  4888. .x-slider-focus {
  4889. position: absolute;
  4890. left: 0;
  4891. top: 0;
  4892. width: 1px;
  4893. height: 1px;
  4894. line-height: 1px;
  4895. font-size: 1px;
  4896. -moz-outline: 0 none;
  4897. outline: 0 none;
  4898. user-select: none;
  4899. -o-user-select: none;
  4900. -ms-user-select: none;
  4901. -moz-user-select: -moz-none;
  4902. -webkit-user-select: none;
  4903. cursor: default;
  4904. display: block;
  4905. overflow: hidden
  4906. }
  4907. .x-slider-horz {
  4908. padding-left: 7px;
  4909. background: transparent no-repeat 0 -24px
  4910. }
  4911. .x-slider-horz .x-slider-end {
  4912. padding-right: 7px;
  4913. zoom: 1;
  4914. background: transparent no-repeat right -46px
  4915. }
  4916. .x-slider-horz .x-slider-inner {
  4917. background: transparent repeat-x 0 -2px;
  4918. height: 18px
  4919. }
  4920. .x-slider-horz .x-slider-thumb {
  4921. width: 14px;
  4922. height: 15px;
  4923. position: absolute;
  4924. left: 0;
  4925. top: 1px;
  4926. background: transparent no-repeat 0 0
  4927. }
  4928. .x-slider-horz .x-slider-thumb-over {
  4929. background-position: -14px -15px
  4930. }
  4931. .x-slider-horz .x-slider-thumb-drag {
  4932. background-position: -28px -30px
  4933. }
  4934. .x-slider-vert {
  4935. padding-top: 7px;
  4936. background: transparent no-repeat -44px 0
  4937. }
  4938. .x-slider-vert .x-slider-end {
  4939. padding-bottom: 7px;
  4940. zoom: 1;
  4941. background: transparent no-repeat -22px bottom;
  4942. width: 22px
  4943. }
  4944. .x-slider-vert .x-slider-inner {
  4945. background: transparent repeat-y 0 0;
  4946. width: 22px
  4947. }
  4948. .x-slider-vert .x-slider-thumb {
  4949. width: 15px;
  4950. height: 14px;
  4951. position: absolute;
  4952. left: 3px;
  4953. bottom: 0;
  4954. background: transparent no-repeat 0 0
  4955. }
  4956. .x-slider-vert .x-slider-thumb-over {
  4957. background-position: -15px -14px
  4958. }
  4959. .x-slider-vert .x-slider-thumb-drag {
  4960. background-position: -30px -28px
  4961. }
  4962. .x-slider-horz,.x-slider-horz .x-slider-end,.x-slider-horz .x-slider-inner
  4963. {
  4964. background-image:
  4965. url('../../resources/themes/images/default/slider/slider-bg.png')
  4966. }
  4967. .x-slider-horz .x-slider-thumb {
  4968. background-image:
  4969. url('../../resources/themes/images/default/slider/slider-thumb.png')
  4970. }
  4971. .x-slider-vert,.x-slider-vert .x-slider-end,.x-slider-vert .x-slider-inner
  4972. {
  4973. background-image:
  4974. url('../../resources/themes/images/default/slider/slider-v-bg.png')
  4975. }
  4976. .x-slider-vert .x-slider-thumb {
  4977. background-image:
  4978. url('../../resources/themes/images/default/slider/slider-v-thumb.png')
  4979. }
  4980. .x-ie6 .x-slider-horz,.x-ie6 .x-slider-horz .x-slider-end,.x-ie6 .x-slider-horz .x-slider-inner
  4981. {
  4982. background-image:
  4983. url('../../resources/themes/images/default/slider/slider-bg.gif')
  4984. }
  4985. .x-ie6 .x-slider-horz .x-slider-thumb {
  4986. background-image:
  4987. url('../../resources/themes/images/default/slider/slider-thumb.gif')
  4988. }
  4989. .x-ie6 .x-slider-vert,.x-ie6 .x-slider-vert .x-slider-end,.x-ie6 .x-slider-vert .x-slider-inner
  4990. {
  4991. background-image:
  4992. url('../../resources/themes/images/default/slider/slider-v-bg.gif')
  4993. }
  4994. .x-ie6 .x-slider-vert .x-slider-thumb {
  4995. background-image:
  4996. url('../../resources/themes/images/default/slider/slider-v-thumb.gif')
  4997. }
  4998. .x-progress {
  4999. border-width: 1px;
  5000. border-style: solid;
  5001. -moz-border-radius: 0;
  5002. -webkit-border-radius: 0;
  5003. -o-border-radius: 0;
  5004. -ms-border-radius: 0;
  5005. -khtml-border-radius: 0;
  5006. border-radius: 0;
  5007. overflow: hidden;
  5008. height: 20px
  5009. }
  5010. .x-progress-bar {
  5011. height: 18px;
  5012. overflow: hidden;
  5013. position: absolute;
  5014. width: 0;
  5015. -moz-border-radius: 0;
  5016. -webkit-border-radius: 0;
  5017. -o-border-radius: 0;
  5018. -ms-border-radius: 0;
  5019. -khtml-border-radius: 0;
  5020. border-radius: 0;
  5021. border-right: 1px solid;
  5022. border-top: 1px solid
  5023. }
  5024. .x-progress-text {
  5025. overflow: hidden;
  5026. position: absolute;
  5027. padding: 0 5px;
  5028. height: 18px;
  5029. font-weight: bold;
  5030. font-size: 11px;
  5031. line-height: 16px;
  5032. text-align: center
  5033. }
  5034. .x-progress-text-back {
  5035. padding-top: 1px
  5036. }
  5037. .x-strict .x-progress {
  5038. height: 18px
  5039. }
  5040. .x-progress-default {
  5041. border-color: #6594cf
  5042. }
  5043. .x-progress-default .x-progress-bar {
  5044. border-right-color: #6594cf;
  5045. border-top-color: #c6d8ed;
  5046. background-image: none;
  5047. background-color: #73a3e0;
  5048. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2ccee),
  5049. color-stop(50%, #88b1e5), color-stop(51%, #73a3e0),
  5050. color-stop(100%, #5e96db) );
  5051. background-image: -webkit-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5052. background-image: -moz-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5053. background-image: -o-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5054. background-image: -ms-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5055. background-image: linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db)
  5056. }
  5057. .x-progress-default .x-progress-text {
  5058. color: white
  5059. }
  5060. .x-progress-default .x-progress-text-back {
  5061. color: #396295
  5062. }
  5063. .x-nlg .x-progress-default .x-progress-bar {
  5064. background: repeat-x;
  5065. background-image:
  5066. url('../../resources/themes/images/default/progress/progress-default-bg.gif')
  5067. }
  5068. .x-toolbar {
  5069. font-size: 11px;
  5070. border: 1px solid;
  5071. padding: 2px 0 2px 2px
  5072. }
  5073. .x-toolbar .x-form-item-label {
  5074. font-size: 11px;
  5075. line-height: 15px
  5076. }
  5077. .x-toolbar .x-toolbar-item {
  5078. margin: 0 2px 0 0
  5079. }
  5080. .x-toolbar .x-toolbar-text {
  5081. margin-left: 4px;
  5082. margin-right: 6px;
  5083. white-space: nowrap;
  5084. color: #4c4c4c !important;
  5085. line-height: 16px;
  5086. font-family: tahoma, arial, verdana, sans-serif;
  5087. font-size: 11px;
  5088. font-weight: normal
  5089. }
  5090. .x-toolbar .x-toolbar-separator {
  5091. display: block;
  5092. font-size: 1px;
  5093. overflow: hidden;
  5094. cursor: default;
  5095. border: 0
  5096. }
  5097. .x-toolbar .x-toolbar-separator-horizontal {
  5098. margin: 0 3px 0 2px;
  5099. height: 14px;
  5100. width: 0px;
  5101. border-left: 1px solid #98c8ff;
  5102. border-right: 1px solid white
  5103. }
  5104. .x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal {
  5105. width: 2px
  5106. }
  5107. .x-toolbar-footer {
  5108. background: transparent;
  5109. border: 0px none;
  5110. margin-top: 3px;
  5111. padding: 2px 0 2px 6px
  5112. }
  5113. .x-toolbar-footer .x-box-inner {
  5114. border-width: 0
  5115. }
  5116. .x-toolbar-footer .x-toolbar-item {
  5117. margin: 0 6px 0 0
  5118. }
  5119. .x-toolbar-vertical {
  5120. padding: 2px 2px 0 2px
  5121. }
  5122. .x-toolbar-vertical .x-toolbar-item {
  5123. margin: 0 0 2px 0
  5124. }
  5125. .x-toolbar-vertical .x-toolbar-text {
  5126. margin-top: 4px;
  5127. margin-bottom: 6px
  5128. }
  5129. .x-toolbar-vertical .x-toolbar-separator-vertical {
  5130. margin: 2px 5px 3px 5px;
  5131. height: 0px;
  5132. width: 10px;
  5133. line-height: 0px;
  5134. border-top: 1px solid #98c8ff;
  5135. border-bottom: 1px solid white
  5136. }
  5137. .x-toolbar-scroller {
  5138. padding-left: 0
  5139. }
  5140. .x-toolbar-spacer {
  5141. width: 2px
  5142. }
  5143. .x-toolbar-more-icon {
  5144. background-image:
  5145. url('../../resources/themes/images/default/toolbar/more.gif')
  5146. !important;
  5147. background-position: 2px center !important;
  5148. background-repeat: no-repeat
  5149. }
  5150. .x-toolbar-default {
  5151. border-color: #99bce8;
  5152. background-image: none;
  5153. background-color: #d3e1f1;
  5154. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfe9f5),
  5155. color-stop(100%, #d3e1f1) );
  5156. background-image: -webkit-linear-gradient(top, #dfe9f5, #d3e1f1);
  5157. background-image: -moz-linear-gradient(top, #dfe9f5, #d3e1f1);
  5158. background-image: -o-linear-gradient(top, #dfe9f5, #d3e1f1);
  5159. background-image: -ms-linear-gradient(top, #dfe9f5, #d3e1f1);
  5160. background-image: linear-gradient(top, #dfe9f5, #d3e1f1)
  5161. }
  5162. .x-nlg .x-toolbar-default {
  5163. background-image:
  5164. url('../../resources/themes/images/default/toolbar/toolbar-default-bg.gif')
  5165. !important;
  5166. background-repeat: repeat-x
  5167. }
  5168. .x-toolbar-plain {
  5169. border: 0
  5170. }
  5171. .x-window {
  5172. outline: none
  5173. }
  5174. .x-window .x-window-wrap {
  5175. position: relative
  5176. }
  5177. .x-window .x-window-wrap .x-window-body {
  5178. overflow: hidden
  5179. }
  5180. .x-window-body {
  5181. position: relative;
  5182. border-style: solid
  5183. }
  5184. .x-window-maximized .x-window-wrap .x-window-header {
  5185. -moz-border-radius: 0 !important;
  5186. -webkit-border-radius: 0 !important;
  5187. -o-border-radius: 0 !important;
  5188. -ms-border-radius: 0 !important;
  5189. -khtml-border-radius: 0 !important;
  5190. border-radius: 0 !important
  5191. }
  5192. .x-window-collapsed .x-window-header-vertical {
  5193. -moz-border-radius: 5px;
  5194. -webkit-border-radius: 5px;
  5195. -o-border-radius: 5px;
  5196. -ms-border-radius: 5px;
  5197. -khtml-border-radius: 5px;
  5198. border-radius: 5px
  5199. }
  5200. .x-window-collapsed .x-window-header-horizontal {
  5201. -moz-border-radius: 5px;
  5202. -webkit-border-radius: 5px;
  5203. -o-border-radius: 5px;
  5204. -ms-border-radius: 5px;
  5205. -khtml-border-radius: 5px;
  5206. border-radius: 5px
  5207. }
  5208. .x-window-collapsed .x-window-header-left {
  5209. padding-right: 5px !important
  5210. }
  5211. .x-window-collapsed .x-window-header-right {
  5212. padding-left: 5px !important
  5213. }
  5214. .x-window-collapsed .x-window-header-top {
  5215. padding-bottom: 5px !important
  5216. }
  5217. .x-window-collapsed .x-window-header-bottom {
  5218. padding-top: 5px !important
  5219. }
  5220. .x-window-header-left .x-vml-base,.x-window-header-right .x-vml-base {
  5221. left: -3px !important
  5222. }
  5223. .x-window-header-text {
  5224. user-select: none;
  5225. -o-user-select: none;
  5226. -ms-user-select: none;
  5227. -moz-user-select: -moz-none;
  5228. -webkit-user-select: none;
  5229. cursor: default;
  5230. white-space: nowrap;
  5231. display: block
  5232. }
  5233. .x-window-default {
  5234. border-color: #a2b1c5;
  5235. -moz-border-radius: 5px 5px;
  5236. -webkit-border-radius: 5px 5px;
  5237. -o-border-radius: 5px 5px;
  5238. -ms-border-radius: 5px 5px;
  5239. -khtml-border-radius: 5px 5px;
  5240. border-radius: 5px 5px;
  5241. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset,
  5242. #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5243. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0
  5244. inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5245. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset,
  5246. #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5247. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset,
  5248. #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset
  5249. }
  5250. .x-window-default {
  5251. padding: 4px 4px 4px 4px;
  5252. border-width: 1px;
  5253. border-style: solid;
  5254. background-color: #ced9e7
  5255. }
  5256. .x-nlg .x-window-default-mc {
  5257. background-color: #ced9e7
  5258. }
  5259. .x-nbr .x-window-default {
  5260. padding: 0 !important;
  5261. border-width: 0 !important;
  5262. -moz-border-radius: 0px;
  5263. -webkit-border-radius: 0px;
  5264. -o-border-radius: 0px;
  5265. -ms-border-radius: 0px;
  5266. -khtml-border-radius: 0px;
  5267. border-radius: 0px;
  5268. background-color: transparent;
  5269. background-position: 1000505px 1000505px
  5270. }
  5271. .x-nbr .x-window-default-tl,.x-nbr .x-window-default-bl,.x-nbr .x-window-default-tr,.x-nbr .x-window-default-br,.x-nbr .x-window-default-tc,.x-nbr .x-window-default-bc,.x-nbr .x-window-default-ml,.x-nbr .x-window-default-mr
  5272. {
  5273. zoom: 1;
  5274. background-image:
  5275. url('../../resources/themes/images/default/window/window-default-corners.gif')
  5276. }
  5277. .x-nbr .x-window-default-ml,.x-nbr .x-window-default-mr {
  5278. zoom: 1;
  5279. background-image:
  5280. url('../../resources/themes/images/default/window/window-default-sides.gif');
  5281. background-position: 0 0;
  5282. background-repeat: repeat-y
  5283. }
  5284. .x-nbr .x-window-default-mc {
  5285. padding: 0 0 0 0
  5286. }
  5287. .x-window-body-default {
  5288. border-color: #99bbe8;
  5289. border-width: 1px;
  5290. background: #dfe8f6;
  5291. color: black
  5292. }
  5293. .x-window-header-default {
  5294. border-color: #a2b1c5;
  5295. zoom: 1
  5296. }
  5297. .x-window-header-text-default {
  5298. color: #04468c;
  5299. font-weight: bold;
  5300. line-height: 16px;
  5301. font-family: tahoma, arial, verdana, sans-serif;
  5302. font-size: 11px
  5303. }
  5304. .x-window-header-default-top {
  5305. padding: 5px 5px 0 5px;
  5306. border-width: 1px;
  5307. border-style: solid;
  5308. background-color: #ced9e7
  5309. }
  5310. .x-nlg .x-window-header-default-top-mc {
  5311. background-color: #ced9e7
  5312. }
  5313. .x-nbr .x-window-header-default-top {
  5314. padding: 0 !important;
  5315. border-width: 0 !important;
  5316. -moz-border-radius: 0px;
  5317. -webkit-border-radius: 0px;
  5318. -o-border-radius: 0px;
  5319. -ms-border-radius: 0px;
  5320. -khtml-border-radius: 0px;
  5321. border-radius: 0px;
  5322. background-color: transparent;
  5323. background-position: 1000505px 1000000px
  5324. }
  5325. .x-nbr .x-window-header-default-top-tl,.x-nbr .x-window-header-default-top-bl,.x-nbr .x-window-header-default-top-tr,.x-nbr .x-window-header-default-top-br,.x-nbr .x-window-header-default-top-tc,.x-nbr .x-window-header-default-top-bc,.x-nbr .x-window-header-default-top-ml,.x-nbr .x-window-header-default-top-mr
  5326. {
  5327. zoom: 1;
  5328. background-image:
  5329. url('../../resources/themes/images/default/window-header/window-header-default-top-corners.gif')
  5330. }
  5331. .x-nbr .x-window-header-default-top-ml,.x-nbr .x-window-header-default-top-mr
  5332. {
  5333. zoom: 1;
  5334. background-image:
  5335. url('../../resources/themes/images/default/window-header/window-header-default-top-sides.gif');
  5336. background-position: 0 0;
  5337. background-repeat: repeat-y
  5338. }
  5339. .x-nbr .x-window-header-default-top-mc {
  5340. padding: 0px 0px 0 0px
  5341. }
  5342. .x-window-header-default-right {
  5343. padding: 5px 5px 5px 0;
  5344. border-width: 1px;
  5345. border-style: solid;
  5346. background-color: #ced9e7
  5347. }
  5348. .x-nlg .x-window-header-default-right-mc {
  5349. background-color: #ced9e7
  5350. }
  5351. .x-nbr .x-window-header-default-right {
  5352. padding: 0 !important;
  5353. border-width: 0 !important;
  5354. -moz-border-radius: 0px;
  5355. -webkit-border-radius: 0px;
  5356. -o-border-radius: 0px;
  5357. -ms-border-radius: 0px;
  5358. -khtml-border-radius: 0px;
  5359. border-radius: 0px;
  5360. background-color: transparent;
  5361. background-position: 1000005px 1000500px
  5362. }
  5363. .x-nbr .x-window-header-default-right-tl,.x-nbr .x-window-header-default-right-bl,.x-nbr .x-window-header-default-right-tr,.x-nbr .x-window-header-default-right-br,.x-nbr .x-window-header-default-right-tc,.x-nbr .x-window-header-default-right-bc,.x-nbr .x-window-header-default-right-ml,.x-nbr .x-window-header-default-right-mr
  5364. {
  5365. zoom: 1;
  5366. background-image:
  5367. url('../../resources/themes/images/default/window-header/window-header-default-right-corners.gif')
  5368. }
  5369. .x-nbr .x-window-header-default-right-ml,.x-nbr .x-window-header-default-right-mr
  5370. {
  5371. zoom: 1;
  5372. background-image:
  5373. url('../../resources/themes/images/default/window-header/window-header-default-right-sides.gif');
  5374. background-position: 0 0;
  5375. background-repeat: repeat-y
  5376. }
  5377. .x-nbr .x-window-header-default-right-mc {
  5378. padding: 0px 0px 0px 0
  5379. }
  5380. .x-window-header-default-bottom {
  5381. padding: 0 5px 5px 5px;
  5382. border-width: 1px;
  5383. border-style: solid;
  5384. background-color: #ced9e7
  5385. }
  5386. .x-nlg .x-window-header-default-bottom-mc {
  5387. background-color: #ced9e7
  5388. }
  5389. .x-nbr .x-window-header-default-bottom {
  5390. padding: 0 !important;
  5391. border-width: 0 !important;
  5392. -moz-border-radius: 0px;
  5393. -webkit-border-radius: 0px;
  5394. -o-border-radius: 0px;
  5395. -ms-border-radius: 0px;
  5396. -khtml-border-radius: 0px;
  5397. border-radius: 0px;
  5398. background-color: transparent;
  5399. background-position: 1000000px 1000505px
  5400. }
  5401. .x-nbr .x-window-header-default-bottom-tl,.x-nbr .x-window-header-default-bottom-bl,.x-nbr .x-window-header-default-bottom-tr,.x-nbr .x-window-header-default-bottom-br,.x-nbr .x-window-header-default-bottom-tc,.x-nbr .x-window-header-default-bottom-bc,.x-nbr .x-window-header-default-bottom-ml,.x-nbr .x-window-header-default-bottom-mr
  5402. {
  5403. zoom: 1;
  5404. background-image:
  5405. url('../../resources/themes/images/default/window-header/window-header-default-bottom-corners.gif')
  5406. }
  5407. .x-nbr .x-window-header-default-bottom-ml,.x-nbr .x-window-header-default-bottom-mr
  5408. {
  5409. zoom: 1;
  5410. background-image:
  5411. url('../../resources/themes/images/default/window-header/window-header-default-bottom-sides.gif');
  5412. background-position: 0 0;
  5413. background-repeat: repeat-y
  5414. }
  5415. .x-nbr .x-window-header-default-bottom-mc {
  5416. padding: 0 0px 0px 0px
  5417. }
  5418. .x-window-header-default-left {
  5419. padding: 5px 0px 5px 5px;
  5420. border-width: 1px;
  5421. border-style: solid;
  5422. background-color: #ced9e7
  5423. }
  5424. .x-nlg .x-window-header-default-left-mc {
  5425. background-color: #ced9e7
  5426. }
  5427. .x-nbr .x-window-header-default-left {
  5428. padding: 0 !important;
  5429. border-width: 0 !important;
  5430. -moz-border-radius: 0px;
  5431. -webkit-border-radius: 0px;
  5432. -o-border-radius: 0px;
  5433. -ms-border-radius: 0px;
  5434. -khtml-border-radius: 0px;
  5435. border-radius: 0px;
  5436. background-color: transparent;
  5437. background-position: 1000500px 1000005px
  5438. }
  5439. .x-nbr .x-window-header-default-left-tl,.x-nbr .x-window-header-default-left-bl,.x-nbr .x-window-header-default-left-tr,.x-nbr .x-window-header-default-left-br,.x-nbr .x-window-header-default-left-tc,.x-nbr .x-window-header-default-left-bc,.x-nbr .x-window-header-default-left-ml,.x-nbr .x-window-header-default-left-mr
  5440. {
  5441. zoom: 1;
  5442. background-image:
  5443. url('../../resources/themes/images/default/window-header/window-header-default-left-corners.gif')
  5444. }
  5445. .x-nbr .x-window-header-default-left-ml,.x-nbr .x-window-header-default-left-mr
  5446. {
  5447. zoom: 1;
  5448. background-image:
  5449. url('../../resources/themes/images/default/window-header/window-header-default-left-sides.gif');
  5450. background-position: 0 0;
  5451. background-repeat: repeat-y
  5452. }
  5453. .x-nbr .x-window-header-default-left-mc {
  5454. padding: 0px 0px 0px 0px
  5455. }
  5456. .x-window-header-default-top {
  5457. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset,
  5458. #ecf2fb 1px 0 0px 0 inset;
  5459. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0
  5460. inset, #ecf2fb 1px 0 0px 0 inset;
  5461. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset,
  5462. #ecf2fb 1px 0 0px 0 inset;
  5463. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset,
  5464. #ecf2fb 1px 0 0px 0 inset
  5465. }
  5466. .x-window-header-default-right {
  5467. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset,
  5468. #ecf2fb -1px 0 0px 0 inset;
  5469. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0
  5470. inset, #ecf2fb -1px 0 0px 0 inset;
  5471. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset,
  5472. #ecf2fb -1px 0 0px 0 inset;
  5473. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset,
  5474. #ecf2fb -1px 0 0px 0 inset
  5475. }
  5476. .x-window-header-default-bottom {
  5477. -moz-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset,
  5478. #ecf2fb 1px 0 0px 0 inset;
  5479. -webkit-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0
  5480. inset, #ecf2fb 1px 0 0px 0 inset;
  5481. -o-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset,
  5482. #ecf2fb 1px 0 0px 0 inset;
  5483. box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset,
  5484. #ecf2fb 1px 0 0px 0 inset
  5485. }
  5486. .x-window-header-default-left {
  5487. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset,
  5488. #ecf2fb 1px 0 0px 0 inset;
  5489. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0
  5490. inset, #ecf2fb 1px 0 0px 0 inset;
  5491. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset,
  5492. #ecf2fb 1px 0 0px 0 inset;
  5493. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset,
  5494. #ecf2fb 1px 0 0px 0 inset
  5495. }
  5496. .x-window-body-plain {
  5497. background: transparent
  5498. }
  5499. .x-message-box .x-window-body {
  5500. background-color: #ced9e7;
  5501. border: none
  5502. }
  5503. .x-message-box .ext-mb-textarea {
  5504. margin-top: 4px
  5505. }
  5506. .x-message-box .x-progress-wrap {
  5507. margin-top: 4px
  5508. }
  5509. .x-message-box .ext-mb-icon {
  5510. width: 47px;
  5511. height: 32px
  5512. }
  5513. .x-message-box .ext-mb-info,.x-message-box .ext-mb-warning,.x-message-box .ext-mb-question,.x-message-box .ext-mb-error
  5514. {
  5515. background: transparent no-repeat top left
  5516. }
  5517. .ext-gecko2 .ext-mb-fix-cursor {
  5518. overflow: auto
  5519. }
  5520. .x-message-box .x-msg-box-wait {
  5521. background-image:
  5522. url('../../resources/themes/images/default/shared/blue-loading.gif')
  5523. }
  5524. .x-message-box .ext-mb-info {
  5525. background-image:
  5526. url('../../resources/themes/images/default/shared/icon-info.gif')
  5527. }
  5528. .x-message-box .ext-mb-warning {
  5529. background-image:
  5530. url('../../resources/themes/images/default/shared/icon-warning.gif')
  5531. }
  5532. .x-message-box .ext-mb-question {
  5533. background-image:
  5534. url('../../resources/themes/images/default/shared/icon-question.gif')
  5535. }
  5536. .x-message-box .ext-mb-error {
  5537. background-image:
  5538. url('../../resources/themes/images/default/shared/icon-error.gif')
  5539. }
  5540. .x-tab-bar {
  5541. position: relative;
  5542. background-color: transparent;
  5543. background-image: none;
  5544. background-color: #cbdbef;
  5545. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dde8f5),
  5546. color-stop(100%, #cbdbef) );
  5547. background-image: -webkit-linear-gradient(top, #dde8f5, #cbdbef);
  5548. background-image: -moz-linear-gradient(top, #dde8f5, #cbdbef);
  5549. background-image: -o-linear-gradient(top, #dde8f5, #cbdbef);
  5550. background-image: -ms-linear-gradient(top, #dde8f5, #cbdbef);
  5551. background-image: linear-gradient(top, #dde8f5, #cbdbef);
  5552. font-size: 11px
  5553. }
  5554. .x-nlg .x-tab-bar {
  5555. background-image:
  5556. url('../../resources/themes/images/default/tab-bar/tab-bar-default-bg.gif')
  5557. }
  5558. .x-tab-bar-default-plain,.x-nlg .x-tab-bar-default-plain {
  5559. background: transparent none
  5560. }
  5561. .x-tab-bar-body {
  5562. border-style: solid;
  5563. border-color: #99bce8;
  5564. position: relative;
  5565. z-index: 2;
  5566. zoom: 1
  5567. }
  5568. .x-tab-bar-top .x-tab-bar-body {
  5569. height: 20px;
  5570. border-width: 1px 1px 0;
  5571. padding: 1px 0 3px
  5572. }
  5573. .x-tab-bar-top .x-tab-bar-strip {
  5574. top: 22px;
  5575. border-width: 1px 1px 0;
  5576. height: 2px
  5577. }
  5578. .x-border-box .x-tab-bar-top .x-tab-bar-body {
  5579. height: 25px
  5580. }
  5581. .x-border-box .x-tab-bar-top .x-tab-bar-strip {
  5582. height: 3px
  5583. }
  5584. .x-tab-bar-top .x-tab-bar-body-default-plain {
  5585. height: 20px;
  5586. border-width: 0;
  5587. padding: 0 0 3px
  5588. }
  5589. .x-tab-bar-top .x-tab-bar-strip-default-plain {
  5590. top: 20px;
  5591. border-width: 1px 1px 0 1px;
  5592. height: 2px
  5593. }
  5594. .x-border-box .x-tab-bar-top .x-tab-bar-body-default-plain {
  5595. height: 23px
  5596. }
  5597. .x-border-box .x-tab-bar-top .x-tab-bar-strip-default-plain {
  5598. height: 3px
  5599. }
  5600. .x-tab-bar-bottom .x-tab-bar-body {
  5601. height: 20px;
  5602. border-width: 0 1px 1px;
  5603. padding: 3px 0 1px
  5604. }
  5605. .x-tab-bar-bottom .x-tab-bar-body .x-box-inner {
  5606. position: relative;
  5607. top: -1px
  5608. }
  5609. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller,.x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-left,.x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-right
  5610. {
  5611. height: 22px
  5612. }
  5613. .x-tab-bar-bottom .x-tab-bar-strip {
  5614. top: 0;
  5615. border-width: 0 1px 1px 1px;
  5616. height: 2px
  5617. }
  5618. .x-border-box .x-tab-bar-bottom .x-tab-bar-body {
  5619. height: 25px
  5620. }
  5621. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip {
  5622. height: 3px
  5623. }
  5624. .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  5625. height: 20px;
  5626. border-width: 0;
  5627. padding: 3px 0 0
  5628. }
  5629. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-inner {
  5630. position: relative;
  5631. top: -1px
  5632. }
  5633. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller,.x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-left,.x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-right
  5634. {
  5635. height: 21px
  5636. }
  5637. .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  5638. top: 0;
  5639. border-width: 0 1px 1px 1px;
  5640. height: 2px
  5641. }
  5642. .x-border-box .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  5643. height: 23px
  5644. }
  5645. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  5646. height: 3px
  5647. }
  5648. .x-tab-bar-strip-default,.x-tab-bar-strip-default-plain {
  5649. font-size: 0;
  5650. line-height: 0;
  5651. position: absolute;
  5652. z-index: 1;
  5653. border-style: solid;
  5654. overflow: hidden;
  5655. border-color: #99bce8;
  5656. background-color: #deecfd;
  5657. zoom: 1
  5658. }
  5659. .x-tab-default-top {
  5660. padding: 3px 3px 0 3px;
  5661. border-width: 1px 1px 0 1px;
  5662. border-style: solid;
  5663. background-color: #deecfd
  5664. }
  5665. .x-nlg .x-tab-default-top-mc {
  5666. background-image:
  5667. url('../../resources/themes/images/default/tab/tab-default-top-bg.gif');
  5668. background-color: #deecfd
  5669. }
  5670. .x-nbr .x-tab-default-top {
  5671. padding: 0 !important;
  5672. border-width: 0 !important;
  5673. -moz-border-radius: 0px;
  5674. -webkit-border-radius: 0px;
  5675. -o-border-radius: 0px;
  5676. -ms-border-radius: 0px;
  5677. -khtml-border-radius: 0px;
  5678. border-radius: 0px;
  5679. background-color: transparent;
  5680. background-position: 1100404px 1000000px
  5681. }
  5682. .x-nbr .x-tab-default-top-tl,.x-nbr .x-tab-default-top-bl,.x-nbr .x-tab-default-top-tr,.x-nbr .x-tab-default-top-br,.x-nbr .x-tab-default-top-tc,.x-nbr .x-tab-default-top-bc,.x-nbr .x-tab-default-top-ml,.x-nbr .x-tab-default-top-mr
  5683. {
  5684. zoom: 1;
  5685. background-image:
  5686. url('../../resources/themes/images/default/tab/tab-default-top-corners.gif')
  5687. }
  5688. .x-nbr .x-tab-default-top-ml,.x-nbr .x-tab-default-top-mr {
  5689. zoom: 1;
  5690. background-image:
  5691. url('../../resources/themes/images/default/tab/tab-default-top-sides.gif');
  5692. background-position: 0 0
  5693. }
  5694. .x-nbr .x-tab-default-top-mc {
  5695. padding: 0 0 0 0
  5696. }
  5697. .x-tab-default-bottom {
  5698. padding: 0 3px 3px 3px;
  5699. border-width: 0 1px 1px 1px;
  5700. border-style: solid;
  5701. background-color: #deecfd
  5702. }
  5703. .x-nlg .x-tab-default-bottom-mc {
  5704. background-image:
  5705. url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif');
  5706. background-color: #deecfd
  5707. }
  5708. .x-nbr .x-tab-default-bottom {
  5709. padding: 0 !important;
  5710. border-width: 0 !important;
  5711. -moz-border-radius: 0px;
  5712. -webkit-border-radius: 0px;
  5713. -o-border-radius: 0px;
  5714. -ms-border-radius: 0px;
  5715. -khtml-border-radius: 0px;
  5716. border-radius: 0px;
  5717. background-color: transparent;
  5718. background-position: 1100000px 1000404px
  5719. }
  5720. .x-nbr .x-tab-default-bottom-tl,.x-nbr .x-tab-default-bottom-bl,.x-nbr .x-tab-default-bottom-tr,.x-nbr .x-tab-default-bottom-br,.x-nbr .x-tab-default-bottom-tc,.x-nbr .x-tab-default-bottom-bc,.x-nbr .x-tab-default-bottom-ml,.x-nbr .x-tab-default-bottom-mr
  5721. {
  5722. zoom: 1;
  5723. background-image:
  5724. url('../../resources/themes/images/default/tab/tab-default-bottom-corners.gif')
  5725. }
  5726. .x-nbr .x-tab-default-bottom-ml,.x-nbr .x-tab-default-bottom-mr {
  5727. zoom: 1;
  5728. background-image:
  5729. url('../../resources/themes/images/default/tab/tab-default-bottom-sides.gif');
  5730. background-position: 0 0
  5731. }
  5732. .x-nbr .x-tab-default-bottom-mc {
  5733. padding: 0 0 0 0
  5734. }
  5735. .x-tab {
  5736. z-index: 1;
  5737. margin: 0 0 0 2px;
  5738. display: inline-block;
  5739. zoom: 1;
  5740. *display: inline;
  5741. white-space: nowrap;
  5742. height: 20px;
  5743. border-color: #8db3e3;
  5744. cursor: pointer;
  5745. cursor: hand
  5746. }
  5747. .x-tab * {
  5748. cursor: pointer;
  5749. cursor: hand
  5750. }
  5751. .x-tab em {
  5752. display: block;
  5753. padding: 0 6px;
  5754. line-height: 1px
  5755. }
  5756. .x-tab button {
  5757. background: none;
  5758. border: 0;
  5759. padding: 0;
  5760. margin: 0;
  5761. -webkit-appearance: none;
  5762. font-size: 13px;/*update by yingp*//*11px*/
  5763. font-weight: bold;
  5764. color: #416da3;
  5765. outline: 0 none;
  5766. overflow: hidden;
  5767. overflow-x: visible;
  5768. -o-text-overflow: ellipsis;
  5769. text-overflow: ellipsis
  5770. }
  5771. .x-tab button::-moz-focus-inner {
  5772. border: 0;
  5773. padding: 0
  5774. }
  5775. .x-tab button .x-tab-inner {
  5776. height: 16px;
  5777. line-height: 16px;
  5778. background-color: transparent;
  5779. background-repeat: no-repeat;
  5780. background-position: 0 -2px;
  5781. display: block;
  5782. text-align: center;
  5783. white-space: nowrap
  5784. }
  5785. .x-tab-active button .x-tab-inner {/*add by yingp*/
  5786. color:green;
  5787. font-weight: bold;
  5788. }
  5789. .x-tab img {
  5790. display: none
  5791. }
  5792. .x-tab-disabled {
  5793. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100 );
  5794. opacity: 1
  5795. }
  5796. .x-border-box .x-tab-default-top {
  5797. height: 21px
  5798. }
  5799. .x-border-box .x-tab-default-bottom {
  5800. height: 21px
  5801. }
  5802. * html .x-ie .x-tab button {
  5803. width: 1px
  5804. }
  5805. .x-strict .x-ie6 .x-tab .x-frame-mc,.x-strict .x-ie7 .x-tab .x-frame-mc
  5806. {
  5807. height: 100%
  5808. }
  5809. .x-ie .x-tab-active button:active {
  5810. position: relative;
  5811. top: -1px;
  5812. left: -1px
  5813. }
  5814. .x-tab-default-top {
  5815. -moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset,
  5816. white 1px 0 0px 0 inset;
  5817. -webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset,
  5818. white 1px 0 0px 0 inset;
  5819. -o-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white
  5820. 1px 0 0px 0 inset;
  5821. box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px
  5822. 0 0px 0 inset;
  5823. border-bottom: 1px solid #99bce8 !important
  5824. }
  5825. .x-tab-default-top em {
  5826. padding-bottom: 3px
  5827. }
  5828. .x-tab-default-top button,.x-tab-default-top .x-tab-inner {
  5829. height: 16px !important;/*update by yingp*//*13px*/
  5830. line-height: 16px !important
  5831. }
  5832. .x-nbr .x-tab-default-top {
  5833. border-bottom-width: 1px !important
  5834. }
  5835. .x-tab-default-top-active {
  5836. border-bottom-color: #deecfd !important
  5837. }
  5838. .x-tab-default-bottom {
  5839. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset,
  5840. white 1px 0 0px 0 inset;
  5841. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset,
  5842. white 1px 0 0px 0 inset;
  5843. -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white
  5844. 1px 0 0px 0 inset;
  5845. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white
  5846. 1px 0 0px 0 inset;
  5847. border-top: 1px solid #99bce8 !important;
  5848. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset,
  5849. white 1px 0 0px 0 inset;
  5850. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset,
  5851. white 1px 0 0px 0 inset;
  5852. -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white
  5853. 1px 0 0px 0 inset;
  5854. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white
  5855. 1px 0 0px 0 inset
  5856. }
  5857. .x-tab-default-bottom em {
  5858. padding-top: 3px
  5859. }
  5860. .x-tab-default-bottom button,.x-tab-default-bottom .x-tab-inner {
  5861. height: 13px;
  5862. line-height: 13px
  5863. }
  5864. .x-nbr .x-tab-default-bottom {
  5865. border-top-width: 1px !important
  5866. }
  5867. .x-tab-default-bottom-active {
  5868. border-top-color: #deecfd !important
  5869. }
  5870. .x-tab-default-disabled {
  5871. cursor: default;
  5872. border-color: #bbd2ef;
  5873. background-image: none;
  5874. background-color: #e1ecfa;
  5875. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa),
  5876. color-stop(100%, #ecf4fe) );
  5877. background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
  5878. background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
  5879. background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
  5880. background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
  5881. background-image: linear-gradient(top, #e1ecfa, #ecf4fe)
  5882. }
  5883. .x-tab-default-disabled * {
  5884. cursor: default
  5885. }
  5886. .x-tab-default-disabled button {
  5887. color: #c3b3b3 !important
  5888. }
  5889. .x-tab-icon-text-left .x-tab-inner {
  5890. padding-left: 20px
  5891. }
  5892. .x-tab button,.x-tab a {
  5893. position: relative
  5894. }
  5895. .x-tab button .x-tab-icon,.x-tab a .x-tab-icon {
  5896. position: absolute;
  5897. background-repeat: no-repeat;
  5898. top: 0;
  5899. left: 0;
  5900. right: auto;
  5901. bottom: 0;
  5902. width: 16px;
  5903. height: 16px;
  5904. padding-bottom: 0px;/*update by yingp*/
  5905. }
  5906. .x-tab-top-over {
  5907. background-image: none;
  5908. background-color: #e8f2ff;
  5909. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d7e5fd),
  5910. color-stop(25%, #e0edff), color-stop(45%, #e8f2ff) );
  5911. background-image: -webkit-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5912. background-image: -moz-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5913. background-image: -o-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5914. background-image: -ms-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5915. background-image: linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%)
  5916. }
  5917. .x-tab-bottom-over {
  5918. background-image: none;
  5919. background-color: #e8f2ff;
  5920. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #d7e5fd),
  5921. color-stop(25%, #e0edff), color-stop(45%, #e8f2ff) );
  5922. background-image: -webkit-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5923. background-image: -moz-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5924. background-image: -o-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5925. background-image: -ms-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5926. background-image: linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%)
  5927. }
  5928. .x-tab-active {
  5929. z-index: 3
  5930. }
  5931. .x-tab-active button {
  5932. color: #15498b
  5933. }
  5934. .x-tab-top-active {
  5935. background-image: none;
  5936. background-color: #deecfd;
  5937. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff),
  5938. color-stop(25%, #f5f9fe), color-stop(45%, #deecfd) );
  5939. background-image: -webkit-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5940. background-image: -moz-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5941. background-image: -o-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5942. background-image: -ms-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5943. background-image: linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%)
  5944. }
  5945. .x-tab-bottom-active {
  5946. background-image: none;
  5947. background-color: #deecfd;
  5948. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff),
  5949. color-stop(25%, #f5f9fe), color-stop(45%, #deecfd) );
  5950. background-image: -webkit-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5951. background-image: -moz-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5952. background-image: -o-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5953. background-image: -ms-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5954. background-image: linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%)
  5955. }
  5956. .x-tab-disabled {
  5957. border-color: #bbd2ef
  5958. }
  5959. .x-tab-disabled button {
  5960. color: #c3b3b3
  5961. }
  5962. .x-tab-top-disabled {
  5963. background-image: none;
  5964. background: transparent;
  5965. background-image: none;
  5966. background-color: #e1ecfa;
  5967. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa),
  5968. color-stop(100%, #ecf4fe) );
  5969. background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
  5970. background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
  5971. background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
  5972. background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
  5973. background-image: linear-gradient(top, #e1ecfa, #ecf4fe)
  5974. }
  5975. .x-tab-bottom-disabled {
  5976. background-image: none;
  5977. background: transparent;
  5978. background-image: none;
  5979. background-color: #e1ecfa;
  5980. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e1ecfa),
  5981. color-stop(100%, #ecf4fe) );
  5982. background-image: -webkit-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5983. background-image: -moz-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5984. background-image: -o-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5985. background-image: -ms-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5986. background-image: linear-gradient(bottom, #e1ecfa, #ecf4fe)
  5987. }
  5988. .x-nlg .x-tab-top {
  5989. background-image:
  5990. url('../../resources/themes/images/default/tab/tab-default-top-bg.gif')
  5991. }
  5992. .x-nlg .x-tab-bottom {
  5993. background-image:
  5994. url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif')
  5995. }
  5996. .x-nlg .x-tab-top-over {
  5997. background-image:
  5998. url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif')
  5999. }
  6000. .x-nlg .x-tab-bottom-over {
  6001. background-image:
  6002. url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif')
  6003. }
  6004. .x-nlg .x-tab-top-active {
  6005. background-image:
  6006. url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif')
  6007. }
  6008. .x-nlg .x-tab-bottom-active {
  6009. background-image:
  6010. url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif')
  6011. }
  6012. .x-nlg .x-tab-top-disabled {
  6013. background-image:
  6014. url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif')
  6015. !important
  6016. }
  6017. .x-nlg .x-tab-bottom-disabled {
  6018. background-image:
  6019. url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif')
  6020. !important
  6021. }
  6022. .x-tab-closable em {
  6023. padding-right: 14px
  6024. }
  6025. .x-tab-close-btn {
  6026. position: absolute !important;
  6027. top: 3px;
  6028. right: 3px;
  6029. width: 11px;
  6030. height: 11px;
  6031. font-size: 0;
  6032. line-height: 0;
  6033. text-indent: -999px;
  6034. background: no-repeat;
  6035. background-image:
  6036. url('../../resources/themes/images/default/tab/tab-default-close.gif');
  6037. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60 );
  6038. opacity: 0.6
  6039. }
  6040. .x-tab-close-btn:hover {
  6041. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100 );
  6042. opacity: 1
  6043. }
  6044. .x-nbr .x-tab-top-over .x-frame-tl,.x-nbr .x-tab-top-over .x-frame-bl,.x-nbr .x-tab-top-over .x-frame-tr,.x-nbr .x-tab-top-over .x-frame-br,.x-nbr .x-tab-top-over .x-frame-tc,.x-nbr .x-tab-top-over .x-frame-bc
  6045. {
  6046. background-image:
  6047. url('../../resources/themes/images/default/tab/tab-default-top-over-corners.gif')
  6048. }
  6049. .x-nbr .x-tab-top-over .x-frame-ml,.x-nbr .x-tab-top-over .x-frame-mr {
  6050. background-image:
  6051. url('../../resources/themes/images/default/tab/tab-default-top-over-sides.gif')
  6052. }
  6053. .x-nbr .x-tab-top-over .x-frame-mc {
  6054. background-color: #e8f2ff;
  6055. background-repeat: repeat-x;
  6056. background-image:
  6057. url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif')
  6058. }
  6059. .x-nbr .x-tab-bottom-over .x-frame-tl,.x-nbr .x-tab-bottom-over .x-frame-bl,.x-nbr .x-tab-bottom-over .x-frame-tr,.x-nbr .x-tab-bottom-over .x-frame-br,.x-nbr .x-tab-bottom-over .x-frame-tc,.x-nbr .x-tab-bottom-over .x-frame-bc
  6060. {
  6061. background-image:
  6062. url('../../resources/themes/images/default/tab/tab-default-bottom-over-corners.gif')
  6063. }
  6064. .x-nbr .x-tab-bottom-over .x-frame-ml,.x-nbr .x-tab-bottom-over .x-frame-mr
  6065. {
  6066. background-image:
  6067. url('../../resources/themes/images/default/tab/tab-default-bottom-over-sides.gif')
  6068. }
  6069. .x-nbr .x-tab-bottom-over .x-frame-mc {
  6070. background-color: #e8f2ff;
  6071. background-repeat: repeat-x;
  6072. background-image:
  6073. url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif')
  6074. }
  6075. .x-nbr .x-tab-top-active .x-frame-tl,.x-nbr .x-tab-top-active .x-frame-bl,.x-nbr .x-tab-top-active .x-frame-tr,.x-nbr .x-tab-top-active .x-frame-br,.x-nbr .x-tab-top-active .x-frame-tc,.x-nbr .x-tab-top-active .x-frame-bc
  6076. {
  6077. background-image:
  6078. url('../../resources/themes/images/default/tab/tab-default-top-active-corners.gif')
  6079. }
  6080. .x-nbr .x-tab-top-active .x-frame-ml,.x-nbr .x-tab-top-active .x-frame-mr
  6081. {
  6082. background-image:
  6083. url('../../resources/themes/images/default/tab/tab-default-top-active-sides.gif')
  6084. }
  6085. .x-nbr .x-tab-top-active .x-frame-mc {
  6086. background-color: #deecfd;
  6087. background-repeat: repeat-x;
  6088. background-image:
  6089. url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif')
  6090. }
  6091. .x-nbr .x-tab-bottom-active .x-frame-tl,.x-nbr .x-tab-bottom-active .x-frame-bl,.x-nbr .x-tab-bottom-active .x-frame-tr,.x-nbr .x-tab-bottom-active .x-frame-br,.x-nbr .x-tab-bottom-active .x-frame-tc,.x-nbr .x-tab-bottom-active .x-frame-bc
  6092. {
  6093. background-image:
  6094. url('../../resources/themes/images/default/tab/tab-default-bottom-active-corners.gif')
  6095. }
  6096. .x-nbr .x-tab-bottom-active .x-frame-ml,.x-nbr .x-tab-bottom-active .x-frame-mr
  6097. {
  6098. background-image:
  6099. url('../../resources/themes/images/default/tab/tab-default-bottom-active-sides.gif')
  6100. }
  6101. .x-nbr .x-tab-bottom-active .x-frame-mc {
  6102. background-color: #deecfd;
  6103. background-repeat: repeat-x;
  6104. background-image:
  6105. url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif')
  6106. }
  6107. .x-nbr .x-tab-top-disabled .x-frame-tl,.x-nbr .x-tab-top-disabled .x-frame-bl,.x-nbr .x-tab-top-disabled .x-frame-tr,.x-nbr .x-tab-top-disabled .x-frame-br,.x-nbr .x-tab-top-disabled .x-frame-tc,.x-nbr .x-tab-top-disabled .x-frame-bc
  6108. {
  6109. background-image:
  6110. url('../../resources/themes/images/default/tab/tab-default-top-disabled-corners.gif')
  6111. }
  6112. .x-nbr .x-tab-top-disabled .x-frame-ml,.x-nbr .x-tab-top-disabled .x-frame-mr
  6113. {
  6114. background-image:
  6115. url('../../resources/themes/images/default/tab/tab-default-top-disabled-sides.gif')
  6116. }
  6117. .x-nbr .x-tab-top-disabled .x-frame-mc {
  6118. background-repeat: repeat-x;
  6119. background-image:
  6120. url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif')
  6121. }
  6122. .x-nbr .x-tab-bottom-disabled .x-frame-tl,.x-nbr .x-tab-bottom-disabled .x-frame-bl,.x-nbr .x-tab-bottom-disabled .x-frame-tr,.x-nbr .x-tab-bottom-disabled .x-frame-br,.x-nbr .x-tab-bottom-disabled .x-frame-tc,.x-nbr .x-tab-bottom-disabled .x-frame-bc
  6123. {
  6124. background-image:
  6125. url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-corners.gif')
  6126. }
  6127. .x-nbr .x-tab-bottom-disabled .x-frame-ml,.x-nbr .x-tab-bottom-disabled .x-frame-mr
  6128. {
  6129. background-image:
  6130. url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-sides.gif')
  6131. }
  6132. .x-nbr .x-tab-bottom-disabled .x-frame-mc {
  6133. background-repeat: repeat-x;
  6134. background-image:
  6135. url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif')
  6136. }
  6137. .x-tree-no-lines .x-tree-elbow {
  6138. background-color: transparent
  6139. }
  6140. .x-tree-no-lines .x-tree-elbow-end {
  6141. background-color: transparent
  6142. }
  6143. .x-tree-no-lines .x-tree-elbow-line {
  6144. background-color: transparent
  6145. }
  6146. .x-tree-arrows .x-tree-elbow-plus {
  6147. background: transparent no-repeat 0 0
  6148. }
  6149. .x-tree-arrows .x-tree-elbow-end-plus {
  6150. background: transparent no-repeat 0 0
  6151. }
  6152. .x-tree-arrows .x-tree-elbow-end-minus {
  6153. background: transparent no-repeat -16px 0
  6154. }
  6155. .x-tree-arrows .x-tree-elbow-minus {
  6156. background: transparent no-repeat -16px 0
  6157. }
  6158. .x-tree-arrows .x-tree-elbow {
  6159. background-color: transparent !important
  6160. }
  6161. .x-tree-arrows .x-tree-elbow-end {
  6162. background-color: transparent !important
  6163. }
  6164. .x-tree-arrows .x-tree-elbow-line {
  6165. background-color: transparent !important
  6166. }
  6167. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-plus,.x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-plus
  6168. {
  6169. background-position: -32px 0
  6170. }
  6171. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-minus,.x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-minus
  6172. {
  6173. background-position: -48px 0
  6174. }
  6175. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-plus,.x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-end-plus
  6176. {
  6177. background-position: -16px 0
  6178. }
  6179. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-plus,.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-end-plus
  6180. {
  6181. background-position: -48px 0
  6182. }
  6183. .x-tree-elbow-plus,.x-tree-elbow-minus,.x-tree-elbow-end-plus,.x-tree-elbow-end-minus
  6184. {
  6185. cursor: pointer
  6186. }
  6187. .x-tree-lines .x-tree-elbow {
  6188. background-image:
  6189. url('../../resources/themes/images/default/tree/elbow.gif')
  6190. }
  6191. .x-tree-lines .x-tree-elbow-end {
  6192. background-image:
  6193. url('../../resources/themes/images/default/tree/elbow-end.gif')
  6194. }
  6195. .x-tree-lines .x-tree-elbow-plus {
  6196. background-image:
  6197. url('../../resources/themes/images/default/tree/elbow-plus.gif')
  6198. }
  6199. .x-tree-lines .x-tree-elbow-end-plus {
  6200. background-image:
  6201. url('../../resources/themes/images/default/tree/elbow-end-plus.gif')
  6202. }
  6203. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus {
  6204. background-image:
  6205. url('../../resources/themes/images/default/tree/elbow-minus.gif')
  6206. }
  6207. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  6208. background-image:
  6209. url('../../resources/themes/images/default/tree/elbow-end-minus.gif')
  6210. }
  6211. .x-tree-lines .x-tree-elbow-line {
  6212. background-image:
  6213. url('../../resources/themes/images/default/tree/elbow-line.gif')
  6214. }
  6215. .x-tree-no-lines .x-tree-elbow-plus,.x-tree-no-lines .x-tree-elbow-end-plus
  6216. {
  6217. background-image:
  6218. url('../../resources/themes/images/default/tree/elbow-plus-nl.gif')
  6219. }
  6220. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-plus,.x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus
  6221. {
  6222. background-image:
  6223. url('../../resources/themes/images/default/tree/elbow-end-minus-nl.gif')
  6224. }
  6225. .x-tree-arrows .x-tree-elbow-plus,.x-tree-arrows .x-tree-elbow-minus,.x-tree-arrows .x-tree-elbow-end-plus,.x-tree-arrows .x-tree-elbow-end-minus
  6226. {
  6227. /* background-image:
  6228. url('../../resources/themes/images/default/tree/arrows.gif') */
  6229. background-image: url('#');
  6230. }
  6231. .x-tree-icon {
  6232. margin-right: 3px
  6233. }
  6234. .x-tree-elbow,.x-tree-elbow-end,.x-tree-elbow-plus,.x-tree-elbow-end-plus,.x-tree-elbow-empty,.x-tree-elbow-line
  6235. {
  6236. height: 18px;
  6237. width: 16px
  6238. }
  6239. .x-tree-icon-leaf {
  6240. width: 16px;
  6241. background-image:
  6242. url('../../resources/themes/images/default/tree/leaf.gif')
  6243. }
  6244. .x-tree-icon-parent {
  6245. width: 16px;
  6246. background-image:
  6247. url('../../resources/themes/images/default/tree/folder.gif')
  6248. }
  6249. .x-grid-tree-node-expanded .x-tree-icon-parent {
  6250. background-image:
  6251. url('../../resources/themes/images/default/tree/folder-open.gif')
  6252. }
  6253. .x-grid-rowbody {
  6254. padding: 0
  6255. }
  6256. .x-tree-panel .x-grid-cell-inner {
  6257. padding: 0px
  6258. }
  6259. .x-tree-panel .x-grid-row .x-grid-cell {
  6260. border: none
  6261. }
  6262. .x-tree-panel .x-grid-row .x-grid-cell-inner {
  6263. height: 18px;
  6264. line-height: 18px;
  6265. cursor: pointer;
  6266. white-space: nowrap;
  6267. vertical-align: middle
  6268. }
  6269. .x-tree-panel .x-grid-row .x-grid-cell-inner img {
  6270. margin-top: 0;
  6271. display: inline-block;
  6272. vertical-align: top
  6273. }
  6274. .x-tree-checkbox {
  6275. margin: 2px 3px 0 0;
  6276. display: inline-block;
  6277. vertical-align: top;
  6278. width: 13px;
  6279. height: 13px;
  6280. background: no-repeat;
  6281. background-image:
  6282. url('../../resources/themes/images/default/form/checkbox.gif');
  6283. overflow: hidden;
  6284. padding: 0;
  6285. border: 0
  6286. }
  6287. .x-tree-checkbox::-moz-focus-inner {
  6288. padding: 0;
  6289. border: 0
  6290. }
  6291. .x-nbr.x-ie .x-tree-checkbox {
  6292. font-size: 0
  6293. }
  6294. .x-tree-checkbox-checked {
  6295. background-position: 0 -13px
  6296. }
  6297. .x-tree-panel .x-grid-cell-inner {
  6298. border-width: 0 !important
  6299. }
  6300. .x-ie6 .x-tree-panel .x-grid-row .x-grid-cell-inner img,.x-quirks .x-ie .x-tree-panel .x-grid-row .x-grid-cell-inner img
  6301. {
  6302. margin-top: -1px;
  6303. vertical-align: middle
  6304. }
  6305. .x-strict .x-ie7 .x-tree-panel .x-grid-row .x-grid-cell-inner img {
  6306. margin-top: -3px;
  6307. vertical-align: middle
  6308. }
  6309. .x-ie6 .x-tree-checkbox,.x-quirks .x-ie7 .x-tree-checkbox {
  6310. margin-top: 0;
  6311. vertical-align: middle
  6312. }
  6313. .x-strict .x-ie7 .x-tree-checkbox {
  6314. margin-top: -2px;
  6315. vertical-align: middle
  6316. }
  6317. .x-tree-drop-ok-append .x-dd-drop-icon {
  6318. background-image:
  6319. url('../../resources/themes/images/default/tree/drop-append.gif')
  6320. }
  6321. .x-tree-drop-ok-above .x-dd-drop-icon {
  6322. background-image:
  6323. url('../../resources/themes/images/default/tree/drop-above.gif')
  6324. }
  6325. .x-tree-drop-ok-below .x-dd-drop-icon {
  6326. background-image:
  6327. url('../../resources/themes/images/default/tree/drop-below.gif')
  6328. }
  6329. .x-tree-drop-ok-between .x-dd-drop-icon {
  6330. background-image:
  6331. url('../../resources/themes/images/default/tree/drop-between.gif')
  6332. }
  6333. .x-grid-tree-loading .x-tree-icon {
  6334. background-image:
  6335. url('../../resources/themes/images/default/tree/loading.gif')
  6336. }
  6337. .x-tree-ddindicator {
  6338. height: 1px;
  6339. border-width: 1px 0px 0px;
  6340. border-style: dotted;
  6341. border-color: green
  6342. }
  6343. .x-grid-tree-loading span {
  6344. font-style: italic;
  6345. color: #444444
  6346. }
  6347. .x-tree-animator-wrap {
  6348. overflow: hidden
  6349. }
  6350. .x-surface {
  6351. display: -moz-inline-box;
  6352. -moz-box-orient: vertical;
  6353. display: inline-block;
  6354. vertical-align: middle;
  6355. *vertical-align: auto
  6356. }
  6357. .x-surface {
  6358. *display: inline
  6359. }
  6360. .rvml {
  6361. behavior: url(#default#VML)
  6362. }
  6363. .x-surface tspan {
  6364. user-select: none;
  6365. -o-user-select: none;
  6366. -ms-user-select: none;
  6367. -moz-user-select: -moz-none;
  6368. -webkit-user-select: none;
  6369. cursor: default
  6370. }
  6371. .x-vml-sprite {
  6372. position: absolute;
  6373. left: 0;
  6374. top: 0;
  6375. width: 1px;
  6376. height: 1px
  6377. }
  6378. .x-vml-group {
  6379. position: absolute;
  6380. left: 0;
  6381. top: 0;
  6382. width: 1000px;
  6383. height: 1000px
  6384. }
  6385. .x-vml-measure-span {
  6386. position: absolute;
  6387. left: -9999em;
  6388. top: -9999em;
  6389. padding: 0;
  6390. margin: 0;
  6391. display: inline
  6392. }
  6393. .x-vml-base {
  6394. position: relative;
  6395. top: 0;
  6396. left: 0;
  6397. overflow: hidden;
  6398. display: inline-block
  6399. }
  6400. .x-vml-base {
  6401. position: relative;
  6402. top: 0;
  6403. left: 0;
  6404. overflow: hidden;
  6405. display: inline-block
  6406. }
  6407. .x-viewport,.x-viewport body {
  6408. margin: 0;
  6409. padding: 0;
  6410. border: 0 none;
  6411. overflow: hidden;
  6412. height: 100%
  6413. }
  6414. .x-dd-drag-repair .x-dd-drag-ghost {
  6415. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60 );
  6416. opacity: 0.6
  6417. }
  6418. .x-dd-drag-repair .x-dd-drop-icon {
  6419. display: none
  6420. }
  6421. .x-dd-drag-ghost {
  6422. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85 );
  6423. opacity: 0.85;
  6424. padding: 5px;
  6425. padding-left: 20px;
  6426. white-space: nowrap;
  6427. color: #000;
  6428. font: normal 11px tahoma, arial, verdana, sans-serif;
  6429. border: 1px solid;
  6430. border-color: #ddd #bbb #bbb #ddd;
  6431. background-color: #fff
  6432. }
  6433. .x-dd-drop-icon {
  6434. position: absolute;
  6435. top: 3px;
  6436. left: 3px;
  6437. display: block;
  6438. width: 16px;
  6439. height: 16px;
  6440. background-color: transparent;
  6441. background-position: center;
  6442. background-repeat: no-repeat;
  6443. z-index: 1
  6444. }
  6445. .x-view-selector {
  6446. position: absolute;
  6447. left: 0;
  6448. top: 0;
  6449. width: 0;
  6450. background-color: #c3daf9;
  6451. border: 1px dotted #3399bb;
  6452. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50 );
  6453. opacity: 0.5;
  6454. zoom: 1
  6455. }
  6456. .x-dd-drop-nodrop .x-dd-drop-icon {
  6457. background-image:
  6458. url('../../resources/themes/images/default/dd/drop-no.gif')
  6459. }
  6460. .x-dd-drop-ok .x-dd-drop-icon {
  6461. background-image:
  6462. url('../../resources/themes/images/default/dd/drop-yes.gif')
  6463. }
  6464. .x-dd-drop-ok-add .x-dd-drop-icon {
  6465. background-image:
  6466. url('../../resources/themes/images/default/dd/drop-add.gif')
  6467. }
  6468. .x-resizable-handle {
  6469. position: absolute;
  6470. z-index: 100;
  6471. font-size: 1px;
  6472. line-height: 6px;
  6473. overflow: hidden;
  6474. zoom: 1;
  6475. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0 );
  6476. opacity: 0;
  6477. background-color: #fff
  6478. }
  6479. .x-resizable-handle-east {
  6480. width: 6px;
  6481. height: 100%;
  6482. right: 0;
  6483. top: 0
  6484. }
  6485. .x-resizable-over .x-resizable-handle-east {
  6486. cursor: e-resize
  6487. }
  6488. .x-resizable-handle-south {
  6489. width: 100%;
  6490. height: 6px;
  6491. left: 0;
  6492. bottom: 0
  6493. }
  6494. .x-resizable-over .x-resizable-handle-south {
  6495. cursor: s-resize
  6496. }
  6497. .x-resizable-handle-west {
  6498. width: 6px;
  6499. height: 100%;
  6500. left: 0;
  6501. top: 0
  6502. }
  6503. .x-resizable-over .x-resizable-handle-west {
  6504. cursor: w-resize
  6505. }
  6506. .x-resizable-handle-north {
  6507. width: 100%;
  6508. height: 6px;
  6509. left: 0;
  6510. top: 0
  6511. }
  6512. .x-resizable-over .x-resizable-handle-north {
  6513. cursor: n-resize
  6514. }
  6515. .x-resizable-handle-southeast {
  6516. width: 6px;
  6517. height: 6px;
  6518. right: 0;
  6519. bottom: 0;
  6520. z-index: 101
  6521. }
  6522. .x-resizable-over .x-resizable-handle-southeast {
  6523. cursor: se-resize
  6524. }
  6525. .x-resizable-handle-northwest {
  6526. width: 6px;
  6527. height: 6px;
  6528. left: 0;
  6529. top: 0;
  6530. z-index: 101
  6531. }
  6532. .x-resizable-over .x-resizable-handle-northwest {
  6533. cursor: nw-resize
  6534. }
  6535. .x-resizable-handle-northeast {
  6536. width: 6px;
  6537. height: 6px;
  6538. right: 0;
  6539. top: 0;
  6540. z-index: 101
  6541. }
  6542. .x-resizable-over .x-resizable-handle-northeast {
  6543. cursor: ne-resize
  6544. }
  6545. .x-resizable-handle-southwest {
  6546. width: 6px;
  6547. height: 6px;
  6548. left: 0;
  6549. bottom: 0;
  6550. z-index: 101
  6551. }
  6552. .x-resizable-over .x-resizable-handle-southwest {
  6553. cursor: sw-resize
  6554. }
  6555. .x-ie .x-resizable-handle-east {
  6556. margin-right: -1px
  6557. }
  6558. .x-ie .x-resizable-handle-south {
  6559. margin-bottom: -1px
  6560. }
  6561. .x-resizable-over .x-resizable-handle,.x-resizable-pinned .x-resizable-handle
  6562. {
  6563. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100 );
  6564. opacity: 1
  6565. }
  6566. .x-window .x-window-handle {
  6567. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0 );
  6568. opacity: 0
  6569. }
  6570. .x-window-collapsed .x-window-handle {
  6571. display: none
  6572. }
  6573. .x-resizable-proxy {
  6574. border: 1px dashed #3b5a82;
  6575. position: absolute;
  6576. left: 0;
  6577. top: 0;
  6578. overflow: hidden;
  6579. z-index: 50000
  6580. }
  6581. .x-resizable-overlay {
  6582. position: absolute;
  6583. left: 0;
  6584. top: 0;
  6585. width: 100%;
  6586. height: 100%;
  6587. display: none;
  6588. z-index: 200000;
  6589. background-color: #fff;
  6590. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0 );
  6591. opacity: 0
  6592. }
  6593. .x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west
  6594. {
  6595. background-position: left;
  6596. background-image:
  6597. url('../../resources/themes/images/default/sizer/e-handle.gif')
  6598. }
  6599. .x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north
  6600. {
  6601. background-position: top;
  6602. background-image:
  6603. url('../../resources/themes/images/default/sizer/s-handle.gif')
  6604. }
  6605. .x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast
  6606. {
  6607. background-position: top left;
  6608. background-image:
  6609. url('../../resources/themes/images/default/sizer/se-handle.gif')
  6610. }
  6611. .x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest
  6612. {
  6613. background-position: bottom right;
  6614. background-image:
  6615. url('../../resources/themes/images/default/sizer/nw-handle.gif')
  6616. }
  6617. .x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast
  6618. {
  6619. background-position: bottom left;
  6620. background-image:
  6621. url('../../resources/themes/images/default/sizer/ne-handle.gif')
  6622. }
  6623. .x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest
  6624. {
  6625. background-position: top right;
  6626. background-image:
  6627. url('../../resources/themes/images/default/sizer/sw-handle.gif')
  6628. }
  6629. .x-splitter .x-collapse-el {
  6630. position: absolute;
  6631. cursor: pointer;
  6632. background-color: transparent;
  6633. background-repeat: no-repeat !important
  6634. }
  6635. .x-layout-split-left,.x-layout-split-right {
  6636. top: 50%;
  6637. margin-top: -17px;
  6638. width: 5px;
  6639. height: 35px
  6640. }
  6641. .x-layout-split-top,.x-layout-split-bottom {
  6642. left: 50%;
  6643. width: 35px;
  6644. height: 5px;
  6645. margin-left: -17px
  6646. }
  6647. .x-layout-split-left {
  6648. background: no-repeat top right;
  6649. background-image:
  6650. url('../../resources/themes/images/default/util/splitter/mini-left.gif')
  6651. }
  6652. .x-layout-split-right {
  6653. background: no-repeat top left;
  6654. background-image:
  6655. url('../../resources/themes/images/default/util/splitter/mini-right.gif')
  6656. }
  6657. .x-layout-split-top {
  6658. background: no-repeat top left;
  6659. background-image:
  6660. url('../../resources/themes/images/default/util/splitter/mini-top.gif')
  6661. }
  6662. .x-layout-split-bottom {
  6663. background: no-repeat top left;
  6664. background-image:
  6665. url('../../resources/themes/images/default/util/splitter/mini-bottom.gif')
  6666. }
  6667. .x-splitter-collapsed .x-layout-split-left {
  6668. background: no-repeat top left;
  6669. background-image:
  6670. url('../../resources/themes/images/default/util/splitter/mini-right.gif')
  6671. }
  6672. .x-splitter-collapsed .x-layout-split-right {
  6673. background: no-repeat top right;
  6674. background-image:
  6675. url('../../resources/themes/images/default/util/splitter/mini-left.gif')
  6676. }
  6677. .x-splitter-collapsed .x-layout-split-top {
  6678. background: no-repeat top left;
  6679. background-image:
  6680. url('../../resources/themes/images/default/util/splitter/mini-bottom.gif')
  6681. }
  6682. .x-splitter-collapsed .x-layout-split-bottom {
  6683. background: no-repeat top left;
  6684. background-image:
  6685. url('../../resources/themes/images/default/util/splitter/mini-top.gif')
  6686. }
  6687. .x-splitter-horizontal {
  6688. cursor: e-resize;
  6689. cursor: row-resize;
  6690. font-size: 1px
  6691. }
  6692. .x-splitter-vertical {
  6693. cursor: e-resize;
  6694. cursor: col-resize;
  6695. font-size: 1px
  6696. }
  6697. .x-splitter-collapsed {
  6698. cursor: default
  6699. }
  6700. .x-splitter-active {
  6701. z-index: 4;
  6702. font-size: 1px;
  6703. background-color: #b4b4b4;
  6704. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80 );
  6705. opacity: 0.8
  6706. }
  6707. .x-splitter-active .x-collapse-el {
  6708. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30 );
  6709. opacity: 0.3
  6710. }
  6711. .x-proxy-el {
  6712. position: absolute;
  6713. background: #b4b4b4;
  6714. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80 );
  6715. opacity: 0.8
  6716. }
  6717. .x-docked {
  6718. position: absolute;
  6719. z-index: 1
  6720. }
  6721. .x-docked-top {
  6722. border-bottom-width: 0 !important
  6723. }
  6724. .x-docked-bottom {
  6725. border-top-width: 0 !important
  6726. }
  6727. .x-docked-left {
  6728. border-right-width: 0 !important
  6729. }
  6730. .x-docked-right {
  6731. border-left-width: 0 !important
  6732. }
  6733. .x-docked-noborder-top {
  6734. border-top-width: 0 !important
  6735. }
  6736. .x-docked-noborder-right {
  6737. border-right-width: 0 !important
  6738. }
  6739. .x-docked-noborder-bottom {
  6740. border-bottom-width: 0 !important
  6741. }
  6742. .x-docked-noborder-left {
  6743. border-left-width: 0 !important
  6744. }
  6745. .x-box-inner {
  6746. overflow: hidden;
  6747. zoom: 1;
  6748. position: relative;
  6749. left: 0;
  6750. top: 0
  6751. }
  6752. .x-box-item {
  6753. position: absolute !important;
  6754. left: 0;
  6755. top: 0
  6756. }
  6757. .x-box-layout-ct,.x-border-layout-ct {
  6758. overflow: hidden;
  6759. zoom: 1
  6760. }
  6761. .x-overflow-hidden {
  6762. overflow: hidden !important
  6763. }
  6764. .x-inline-children>* {
  6765. display: inline-block !important
  6766. }
  6767. .x-abs-layout-item {
  6768. position: absolute
  6769. }
  6770. .x-fit-item {
  6771. position: relative
  6772. }
  6773. .x-border-layout-ct {
  6774. background-color: #dfe8f6
  6775. }
  6776. .x-border-region-slide-in {
  6777. z-index: 5
  6778. }
  6779. .x-region-collapsed-placeholder {
  6780. z-index: 4
  6781. }
  6782. .x-accordion-hd .x-panel-header-text {
  6783. color: black;
  6784. font-weight: normal
  6785. }
  6786. .x-accordion-hd {
  6787. background: #d9e7f8 !important;
  6788. -moz-box-shadow: inset 0 0 0 0 #d9e7f8;
  6789. -webkit-box-shadow: inset 0 0 0 0 #d9e7f8;
  6790. -o-box-shadow: inset 0 0 0 0 #d9e7f8;
  6791. box-shadow: inset 0 0 0 0 #d9e7f8
  6792. }
  6793. .x-accordion-hd .x-tool-collapse-top,.x-accordion-hd .x-tool-collapse-right,.x-accordion-hd .x-tool-collapse-bottom,.x-accordion-hd .x-tool-collapse-left
  6794. {
  6795. background-position: 0 -255px
  6796. }
  6797. .x-accordion-hd .x-tool-expand-top,.x-accordion-hd .x-tool-expand-right,.x-accordion-hd .x-tool-expand-bottom,.x-accordion-hd .x-tool-expand-left
  6798. {
  6799. background-position: 0 -240px
  6800. }
  6801. .x-accordion-hd .x-tool-over .x-tool-collapse-top,.x-accordion-hd .x-tool-over .x-tool-collapse-right,.x-accordion-hd .x-tool-over .x-tool-collapse-bottom,.x-accordion-hd .x-tool-over .x-tool-collapse-left
  6802. {
  6803. background-position: -15px -255px
  6804. }
  6805. .x-accordion-hd .x-tool-over .x-tool-expand-top,.x-accordion-hd .x-tool-over .x-tool-expand-right,.x-accordion-hd .x-tool-over .x-tool-expand-bottom,.x-accordion-hd .x-tool-over .x-tool-expand-left
  6806. {
  6807. background-position: -15px -240px
  6808. }
  6809. .x-accordion-hd {
  6810. border-width: 1px 0 1px 0 !important;
  6811. padding: 4px 5px 5px 5px;
  6812. border-top-color: #f3f7fb !important
  6813. }
  6814. .x-accordion-body {
  6815. border-width: 0 !important
  6816. }
  6817. .x-accordion-hd-sibling-expanded {
  6818. border-top-color: #99bce8 !important;
  6819. -moz-box-shadow: inset 0 1px 0 0 #f3f7fb;
  6820. -webkit-box-shadow: inset 0 1px 0 0 #f3f7fb;
  6821. -o-box-shadow: inset 0 1px 0 0 #f3f7fb;
  6822. box-shadow: inset 0 1px 0 0 #f3f7fb
  6823. }
  6824. .x-accordion-hd-last-collapsed {
  6825. border-bottom-color: #d9e7f8 !important
  6826. }
  6827. .x-frame-tl,.x-frame-tr,.x-frame-tc,.x-frame-bl,.x-frame-br,.x-frame-bc
  6828. {
  6829. overflow: hidden;
  6830. background-repeat: no-repeat
  6831. }
  6832. .x-frame-tc,.x-frame-bc {
  6833. background-repeat: repeat-x
  6834. }
  6835. .x-frame-mc {
  6836. position: relative;
  6837. background-repeat: repeat-x;
  6838. overflow: hidden
  6839. }
  6840. .x-box-scroller-left {
  6841. float: left;
  6842. height: 100%;
  6843. z-index: 5
  6844. }
  6845. .x-box-scroller-left .x-toolbar-scroll-left,.x-box-scroller-left .x-tabbar-scroll-left
  6846. {
  6847. width: 18px;
  6848. position: relative;
  6849. cursor: pointer;
  6850. height: 20px;
  6851. background: transparent no-repeat -18px 0;
  6852. background-image:
  6853. url('../../resources/themes/images/default/tab-bar/scroll-left.gif')
  6854. }
  6855. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  6856. background-position: 0 0
  6857. }
  6858. .x-box-scroller-left .x-toolbar-scroll-left-disabled,.x-box-scroller-left .x-tabbar-scroll-left-disabled
  6859. {
  6860. background-position: -18px 0;
  6861. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50 );
  6862. opacity: 0.5;
  6863. cursor: default
  6864. }
  6865. .x-box-scroller-left .x-toolbar-scroll-left {
  6866. background-image:
  6867. url('../../resources/themes/images/default/toolbar/scroll-left.gif');
  6868. background-position: -14px 0
  6869. }
  6870. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  6871. background-position: 0 0
  6872. }
  6873. .x-box-scroller-left .x-toolbar-scroll-left-disabled {
  6874. background-position: -14px 0
  6875. }
  6876. .x-box-scroller-left .x-toolbar-scroll-left {
  6877. width: 14px;
  6878. height: 22px;
  6879. border-bottom: 1px solid #8db2e3
  6880. }
  6881. .x-horizontal-box-overflow-body {
  6882. float: left
  6883. }
  6884. .x-box-scroller-right {
  6885. float: right;
  6886. height: 100%;
  6887. z-index: 5
  6888. }
  6889. .x-box-scroller-right .x-toolbar-scroll-right,.x-box-scroller-right .x-tabbar-scroll-right
  6890. {
  6891. width: 18px;
  6892. position: relative;
  6893. cursor: pointer;
  6894. height: 20px;
  6895. background: transparent no-repeat 0 0;
  6896. background-image:
  6897. url('../../resources/themes/images/default/tab-bar/scroll-right.gif')
  6898. }
  6899. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  6900. background-position: -18px 0
  6901. }
  6902. .x-box-scroller-right .x-toolbar-scroll-right-disabled,.x-box-scroller-right .x-tabbar-scroll-right-disabled
  6903. {
  6904. background-position: 0 0;
  6905. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50 );
  6906. opacity: 0.5;
  6907. cursor: default
  6908. }
  6909. .x-box-scroller-right .x-toolbar-scroll-right {
  6910. background-image:
  6911. url('../../resources/themes/images/default/toolbar/scroll-right.gif')
  6912. }
  6913. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  6914. background-position: -14px 0
  6915. }
  6916. .x-box-scroller-right .x-toolbar-scroll-right-disabled {
  6917. background-position: 0 0
  6918. }
  6919. .x-box-scroller-right .x-toolbar-scroll-right {
  6920. width: 14px;
  6921. height: 22px;
  6922. border-bottom: 1px solid #8db2e3
  6923. }
  6924. .x-box-scroller-top .x-box-scroller {
  6925. line-height: 0;
  6926. font-size: 0
  6927. }
  6928. .x-box-scroller-top .x-menu-scroll-top {
  6929. background: transparent no-repeat center center;
  6930. background-image:
  6931. url('../../resources/themes/images/default/layout/mini-top.gif');
  6932. height: 8px;
  6933. cursor: pointer
  6934. }
  6935. .x-box-scroller-bottom .x-box-scroller {
  6936. line-height: 0;
  6937. font-size: 0
  6938. }
  6939. .x-box-scroller-bottom .x-menu-scroll-bottom {
  6940. background: transparent no-repeat center center;
  6941. background-image:
  6942. url('../../resources/themes/images/default/layout/mini-bottom.gif');
  6943. height: 8px;
  6944. cursor: pointer
  6945. }
  6946. .x-box-menu-right {
  6947. float: right;
  6948. padding-right: 2px
  6949. }
  6950. .x-column {
  6951. float: left
  6952. }
  6953. .x-ie6 .x-column {
  6954. display: inline
  6955. }
  6956. .x-tool {
  6957. height: 15px
  6958. }
  6959. .x-tool img {
  6960. overflow: hidden;
  6961. width: 15px;
  6962. height: 15px;
  6963. cursor: pointer;
  6964. background-color: transparent;
  6965. background-repeat: no-repeat;
  6966. background-image:
  6967. url('../../resources/themes/images/default/tools/tool-sprites.gif');
  6968. margin: 0
  6969. }
  6970. .x-panel-header-horizontal .x-tool,.x-window-header-horizontal .x-tool {
  6971. margin-left: 2px
  6972. }
  6973. .x-panel-header-vertical .x-tool,.x-window-header-vertical .x-tool {
  6974. margin-bottom: 2px
  6975. }
  6976. .x-tool-placeholder {
  6977. visibility: hidden
  6978. }
  6979. .x-tool-toggle {
  6980. background-position: 0 -60px
  6981. }
  6982. .x-tool-over .x-tool-toggle {
  6983. background-position: -15px -60px
  6984. }
  6985. .x-panel-collapsed .x-tool-toggle,.x-fieldset-collapsed .x-tool-toggle {
  6986. background-position: 0 -75px
  6987. }
  6988. .x-panel-collapsed .x-tool-over .x-tool-toggle,.x-fieldset-collapsed .x-tool-over .x-tool-toggle
  6989. {
  6990. background-position: -15px -75px
  6991. }
  6992. .x-tool-close {
  6993. background-position: 0 0
  6994. }
  6995. .x-tool-minimize {
  6996. background-position: 0 -15px
  6997. }
  6998. .x-tool-maximize {
  6999. background-position: 0 -30px
  7000. }
  7001. .x-tool-restore {
  7002. background-position: 0 -45px
  7003. }
  7004. .x-tool-gear {
  7005. background-position: 0 -90px
  7006. }
  7007. .x-tool-prev {
  7008. background-position: 0 -105px
  7009. }
  7010. .x-tool-next {
  7011. background-position: 0 -120px
  7012. }
  7013. .x-tool-pin {
  7014. background-position: 0 -135px
  7015. }
  7016. .x-tool-unpin {
  7017. background-position: 0 -150px
  7018. }
  7019. .x-tool-right {
  7020. background-position: 0 -165px
  7021. }
  7022. .x-tool-left {
  7023. background-position: 0 -180px
  7024. }
  7025. .x-tool-help {
  7026. background-position: 0 -300px
  7027. }
  7028. .x-tool-save {
  7029. background-position: 0 -285px
  7030. }
  7031. .x-tool-search {
  7032. background-position: 0 -270px
  7033. }
  7034. .x-tool-minus {
  7035. background-position: 0 -255px
  7036. }
  7037. .x-tool-plus {
  7038. background-position: 0 -240px
  7039. }
  7040. .x-tool-refresh {
  7041. background-position: 0 -225px
  7042. }
  7043. .x-tool-up {
  7044. background-position: 0 -210px
  7045. }
  7046. .x-tool-down {
  7047. background-position: 0 -195px
  7048. }
  7049. .x-tool-move {
  7050. background-position: 0 -375px
  7051. }
  7052. .x-tool-resize {
  7053. background-position: 0 -360px
  7054. }
  7055. .x-tool-collapse {
  7056. background-position: 0 -345px
  7057. }
  7058. .x-tool-expand {
  7059. background-position: 0 -330px
  7060. }
  7061. .x-tool-print {
  7062. background-position: 0 -315px
  7063. }
  7064. .x-tool-expand-bottom,.x-tool-collapse-bottom {
  7065. background-position: 0 -195px
  7066. }
  7067. .x-tool-expand-top,.x-tool-collapse-top {
  7068. background-position: 0 -210px
  7069. }
  7070. .x-tool-expand-left,.x-tool-collapse-left {
  7071. background-position: 0 -180px
  7072. }
  7073. .x-tool-expand-right,.x-tool-collapse-right {
  7074. background-position: 0 -165px
  7075. }
  7076. .x-tool-over .x-tool-close {
  7077. background-position: -15px 0
  7078. }
  7079. .x-tool-over .x-tool-minimize {
  7080. background-position: -15px -15px
  7081. }
  7082. .x-tool-over .x-tool-maximize {
  7083. background-position: -15px -30px
  7084. }
  7085. .x-tool-over .x-tool-restore {
  7086. background-position: -15px -45px
  7087. }
  7088. .x-tool-over .x-tool-gear {
  7089. background-position: -15px -90px
  7090. }
  7091. .x-tool-over .x-tool-prev {
  7092. background-position: -15px -105px
  7093. }
  7094. .x-tool-over .x-tool-next {
  7095. background-position: -15px -120px
  7096. }
  7097. .x-tool-over .x-tool-pin {
  7098. background-position: -15px -135px
  7099. }
  7100. .x-tool-over .x-tool-unpin {
  7101. background-position: -15px -150px
  7102. }
  7103. .x-tool-over .x-tool-right {
  7104. background-position: -15px -165px
  7105. }
  7106. .x-tool-over .x-tool-left {
  7107. background-position: -15px -180px
  7108. }
  7109. .x-tool-over .x-tool-down {
  7110. background-position: -15px -195px
  7111. }
  7112. .x-tool-over .x-tool-up {
  7113. background-position: -15px -210px
  7114. }
  7115. .x-tool-over .x-tool-refresh {
  7116. background-position: -15px -225px
  7117. }
  7118. .x-tool-over .x-tool-plus {
  7119. background-position: -15px -240px
  7120. }
  7121. .x-tool-over .x-tool-minus {
  7122. background-position: -15px -255px
  7123. }
  7124. .x-tool-over .x-tool-search {
  7125. background-position: -15px -270px
  7126. }
  7127. .x-tool-over .x-tool-save {
  7128. background-position: -15px -285px
  7129. }
  7130. .x-tool-over .x-tool-help {
  7131. background-position: -15px -300px
  7132. }
  7133. .x-tool-over .x-tool-print {
  7134. background-position: -15px -315px
  7135. }
  7136. .x-tool-over .x-tool-expand {
  7137. background-position: -15px -330px
  7138. }
  7139. .x-tool-over .x-tool-collapse {
  7140. background-position: -15px -345px
  7141. }
  7142. .x-tool-over .x-tool-resize {
  7143. background-position: -15px -360px
  7144. }
  7145. .x-tool-over .x-tool-move {
  7146. background-position: -15px -375px
  7147. }
  7148. .x-tool-over .x-tool-expand-bottom,.x-tool-over .x-tool-collapse-bottom
  7149. {
  7150. background-position: -15px -195px
  7151. }
  7152. .x-tool-over .x-tool-expand-top,.x-tool-over .x-tool-collapse-top {
  7153. background-position: -15px -210px
  7154. }
  7155. .x-tool-over .x-tool-expand-left,.x-tool-over .x-tool-collapse-left {
  7156. background-position: -15px -180px
  7157. }
  7158. .x-tool-over .x-tool-expand-right,.x-tool-over .x-tool-collapse-right {
  7159. background-position: -15px -165px
  7160. }
  7161. .x-horizontal-scroller-present .x-grid-body {
  7162. border-bottom-width: 0px
  7163. }
  7164. .x-vertical-scroller-present .x-grid-body {
  7165. border-right-width: 0px
  7166. }
  7167. .x-scroller {
  7168. overflow: hidden
  7169. }
  7170. .x-scroller-vertical {
  7171. border: 1px solid #99bce8;
  7172. border-top-color: #c5c5c5
  7173. }
  7174. .x-scroller-horizontal {
  7175. border: 1px solid #99bce8
  7176. }
  7177. .x-vertical-scroller-present .x-scroller-horizontal {
  7178. border-right-width: 0px
  7179. }
  7180. .x-scroller-ct {
  7181. overflow: hidden;
  7182. position: absolute;
  7183. margin: 0;
  7184. padding: 0;
  7185. border: none;
  7186. left: 0px;
  7187. top: 0px;
  7188. box-sizing: content-box !important;
  7189. -ms-box-sizing: content-box !important;
  7190. -moz-box-sizing: content-box !important;
  7191. -webkit-box-sizing: content-box !important
  7192. }
  7193. .x-scroller-vertical .x-scroller-ct {
  7194. overflow-y: scroll
  7195. }
  7196. .x-scroller-horizontal .x-scroller-ct {
  7197. overflow-x: scroll
  7198. }
  7199. .x-html html,.x-html address,.x-html blockquote,.x-html body,.x-html dd,.x-html div,.x-html dl,.x-html dt,.x-html fieldset,.x-html form,.x-html frame,.x-html frameset,.x-html h1,.x-html h2,.x-html h3,.x-html h4,.x-html h5,.x-html h6,.x-html noframes,.x-html ol,.x-html p,.x-html ul,.x-html center,.x-html dir,.x-html hr,.x-html menu,.x-html pre
  7200. {
  7201. display: block
  7202. }
  7203. .x-html li {
  7204. display: list-item;
  7205. list-style: disc
  7206. }
  7207. .x-html head {
  7208. display: none
  7209. }
  7210. .x-html table {
  7211. display: table
  7212. }
  7213. .x-html tr {
  7214. display: table-row
  7215. }
  7216. .x-html thead {
  7217. display: table-header-group
  7218. }
  7219. .x-html tbody {
  7220. display: table-row-group
  7221. }
  7222. .x-html tfoot {
  7223. display: table-footer-group
  7224. }
  7225. .x-html col {
  7226. display: table-column
  7227. }
  7228. .x-html colgroup {
  7229. display: table-column-group
  7230. }
  7231. .x-html td,.x-html th {
  7232. display: table-cell
  7233. }
  7234. .x-html caption {
  7235. display: table-caption
  7236. }
  7237. .x-html th {
  7238. font-weight: bolder;
  7239. text-align: center
  7240. }
  7241. .x-html caption {
  7242. text-align: center
  7243. }
  7244. .x-html body {
  7245. margin: 8px
  7246. }
  7247. .x-html h1 {
  7248. font-size: 2em;
  7249. margin: .67em 0
  7250. }
  7251. .x-html h2 {
  7252. font-size: 1.5em;
  7253. margin: .75em 0
  7254. }
  7255. .x-html h3 {
  7256. font-size: 1.17em;
  7257. margin: .83em 0
  7258. }
  7259. .x-html h4,.x-html p,.x-html blockquote,.x-html ul,.x-html fieldset,.x-html form,.x-html ol,.x-html dl,.x-html dir,.x-html menu
  7260. {
  7261. margin: 1.12em 0
  7262. }
  7263. .x-html h5 {
  7264. font-size: .83em;
  7265. margin: 1.5em 0
  7266. }
  7267. .x-html h6 {
  7268. font-size: .75em;
  7269. margin: 1.67em 0
  7270. }
  7271. .x-html h1,.x-html h2,.x-html h3,.x-html h4,.x-html h5,.x-html h6,.x-html b,.x-html strong
  7272. {
  7273. font-weight: bolder
  7274. }
  7275. .x-html blockquote {
  7276. margin-left: 40px;
  7277. margin-right: 40px
  7278. }
  7279. .x-html i,.x-html cite,.x-html em,.x-html var,.x-html address {
  7280. font-style: italic
  7281. }
  7282. .x-html pre,.x-html tt,.x-html code,.x-html kbd,.x-html samp {
  7283. font-family: monospace
  7284. }
  7285. .x-html pre {
  7286. white-space: pre
  7287. }
  7288. .x-html button,.x-html textarea,.x-html input,.x-html select {
  7289. display: inline-block
  7290. }
  7291. .x-html big {
  7292. font-size: 1.17em
  7293. }
  7294. .x-html small,.x-html sub,.x-html sup {
  7295. font-size: .83em
  7296. }
  7297. .x-html sub {
  7298. vertical-align: sub
  7299. }
  7300. .x-html sup {
  7301. vertical-align: super
  7302. }
  7303. .x-html table {
  7304. border-spacing: 2px
  7305. }
  7306. .x-html thead,.x-html tbody,.x-html tfoot {
  7307. vertical-align: middle
  7308. }
  7309. .x-html td,.x-html th {
  7310. vertical-align: inherit
  7311. }
  7312. .x-html s,.x-html strike,.x-html del {
  7313. text-decoration: line-through
  7314. }
  7315. .x-html hr {
  7316. border: 1px inset
  7317. }
  7318. .x-html ol,.x-html ul,.x-html dir,.x-html menu,.x-html dd {
  7319. margin-left: 40px
  7320. }
  7321. .x-html ul,.x-html menu,.x-html dir {
  7322. list-style-type: disc
  7323. }
  7324. .x-html ol {
  7325. list-style-type: decimal
  7326. }
  7327. .x-html ol ul,.x-html ul ol,.x-html ul ul,.x-html ol ol {
  7328. margin-top: 0;
  7329. margin-bottom: 0
  7330. }
  7331. .x-html u,.x-html ins {
  7332. text-decoration: underline
  7333. }
  7334. .x-html br:before {
  7335. content: "\A"
  7336. }
  7337. .x-html :before,.x-html :after {
  7338. white-space: pre-line
  7339. }
  7340. .x-html center {
  7341. text-align: center
  7342. }
  7343. .x-html :link,.x-html :visited {
  7344. text-decoration: underline
  7345. }
  7346. .x-html :focus {
  7347. outline: invert dotted thin
  7348. }
  7349. .x-html BDO[DIR="ltr"] {
  7350. direction: ltr;
  7351. unicode-bidi: bidi-override
  7352. }
  7353. .x-html BDO[DIR="rtl"] {
  7354. direction: rtl;
  7355. unicode-bidi: bidi-override
  7356. }