xpknu_theme2.css 263 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536
  1. /*******************************************/
  2. /***** 프로젝트명 : XPLATFORM Default Theme ********/
  3. /***** 작성일 : ********/
  4. /***** 작성자 : ********/
  5. /***** 배포일 : ********/
  6. /***** 수정자 : ********/
  7. /***** 수정일 : ********/
  8. /*******************************************/
  9. /***** FrameObject Group Start *****/
  10. /*** MainFrame ***/
  11. MainFrame
  12. {
  13. background : #F9F9F9;
  14. border : 2 solid #262D39;
  15. bordertype : normal;
  16. statusbarheight : 25;
  17. titlebarheight : 22;
  18. color : #ffffff;
  19. }
  20. MainFrame:deactivate
  21. {
  22. border : 2 solid #606670;
  23. }
  24. /*** TitlebarForm ***/
  25. MainFrame>TitlebarForm
  26. {
  27. background : #262D39;
  28. border : 0 solid #26323c, 0 solid #26323c, 1 solid #181E28, 0 solid #26323c;
  29. bordertype : normal;
  30. align : left middle;
  31. font : Dotum,9,bold;
  32. color : #F1EFEE;
  33. padding : 0 0 0 -80;
  34. icon : URL('IMG::KU2_031.ico');
  35. }
  36. MainFrame>TitlebarForm:deactivate
  37. {
  38. background : #5D626B;
  39. color : #CBCBCC;
  40. }
  41. MainFrame>TitlebarForm>#minbutton
  42. {
  43. background : transparent;
  44. border : 0 none;
  45. bordertype : normal ;
  46. margin : 0 0 0 4;
  47. image : theme://images/btn_TitlebarForm_Min_N.png;
  48. imagealign : center middle;
  49. cursor : hand;
  50. }
  51. MainFrame>TitlebarForm>#minbutton:mouseover
  52. {
  53. image : theme://images/btn_TitlebarForm_Min_O.png;
  54. }
  55. MainFrame>TitlebarForm>#minbutton:pushed
  56. {
  57. image : theme://images/btn_TitlebarForm_Min_P.png;
  58. pusheddrawoffset : 0 0;
  59. }
  60. MainFrame>TitlebarForm>#maxbutton
  61. {
  62. background : transparent;
  63. border : 0 none;
  64. bordertype : normal;
  65. margin : 0 0 0 2;
  66. image : theme://images/btn_TitlebarForm_Max_N.png;
  67. imagealign : center middle;
  68. cursor : hand;
  69. }
  70. MainFrame>TitlebarForm>#maxbutton:mouseover
  71. {
  72. image : theme://images/btn_TitlebarForm_Max_O.png;
  73. }
  74. MainFrame>TitlebarForm>#maxbutton:pushed
  75. {
  76. image : theme://images/btn_TitlebarForm_Max_P.png;
  77. pusheddrawoffset : 0 0;
  78. }
  79. MainFrame>TitlebarForm>#maxbutton:disabled
  80. {
  81. image : theme://images/btn_TitlebarForm_Max_D.png;
  82. }
  83. MainFrame>TitlebarForm>#normalbutton
  84. {
  85. background : transparent;
  86. border : 0 none;
  87. bordertype : normal;
  88. margin : 0 0 0 2;
  89. image : theme://images/btn_TitlebarForm_Nor_N.png;
  90. imagealign : center middle;
  91. cursor : hand;
  92. }
  93. MainFrame>TitlebarForm>#normalbutton:mouseover
  94. {
  95. image : theme://images/btn_TitlebarForm_Nor_O.png;
  96. }
  97. MainFrame>TitlebarForm>#normalbutton:pushed
  98. {
  99. image : theme://images/btn_TitlebarForm_Nor_P.png;
  100. pusheddrawoffset : 0 0;
  101. }
  102. MainFrame>TitlebarForm>#closebutton
  103. {
  104. background : transparent;
  105. border : 0 none;
  106. bordertype : normal;
  107. margin : 0 0 0 2;
  108. image : theme://images/btn_TitlebarForm_Close_N.png;
  109. imagealign : center middle;
  110. cursor : hand;
  111. }
  112. MainFrame>TitlebarForm>#closebutton:mouseover
  113. {
  114. image : theme://images/btn_TitlebarForm_Close_O.png;
  115. }
  116. MainFrame>TitlebarForm>#closebutton:pushed
  117. {
  118. image : theme://images/btn_TitlebarForm_Close_P.png;
  119. pusheddrawoffset : 0 0;
  120. }
  121. /*** Frame Group ***/
  122. VFrameSet, HFrameSet, FrameSet
  123. {
  124. background : url('theme://images/theme_blue/bg_FrameSet.png') stretch 12,12 left top;
  125. border : 0 none ;
  126. }
  127. ChildFrame
  128. {
  129. background : #ffffff URL('theme://images/theme_blue/bg_body.png') stretch 0,1 ;
  130. border : 0 solid #5C4532 ;
  131. bordertype : normal ;
  132. titlebarheight : 26 ;
  133. statusbarheight : 0 ;
  134. }
  135. ChildFrame:deactivate
  136. {
  137. border : 0 none;
  138. }
  139. ChildFrame>TitlebarForm
  140. {
  141. background : transparent URL('theme://images/bg_childframe.png') stretch 10,10;
  142. border : 0 solid #FFFFFF, 0 solid #FFFFFF, 1 solid #FFFFFF, 0 solid #FFFFFF;
  143. font : Dotum,9;
  144. color : #ffffff;
  145. align : left middle;
  146. padding : 0 0 0 0;
  147. }
  148. ChildFrame>TitlebarForm:deactivate
  149. {
  150. }
  151. ChildFrame>TitlebarForm>#minbutton
  152. {
  153. background : transparent;
  154. border : 0 none;
  155. bordertype : normal ;
  156. margin : 0 0 0 4;
  157. image : theme://images/btn_TitlebarForm_Min_N.png;
  158. imagealign : center middle;
  159. cursor : hand;
  160. }
  161. ChildFrame>TitlebarForm>#minbutton:mouseover
  162. {
  163. image : theme://images/btn_TitlebarForm_Min_O.png;
  164. }
  165. ChildFrame>TitlebarForm>#minbutton:pushed
  166. {
  167. image : theme://images/btn_TitlebarForm_Min_P.png;
  168. pusheddrawoffset : 0 0;
  169. }
  170. ChildFrame>TitlebarForm>#minbutton:deactivate,
  171. ChildFrame>TitlebarForm>#minbutton:nested
  172. {
  173. image : theme://images/btn_TitlebarForm_Min_D.png;
  174. }
  175. ChildFrame>TitlebarForm>#maxbutton
  176. {
  177. background : transparent;
  178. border : 0 none;
  179. bordertype : normal;
  180. margin : 0 0 0 2;
  181. image : theme://images/btn_TitlebarForm_Max_N.png;
  182. imagealign : center middle;
  183. cursor : hand;
  184. }
  185. ChildFrame>TitlebarForm>#maxbutton:mouseover
  186. {
  187. image : theme://images/btn_TitlebarForm_Max_O.png;
  188. }
  189. ChildFrame>TitlebarForm>#maxbutton:pushed
  190. {
  191. image : theme://images/btn_TitlebarForm_Max_P.png;
  192. pusheddrawoffset : 0 0;
  193. }
  194. ChildFrame>TitlebarForm>#maxbutton:disabled
  195. {
  196. image : theme://images/btn_TitlebarForm_Max_D.png;
  197. }
  198. ChildFrame>TitlebarForm>#maxbutton:deactivate,
  199. ChildFrame>TitlebarForm>#maxbutton:nested
  200. {
  201. image : theme://images/btn_TitlebarForm_Max_D.png;
  202. }
  203. ChildFrame>TitlebarForm>#normalbutton
  204. {
  205. background : transparent;
  206. border : 0 none;
  207. bordertype : normal;
  208. margin : 0 0 0 2;
  209. image : theme://images/btn_TitlebarForm_Nor_N.png;
  210. imagealign : center middle;
  211. cursor : hand;
  212. }
  213. ChildFrame>TitlebarForm>#normalbutton:mouseover
  214. {
  215. image : theme://images/btn_TitlebarForm_Nor_O.png;
  216. }
  217. ChildFrame>TitlebarForm>#normalbutton:pushed
  218. {
  219. image : theme://images/btn_TitlebarForm_Nor_P.png;
  220. pusheddrawoffset : 0 0;
  221. }
  222. ChildFrame>TitlebarForm>#normalbutton:deactivate,
  223. ChildFrame>TitlebarForm>#normalbutton:nested
  224. {
  225. image : theme://images/btn_TitlebarForm_Nor_D.png;
  226. }
  227. ChildFrame>TitlebarForm>#closebutton
  228. {
  229. background : transparent;
  230. border : 0 none;
  231. bordertype : normal;
  232. margin : 0 0 0 2;
  233. image : theme://images/btn_TitlebarForm_Close_N.png;
  234. imagealign : center middle;
  235. cursor : hand;
  236. }
  237. ChildFrame>TitlebarForm>#closebutton:mouseover
  238. {
  239. image : theme://images/btn_TitlebarForm_Close_O.png;
  240. }
  241. ChildFrame>TitlebarForm>#closebutton:pushed
  242. {
  243. image : theme://images/btn_TitlebarForm_Close_P.png;
  244. pusheddrawoffset : 0 0;
  245. }
  246. ChildFrame>TitlebarForm>#closebutton:deactivate,
  247. ChildFrame>TitlebarForm>#closebutton:nested
  248. {
  249. image : theme://images/btn_TitlebarForm_Close_D.png;
  250. }
  251. /***** Frame Object Group End *****/
  252. /***** Misc Object Group Start *****/
  253. /*** StatusbarForm ***/
  254. StatusbarForm
  255. {
  256. background : #f2f2ef;
  257. border : 1 solid #a8a8a2, 0 none, 0 none, 0 none;
  258. bordertype : round 3 3 leftbottom rightbottom;
  259. font : Dotum,9;
  260. padding : 0 0 0 12;
  261. color : #46463d;
  262. align : left middle;
  263. gripimage : /*URL('theme://images/theme_blue/img_grip.png')*/;
  264. progressbargap : 5;
  265. progressbarheight : 0;
  266. progressbarwidth : 0;
  267. zoomcombogap : 10;
  268. zoomcomboheight : 20;
  269. zoomcombowidth : 80;
  270. }
  271. StatusbarForm>#progressbar
  272. {
  273. background : transparent ;
  274. border : 1 solid #a8a8a2 ;
  275. bartype : normal ;
  276. align : center middle ;
  277. color : #333333 ;
  278. font : Dotum, 9 ;
  279. padding : 1 1 1 1 ;
  280. smooth : true ;
  281. barcolor : cdcdc8 ;
  282. direction : forward ;
  283. }
  284. StatusbarForm>#zoomcombo
  285. {
  286. background : #f2f2ef;
  287. border : 1 solid #a8a8a2;
  288. bartype : normal;
  289. font : Dotum,9;
  290. color : #5a280b;
  291. align : left middle;
  292. cursor : ;
  293. padding : 1 1 1 1;
  294. buttonsize : 16;
  295. itembackground : #ffffff;
  296. itemborder : 0 none;
  297. itemcolor : #6e6e63;
  298. itemheight : 20;
  299. itempadding : 0 5 0 8;
  300. }
  301. StatusbarForm>#zoomcombo:mouseover
  302. {
  303. itembackground : #f2f2ef;
  304. itemcolor : #5a280b;
  305. }
  306. StatusbarForm>#zoomcombo:selected
  307. {
  308. itembackground : #e0e0d9;
  309. itemcolor : #5a280b;
  310. }
  311. StatusbarForm>#zoomcombo>#comboedit
  312. {
  313. background : #f2f2ef /*url('theme://images/theme_blue/ico_zoomcombo.png') left middle*/;
  314. border : 0 none;
  315. align : left middle;
  316. font : Dotum,9;
  317. color : #5a280b;
  318. padding : 0 0 0 20;
  319. caretcolor : #3da2df;
  320. selectbackground : #ffffff;
  321. selectcolor : #333333;
  322. }
  323. StatusbarForm>#zoomcombo>#comboedit:mouseover
  324. {
  325. caretcolor : #3da2df;
  326. compositecolor : #ffffff;
  327. }
  328. StatusbarForm>#zoomcombo>#comboedit:focused
  329. {
  330. caretcolor : #3da2df;
  331. compositecolor : #ffffff;
  332. selectbackground : #3da2df;
  333. selectcolor : #ffffff;
  334. }
  335. StatusbarForm>#zoomcombo>#dropbutton
  336. {
  337. background : @gradation /*url('theme://images/theme_blue/img_drop_N.png') stretch 6,6*/;
  338. gradation : linear 0,0 #ffffff 0,100 #e3e3dd;
  339. border : 1 solid #a8a8a2;
  340. margin : 1 1 1 1;
  341. image : /*theme://images/theme_blue/btn_drop_N.png*/;
  342. imagealign : center middle;
  343. pusheddrawoffset : 0 0;
  344. }
  345. StatusbarForm>#zoomcombo>#dropbutton:mouseover
  346. {
  347. background : @gradation /*url('theme://images/theme_blue/img_drop_O.png') stretch 6,6*/;
  348. gradation : linear 0,0 #ddddd6 0,100 #acaca6;
  349. image : /*theme://images/theme_blue/btn_drop_O.png*/;
  350. }
  351. StatusbarForm>#zoomcombo>#dropbutton:pushed
  352. {
  353. background : #e1e1da;
  354. gradation : linear 0,0 #ffffff 0,100 #e3e3dd;
  355. image : /*theme://images/theme_blue/btn_drop_O.png*/;
  356. }
  357. StatusbarForm>#zoomcombo>#combolist
  358. {
  359. background : #ffffff;
  360. border : 1 solid #a8a8a2;
  361. align : left middle;
  362. font : Dotum,9;
  363. color : #6e6e63;
  364. itembackground : #ffffff;
  365. itemborder : 0 none;
  366. itemcolor : #6e6e63;
  367. itemheight : 20;
  368. itempadding : 0 5 0 8;
  369. }
  370. /*** scrollbar ***/
  371. /* vscrollbar */
  372. *>#vscrollbar
  373. {
  374. background : url('theme://images/theme_blue/bg_scrollbarV.png') repeat-y;
  375. border : 0 none;
  376. scrollbarsize : 16;
  377. incbtnsize : 16;
  378. decbtnsize : 16;
  379. }
  380. *>#vscrollbar:mouseover, *>#vscrollbar:pushed, *>#vscrollbar:focused
  381. {
  382. background : url('theme://images/theme_blue/bg_scrollbarV.png') repeat-y;
  383. }
  384. *>#vscrollbar>#trackbar
  385. {
  386. background : #e4f1f9 ;
  387. border : 1 solid #b1d8ec ;
  388. bordertype : round 3,3 ;
  389. imagepadding : 0 0 0 0 ;
  390. imagealign : center middle ;
  391. pusheddrawoffset : 0 0 ;
  392. focusborder : 0 none ;
  393. }
  394. *>#vscrollbar>#trackbar:mouseover
  395. {
  396. background : #cee6f4 ;
  397. border : 1 solid #84bfe1 ;
  398. }
  399. *>#vscrollbar>#trackbar:pushed
  400. {
  401. background : #b1d8ec ;
  402. border : 1 solid #58a6d5 ;
  403. }
  404. *>#vscrollbar>#decbutton
  405. {
  406. background : transparent;
  407. border : 1 solid transparent;
  408. image : theme://images/theme_blue/icon_scrollV_Dec_N.png;
  409. imagepadding : 0 0 0 0;
  410. imagealign : center middle;
  411. pusheddrawoffset : 0 0;
  412. focusborder : 0 none;
  413. }
  414. *>#vscrollbar>#decbutton:mouseover
  415. {
  416. border : 1 solid #58a6d5;
  417. image : theme://images/theme_blue/icon_scrollV_Dec_O.png ;
  418. }
  419. *>#vscrollbar>#decbutton:pushed
  420. {
  421. border : 1 solid #ec6400;
  422. image : theme://images/theme_blue/icon_scrollV_Dec_P.png ;
  423. }
  424. *>#vscrollbar>#decbutton:disabled
  425. {
  426. border : 1 solid transparent;
  427. image : theme://images/theme_blue/icon_scrollV_Dec_N.png;
  428. }
  429. *>#vscrollbar>#incbutton
  430. {
  431. background : transparent;
  432. border : 1 solid transparent;
  433. image : theme://images/theme_blue/icon_scrollV_Inc_N.png;
  434. imagepadding : 0 0 0 0;
  435. imagealign : center middle;
  436. pusheddrawoffset : 0 0;
  437. focusborder : 0 none;
  438. }
  439. *>#vscrollbar>#incbutton:mouseover
  440. {
  441. border : 1 solid #58a6d5;
  442. image : theme://images/theme_blue/icon_scrollV_Inc_O.png ;
  443. }
  444. *>#vscrollbar>#incbutton:pushed
  445. {
  446. border : 1 solid #ec6400;
  447. image : theme://images/theme_blue/icon_scrollV_Inc_P.png ;
  448. }
  449. *>#vscrollbar>#incbutton:disabled
  450. {
  451. border : 1 solid transparent;
  452. image : theme://images/theme_blue/icon_scrollV_Inc_N.png;
  453. }
  454. /* hscrollbar */
  455. *>#hscrollbar
  456. {
  457. background : url('theme://images/theme_blue/bg_scrollbarH.png') repeat-x;
  458. border : 0 none;
  459. scrollbarsize : 16;
  460. incbtnsize : 16;
  461. decbtnsize : 16;
  462. }
  463. *>#hscrollbar:mouseover, *>#hscrollbar:pushed, *>#hscrollbar:focused
  464. {
  465. background : url('theme://images/theme_blue/bg_scrollbarH.png') repeat-x;
  466. }
  467. *>#hscrollbar>#trackbar
  468. {
  469. background : #e4f1f9 ;
  470. border : 1 solid #b1d8ec ;
  471. bordertype : round 3,3 ;
  472. imagepadding : 0 0 0 0 ;
  473. imagealign : center middle ;
  474. pusheddrawoffset : 0 0 ;
  475. focusborder : 0 none ;
  476. }
  477. *>#hscrollbar>#trackbar:mouseover
  478. {
  479. background : #cee6f4 ;
  480. border : 1 solid #84bfe1 ;
  481. }
  482. *>#hscrollbar>#trackbar:pushed
  483. {
  484. background : #b1d8ec ;
  485. border : 1 solid #58a6d5 ;
  486. }
  487. *>#hscrollbar>#decbutton
  488. {
  489. background : transparent;
  490. border : 1 solid transparent;
  491. image : theme://images/theme_blue/icon_scrollH_Dec_N.png;
  492. imagepadding : 0 0 0 0;
  493. imagealign : center middle;
  494. pusheddrawoffset : 0 0;
  495. focusborder : 0 none;
  496. }
  497. *>#hscrollbar>#decbutton:mouseover
  498. {
  499. border : 1 solid #58a6d5;
  500. image : theme://images/theme_blue/icon_scrollH_Dec_O.png ;
  501. }
  502. *>#hscrollbar>#decbutton:pushed
  503. {
  504. border : 1 solid #ec6400;
  505. image : theme://images/theme_blue/icon_scrollH_Dec_P.png ;
  506. }
  507. *>#hscrollbar>#decbutton:disabled
  508. {
  509. border : 1 solid transparent;
  510. image : theme://images/theme_blue/icon_scrollH_Dec_N.png;
  511. }
  512. *>#hscrollbar>#incbutton
  513. {
  514. background : transparent;
  515. border : 1 solid transparent;
  516. image : theme://images/theme_blue/icon_scrollH_Inc_N.png;
  517. imagepadding : 0 0 0 0;
  518. imagealign : center middle;
  519. pusheddrawoffset : 0 0;
  520. focusborder : 0 none;
  521. }
  522. *>#hscrollbar>#incbutton:mouseover
  523. {
  524. border : 1 solid #58a6d5;
  525. image : theme://images/theme_blue/icon_scrollH_Inc_O.png ;
  526. }
  527. *>#hscrollbar>#incbutton:pushed
  528. {
  529. border : 1 solid #ec6400;
  530. image : theme://images/theme_blue/icon_scrollH_Inc_P.png ;
  531. }
  532. *>#hscrollbar>#incbutton:disabled
  533. {
  534. border : 1 solid transparent;
  535. image : theme://images/theme_blue/icon_scrollH_Inc_N.png;
  536. }
  537. *>#resizebutton
  538. {
  539. background : url('theme://images/theme_blue/bg_scrollbar_resize.png') stretch 4,4;
  540. border : 0 none;
  541. }
  542. /***** Misc Object Group End *****/
  543. /***** Object Component Start *****/
  544. /*** Form ***/
  545. Form
  546. {
  547. background : transparent ;
  548. border : 0 none ;
  549. bordertype : normal ;
  550. font : Dotum,9 ;
  551. color : #333333 ;
  552. }
  553. Form.frm_Work
  554. {
  555. background : #ffffff URL('theme://images/theme_blue/bg_body.png') stretch 0,1 ;
  556. border : 0 none ;
  557. bordertype : normal ;
  558. font : Dotum,9 ;
  559. color : #333333 ;
  560. }
  561. Form.frm_POP
  562. {
  563. background : URL('theme://images/theme_blue/bg_form_popup.png') stretch 40,40;
  564. }
  565. Form.Pop_OpenMenu
  566. {
  567. background : #f0f7fc URL('theme://images/theme_blue/bg_TF_Popdiv_Tit.png') repeat-x left top ;
  568. border : 1 solid #2674aa ;
  569. bordertype : round 2,2 ;
  570. font : Dotum,9,bold ;
  571. align : left top;
  572. color : #ffffff;
  573. }
  574. /*** Static ***/
  575. Static
  576. {
  577. background : transparent ;
  578. border : 0 none ;
  579. align : left middle ;
  580. font : Dotum,9 ;
  581. color : #333333 ;
  582. shadow : 0 none ;
  583. }
  584. /*** Edit ***/
  585. Edit
  586. {
  587. background : url('theme://images/theme_blue/bg_edit_N.png') stretch 5,5 ;
  588. border : none ;
  589. align : left middle ;
  590. font : Dotum,9 ;
  591. color : #333333 ;
  592. padding : 0 5 0 5 ;
  593. shadow : 0 none ;
  594. caretcolor : #6A543A ;
  595. compositecolor : #ffffff ;
  596. selectbackground : transparent ;
  597. selectcolor : #333333 ;
  598. }
  599. Edit:mouseover
  600. {
  601. background : url('theme://images/theme_blue/bg_edit_O.png') stretch 5,5 ;
  602. }
  603. Edit:focused
  604. {
  605. background : url('theme://images/theme_blue/bg_edit_P.png') stretch 5,5 ;
  606. color : #333333 ;
  607. selectbackground : #2674aa ;
  608. selectcolor : #ffffff ;
  609. }
  610. Edit:disabled
  611. {
  612. background : url('theme://images/theme_blue/bg_edit_D.png') stretch 5,5;
  613. color : #888888;
  614. }
  615. /*** TextArea ***/
  616. TextArea
  617. {
  618. background : url('theme://images/theme_blue/bg_edit_N.png') stretch 5,5;
  619. border : none;
  620. align : left top ;
  621. font : Dotum,9 ;
  622. color : #333333 ;
  623. padding : 5 5 5 5 ;
  624. shadow : 0 none ;
  625. caretcolor : #666666 ;
  626. compositecolor : #ffffff ;
  627. selectbackground : transparent ;
  628. selectcolor : #333333 ;
  629. linespace : 1;
  630. }
  631. TextArea:mouseover
  632. {
  633. /*background : url('theme://images/theme_blue/bg_edit_O.png') stretch 5,5;*/
  634. border : none;
  635. color : #333333 ;
  636. }
  637. TextArea:focused
  638. {
  639. /*background : url('theme://images/theme_blue/bg_edit_P.png') stretch 5,5;*/
  640. color : #333333 ;
  641. selectbackground : #2674aa ;
  642. selectcolor : #ffffff;
  643. }
  644. TextArea:disabled
  645. {
  646. background : url('theme://images/theme_blue/bg_edit_D.png') stretch 5,5;
  647. color : #888888;
  648. }
  649. /*** TextArea ***/
  650. TextArea.memoInfo
  651. {
  652. background : url('theme://images/theme_blue/bg_edit_memo_N.png') stretch 5,5 ;
  653. border : none ;
  654. bordertype : round 2 2 ;
  655. align : left top ;
  656. font : Dotum,9 ;
  657. color : #333333 ;
  658. padding : 5 5 5 5 ;
  659. caretcolor : #6A543A ;
  660. compositecolor : #ffffff ;
  661. selectbackground : transparent ;
  662. selectcolor : #333333 ;
  663. }
  664. TextArea.memoInfo:mouseover
  665. {
  666. background : url('theme://images/theme_blue/bg_edit_memo_N.png') stretch 5,5 ;
  667. border : none ;
  668. color : #333333 ;
  669. }
  670. TextArea.memoInfo:focused
  671. {
  672. background : url('theme://images/theme_blue/bg_edit_memo_N.png') stretch 5,5 ;
  673. color : #333333 ;
  674. selectbackground : #2674aa ;
  675. selectcolor : #ffffff ;
  676. shadow : outer 0,0 2 #00000055;
  677. }
  678. TextArea.memoInfo:disabled
  679. {
  680. background : url('theme://images/theme_blue/bg_edit_D.png') stretch 5,5;
  681. color : #888888;
  682. }
  683. TextArea>#vscrollbar, TextArea>#vscrollbar:mouseover, TextArea>#vscrollbar:focused
  684. {
  685. background : url('theme://images/theme_blue/bg_scrollbarV.png') repeat-y;
  686. border : 1 solid transparent;
  687. scrollbarsize : 16;
  688. incbtnsize : 0;
  689. decbtnsize : 0;
  690. }
  691. TextArea>#hscrollbar, TextArea>#hscrollbar:mouseover, TextArea>#hscrollbar:focused
  692. {
  693. background : url('theme://images/theme_blue/bg_scrollbarH.png') repeat-x;
  694. border : 1 solid transparent;
  695. scrollbarsize : 16;
  696. incbtnsize : 0;
  697. decbtnsize : 0;
  698. }
  699. /*** MaskEdit ***/
  700. MaskEdit
  701. {
  702. background : url('theme://images/theme_blue/bg_edit_N.png') stretch 5,5;
  703. border : none;
  704. bordertype : round 2 2;
  705. align : right middle;
  706. font : Dotum,9 ;
  707. color : #333333 ;
  708. padding : 0 5 0 5;
  709. shadow : 0 none ;
  710. caretcolor : #6A543A;
  711. compositecolor : #ffffff;
  712. selectbackground : transparent;
  713. selectcolor : #333333 ;
  714. }
  715. MaskEdit:mouseover
  716. {
  717. background : url('theme://images/theme_blue/bg_edit_O.png') stretch 5,5 ;
  718. color : #333333 ;
  719. }
  720. MaskEdit:focused
  721. {
  722. background : url('theme://images/theme_blue/bg_edit_P.png') stretch 5,5 ;
  723. color : #333333 ;
  724. selectbackground : #2674aa ;
  725. selectcolor : #ffffff ;
  726. }
  727. MaskEdit:disabled
  728. {
  729. background : url('theme://images/theme_blue/bg_edit_D.png') stretch 5,5;
  730. color : #888888;
  731. }
  732. /*** Button ***/
  733. Button
  734. {
  735. background : #2674aa ;
  736. border : 1 solid #1b5a89 ;
  737. bordertype : round 2 2 ;
  738. font : Dotum,9,bold ;
  739. color : #e4f1f9 ;
  740. align : center middle ;
  741. cursor : hand ;
  742. padding : 0 0 0 0 ;
  743. shadow : 0 none ;
  744. }
  745. Button:focused, Button:selected
  746. {
  747. background : #164b74 ;
  748. border : 1 solid #103b5f ;
  749. color : #e4f1f9 ;
  750. }
  751. Button:mouseover
  752. {
  753. background : #3d95cd ;
  754. border : 1 solid #2d84be ;
  755. color : #ffffff ;
  756. }
  757. Button:pushed
  758. {
  759. background : #f97818 ;
  760. border : 1 solid #ec6400 ;
  761. color : #ffffff ;
  762. }
  763. Button:disabled
  764. {
  765. gradation : linear 0,0 #f0f0f0ff 0,100 #e1e1e1ff;
  766. border : 1 solid #cacacaff;
  767. color : #808080;
  768. cursor : arrow;
  769. }
  770. /*** Combo ***/
  771. Combo
  772. {
  773. background : url('theme://images/theme_blue/bg_edit_N.png') stretch 5,5 ;
  774. border : none;
  775. bordertype : round 2 2 ;
  776. align : left middle ;
  777. font : Dotum,9 ;
  778. color : #333333 ;
  779. itembackground : #ffffff ;
  780. itemheight : 20 ;
  781. itemborder : 0 none ;
  782. itempadding : 0 3 0 6 ;
  783. itemcolor : #333333 ;
  784. buttonsize : 19 ;
  785. }
  786. Combo:mouseover
  787. {
  788. background : url('theme://images/theme_blue/bg_edit_O.png') stretch 5,5 ;
  789. color : #333333 ;
  790. itembackground : #e4f1f9 ;
  791. itemborder : 1 solid #b1d8ec, 0 none ;
  792. }
  793. Combo:focused, Combo:selected
  794. {
  795. background : url('theme://images/theme_blue/bg_edit_P.png') stretch 5,5 ;
  796. color : #333333 ;
  797. itemcolor : #ffffff ;
  798. itembackground : #f97818 ;
  799. itemborder : 1 solid #ec6400, 0 none ;
  800. itemfont : Dotum,9,bold ;
  801. }
  802. Combo:disabled
  803. {
  804. background : url('theme://images/theme_blue/bg_edit_D.png') stretch 5,5;
  805. color : #888888;
  806. }
  807. Combo>#comboedit
  808. {
  809. background : transparent;
  810. border : none;
  811. align : left middle;
  812. font : Dotum,9 ;
  813. color : #333333 ;
  814. cursor : arrow;
  815. padding : 0 5 0 5 ;
  816. caretcolor : #f97818 ;
  817. compositecolor : #ffffff ;
  818. selectbackground : transparent ;
  819. selectcolor : #333333 ;
  820. }
  821. Combo>#comboedit:focused
  822. {
  823. selectbackground : #2d84be ;
  824. selectcolor : #ffffff ;
  825. }
  826. Combo>#dropbutton
  827. {
  828. background : url('theme://images/theme_blue/btn_dropBg_N.png') stretch 5,5;
  829. border : none, none, none, 1 solid #84bfe1;
  830. margin : 1 1 1 0;
  831. image : theme://images/theme_blue/icon_drop_N.png;
  832. imagealign : center middle;
  833. imagepadding : 2 0 0 0;
  834. pusheddrawoffset : 0 0;
  835. cursor : arrow;
  836. }
  837. Combo>#dropbutton:mouseover
  838. {
  839. background : url('theme://images/theme_blue/btn_dropBg_O.png') stretch 5,5;
  840. border : none, none, none, 1 solid #84bfe1;
  841. image : theme://images/theme_blue/icon_drop_O.png;
  842. }
  843. Combo>#dropbutton:selected, Combo>#dropbutton:pushed
  844. {
  845. background : url('theme://images/theme_blue/btn_dropBg_P.png') stretch 5,5;
  846. border : none, none, none, 1 solid #84bfe1;
  847. margin : 1 1 1 0;
  848. image : theme://images/theme_blue/icon_drop_P.png;
  849. imagealign : center middle;
  850. pusheddrawoffset : 0 0;
  851. }
  852. Combo>#dropbutton:disabled
  853. {
  854. background : url('theme://images/theme_blue/btn_dropBg_D.png') stretch 5,5 ;
  855. border : none, none, none, 1 solid #B0B0B0 ;
  856. image : theme://images/theme_blue/icon_drop_D.png ;
  857. }
  858. Combo>#combolist
  859. {
  860. border : 1 solid #2674aa ;
  861. cursor : arrow;
  862. }
  863. /*** Spin ***/
  864. Spin
  865. {
  866. background : url('theme://images/theme_blue/bg_edit_N.png') stretch 5,5;
  867. border : none;
  868. bordertype : round 2 2;
  869. align : right middle;
  870. font : Dotum,9 ;
  871. color : #333333 ;
  872. shadow : 0 none ;
  873. buttonsize : 18 ;
  874. buttonalign : right ;
  875. }
  876. Spin:mouseover
  877. {
  878. background : url('theme://images/theme_blue/bg_edit_O.png') stretch 5,5;
  879. }
  880. Spin:focused, Spin:pushed
  881. {
  882. background : url('theme://images/theme_blue/bg_edit_P.png') stretch 5,5 ;
  883. }
  884. Spin:disabled
  885. {
  886. background : url('theme://images/theme_blue/bg_edit_D.png') stretch 5,5;
  887. color : #888888;
  888. }
  889. Spin>#spinedit
  890. {
  891. background : transparent;
  892. border : none;
  893. align : right middle;
  894. font : Dotum,9 ;
  895. color : #333333 ;
  896. padding : 0 5 0 5 ;
  897. caretcolor : #6A543A ;
  898. compositecolor : #ffffff ;
  899. selectbackground : transparent ;
  900. selectcolor : #333333 ;
  901. }
  902. Spin>#spinedit:focused
  903. {
  904. selectbackground : #2674aa ;
  905. selectcolor : #ffffff ;
  906. }
  907. Spin>#spinupbutton
  908. {
  909. background : transparent;
  910. border : 0 none;
  911. margin : 3 1 0 1;
  912. image : theme://images/icon_spinup_N.png;
  913. imagealign : center middle;
  914. cursor : hand;
  915. }
  916. Spin>#spinupbutton:mouseover
  917. {
  918. image : theme://images/icon_spinup_O.png;
  919. }
  920. Spin>#spinupbutton:pushed
  921. {
  922. image : theme://images/icon_spinup_P.png;
  923. pusheddrawoffset : 0 0;
  924. }
  925. Spin>#spinupbutton:disabled
  926. {
  927. image : theme://images/icon_spinup_D.png;
  928. }
  929. Spin>#spindownbutton
  930. {
  931. background : transparent;
  932. border : 0 none;
  933. margin : 0 1 2 1;
  934. image : theme://images/icon_spindn_N.png;
  935. imagealign : center middle;
  936. cursor : hand;
  937. }
  938. Spin>#spindownbutton:mouseover
  939. {
  940. image : theme://images/icon_spindn_O.png;
  941. }
  942. Spin>#spindownbutton:pushed
  943. {
  944. image : theme://images/icon_spindn_P.png;
  945. pusheddrawoffset : 0 0;
  946. }
  947. Spin>#spindownbutton:disabled
  948. {
  949. image : theme://images/icon_spindn_D.png;
  950. }
  951. /*** ListBox ***/
  952. ListBox
  953. {
  954. background : #ffffff;
  955. border : 1 solid #84bfe1;
  956. bordertype : round 2 2;
  957. font : Dotum,9;
  958. color : #333333 ;
  959. align : left middle ;
  960. shadow : 0 none ;
  961. focusborder : 0 none ;
  962. itembackground : #ffffff ;
  963. itemheight : 20 ;
  964. itemborder : 1 solid #2d84be, 0 none, 1 solid #2d84be, 0 none ;
  965. itempadding : 0 3 0 6 ;
  966. }
  967. ListBox:mouseover
  968. {
  969. itembackground : #cee6f4 ;
  970. itemborder : 1 solid #84bfe1, 0 none, 1 solid #84bfe1, 0 none ;
  971. }
  972. ListBox:selected, ListBox:focused
  973. {
  974. font : Dotum,9,bold ;
  975. color : #f97818 ;
  976. itembackground : #2674aa ;
  977. itemborder : 1 solid #ec6400, 0 none, 1 solid #ec6400, 0 none ;
  978. }
  979. ListBox:disabled
  980. {
  981. background : #f5f5f5 ;
  982. border : 1 solid #B0B0B0 ;
  983. color : #888888 ;
  984. itembackground : #f5f5f5 ;
  985. itemborder : 0 none ;
  986. }
  987. /*** Calendar ***/
  988. Calendar
  989. {
  990. background : url('theme://images/theme_blue/bg_edit_N.png') stretch 5,5 ;
  991. border : none ;
  992. bordertype : round 2 2 ;
  993. align : left middle ;
  994. font : Dotum,9 ;
  995. color : #333333 ;
  996. shadow : 0 none ;
  997. buttonsize : 16 ;
  998. daybackground : transparent ;
  999. dayborder : 0 none ;
  1000. dayfont : Tahoma,8 ;
  1001. daycolor : #333333 ;
  1002. daysize : 24 20 ;
  1003. popupalign : ;
  1004. popupbackground : url('theme://images/theme_blue/bg_calPopup.png') stretch 10,60 ;
  1005. popupborder : 0 none ;
  1006. popupbordertype : normal ;
  1007. popupsize : 202 198 ;
  1008. usetrailingday : true ;
  1009. }
  1010. Calendar.NoCalIcon
  1011. {
  1012. background : url('theme://images/theme_blue/bg_edit_N.png') stretch 5,5 ;
  1013. border : none ;
  1014. bordertype : round 2 2 ;
  1015. align : left middle ;
  1016. font : Dotum,9 ;
  1017. color : #333333 ;
  1018. shadow : 0 none ;
  1019. buttonsize : 0 ;
  1020. daybackground : transparent ;
  1021. dayborder : 0 none ;
  1022. dayfont : Tahoma,8 ;
  1023. daycolor : #333333 ;
  1024. daysize : 24 20 ;
  1025. popupalign : ;
  1026. popupbackground : url('theme://images/theme_blue/bg_calPopup.png') stretch 10,60 ;
  1027. popupborder : 0 none ;
  1028. popupbordertype : normal ;
  1029. popupsize : 202 198 ;
  1030. usetrailingday : true ;
  1031. }
  1032. Calendar:mouseover
  1033. {
  1034. background : url('theme://images/theme_blue/bg_edit_O.png') stretch 5,5 ;
  1035. daybackground : url('theme://images/theme_blue/bg_dayBg_O.png') stretch left top ;
  1036. dayfont : Tahoma,8,bold ;
  1037. daycolor : #2674aa ;
  1038. }
  1039. Calendar:focused, Calendar:pushed, Calendar:selected
  1040. {
  1041. background : url('theme://images/theme_blue/bg_edit_P.png') stretch 5,5;
  1042. daybackground : url('theme://images/theme_blue/bg_dayBg_P.png') stretch left top;
  1043. dayfont : Tahoma,8,bold;
  1044. daycolor : #ffffff;
  1045. }
  1046. Calendar:disabled
  1047. {
  1048. background : url('theme://images/theme_blue/bg_edit_D.png') stretch 5,5;
  1049. border : none;
  1050. color : #888888;
  1051. }
  1052. Calendar[type="monthonly"],
  1053. Calendar[type="monthonly"]:mouseover, Calendar[type="monthonly"]:pushed,
  1054. Calendar[type="monthonly"]:focused, Calendar[type="monthonly"]:selected
  1055. {
  1056. border : 0 none;
  1057. }
  1058. Calendar[type="spin"],
  1059. Calendar[type="spin"]:mouseover, Calendar[type="spin"]:pushed,
  1060. Calendar[type="spin"]:focused, Calendar[type="spin"]:selected
  1061. {
  1062. buttonsize : 16;
  1063. }
  1064. Calendar>#calendaredit
  1065. {
  1066. background : transparent;
  1067. border : none;
  1068. align : left middle;
  1069. font : Dotum,9 ;
  1070. color : #333333 ;
  1071. padding : 0 0 0 5 ;
  1072. caretcolor : #6A543A ;
  1073. compositecolor : #ffffff ;
  1074. selectbackground : #2674aa ;
  1075. selectcolor : #ffffff ;
  1076. }
  1077. Calendar>#calendaredit:focused, Calendar>#calendaredit:selected, Calendar>#calendaredit:pushed
  1078. {
  1079. selectbackground : #2674aa ;
  1080. selectcolor : #ffffff ;
  1081. }
  1082. Calendar>#dropbutton
  1083. {
  1084. background : transparent;
  1085. border : 0 none;
  1086. focusborder : 0 none;
  1087. image : theme://images/icon_calDrop_N.png;
  1088. imagealign : left middle;
  1089. imagepadding : 0 0 0 0;
  1090. cursor : hand ;
  1091. }
  1092. Calendar>#dropbutton:pushed
  1093. {
  1094. pusheddrawoffset : 0 0;
  1095. }
  1096. Calendar>#dropbutton:disabled
  1097. {
  1098. image : URL('theme://images/icon_calDrop_D.png');
  1099. }
  1100. Calendar.NoCalIcon>#dropbutton
  1101. {
  1102. background : transparent;
  1103. border : 0 none;
  1104. focusborder : 0 none;
  1105. image : ;
  1106. imagealign : left middle;
  1107. imagepadding : 0 0 0 0;
  1108. cursor : hand ;
  1109. }
  1110. Calendar.NoCalIcon>#dropbutton:pushed
  1111. {
  1112. pusheddrawoffset : 0 0;
  1113. }
  1114. Calendar.NoCalIcon>#dropbutton:disabled
  1115. {
  1116. image : ;
  1117. }
  1118. Calendar>#spinupbutton
  1119. {
  1120. background : transparent;
  1121. border : 0 none;
  1122. margin : 3 1 0 1;
  1123. image : theme://images/icon_spinup_N.png;
  1124. imagealign : center middle;
  1125. cursor : hand;
  1126. }
  1127. Calendar>#spinupbutton:mouseover
  1128. {
  1129. image : theme://images/icon_spinup_O.png;
  1130. }
  1131. Calendar>#spinupbutton:pushed
  1132. {
  1133. image : theme://images/icon_spinup_P.png;
  1134. pusheddrawoffset : 0 0;
  1135. }
  1136. Calendar>#spinupbutton:disabled
  1137. {
  1138. image : theme://images/icon_spinup_D.png;
  1139. }
  1140. Calendar>#spindownbutton
  1141. {
  1142. background : transparent;
  1143. border : 0 none;
  1144. margin : 0 1 2 1;
  1145. image : theme://images/icon_spindn_N.png;
  1146. imagealign : center middle;
  1147. cursor : hand;
  1148. }
  1149. Calendar>#spindownbutton:mouseover
  1150. {
  1151. image : theme://images/icon_spindn_N.png;
  1152. }
  1153. Calendar>#spindownbutton:pushed
  1154. {
  1155. image : theme://images/icon_spindn_N.png;
  1156. pusheddrawoffset : 0 0;
  1157. }
  1158. Calendar>#spindownbutton:disabled
  1159. {
  1160. image : theme://images/icon_spindn_D.png;
  1161. }
  1162. Calendar>#popupcalendar
  1163. {
  1164. background : transparent ;
  1165. border : 0 none ;
  1166. font : Tahoma,8 ;
  1167. color : #333333 ;
  1168. align : center middle ;
  1169. padding : 0 0 0 0 ;
  1170. ncpadding : 29 3 3 3 ;
  1171. bodybackground : transparent ;
  1172. bodyborder : 0 none ;
  1173. headerbackground : transparent ;
  1174. headerborder : 0 none ;
  1175. headerfont : Tahoma,11,bold ;
  1176. headercolor : #ffffff ;
  1177. headerformat : yyyy.MM ;
  1178. headerheight : 27 ;
  1179. weekbackground : transparent ;
  1180. weekfont : Tahoma,8,bold ;
  1181. weekcolor : #333333 ;
  1182. weekformat : Su Mo Tu We Th Fr Sa ;
  1183. saturdaybackground : transparent ;
  1184. saturdayborder : 0 none #ffffff ;
  1185. saturdayfont : Tahoma,8 ;
  1186. saturdaycolor : #0061B3 ;
  1187. sundaybackground : transparent ;
  1188. sundayborder : 0 none #ffffff ;
  1189. sundayfont : Tahoma,8 ;
  1190. sundaycolor : #E1081C ;
  1191. todaybackground : #2674aa ;
  1192. todayborder : 0 none ;
  1193. todayfont : Tahoma,8,bold ;
  1194. todaycolor : #ffffff ;
  1195. usetrailingday : true ;
  1196. trailingdaybackground : transparent ;
  1197. trailingdayborder : 0 none #ffffff ;
  1198. trailingdayfont : Tahoma,8 ;
  1199. trailingdaycolor : #888888 ;
  1200. viewmonthspin : ;
  1201. viewyearspin : ;
  1202. margin : -2 0 0 0 ;
  1203. }
  1204. Calendar>#popupcalendar>#prevbutton
  1205. {
  1206. image : URL('theme://images/theme_blue/btn_calPrev_N.png');
  1207. background : transparent;
  1208. border : 0 none ;
  1209. cursor : hand;
  1210. padding : 2 0 0 0;
  1211. }
  1212. Calendar>#popupcalendar>#prevbutton:mouseover
  1213. {
  1214. image : URL('theme://images/theme_blue/btn_calPrev_O.png');
  1215. }
  1216. Calendar>#popupcalendar>#prevbutton:pushed
  1217. {
  1218. image :URL('theme://images/theme_blue/btn_calPrev_P.png');
  1219. pusheddrawoffset : 0 0;
  1220. }
  1221. Calendar>#popupcalendar>#nextbutton
  1222. {
  1223. image : URL('theme://images/theme_blue/btn_calNext_N.png');
  1224. background : transparent;
  1225. border : 0 none ;
  1226. cursor : hand;
  1227. padding : 2 0 0 0;
  1228. }
  1229. Calendar>#popupcalendar>#nextbutton:mouseover
  1230. {
  1231. image : URL('theme://images/theme_blue/btn_calNext_O.png');
  1232. }
  1233. Calendar>#popupcalendar>#nextbutton:pushed
  1234. {
  1235. image : URL('theme://images/theme_blue/btn_calNext_P.png');
  1236. pusheddrawoffset : 0 0;
  1237. }
  1238. Calendar>#popupcalendar>#monthspin,
  1239. Calendar>#popupcalendar>#yearspin
  1240. {
  1241. background : #ffffff ;
  1242. border : 1 solid #2674aa ;
  1243. bordertype : normal ;
  1244. font : Tahoma,10,bold ;
  1245. color : #333333 ;
  1246. align : left middle ;
  1247. margin : 0 5 0 0 ;
  1248. padding : 0 0 0 5 ;
  1249. buttonsize : 8 ;
  1250. }
  1251. Calendar>#popupcalendar>#monthspin>#spinedit,
  1252. Calendar>#popupcalendar>#monthspin>#spinedit:mouseover,
  1253. Calendar>#popupcalendar>#yearspin>#spinedit,
  1254. Calendar>#popupcalendar>#yearspin>#spinedit:mouseover
  1255. {
  1256. background : transparent ;
  1257. border : none ;
  1258. color : #333333 ;
  1259. padding : 0 5 0 5 ;
  1260. align : left middle ;
  1261. font : Dotum,9 ;
  1262. caretcolor : #6A543A ;
  1263. compositecolor : #ffffff ;
  1264. selectbackground : transparent ;
  1265. selectcolor : #666666 ;
  1266. }
  1267. Calendar>#popupcalendar>#monthspin>#spinedit:focused,
  1268. Calendar>#popupcalendar>#yearspin>#spinedit:focused
  1269. {
  1270. selectbackground : #896D4B;
  1271. selectcolor : #ffffff;
  1272. }
  1273. Calendar>#popupcalendar>#monthspin>#spinupbutton,
  1274. Calendar>#popupcalendar>#yearspin>#spinupbutton
  1275. {
  1276. background : transparent;
  1277. border : 0 none;
  1278. bordertype : normal;
  1279. image : URL('theme://images/icon_calSpinup_N.png');
  1280. imagepadding : 2 1 0 0;
  1281. pusheddrawoffset : 0 0;
  1282. cursor : hand;
  1283. }
  1284. Calendar>#popupcalendar>#monthspin>#spinupbutton:mouseover,
  1285. Calendar>#popupcalendar>#yearspin>#spinupbutton:mouseover
  1286. {
  1287. image : URL('theme://images/icon_calSpinup_O.png');
  1288. }
  1289. Calendar>#popupcalendar>#monthspin>#spinupbutton:pushed,
  1290. Calendar>#popupcalendar>#yearspin>#spinupbutton:pushed
  1291. {
  1292. image : URL('theme://images/icon_calSpinup_P.png');
  1293. }
  1294. Calendar>#popupcalendar>#monthspin>#spindownbutton,
  1295. Calendar>#popupcalendar>#yearspin>#spindownbutton
  1296. {
  1297. background : transparent;
  1298. border : 0 none;
  1299. bordertype : normal;
  1300. image : URL('theme://images/icon_calSpindn_N.png');
  1301. imagepadding : 0 1 2 0;
  1302. pusheddrawoffset : 0 0;
  1303. cursor : hand;
  1304. }
  1305. Calendar>#popupcalendar>#monthspin>#spindownbutton:mouseover,
  1306. Calendar>#popupcalendar>#yearspin>#spindownbutton:mouseover
  1307. {
  1308. image : URL('theme://images/icon_calSpindn_O.png');
  1309. }
  1310. Calendar>#popupcalendar>#monthspin>#spindownbutton:pushed,
  1311. Calendar>#popupcalendar>#yearspin>#spindownbutton:pushed
  1312. {
  1313. image : URL('theme://images/icon_calSpindn_P.png');
  1314. }
  1315. /*** CheckBox ***/
  1316. CheckBox
  1317. {
  1318. background : transparent ;
  1319. border : 0 none ;
  1320. font : Dotum,9 ;
  1321. padding : 0 0 0 0 ;
  1322. color : #333333 ;
  1323. align : left middle ;
  1324. buttonimage : URL('theme://images/icon_check_N.png') ;
  1325. buttonalign : left center ;
  1326. buttonborder : 0 none ;
  1327. buttonsize : 15 ;
  1328. buttonbackground : url('theme://images/bg_check_N.png') stretch 3,3 ;
  1329. textpadding : 0 0 0 3 ;
  1330. focusborder : 0 none ;
  1331. }
  1332. CheckBox:pushed
  1333. {
  1334. buttonbackground : URL('theme://images/bg_check_P.png') stretch 3,3;
  1335. }
  1336. CheckBox:disabled
  1337. {
  1338. color : #888888 ;
  1339. buttonbackground : #E2E5E8 ;
  1340. buttonborder : 1 solid #B0B0B0 ;
  1341. buttonimage : url('theme://images/theme_blue/icon_check_D.png') ;
  1342. }
  1343. /*** Radio ***/
  1344. Radio
  1345. {
  1346. background : transparent ;
  1347. border : 0 none ;
  1348. font : Dotum,9 ;
  1349. padding : 1 0 0 0 ;
  1350. color : #333333 ;
  1351. align : left middle ;
  1352. buttonimage : URL('theme://images/icon_radio_N.png') ;
  1353. buttonalign : left middle ;
  1354. buttonborder : 0 none ;
  1355. buttonsize : 15 ;
  1356. buttonbackground : url('theme://images/bg_radio_N.png') left top ;
  1357. textpadding : 0 0 0 3 ;
  1358. focusborder : 0 none ;
  1359. }
  1360. Radio:pushed
  1361. {
  1362. buttonbackground : url('theme://images/bg_radio_P.png') stretch left top;
  1363. }
  1364. Radio:disabled
  1365. {
  1366. color : #262626 ;
  1367. buttonbackground : #E2E5E8 ;
  1368. buttonborder : 1 solid #B0B0B0 ;
  1369. buttonimage : url('theme://images/icon_radio_D.png') ;
  1370. }
  1371. /*** Div ***/
  1372. Div
  1373. {
  1374. background : transparent ;
  1375. border : 0 none ;
  1376. font : Dotum,9 ;
  1377. align : center middle ;
  1378. color : #333333 ;
  1379. cursor : default;
  1380. }
  1381. /*** PopupDiv ***/
  1382. PopupDiv
  1383. {
  1384. background : transparent ;
  1385. border : 0 none ;
  1386. font : Dotum,9 ;
  1387. align : center middle ;
  1388. color : #333333 ;
  1389. }
  1390. /*** MenuGroup Background Div ***/
  1391. Div.div_Menugroup_Background
  1392. {
  1393. background : #2c3e50ee;
  1394. shadow : outer 7,7 5 #808080a0;
  1395. }
  1396. Div.div_Search_Result
  1397. {
  1398. background : white;
  1399. border : 1 solid #000000ff,1 solid #000000ff,0 solid #000000ff,1 solid #000000ff;
  1400. shadow : outer 3,0 3 gray;
  1401. }
  1402. /*** Tab ***/
  1403. Tab
  1404. {
  1405. background : url('theme://images/theme_blue/bg_tab_BodyTop.png') stretch 10,26;
  1406. border : none;
  1407. bordertype : normal;
  1408. align : center middle;
  1409. font : Dotum,9;
  1410. color : #ffffff ;
  1411. buttonbackground : url(theme://images/theme_blue/btn_tab_N.png) stretch 10,10;
  1412. buttonborder : 0 none;
  1413. buttonbordertype : round 2 2 lefttop righttop;
  1414. buttonpadding : 4 8 4 8;
  1415. buttonmargin : 0 1 0 0;
  1416. cursor : hand;
  1417. focusborder : 0 none;
  1418. }
  1419. Tab:mouseover
  1420. {
  1421. font : Dotum,9,bold;
  1422. buttonbackground : url(theme://images/theme_blue/btn_tab_O.png) stretch 10,10;
  1423. }
  1424. Tab:selected, Tab:focused
  1425. {
  1426. font : Dotum,9,bold;
  1427. color : #ffffff;
  1428. buttonbackground : url(theme://images/theme_blue/btn_tab_P.png) stretch 10,10;
  1429. }
  1430. Tab:disabled
  1431. {
  1432. color : #888888;
  1433. buttonbackground : url(theme://images/theme_blue/btn_tab_D.png) stretch 10,10;
  1434. }
  1435. Tab[tabposition="left"]
  1436. {
  1437. background : none ;
  1438. border : none, 1 solid #B0B0B0, none, 1 solid #B0B0B0 ;
  1439. buttonbordertype : round 3 3 lefttop leftbottom ;
  1440. buttonbackground : url(theme://images/theme_blue/btn_tabLeft_N.png) stretch 10,10 ;
  1441. buttonmargin : 0 0 1 0 ;
  1442. }
  1443. Tab[tabposition="left"]:mouseover
  1444. {
  1445. buttonbackground : url(theme://images/theme_blue/btn_tabLeft_O.png) stretch 10,10;
  1446. }
  1447. Tab[tabposition="left"]:selected, Tab[tabposition="left"]:focused
  1448. {
  1449. buttonbackground : url(theme://images/theme_blue/btn_tabLeft_P.png) stretch 10,10;
  1450. }
  1451. Tab[tabposition="right"]
  1452. {
  1453. background : none ;
  1454. border : none, 1 solid #B0B0B0, none, 1 solid #B0B0B0 ;
  1455. buttonbordertype : round 3 3 righttop rightbottom ;
  1456. buttonbackground : url(theme://images/theme_blue/btn_tabRight_N.png) stretch 10,10 ;
  1457. buttonmargin : 0 0 1 0 ;
  1458. }
  1459. Tab[tabposition="right"]:mouseover
  1460. {
  1461. buttonbackground : url(theme://images/theme_blue/btn_tabRight_O.png) stretch 10,10;
  1462. }
  1463. Tab[tabposition="right"]:selected, Tab[tabposition="right"]:focused
  1464. {
  1465. border : 1 solid #B0B0B0 ;
  1466. buttonbackground : url(theme://images/theme_blue/btn_tabRight_P.png) stretch 10,10 ;
  1467. }
  1468. Tab[tabposition="bottom"]
  1469. {
  1470. background : none ;
  1471. border : 1 solid #B0B0B0, none, 1 solid #B0B0B0, none ;
  1472. buttonbordertype : round 3 3 leftbottom rightbottom ;
  1473. buttonbackground : url(theme://images/theme_blue/btn_tabBottom_N.png) stretch 10,10 ;
  1474. buttonmargin : 0 1 0 0 ;
  1475. }
  1476. Tab[tabposition="bottom"]:mouseover
  1477. {
  1478. buttonbackground : url(theme://images/theme_blue/btn_tabBottom_O.png) stretch 10,10;
  1479. }
  1480. Tab[tabposition="bottom"]:selected, Tab[tabposition="bottom"]:focused
  1481. {
  1482. buttonbackground : url(theme://images/theme_blue/btn_tabBottom_P.png) stretch 10,10;
  1483. }
  1484. Tab.tab_backW
  1485. {
  1486. background : url('theme://images/theme_blue/bg_tab3_BodyTop.png') stretch 10,26 ;
  1487. border : none ;
  1488. bordertype : normal ;
  1489. align : center middle ;
  1490. font : Dotum,9 ;
  1491. color : #ffffff ;
  1492. buttonbackground : url(theme://images/theme_blue/btn_tab_N.png) stretch 10,10 ;
  1493. buttonborder : 0 none ;
  1494. buttonbordertype : round 2 2 lefttop righttop ;
  1495. buttonpadding : 4 8 4 8 ;
  1496. buttonmargin : 0 1 0 0 ;
  1497. cursor : hand ;
  1498. focusborder : 0 none ;
  1499. }
  1500. Tab.tab_backW:mouseover
  1501. {
  1502. font : Dotum,9,bold;
  1503. buttonbackground : url(theme://images/theme_blue/btn_tab_O.png) stretch 10,10;
  1504. buttonborder : none;
  1505. }
  1506. Tab.tab_backW:selected, Tab.tab_backW:focused
  1507. {
  1508. font : Dotum,9,bold;
  1509. color : #ffffff;
  1510. buttonbackground : url(theme://images/theme_blue/btn_tab_P.png) stretch 10,10;
  1511. buttonborder : none;
  1512. buttonmargin : 0 -1 0 0;
  1513. }
  1514. Tab.tab_backW:disabled
  1515. {
  1516. color : #888888;
  1517. buttonborder : 1 solid #b2bdc8;
  1518. buttonbackground : #e8edf2;
  1519. }
  1520. Tab.tab_backW[tabposition="left"]
  1521. {
  1522. background : none ;
  1523. border : none, 1 solid #84bfe1, none, 1 solid #84bfe1 ;
  1524. buttonbordertype : round 3 3 lefttop leftbottom ;
  1525. buttonbackground : url(theme://images/theme_blue/btn_tabLeft_N.png) stretch 10,10 ;
  1526. buttonmargin : 0 0 1 0 ;
  1527. }
  1528. Tab.tab_backW[tabposition="left"]:mouseover
  1529. {
  1530. buttonbackground : url(theme://images/theme_blue/btn_tabLeft_O.png) stretch 10,10;
  1531. }
  1532. Tab.tab_backW[tabposition="left"]:selected, Tab.tab_backW[tabposition="left"]:focused
  1533. {
  1534. buttonbackground : url(theme://images/theme_blue/btn_tabLeft_P.png) stretch 10,10;
  1535. }
  1536. Tab.tab_backW[tabposition="right"]
  1537. {
  1538. background : none ;
  1539. border : none, 1 solid #84bfe1, none, 1 solid #84bfe1 ;
  1540. buttonbordertype : round 3 3 righttop rightbottom ;
  1541. buttonbackground : url(theme://images/theme_blue/btn_tabRight_N.png) stretch 10,10 ;
  1542. buttonmargin : 0 0 1 0 ;
  1543. }
  1544. Tab.tab_backW[tabposition="right"]:mouseover
  1545. {
  1546. buttonbackground : url(theme://images/theme_blue/btn_tabRight_O.png) stretch 10,10;
  1547. }
  1548. Tab.tab_backW[tabposition="right"]:selected, Tab.tab_backW[tabposition="right"]:focused
  1549. {
  1550. border : 1 solid #84bfe1 ;
  1551. buttonbackground : url(theme://images/theme_blue/btn_tabRight_P.png) stretch 10,10 ;
  1552. }
  1553. Tab.tab_backW[tabposition="bottom"]
  1554. {
  1555. background : none ;
  1556. border : 1 solid #84bfe1, none, 1 solid #84bfe1, none ;
  1557. buttonbordertype : round 3 3 leftbottom rightbottom ;
  1558. buttonbackground : url(theme://images/theme_blue/btn_tabBottom_N.png) stretch 10,10 ;
  1559. buttonmargin : 0 1 0 0 ;
  1560. }
  1561. Tab.tab_backW[tabposition="bottom"]:mouseover
  1562. {
  1563. buttonbackground : url(theme://images/theme_blue/btn_tabBottom_O.png) stretch 10,10;
  1564. }
  1565. Tab.tab_backW[tabposition="bottom"]:selected, Tab[tabposition="bottom"]:focused
  1566. {
  1567. buttonbackground : url(theme://images/theme_blue/btn_tabBottom_P.png) stretch 10,10;
  1568. }
  1569. Tab.tab_backW>#spinupbutton
  1570. {
  1571. border : 1 solid #7FC4BC;
  1572. bordertype : round 2 2 lefttop leftbottom;
  1573. background : url(theme://images/theme_blue/btn_tabSpin_N.png) stretch 10,0;
  1574. image : theme://images/theme_blue/icon_tabSpinup_N.png;
  1575. imagealign : center middle;
  1576. pusheddrawoffset : 0 0;
  1577. margin : 0 0 0 22;
  1578. }
  1579. Tab.tab_backW>#spindownbutton
  1580. {
  1581. border : 1 solid #7FC4BC;
  1582. bordertype : round 2 2 righttop rightbottom;
  1583. background : url(theme://images/theme_blue/btn_tabSpin_N.png) stretch 10,0;
  1584. image : theme://images/theme_blue/icon_tabSpindn_N.png;
  1585. imagealign : center middle;
  1586. imagepadding : 0 0 0 1;
  1587. pusheddrawoffset : 0 0;
  1588. margin : 0 0 0 22;
  1589. }
  1590. /* Tab 2depth */
  1591. Tab.tab_2depth
  1592. {
  1593. background : url('theme://images/theme_blue/bg_tab2_BodyTop.png') stretch 10,23 ;
  1594. border : none ;
  1595. bordertype : normal ;
  1596. align : center middle ;
  1597. font : Dotum,9 ;
  1598. color : #333333 ;
  1599. buttonbackground : url(theme://images/theme_blue/btn_tab2_N.png) stretch 10,10 ;
  1600. buttonborder : 0 none ;
  1601. buttonbordertype : round 2 2 lefttop righttop ;
  1602. buttonpadding : 5 13 5 13 ;
  1603. buttonmargin : 0 1 0 0 ;
  1604. cursor : hand ;
  1605. focusborder : 0 none ;
  1606. }
  1607. Tab.tab_2depth:mouseover
  1608. {
  1609. buttonbackground : url(theme://images/theme_blue/btn_tab2_O.png) stretch 10,10;
  1610. buttonborder : none;
  1611. }
  1612. Tab.tab_2depth:selected, Tab.tab_2depth:focused
  1613. {
  1614. color : #333333 ;
  1615. font : Dotum,9,bold ;
  1616. buttonbackground : url(theme://images/theme_blue/btn_tab2_P.png) stretch 10,10 ;
  1617. buttonborder : none ;
  1618. buttonmargin : 0 -1 0 0 ;
  1619. }
  1620. Tab.tab_2depth:disabled
  1621. {
  1622. color : #888888;
  1623. buttonborder : 1 solid #b2bdc8;
  1624. buttonbackground : #e8edf2;
  1625. }
  1626. Tab.tab_2depth[tabposition="left"]
  1627. {
  1628. background : none ;
  1629. border : none, 1 solid #84bfe1, none, 1 solid #84bfe1 ;
  1630. buttonbordertype : round 3 3 lefttop leftbottom ;
  1631. buttonbackground : url(theme://images/theme_blue/btn_tabLeft2_N.png) stretch 10,10 ;
  1632. buttonmargin : 0 0 1 0 ;
  1633. }
  1634. Tab.tab_2depth[tabposition="left"]:mouseover
  1635. {
  1636. buttonbackground : url(theme://images/theme_blue/btn_tabLeft2_O.png) stretch 10,10;
  1637. }
  1638. Tab.tab_2depth[tabposition="left"]:selected, Tab.tab_2depth[tabposition="left"]:focused
  1639. {
  1640. buttonbackground : url(theme://images/theme_blue/btn_tabLeft2_P.png) stretch 10,10;
  1641. }
  1642. Tab.tab_2depth[tabposition="right"]
  1643. {
  1644. background : none ;
  1645. border : none, 1 solid #84bfe1, none, 1 solid 84bfe1 ;
  1646. buttonbordertype : round 3 3 righttop rightbottom ;
  1647. buttonbackground : url(theme://images/theme_blue/btn_tabRight2_N.png) stretch 10,10 ;
  1648. buttonmargin : 0 0 1 0 ;
  1649. }
  1650. Tab.tab_2depth[tabposition="right"]:mouseover
  1651. {
  1652. buttonbackground : url(theme://images/theme_blue/btn_tabRight2_O.png) stretch 10,10;
  1653. }
  1654. Tab.tab_2depth[tabposition="right"]:selected, Tab.tab_2depth[tabposition="right"]:focused
  1655. {
  1656. border : 1 solid #F2573D;
  1657. buttonbackground : url(theme://images/theme_blue/btn_tabRight2_P.png) stretch 10,10;
  1658. }
  1659. Tab.tab_2depth[tabposition="bottom"]
  1660. {
  1661. background : none ;
  1662. border : 1 solid #84bfe1, none, 1 solid #84bfe1, none ;
  1663. buttonbordertype : round 3 3 leftbottom rightbottom ;
  1664. buttonbackground : url(theme://images/theme_blue/btn_tabBottom2_N.png) stretch 10,10 ;
  1665. buttonmargin : 0 1 0 0 ;
  1666. }
  1667. Tab.tab_2depth[tabposition="bottom"]:mouseover
  1668. {
  1669. buttonbackground : url(theme://images/theme_blue/btn_tabBottom2_O.png) stretch 10,10;
  1670. }
  1671. Tab.tab_2depth[tabposition="bottom"]:selected, Tab.tab_2depth[tabposition="bottom"]:focused
  1672. {
  1673. buttonbackground : url(theme://images/theme_blue/btn_tabBottom2_P.png) stretch 10,10;
  1674. }
  1675. Tab>#spinupbutton
  1676. {
  1677. border : 1 solid #2d84be ;
  1678. bordertype : round 2 2 lefttop leftbottom ;
  1679. background : url(theme://images/theme_blue/btn_tabSpin_N.png) stretch 10,0 ;
  1680. image : theme://images/theme_blue/icon_tabSpinup_N.png ;
  1681. imagealign : center middle ;
  1682. pusheddrawoffset : 0 0 ;
  1683. margin : 0 -2 0 0 ;
  1684. }
  1685. Tab>#spinupbutton:mouseover
  1686. {
  1687. border : 1 solid #3d95cd ;
  1688. background : url(theme://images/theme_blue/btn_tabSpin_O.png) stretch 10,0 ;
  1689. image : theme://images/theme_blue/icon_tabSpinup_O.png ;
  1690. }
  1691. Tab>#spinupbutton:pushed
  1692. {
  1693. background : url(theme://images/theme_blue/btn_tabSpin_P.png) stretch 10,0 ;
  1694. border : 1 solid #ec6400 ;
  1695. image : theme://images/theme_blue/icon_tabSpinup_P.png ;
  1696. }
  1697. Tab>#spinupbutton:disabled
  1698. {
  1699. background : #f5f5f5 ;
  1700. border : 1 solid #B0B0B0 ;
  1701. image : theme://images/theme_blue/icon_tabSpinup_D.png ;
  1702. }
  1703. Tab>#spindownbutton
  1704. {
  1705. border : 1 solid #2d84be ;
  1706. bordertype : round 2 2 righttop rightbottom ;
  1707. background : url(theme://images/theme_blue/btn_tabSpin_N.png) stretch 10,0 ;
  1708. image : theme://images/theme_blue/icon_tabSpindn_N.png ;
  1709. imagealign : center middle ;
  1710. imagepadding : 0 0 0 1 ;
  1711. pusheddrawoffset : 0 0 ;
  1712. margin : 0 0 0 -1 ;
  1713. }
  1714. Tab>#spindownbutton:mouseover
  1715. {
  1716. border : 1 solid #3d95cd ;
  1717. background : url(theme://images/theme_blue/btn_tabSpin_O.png) stretch 10,0 ;
  1718. image : theme://images/theme_blue/icon_tabSpindn_O.png ;
  1719. }
  1720. Tab>#spindownbutton:pushed
  1721. {
  1722. background : url(theme://images/theme_blue/btn_tabSpin_P.png) stretch 10,0 ;
  1723. border : 1 solid #ec6400 ;
  1724. image : theme://images/theme_blue/icon_tabSpindn_P.png ;
  1725. }
  1726. Tab>#spindownbutton:disabled
  1727. {
  1728. background : #f5f5f5 ;
  1729. border : 1 solid #B0B0B0 ;
  1730. image : theme://images/theme_blue/icon_tabSpindn_D.png ;
  1731. }
  1732. Tab>#extrabutton
  1733. {
  1734. background : transparent;
  1735. image : theme://images/theme_blue/btn_tab_extra.png;
  1736. imagealign : center middle;
  1737. padding : 1 0 0 0;
  1738. }
  1739. Tab.tab_2depth>#extrabutton
  1740. {
  1741. background : transparent;
  1742. image : theme://images/theme_blue/btn_tab_extra2.png;
  1743. imagealign : center middle;
  1744. padding : 1 0 0 0;
  1745. }
  1746. Tab.tab_Normal
  1747. {
  1748. background : transparent ;
  1749. border : 0 none;
  1750. bordertype : normal ;
  1751. align : center middle;
  1752. font : Dotum,9 ;
  1753. color : transparent;
  1754. buttonborder : none;
  1755. buttonbordertype : normal;
  1756. buttonbackground : transparent;
  1757. buttonpadding : 0 0 0 0;
  1758. buttonmargin : 0 0 0 0;
  1759. cursor : arrow;
  1760. }
  1761. Tab.tab_Normal:mouseover
  1762. {
  1763. color : transparent;
  1764. buttonborder : none;
  1765. buttonbordertype : normal;
  1766. buttonbackground : transparent;
  1767. buttonpadding : 0 0 0 0;
  1768. buttonmargin : 0 0 0 0;
  1769. cursor : arrow;
  1770. }
  1771. Tab.tab_Normal:selected, Tab.tab_Normal:focused
  1772. {
  1773. font : Dotum,9,bold;
  1774. color : transparent;
  1775. buttonborder : none;
  1776. buttonbordertype : normal;
  1777. buttonbackground : transparent;
  1778. buttonpadding : 0 0 0 0;
  1779. buttonmargin : 0 0 0 0;
  1780. cursor : arrow;
  1781. }
  1782. Tab.tab_Normal:disabled
  1783. {
  1784. color : transparent ;
  1785. buttonborder : none;
  1786. buttonbordertype : normal;
  1787. buttonbackground : transparent;
  1788. buttonpadding : 0 0 0 0;
  1789. buttonmargin : 0 0 0 0;
  1790. cursor : arrow;
  1791. }
  1792. Tabpage.tab_Normal
  1793. {
  1794. background : url('theme://images/bg_NormalTab.png') stretch 10,23 ;
  1795. margin : 0 0 0 0;
  1796. }
  1797. /* Tabpage */
  1798. Tabpage
  1799. {
  1800. margin : 3 0 0 0;
  1801. }
  1802. /*** Grid ***/
  1803. Grid
  1804. {
  1805. background : #ffffff ;
  1806. border : 1 solid #1b5a89,0 solid #B0B0B0,1 solid #B0B0B0,0 solid #B0B0B0 ;
  1807. font : Dotum,9,bold ;
  1808. color : #333333 ;
  1809. align : center middle ;
  1810. focusborder : 0 none ;
  1811. treeopenbuttonimage : theme://images/icon_treeopen.png ;
  1812. treeclosebuttonimage : theme://images/icon_treeclose.png ;
  1813. treecollapseimage : theme://images/icon_treecollapse.png ;
  1814. treeexpandimage : theme://images/icon_treeexpand.png ;
  1815. treeitemimage : theme://images/icon_treeitem.png ;
  1816. treelinetype : 1 dotted #B0B0B0 ;
  1817. }
  1818. Grid>#head
  1819. {
  1820. border : 0 solid #1b5a89, 1 solid #B0B0B0, none, 1 solid #B0B0B0 ;
  1821. cellalign : center middle ;
  1822. cellbackground : url(theme://images/theme_blue/bg_gridHead.png) stretch 3,3 ;
  1823. cellcolor : #103b5f ;
  1824. cellfont : Dotum,9 ;
  1825. cellline : 1 solid #84bfe1 ;
  1826. cellpadding : 1 0 0 0 ;
  1827. }
  1828. Grid>#body
  1829. {
  1830. background : #ffffff ;
  1831. border : none, 1 solid #B0B0B0, 0 solid #B0B0B0, 1 solid #B0B0B0 ;
  1832. align : center middle ;
  1833. font : Dotum,9 ;
  1834. color : #333333 ;
  1835. cellalign : center middle ;
  1836. cellbackground : #ffffff ;
  1837. cellbackground2 : #f9f9f9 ;
  1838. cellline : 1 solid #B0B0B0 ;
  1839. celllinetype : normal ;
  1840. cellfont : Dotum,9 ;
  1841. cellcolor : #333333 ;
  1842. cellpadding : 0 4 0 4 ;
  1843. selectbackground : #ffefef ;
  1844. selectborder : 0 none ;
  1845. }
  1846. Grid>#body:mouseover
  1847. {
  1848. cellbackground : #E4E3E288 ;
  1849. cellbackground2 : #E4E3E288 ;
  1850. }
  1851. Grid>#summary
  1852. {
  1853. background : #F9E6C5 ;
  1854. border : 0 none ;
  1855. cellbackground : transparent ;
  1856. cellcolor : #000000 ;
  1857. cellfont : Dotum,9 ;
  1858. cellline : 1 solid #B0B0B0 ;
  1859. }
  1860. Grid.grd_2depth
  1861. {
  1862. background : #ffffff ;
  1863. border : 2 solid #1b5a89, 1 solid #B0B0B0, 1 solid #B0B0B0, 1 solid #B0B0B0 ;
  1864. font : Dotum,9,bold ;
  1865. color : #333333 ;
  1866. align : center middle ;
  1867. focusborder : 0 none ;
  1868. treeopenbuttonimage : theme://images/icon_treeopen.png ;
  1869. treeclosebuttonimage : theme://images/icon_treeclose.png ;
  1870. treecollapseimage : theme://images/icon_treecollapse.png ;
  1871. treeexpandimage : theme://images/icon_treeexpand.png ;
  1872. treeitemimage : theme://images/icon_treeitem.png ;
  1873. treelinetype : 1 dotted #B0B0B0 ;
  1874. }
  1875. Grid.grd_2depth>#head
  1876. {
  1877. border : 0 none ;
  1878. cellalign : center middle ;
  1879. cellbackground : url(theme://images/theme_blue/bg_gridHead_2depth.png) stretch 3,3 ;
  1880. cellcolor : #333333 ;
  1881. cellfont : Dotum,9 ;
  1882. cellline : 1 solid #B0B0B0 ;
  1883. cellpadding : 1 0 0 0 ;
  1884. }
  1885. Grid.grd_MenuGroup
  1886. {
  1887. background : transparent ;
  1888. border : 0 solid #D1D8DC, 0 solid #B0B0B0, 0 solid #B0B0B0, 0 solid #B0B0B0 ;
  1889. font : Dotum,10,bold ;
  1890. color : #ffffff ;
  1891. align : center middle ;
  1892. focusborder : 0 none ;
  1893. treeopenbuttonimage : theme://images/icon_treeopen.png ;
  1894. treeclosebuttonimage : theme://images/icon_treeclose.png ;
  1895. treecollapseimage : theme://images/icon_treecollapse.png ;
  1896. treeexpandimage : theme://images/icon_treeexpand.png ;
  1897. treeitemimage : theme://images/icon_treeitem.png ;
  1898. treelinetype : 1 dotted #B0B0B0 ;
  1899. }
  1900. Grid.grd_MenuGroup>#body
  1901. {
  1902. background : transparent ;
  1903. border : none, 0 solid #B0B0B0, 0 solid #92bcca, 0 solid #B0B0B0, 0 solid #B0B0B0 ;
  1904. align : center middle ;
  1905. font : Dotum,10,bold ;
  1906. color : #FFFFFF ;
  1907. cellalign : center middle ;
  1908. cellbackground : transparent ;
  1909. cellbackground2 : transparent ;
  1910. cellline : 1 solid #B0B0B0 ;
  1911. celllinetype : normal ;
  1912. cellfont : Dotum,10,bold ;
  1913. cellcolor : #FFFFFF ;
  1914. cellcolor2 : #FFFFFF ;
  1915. cellpadding : 0 0 0 5 ;
  1916. selectbackground : #103b5f ;
  1917. selectborder : 0 none ;
  1918. selectcolor : #ff6632 ;
  1919. }
  1920. /*
  1921. Grid.grd_MenuGroup>#vscrollbar, Grid.grd_MenuGroup>#vscrollbar:mouseover, Grid.grd_MenuGroup>#vscrollbar:focused
  1922. {
  1923. background : url('theme://images/theme_blue/bg_scrollbarV_Grid.png') repeat-y ;
  1924. border : none, 1 solid #b1d8ec, none, none ;
  1925. }
  1926. Grid.grd_MenuGroup>#hscrollbar, Grid.grd_MenuGroup>#hscrollbar:mouseover, Grid.grd_MenuGroup>#hscrollbar:focused
  1927. {
  1928. background : url('theme://images/theme_blue/bg_scrollbarH_Grid.png') repeat-x;
  1929. }
  1930. Grid.grd_MenuGroup>#vscrollbar>#trackbar
  1931. {
  1932. background : #e4f1f9 ;
  1933. border : 1 solid #b1d8ec ;
  1934. bordertype : round 3,3 ;
  1935. imagepadding : 0 0 0 0 ;
  1936. imagealign : center middle ;
  1937. pusheddrawoffset : 0 0 ;
  1938. focusborder : 0 none ;
  1939. }
  1940. Grid.grd_MenuGroup>#vscrollbar>#trackbar:mouseover
  1941. {
  1942. background : #cee6f4 ;
  1943. border : 1 solid #84bfe1 ;
  1944. }
  1945. Grid.grd_MenuGroup>#vscrollbar>#trackbar:pushed
  1946. {
  1947. background : #b1d8ec ;
  1948. border : 1 solid #58a6d5 ;
  1949. }
  1950. */
  1951. Grid.grd_MenuGroup>#vscrollbar
  1952. {
  1953. background : url('theme://images/bg_MG_scrollbarV.png') repeat-y;
  1954. border : 0 none;
  1955. scrollbarsize : 16;
  1956. incbtnsize : 16;
  1957. decbtnsize : 16;
  1958. }
  1959. Grid.grd_MenuGroup>#vscrollbar:mouseover, Grid.grd_MenuGroup>#vscrollbar:pushed, Grid.grd_MenuGroup>#vscrollbar:focused
  1960. {
  1961. background : url('theme://images/bg_MG_scrollbarV.png') repeat-y;
  1962. }
  1963. Grid.grd_MenuGroup>#vscrollbar>#trackbar
  1964. {
  1965. background : #253445 ;
  1966. border : 1 solid #607e9c ;
  1967. bordertype : round 3,3 ;
  1968. imagepadding : 0 0 0 0 ;
  1969. imagealign : center middle ;
  1970. pusheddrawoffset : 0 0 ;
  1971. focusborder : 0 none ;
  1972. }
  1973. Grid.grd_MenuGroup>#vscrollbar>#trackbar:mouseover
  1974. {
  1975. background : #2c3e50 ;
  1976. border : 1 solid #6e90ad ;
  1977. }
  1978. Grid.grd_MenuGroup>#vscrollbar>#trackbar:pushed
  1979. {
  1980. background : #202e3c ;
  1981. border : 1 solid #54738d ;
  1982. }
  1983. Grid.grd_MenuGroup>#vscrollbar>#decbutton
  1984. {
  1985. background : transparent;
  1986. border : 1 solid transparent;
  1987. image : theme://images/icon_MG_scrollV_Dec_N.png;
  1988. imagepadding : 0 0 0 0;
  1989. imagealign : center middle;
  1990. pusheddrawoffset : 0 0;
  1991. focusborder : 0 none;
  1992. }
  1993. Grid.grd_MenuGroup>#vscrollbar>#decbutton:mouseover
  1994. {
  1995. border : 1 solid #6e90ad;
  1996. image : theme://images/icon_MG_scrollV_Dec_O.png ;
  1997. }
  1998. Grid.grd_MenuGroup>#vscrollbar>#decbutton:pushed
  1999. {
  2000. border : 1 solid #54738d;
  2001. image : theme://images/icon_MG_scrollV_Dec_P.png ;
  2002. }
  2003. Grid.grd_MenuGroup>#vscrollbar>#decbutton:disabled
  2004. {
  2005. border : 1 solid transparent;
  2006. image : theme://images/icon_MG_scrollV_Dec_N.png;
  2007. }
  2008. Grid.grd_MenuGroup>#vscrollbar>#incbutton
  2009. {
  2010. background : transparent;
  2011. border : 1 solid transparent;
  2012. image : theme://images/icon_MG_scrollV_Inc_N.png;
  2013. imagepadding : 0 0 0 0;
  2014. imagealign : center middle;
  2015. pusheddrawoffset : 0 0;
  2016. focusborder : 0 none;
  2017. }
  2018. Grid.grd_MenuGroup>#vscrollbar>#incbutton:mouseover
  2019. {
  2020. border : 1 solid #6e90ad;
  2021. image : theme://images/icon_MG_scrollV_Inc_O.png ;
  2022. }
  2023. Grid.grd_MenuGroup>#vscrollbar>#incbutton:pushed
  2024. {
  2025. border : 1 solid #54738d;
  2026. image : theme://images/icon_MG_scrollV_Inc_P.png ;
  2027. }
  2028. Grid.grd_MenuGroup>#vscrollbar>#incbutton:disabled
  2029. {
  2030. border : 1 solid transparent;
  2031. image : theme://images/icon_MG_scrollV_Inc_N.png;
  2032. }
  2033. /* hscrollbar */
  2034. Grid.grd_MenuGroup>#hscrollbar
  2035. {
  2036. background : url('theme://images/bg_MG_scrollbarH.png') repeat-x;
  2037. border : 0 none;
  2038. scrollbarsize : 16;
  2039. incbtnsize : 16;
  2040. decbtnsize : 16;
  2041. }
  2042. Grid.grd_MenuGroup>#hscrollbar:mouseover, Grid.grd_MenuGroup>#hscrollbar:pushed, Grid.grd_MenuGroup>#hscrollbar:focused
  2043. {
  2044. background : url('theme://images/bg_MG_scrollbarH.png') repeat-x;
  2045. }
  2046. Grid.grd_MenuGroup>#hscrollbar>#trackbar
  2047. {
  2048. background : #253445 ;
  2049. border : 1 solid #607e9c ;
  2050. bordertype : round 3,3 ;
  2051. imagepadding : 0 0 0 0 ;
  2052. imagealign : center middle ;
  2053. pusheddrawoffset : 0 0 ;
  2054. focusborder : 0 none ;
  2055. }
  2056. Grid.grd_MenuGroup>#hscrollbar>#trackbar:mouseover
  2057. {
  2058. background : #2c3e50 ;
  2059. border : 1 solid #6e90ad ;
  2060. }
  2061. Grid.grd_MenuGroup>#hscrollbar>#trackbar:pushed
  2062. {
  2063. background : #202e3c ;
  2064. border : 1 solid #54738d ;
  2065. }
  2066. Grid.grd_MenuGroup>#hscrollbar>#decbutton
  2067. {
  2068. background : transparent;
  2069. border : 1 solid transparent;
  2070. image : theme://images/icon_MG_scrollH_Dec_N.png;
  2071. imagepadding : 0 0 0 0;
  2072. imagealign : center middle;
  2073. pusheddrawoffset : 0 0;
  2074. focusborder : 0 none;
  2075. }
  2076. Grid.grd_MenuGroup>#hscrollbar>#decbutton:mouseover
  2077. {
  2078. border : 1 solid #6e90ad;
  2079. image : theme://images/icon_MG_scrollH_Dec_O.png ;
  2080. }
  2081. Grid.grd_MenuGroup>#hscrollbar>#decbutton:pushed
  2082. {
  2083. border : 1 solid #54738d;
  2084. image : theme://images/icon_MG_scrollH_Dec_P.png ;
  2085. }
  2086. Grid.grd_MenuGroup>#hscrollbar>#decbutton:disabled
  2087. {
  2088. border : 1 solid transparent;
  2089. image : theme://images/icon_MG_scrollH_Dec_N.png;
  2090. }
  2091. Grid.grd_MenuGroup>#hscrollbar>#incbutton
  2092. {
  2093. background : transparent;
  2094. border : 1 solid transparent;
  2095. image : theme://images/icon_MG_scrollH_Inc_N.png;
  2096. imagepadding : 0 0 0 0;
  2097. imagealign : center middle;
  2098. pusheddrawoffset : 0 0;
  2099. focusborder : 0 none;
  2100. }
  2101. Grid.grd_MenuGroup>#hscrollbar>#incbutton:mouseover
  2102. {
  2103. border : 1 solid #6e90ad;
  2104. image : theme://images/icon_MG_scrollH_Inc_O.png ;
  2105. }
  2106. Grid.grd_MenuGroup>#hscrollbar>#incbutton:pushed
  2107. {
  2108. border : 1 solid #54738d;
  2109. image : theme://images/icon_MG_scrollH_Inc_P.png ;
  2110. }
  2111. Grid.grd_MenuGroup>#hscrollbar>#incbutton:disabled
  2112. {
  2113. border : 1 solid transparent;
  2114. image : theme://images/icon_MG_scrollH_Inc_N.png;
  2115. }
  2116. Grid.grd_MenuGroup>#resizebutton
  2117. {
  2118. background : url('theme://images/bg_MG_scrollbar_resize.png') stretch 4,4;
  2119. border : 0 none;
  2120. }
  2121. Grid.grd_Search_Menu
  2122. {
  2123. background : #ffffff ;
  2124. border : 2 solid #1b5a89,1 solid #1b5a89,1 solid #1b5a89,1 solid #1b5a89 ;
  2125. font : Dotum,9,bold ;
  2126. color : #333333 ;
  2127. align : center middle ;
  2128. focusborder : 0 none ;
  2129. treeopenbuttonimage : theme://images/icon_treeopen.png ;
  2130. treeclosebuttonimage : theme://images/icon_treeclose.png ;
  2131. treecollapseimage : theme://images/icon_treecollapse.png ;
  2132. treeexpandimage : theme://images/icon_treeexpand.png ;
  2133. treeitemimage : theme://images/icon_treeitem.png ;
  2134. treelinetype : 1 dotted #B0B0B0 ;
  2135. }
  2136. Grid.grd_Search_Menu>#body
  2137. {
  2138. background : #ffffff ;
  2139. border : none, 0 solid #B0B0B0, 0 solid #92bcca, 0 solid #B0B0B0 ;
  2140. align : center middle ;
  2141. font : Dotum,9 ;
  2142. color : #333333 ;
  2143. cellalign : center middle ;
  2144. cellbackground : #ffffff ;
  2145. cellbackground2 : #F9FAFB ;
  2146. cellline : 0 none #B0B0B0 ;
  2147. celllinetype : normal ;
  2148. cellfont : Dotum,9 ;
  2149. cellcolor : #333333 ;
  2150. cellpadding : 0 4 0 4 ;
  2151. selectbackground : #ffefef ;
  2152. selectborder : 0 none ;
  2153. selectcolor : #000000 ;
  2154. }
  2155. /* TF Style treeitemimage 이미지 treecollapseimage 설정과 동일 */
  2156. Grid.grd_Tree
  2157. {
  2158. background : #ffffff;
  2159. border : 1 solid #1b5a89, 0 solid #B0B0B0, 1 solid #B0B0B0, 0 solid #B0B0B0;
  2160. font : Dotum,9,bold;
  2161. color : #333333;
  2162. align : center middle;
  2163. focusborder : 0 none;
  2164. treeopenbuttonimage : theme://images/icon_treeopen.png;
  2165. treeclosebuttonimage : theme://images/icon_treeclose.png;
  2166. treecollapseimage : theme://images/icon_treecollapse.png;
  2167. treeexpandimage : theme://images/icon_treeexpand.png;
  2168. treeitemimage : theme://images/icon_treecollapse.png;
  2169. treelinetype : 1 dotted #B0B0B0;
  2170. }
  2171. Cell[displaytype="text"]
  2172. {
  2173. align : left middle;
  2174. padding : 1 2 1 2;
  2175. linespace : 2;
  2176. }
  2177. Cell[edittype="text"]
  2178. {
  2179. align : left middle;
  2180. padding : 1 2 1 2;
  2181. linespace : 2;
  2182. }
  2183. Cell[displaytype="number"]
  2184. {
  2185. align : right middle;
  2186. padding : 1 2 1 2;
  2187. }
  2188. Cell[edittype="number"]
  2189. {
  2190. align : right middle;
  2191. padding : 1 2 1 2;
  2192. }
  2193. Cell[displaytype="combo"]
  2194. {
  2195. align : left middle;
  2196. padding : 0 0 0 0;
  2197. }
  2198. Cell[edittype="combo"]
  2199. {
  2200. align : left middle;
  2201. padding : 0 0 0 0;
  2202. }
  2203. Cell[displaytype="image"]
  2204. {
  2205. align : left middle;
  2206. padding : 0 0 0 0;
  2207. }
  2208. Grid>#controledit
  2209. {
  2210. background : transparent;
  2211. border : 0 none #000000;
  2212. bordertype : normal;
  2213. align : left middle;
  2214. font : Dotum,9 ;
  2215. color : #333333 ;
  2216. padding : 0 0 0 0;
  2217. caretcolor : #6A543A ;
  2218. compositecolor : #ffffff ;
  2219. selectbackground : #2674aa ;
  2220. selectcolor : #ffffff ;
  2221. margin : -1 -1 -1 -1;
  2222. }
  2223. Grid>#controledit:mouseover, Grid>#controledit:focused
  2224. {
  2225. background : transparent;
  2226. }
  2227. Grid>#controledit:disabled
  2228. {
  2229. background : transparent;
  2230. border : 0 none #000000;
  2231. color : #888888;
  2232. }
  2233. Grid>#controlmaskedit
  2234. {
  2235. background : transparent;
  2236. border : 0 none #000000;
  2237. bordertype : normal;
  2238. align : left middle;
  2239. font : Dotum,9 ;
  2240. color : #333333 ;
  2241. padding : 0 0 0 0;
  2242. caretcolor : #6A543A ;
  2243. compositecolor : #ffffff ;
  2244. selectbackground : #2674aa ;
  2245. selectcolor : #ffffff ;
  2246. margin : -1 -1 -1 -1;
  2247. }
  2248. Grid>#controlmaskedit:mouseover, Grid>#controlmaskedit:focused
  2249. {
  2250. background : transparent;
  2251. }
  2252. Grid>#controlmaskedit:disabled
  2253. {
  2254. background : transparent;
  2255. border : 0 none #000000;
  2256. color : #888888;
  2257. }
  2258. Grid>#controltextarea
  2259. {
  2260. background : transparent;
  2261. border : 0 none #000000;
  2262. bordertype : normal;
  2263. align : left middle;
  2264. font : Dotum,9 ;
  2265. color : #333333 ;
  2266. padding : 0 0 0 0;
  2267. caretcolor : #6A543A ;
  2268. compositecolor : #ffffff ;
  2269. selectbackground : #2674aa ;
  2270. selectcolor : #ffffff ;
  2271. margin : -1 -1 -1 -1;
  2272. }
  2273. Grid>#controltextarea:mouseover, Grid>#controltextarea:focused
  2274. {
  2275. background : transparent;
  2276. }
  2277. Grid>#controltextarea:disabled
  2278. {
  2279. background : transparent;
  2280. border : 0 none #000000;
  2281. color : #888888;
  2282. }
  2283. Grid>#controlcombo
  2284. {
  2285. background : url('theme://images/bg_edit_Grid_N.png') stretch 5,5 ;
  2286. border : 0 none ;
  2287. bordertype : normal ;
  2288. font : Dotum,9 ;
  2289. color : #333333 ;
  2290. align : left middle ;
  2291. itembackground : #ffffff ;
  2292. itemheight : 19 ;
  2293. itemborder : 0 none ;
  2294. itempadding : 0 7 0 7 ;
  2295. itemcolor : #333333 ;
  2296. buttonsize : 17 ;
  2297. }
  2298. Grid>#controlcombo:mouseover, Grid>#controlcombo:focused, Grid>#controlcombo:selected
  2299. {
  2300. background : url('theme://images/bg_edit_Grid_O.png') stretch 5,5;
  2301. itembackground : #b1d8ec;
  2302. itemborder : 1 solid #84bfe1, 0 none, 1 solid #84bfe1, 0 none;
  2303. }
  2304. Grid>#controlcombo:focused, Grid>#controlcombo:selected
  2305. {
  2306. itembackground : #2674aa ;
  2307. itemborder : 1 solid #1b5a89, 0 none, 1 solid #1b5a89, 0 none ;
  2308. itemcolor : #ffffff ;
  2309. }
  2310. Grid>#controlcombo>#comboedit
  2311. {
  2312. background : transparent ;
  2313. border : none ;
  2314. color : #333333 ;
  2315. cursor : arrow;
  2316. padding : 0 0 0 0 ;
  2317. align : left middle ;
  2318. font : Dotum,9 ;
  2319. caretcolor : #6A543A ;
  2320. compositecolor : #ffffff ;
  2321. selectbackground : #2674aa ;
  2322. selectcolor : #ffffff ;
  2323. }
  2324. Grid>#controlcombo>#dropbutton
  2325. {
  2326. background : url('theme://images/btn_dropBg_Grid_N.png') stretch 5,5;
  2327. border : none;
  2328. image : theme://images/theme_blue/icon_drop_Grid_N.png;
  2329. imagealign : center middle;
  2330. imagepadding : 1 0 0 0;
  2331. cursor : arrow;
  2332. pusheddrawoffset : 0 0;
  2333. }
  2334. Grid>#controlcombo>#dropbutton:mouseover
  2335. {
  2336. background : url('theme://images/btn_dropBg_Grid_O.png') stretch 5,5;
  2337. image : theme://images/theme_blue/icon_drop_Grid_O.png;
  2338. imagepadding : 1 0 0 0;
  2339. }
  2340. Grid>#controlcombo>#dropbutton:selected, Grid>#controlcombo>#dropbutton:pushed
  2341. {
  2342. background : url('theme://images/theme_blue/btn_dropBg_Grid_P.png') stretch 5,5;
  2343. image : theme://images/theme_blue/icon_drop_Grid_O.png;
  2344. imagepadding : 1 0 0 0;
  2345. pusheddrawoffset : 0 0;
  2346. }
  2347. Grid>#controlcombo>#dropbutton:disabled
  2348. {
  2349. background : url('theme://images/btn_dropBg_Grid_D.png') stretch 5,5;
  2350. image : theme://images/theme_blue/icon_drop_Grid_D.png;
  2351. }
  2352. Grid>#controlcombo>#combolist
  2353. {
  2354. border : 1 solid #2674aa ;
  2355. bordertype : normal ;
  2356. cursor : arrow;
  2357. }
  2358. Grid>#controlcalendar
  2359. {
  2360. background : url('theme://images/bg_edit_Grid_N.png') stretch 5,5;
  2361. border : none;
  2362. bordertype : round 2 2;
  2363. align : left middle;
  2364. font : Dotum,9 ;
  2365. color : #333333 ;
  2366. buttonsize : 16 ;
  2367. daybackground : transparent ;
  2368. dayborder : 0 none ;
  2369. dayfont : Tahoma,8 ;
  2370. daycolor : #333333 ;
  2371. daysize : 24 20 ;
  2372. popupalign : ;
  2373. popupbackground : url('theme://images/theme_blue/bg_calPopup.png') stretch 10,60 ;
  2374. popupborder : 1 none ;
  2375. popupbordertype : normal ;
  2376. popupsize : 202 198 ;
  2377. usetrailingday : true ;
  2378. }
  2379. Grid>#controlcalendar:mouseover
  2380. {
  2381. background : url('theme://images/bg_edit_Grid_O.png') stretch 5,5 ;
  2382. daybackground : url('theme://images/theme_blue/bg_dayBg_O.png') stretch 5,5 ;
  2383. dayfont : Tahoma,8,bold ;
  2384. daycolor : #2674aa ;
  2385. }
  2386. Grid>#controlcalendar:focused, Grid>#controlcalendar:pushed, Grid>#controlcalendar:selected
  2387. {
  2388. background : url('theme://images/bg_edit_Grid_O.png') stretch 5,5;
  2389. daybackground : url('theme://images/theme_blue/bg_dayBg_P.png') stretch 5,5;
  2390. dayfont : Tahoma,8,bold;
  2391. daycolor : #FFFFFF;
  2392. }
  2393. Grid>#controlcalendar>#calendaredit
  2394. {
  2395. background : transparent ;
  2396. border : none ;
  2397. color : #333333 ;
  2398. padding : 0 0 0 0 ;
  2399. align : left middle ;
  2400. font : Dotum,9 ;
  2401. caretcolor : #6A543A ;
  2402. compositecolor : #ffffff ;
  2403. selectbackground : transparent ;
  2404. selectcolor : #333333 ;
  2405. }
  2406. Grid>#controlcalendar>#calendaredit:focused
  2407. {
  2408. background : transparent ;
  2409. selectbackground : #2674aa ;
  2410. selectcolor : #ffffff ;
  2411. }
  2412. Grid>#controlcalendar>#dropbutton
  2413. {
  2414. background : transparent;
  2415. border : 0 none;
  2416. focusborder : 0 none;
  2417. image : theme://images/icon_calDrop_Grid_N.png;
  2418. imagealign : right middle;
  2419. imagepadding : 0 2 0 0;
  2420. cursor : hand;
  2421. pusheddrawoffset : 0 0;
  2422. }
  2423. Grid>#controlcalendar>#dropbutton:pushed
  2424. {
  2425. pusheddrawoffset : 0 0;
  2426. }
  2427. Grid>#controlcalendar>#dropbutton:disabled
  2428. {
  2429. opacity : 50;
  2430. }
  2431. Grid>#controlcalendar>#popupcalendar
  2432. {
  2433. background : transparent ;
  2434. border : 0 none ;
  2435. font : Tahoma,8 ;
  2436. color : #333333 ;
  2437. align : center middle ;
  2438. padding : 0 0 0 0 ;
  2439. ncpadding : 29 3 3 3 ;
  2440. bodybackground : transparent ;
  2441. bodyborder : 0 none ;
  2442. headerbackground : transparent ;
  2443. headerborder : 0 none ;
  2444. headerfont : Tahoma,11,bold ;
  2445. headercolor : #ffffff ;
  2446. headerformat : yyyy.MM ;
  2447. headerheight : 27 ;
  2448. weekbackground : transparent ;
  2449. weekfont : Tahoma,8,bold ;
  2450. weekcolor : #333333 ;
  2451. weekformat : Su Mo Tu We Th Fr Sa ;
  2452. saturdaybackground : transparent ;
  2453. saturdayborder : 0 none #ffffff00 ;
  2454. saturdayfont : Tahoma,8 ;
  2455. saturdaycolor : #0061B3 ;
  2456. sundaybackground : transparent ;
  2457. sundayborder : 0 none #ffffff00 ;
  2458. sundayfont : Tahoma,8 ;
  2459. sundaycolor : #E1081C ;
  2460. todaybackground : url('theme://images/theme_blue/bg_dayBg_P.png') stretch 5,5;
  2461. todayborder : 0 none ;
  2462. todayfont : Tahoma,8,bold ;
  2463. todaycolor : #ffffff ;
  2464. usetrailingday : true ;
  2465. trailingdaybackground : transparent ;
  2466. trailingdayborder : 0 none #ffffff00 ;
  2467. trailingdayfont : Tahoma,8 ;
  2468. trailingdaycolor : #888888 ;
  2469. viewmonthspin : ;
  2470. viewyearspin : ;
  2471. margin : -2 0 0 0;
  2472. }
  2473. Grid>#controlcalendar>#popupcalendar>#prevbutton
  2474. {
  2475. image : URL('theme://images/theme_blue/btn_calPrev_N.png');
  2476. background : transparent;
  2477. border : 0 none ;
  2478. cursor : hand;
  2479. padding : 2 0 0 0;
  2480. }
  2481. Grid>#controlcalendar>#popupcalendar>#prevbutton:mouseover
  2482. {
  2483. image : URL('theme://images/theme_blue/btn_calPrev_O.png');
  2484. }
  2485. Grid>#controlcalendar>#popupcalendar>#prevbutton:pushed
  2486. {
  2487. image : URL('theme://images/theme_blue/btn_calPrev_P.png');
  2488. pusheddrawoffset : 0 0;
  2489. }
  2490. Grid>#controlcalendar>#popupcalendar>#nextbutton
  2491. {
  2492. image : URL('theme://images/theme_blue/btn_calNext_N.png');
  2493. background : transparent;
  2494. border : 0 none ;
  2495. cursor : hand;
  2496. padding : 2 0 0 0;
  2497. }
  2498. Grid>#controlcalendar>#popupcalendar>#nextbutton:mouseover
  2499. {
  2500. image : URL('theme://images/theme_blue/btn_calNext_O.png');
  2501. }
  2502. Grid>#controlcalendar>#popupcalendar>#nextbutton:pushed
  2503. {
  2504. image : URL('theme://images/theme_blue/btn_calNext_P.png');
  2505. pusheddrawoffset : 0 0;
  2506. }
  2507. Grid>#controlcalendar>#popupcalendar>#monthspin,
  2508. Grid>#controlcalendar>#popupcalendar>#yearspin
  2509. {
  2510. background : #ffffff ;
  2511. border : 1 solid #2674aa ;
  2512. bordertype : normal ;
  2513. font : Tahoma,10,bold ;
  2514. color : #333333 ;
  2515. align : left middle ;
  2516. margin : 0 5 0 0 ;
  2517. padding : 0 0 0 5 ;
  2518. buttonsize : 8 ;
  2519. }
  2520. Grid>#controlcalendar>#popupcalendar>#monthspin>#spinedit,
  2521. Grid>#controlcalendar>#popupcalendar>#monthspin>#spinedit:mouseover,
  2522. Grid>#controlcalendar>#popupcalendar>#yearspin>#spinedit,
  2523. Grid>#controlcalendar>#popupcalendar>#yearspin>#spinedit:mouseover
  2524. {
  2525. background : transparent ;
  2526. border : none ;
  2527. color : #333333 ;
  2528. padding : 0 5 0 5 ;
  2529. align : left middle ;
  2530. font : Dotum,9 ;
  2531. caretcolor : #6A543A ;
  2532. compositecolor : #ffffff ;
  2533. selectbackground : transparent ;
  2534. selectcolor : #333333 ;
  2535. }
  2536. Grid>#controlcalendar>#popupcalendar>#monthspin>#spinedit:focused,
  2537. Grid>#controlcalendar>#popupcalendar>#yearspin>#spinedit:focused
  2538. {
  2539. selectbackground : #2674aa ;
  2540. selectcolor : #ffffff ;
  2541. }
  2542. Grid>#controlcalendar>#popupcalendar>#monthspin>#spinupbutton,
  2543. Grid>#controlcalendar>#popupcalendar>#yearspin>#spinupbutton
  2544. {
  2545. background : transparent;
  2546. border : 0 none;
  2547. bordertype : normal;
  2548. image : URL('theme://images/icon_calSpinup_N.png');
  2549. imagepadding : 2 1 0 0;
  2550. pusheddrawoffset : 0 0;
  2551. cursor : hand;
  2552. }
  2553. Grid>#controlcalendar>#popupcalendar>#monthspin>#spinupbutton:mouseover,
  2554. Grid>#controlcalendar>#popupcalendar>#yearspin>#spinupbutton:mouseover
  2555. {
  2556. image : URL('theme://images/icon_calSpinup_O.png');
  2557. }
  2558. Grid>#controlcalendar>#popupcalendar>#monthspin>#spinupbutton:pushed,
  2559. Grid>#controlcalendar>#popupcalendar>#yearspin>#spinupbutton:pushed
  2560. {
  2561. image : URL('theme://images/icon_calSpinup_P.png');
  2562. }
  2563. Grid>#controlcalendar>#popupcalendar>#monthspin>#spindownbutton,
  2564. Grid>#controlcalendar>#popupcalendar>#yearspin>#spindownbutton
  2565. {
  2566. background : transparent;
  2567. border : 0 none;
  2568. bordertype : normal;
  2569. image : URL('theme://images/icon_calSpindn_N.png');
  2570. imagepadding : 0 1 2 0;
  2571. pusheddrawoffset : 0 0;
  2572. cursor : hand;
  2573. }
  2574. Grid>#controlcalendar>#popupcalendar>#monthspin>#spindownbutton:mouseover,
  2575. Grid>#controlcalendar>#popupcalendar>#yearspin>#spindownbutton:mouseover
  2576. {
  2577. image : URL('theme://images/icon_calSpindn_O.png');
  2578. }
  2579. Grid>#controlcalendar>#popupcalendar>#monthspin>#spindownbutton:pushed,
  2580. Grid>#controlcalendar>#popupcalendar>#yearspin>#spindownbutton:pushed
  2581. {
  2582. image : URL('theme://images/icon_calSpindn_P.png');
  2583. }
  2584. Grid>#controlbutton
  2585. {
  2586. background : url('theme://images/btn_drop_Grid_N.png') stretch 5,5 ;
  2587. border : none ;
  2588. font : Dotum,9 ;
  2589. color : #333333 ;
  2590. align : center middle ;
  2591. focusborder : 0 none ;
  2592. }
  2593. Grid>#controlbutton:mouseover
  2594. {
  2595. background : url('theme://images/btn_drop_Grid_O.png') stretch 5,5;
  2596. }
  2597. Grid>#controlbutton:pushed
  2598. {
  2599. background : url('theme://images/btn_drop_Grid_P.png') stretch 5,5;
  2600. color : #ffffff;
  2601. pusheddrawoffset : 0 0;
  2602. }
  2603. Grid>#controlbutton:disabled
  2604. {
  2605. background : url('theme://images/theme_blue/btn_drop_Grid_D.png') stretch 5,5;
  2606. color : #888888;
  2607. }
  2608. Grid>#controlcheckbox
  2609. {
  2610. background : transparent ;
  2611. border : 0 none ;
  2612. font : Dotum,9 ;
  2613. padding : 0 0 0 0 ;
  2614. color : #333333 ;
  2615. align : left middle ;
  2616. buttonimage : URL('theme://images/icon_check_N.png') ;
  2617. buttonalign : left center ;
  2618. buttonborder : 0 none ;
  2619. buttonsize : 14 ;
  2620. buttonbackground : url('theme://images/bg_check_N.png') stretch 3,3 ;
  2621. textpadding : 0 0 0 3 ;
  2622. focusborder : 0 none ;
  2623. }
  2624. Grid>#controlcheckbox:pushed
  2625. {
  2626. buttonbackground : URL('theme://images/bg_check_P.png') stretch 3,3;
  2627. }
  2628. Grid>#controlcheckbox:disabled
  2629. {
  2630. color : #888888;
  2631. buttonbackground : #FAF9F6;
  2632. buttonborder : 1 solid #D0C8B9;
  2633. buttonimage : url('theme://images/theme_blue/icon_check_D.png');
  2634. }
  2635. /*그리드에 Radio버튼을 Css로 구현*/
  2636. Grid.grd_radio>#controlcheckbox
  2637. {
  2638. background : transparent;
  2639. border : 0 none;
  2640. font : Dotum,9;
  2641. padding : 0 0 0 0;
  2642. color : #262626 ;
  2643. align : left middle;
  2644. buttonimage : URL('theme://images/icon_radio_N2.png');
  2645. buttonalign : left center;
  2646. buttonborder : 0 none;
  2647. buttonsize : 14;
  2648. buttonbackground : url('theme://images/bg_radio_N.png') stretch 3,3;
  2649. textpadding : 0 0 0 3;
  2650. focusborder : 0 none;
  2651. }
  2652. Grid.grd_radio>#controlcheckbox:pushed
  2653. {
  2654. buttonbackground : URL('theme://images/bg_radio_P.png') stretch 3,3;
  2655. }
  2656. Grid.grd_radio>#controlcheckbox:disabled
  2657. {
  2658. color : #888888;
  2659. buttonbackground : #FAF9F6;
  2660. buttonborder : 1 solid #D0C8B9;
  2661. buttonimage : url('theme://images/icon_radio_D.png');
  2662. }
  2663. Grid>#controlexpand
  2664. {
  2665. background : transparent;
  2666. border : 0 none;
  2667. bordertype : normal;
  2668. image : url('theme://images/icon_btn.png') left middle;
  2669. focusborder : 0 none;
  2670. pusheddrawoffset : 0 0;
  2671. }
  2672. Grid>#controlexpand:mouseover
  2673. {
  2674. }
  2675. Grid>#controlexpand:pushed
  2676. {
  2677. focusborder : 1 solid #2674aa;
  2678. pusheddrawoffset : 1 1;
  2679. }
  2680. Grid>#controlexpand:disabled
  2681. {
  2682. opacity : 60;
  2683. }
  2684. Grid>#controlprogressbar
  2685. {
  2686. background : #f7f7f5;
  2687. border : 1 solid #999999;
  2688. font : Dotum,9;
  2689. color : #666666;
  2690. align : center middle;
  2691. smooth : true;
  2692. direction : forward;
  2693. bartype : image;
  2694. progressimage : theme://images/theme_blue/img_progress_N.png;
  2695. focusborder : 0 none ;
  2696. }
  2697. Grid>#controlprogressbar:disabled
  2698. {
  2699. border : 1 solid #d5d5d5;
  2700. background : #ffffff ;
  2701. progressimage : theme://images/theme_blue/img_progress_D.png;
  2702. color : #888888;
  2703. }
  2704. Grid>#vscrollbar, Grid>#vscrollbar:mouseover, Grid>#vscrollbar:focused
  2705. {
  2706. background : url('theme://images/theme_blue/bg_scrollbarV_Grid.png') repeat-y ;
  2707. border : none, 1 solid #b1d8ec, none, none ;
  2708. }
  2709. Grid>#hscrollbar, Grid>#hscrollbar:mouseover, Grid>#hscrollbar:focused
  2710. {
  2711. background : url('theme://images/theme_blue/bg_scrollbarH_Grid.png') repeat-x;
  2712. }
  2713. /*** PopupMenu ***/
  2714. PopupMenu
  2715. {
  2716. background : #FFFFFF ;
  2717. align : left center ;
  2718. border : 1 solid #2674aa ;
  2719. bordertype : normal ;
  2720. padding : 0 0 0 0 ;
  2721. font : Dotum,9 ;
  2722. color : #333333 ;
  2723. itembackground : #FFFFFF ;
  2724. itemborder : 1 solid #FFFFFF ;
  2725. itemheight : 20 ;
  2726. itempadding : 1 0 1 4 ;
  2727. expandimage : URL('theme://images/theme_blue/icon_PopupMenu.png') ;
  2728. }
  2729. PopupMenu:mouseover
  2730. {
  2731. color : #333333 ;
  2732. itempadding : 1 1 1 5 ;
  2733. itembackground : #BBE0F9 ;
  2734. itemborder : 1 solid #B1D5EC, 0 solid transparent, 1 solid #9FBFD4, 0 solid transparent ;
  2735. }
  2736. PopupMenu:disabled
  2737. {
  2738. color : #888888;
  2739. }
  2740. PopupMenu>#spindownbutton
  2741. {
  2742. background : @gradation;
  2743. gradation : linear 0,0 #efefef 0,100 #e5e5e5;
  2744. border : 1 solid #999999, 0 none, 0 none, 0 none;
  2745. bordertype : ;
  2746. font : Verdana,9,antialias;
  2747. padding : 0 0 0 0;
  2748. color : black;
  2749. align : center middle;
  2750. margin : 1 -2 -2 -2;
  2751. opacity : 100;
  2752. blur : ;
  2753. outerglow : ;
  2754. transformation : ;
  2755. focusborder : 1 dotted gray;
  2756. image : URL('theme://images/Menu_Spin_Down_N.png');
  2757. }
  2758. PopupMenu>#spindownbutton:mouseover
  2759. {
  2760. background : @gradation;
  2761. gradation : linear 0,0 #fed261 0,100 #fab954;
  2762. border : 1 solid #edaa19, 0 none, 0 none, 0 none;
  2763. image : URL('theme://images/Menu_Spin_Down_N.png');
  2764. }
  2765. PopupMenu>#spindownbutton:pushed
  2766. {
  2767. background : @gradation;
  2768. gradation : linear 0,0 #ffab51 0,100 #efa13b;
  2769. border : 1 solid #e7830e, 0 none, 0 none, 0 none;
  2770. image : URL('theme://images/Menu_Spin_Down_N.png');
  2771. }
  2772. PopupMenu>#spindownbutton:disabled
  2773. {
  2774. background : #707070;
  2775. gradation : ;
  2776. border : 1 solid #707070;
  2777. color : #dedcdc;
  2778. image : URL('theme://images/Menu_Spin_Down_D.png');
  2779. }
  2780. PopupMenu>#spinupbutton
  2781. {
  2782. background : @gradation;
  2783. gradation : linear 0,0 #f4f4f4 0,100 #e3e3e3;
  2784. border : 0 none, 0 none, 1 solid #999999, 0 none;
  2785. bordertype : ;
  2786. font : Verdana,9,antialias;
  2787. padding : 0 0 0 0;
  2788. color : black;
  2789. align : center middle;
  2790. margin : -2 -2 1 -2;
  2791. opacity : 100;
  2792. shadow : 0 none ;
  2793. blur : ;
  2794. outerglow : ;
  2795. transformation : ;
  2796. focusborder : 1 dotted gray;
  2797. image : URL('theme://images/Menu_Spin_Up_N.png');
  2798. }
  2799. PopupMenu>#spinupbutton:mouseover
  2800. {
  2801. background : @gradation;
  2802. gradation : linear 0,0 #fed261 0,100 #fab954;
  2803. border : 0 none, 0 none, 1 solid #edaa19, 0 none;
  2804. image : URL('theme://images/Menu_Spin_Up_N.png');
  2805. }
  2806. PopupMenu>#spinupbutton:pushed
  2807. {
  2808. background : @gradation;
  2809. gradation : linear 0,0 #ffab51 0,100 #efa13b;
  2810. border : 0 none, 0 none, 1 solid #e7830e, 0 none;
  2811. image : URL('theme://images/Menu_Spin_Up_N.png');
  2812. }
  2813. PopupMenu>#spinupbutton:disabled
  2814. {
  2815. background : #efefef;
  2816. gradation : ;
  2817. border : 0 none, 0 none, 1 solid #dadada, 0 none;
  2818. color : #dedcdc;
  2819. image : URL('theme://images/Menu_Spin_Up_D.png');
  2820. }
  2821. /*** #contextmenu ***/
  2822. *>#contextmenu
  2823. {
  2824. background : #F7F4EE;
  2825. align : left center;
  2826. border : 1 solid #B8B1A4;
  2827. bordertype : normal;
  2828. padding : 2 0 2 0;
  2829. font : Dotum,9;
  2830. color : #333333 ;
  2831. itembackground : #f2f2ef;
  2832. itemheight : 20;
  2833. itempadding : 1 0 1 4;
  2834. expandimage : URL('theme://images/theme_blue/icon_PopupMenu.png');
  2835. }
  2836. *>#contextmenu:mouseover
  2837. {
  2838. color : #333333 ;
  2839. itempadding : 1 1 1 5;
  2840. itembackground : #FFD1C9;
  2841. itemborder : 1 solid #FFCBC2, 0 solid transparent, 1 solid #FFAEA0, 0 solid transparent;
  2842. }
  2843. *>#contextmenu:disabled
  2844. {
  2845. color : #888888;
  2846. }
  2847. /*** Menu ***/
  2848. Menu
  2849. {
  2850. background : transparent ;
  2851. align : center middle ;
  2852. border : 0 none ;
  2853. font : Dotum,10,bold ;
  2854. color : #e4f1f9 ;
  2855. padding : 0 0 0 15 ;
  2856. itemcolor : #333333 ;
  2857. itempadding : 0 30 0 30 ;
  2858. itembackground : transparent;
  2859. checkboximage : ;
  2860. popupbackground : #ffffff ;
  2861. popupborder : 1 solid #2674aa ;
  2862. popupbordertype : normal ;
  2863. popuppadding : 0 0 0 0 ;
  2864. popupcolor : #333333 ;
  2865. popupfont : Dotum,9,bold ;
  2866. popupitemheight : 23 ;
  2867. popupitempadding : 0 5 0 5 ;
  2868. popupitemborder : 0 none ;
  2869. popupitembackground : ;
  2870. popupitemalign : left middle;
  2871. expandimage : URL('theme://images/theme_blue/icon_PopupMenu.png');
  2872. }
  2873. Menu:mouseover
  2874. {
  2875. itembackground : #15466A ;
  2876. color : #ffffff ;
  2877. popupitembackground : #cee6f4 ;
  2878. popupitemborder : 1 solid #84bfe1, 0 solid transparent, 1 solid #58a6d5, 0 solid transparent ;
  2879. popupitempadding : 1 5 1 5 ;
  2880. popupcolor : #333333 ;
  2881. }
  2882. Menu:pushed, Menu:selected, Menu:focused
  2883. {
  2884. itembackground : #15466A ;
  2885. color : #FFFFFF ;
  2886. }
  2887. Menu:disabled
  2888. {
  2889. itemcolor : #f97818 ;
  2890. popupcolor : #888888 ;
  2891. }
  2892. /*** GroupBox ***/
  2893. GroupBox
  2894. {
  2895. background : #f0f7fc ;
  2896. border : 1 solid #84bfe1 ;
  2897. bordertype : round 6 6 ;
  2898. color : #333333 ;
  2899. align : left middle ;
  2900. font : Dotum,9 ;
  2901. titlepadding : 0 6 0 6 ;
  2902. titlealign : topleft ;
  2903. titleimage : ;
  2904. titleimagealign : lefttext middle;
  2905. }
  2906. GroupBox:disabled
  2907. {
  2908. background : #e4f1f9 ;
  2909. border : 1px solid #84bfe1 ;
  2910. color : #888888 ;
  2911. }
  2912. /*** Splitter ***/
  2913. Splitter
  2914. {
  2915. background : #b1d8ec ;
  2916. border : 1 solid #3d95cd ;
  2917. bordertype : round 3 3 ;
  2918. }
  2919. /*** ProgressBar ***/
  2920. ProgressBar
  2921. {
  2922. background : #f97818 ;
  2923. border : 1 solid #ec6400 ;
  2924. font : Dotum,9 ;
  2925. color : #FFFFFF ;
  2926. align : center middle ;
  2927. smooth : true ;
  2928. direction : forward ;
  2929. bartype : image ;
  2930. progressimage : theme://images/theme_blue/img_progress_N.png ;
  2931. focusborder : 0 none ;
  2932. }
  2933. ProgressBar:disabled
  2934. {
  2935. background : #f5f5f5 ;
  2936. border : 1 solid #cccccc ;
  2937. progressimage : theme://images/theme_blue/img_progress_D.png ;
  2938. color : #888888 ;
  2939. }
  2940. /*** ImageViewer ***/
  2941. ImageViewer
  2942. {
  2943. background : #FFFFFF ;
  2944. border : 1 solid #B0B0B0 ;
  2945. font : Dotum, 9 ;
  2946. color : #333333 ;
  2947. align : center middle ;
  2948. focusborder : 0 none ;
  2949. }
  2950. ImageViewer:mouseover, ImageViewer:focused
  2951. {
  2952. border : 1 solid #84bfe1 ;
  2953. }
  2954. ImageViewer:disabled
  2955. {
  2956. opacity : 50;
  2957. }
  2958. /*** Shape ***/
  2959. Shape
  2960. {
  2961. background : transparent ;
  2962. color : #333333 ;
  2963. align : center middle ;
  2964. font : Dotum, 9 ;
  2965. border : 0 none ;
  2966. fillbrush : solid #f0f7fc true ;
  2967. strokepen : 1 solid #84bfe1 ;
  2968. }
  2969. Shape:disabled
  2970. {
  2971. color : #888888 ;
  2972. strokepen : 1 solid #58a6d5 ;
  2973. fillbrush : solid #e4f1f9 true ;
  2974. }
  2975. Shape.line_1, Shape.line_1:disabled
  2976. {
  2977. fillbrush : solid #84bfe1 true ;
  2978. strokepen : 1 solid #84bfe1 ;
  2979. }
  2980. Shape.line_2, Shape.line_2:disabled
  2981. {
  2982. strokepen : 1 solid #B0B0B0 ;
  2983. }
  2984. Shape.line_3, Shape.line_3:disabled
  2985. {
  2986. strokepen : 1 solid #84bfe1 ;
  2987. }
  2988. Shape.line_4, Shape.line_4:disabled
  2989. {
  2990. strokepen : 1 solid #ffaf4b ;
  2991. }
  2992. Shape.line_10, Shape.line_10:disabled
  2993. {
  2994. strokepen : 3 solid #5c9ab9;
  2995. }
  2996. /*** GraphicPath ***/
  2997. GraphicPath
  2998. {
  2999. background : transparent ;
  3000. color : #333333 ;
  3001. align : center middle ;
  3002. font : Dotum,9 ;
  3003. }
  3004. /*** Alert ***/
  3005. Alert
  3006. {
  3007. background : #ffffff ;
  3008. border : 2 solid #2674aa ;
  3009. font : Dotum,9 ;
  3010. color : #333333 ;
  3011. align : left middle ;
  3012. padding : 5 10 5 19 ;
  3013. icon : theme://images/theme_blue/icon_alert_default.png ;
  3014. erroricon : theme://images/theme_blue/icon_alert_error.png ;
  3015. warningicon : theme://images/theme_blue/icon_alert_warning.png ;
  3016. questionicon : theme://images/theme_blue/icon_alert_question.png ;
  3017. informationicon : theme://images/theme_blue/icon_alert_information.png ;
  3018. iconalign : lefttext middle ;
  3019. iconpadding : 7 10 10 0 ;
  3020. iconsize : 42 ;
  3021. buttonheight : 21 ;
  3022. buttonwidth : 56 ;
  3023. okbuttontext : 예 ;
  3024. titlebackground : #2674aa ;
  3025. titlefont : Dotum,10,bold ;
  3026. titlecolor : #ffffff ;
  3027. titleheight : 25 ;
  3028. titlepadding : 0 0 0 10 ;
  3029. titletext : Alert ;
  3030. }
  3031. Alert>#closebutton
  3032. {
  3033. background : transparent ;
  3034. border : 1 solid #ffffff ;
  3035. focusborder : 0 none ;
  3036. margin : 4 6 -4 -6 ;
  3037. image : URL('theme://images/btn_popClose.png') ;
  3038. imagealign : center middle ;
  3039. }
  3040. Alert>#okbutton
  3041. {
  3042. border : 0 none;
  3043. bordertype : normal;
  3044. font : Dotum,9,bold;
  3045. color : #ffffff;
  3046. align : center middle;
  3047. focusborder : 0 none;
  3048. margin : -8 0 8 0;
  3049. pusheddrawoffset : 0 0;
  3050. }
  3051. Alert>#okbutton
  3052. {
  3053. background : url('theme://images/theme_blue/btn_alert_N.png') stretch 9,9 left top;
  3054. }
  3055. Alert>#okbutton:mouseover
  3056. {
  3057. background : url('theme://images/theme_blue/btn_alert_O.png') stretch 9,9 left top;
  3058. }
  3059. Alert>#okbutton:pushed
  3060. {
  3061. background : url('theme://images/theme_blue/btn_alert_P.png') stretch 9,9 left top ;
  3062. }
  3063. /*** confirm ***/
  3064. Confirm
  3065. {
  3066. background : #ffffff ;
  3067. border : 2 solid #3d95cd ;
  3068. font : Dotum,9 ;
  3069. color : #333333 ;
  3070. align : center middle ;
  3071. padding : 5 10 5 19 ;
  3072. icon : theme://images/theme_blue/icon_confirm_default.png ;
  3073. erroricon : theme://images/theme_blue/icon_confirm_error.png ;
  3074. warningicon : theme://images/theme_blue/icon_confirm_warning.png ;
  3075. questionicon : theme://images/theme_blue/icon_confirm_question.png ;
  3076. informationicon : theme://images/theme_blue/icon_confirm_information.png ;
  3077. iconalign : left middle ;
  3078. iconpadding : 7 70 10 0 ;
  3079. iconsize : 48 ;
  3080. buttonheight : 21 ;
  3081. buttonwidth : 56 ;
  3082. okbuttontext : 예 ;
  3083. cancelbuttontext : 아니오 ;
  3084. titlebackground : #3d95cd ;
  3085. titlefont : Dotum,10,bold ;
  3086. titlecolor : #ffffff ;
  3087. titleheight : 25 ;
  3088. titlepadding : 0 0 0 10 ;
  3089. titletext : Confirm ;
  3090. }
  3091. Confirm>#closebutton
  3092. {
  3093. background : transparent;
  3094. border : 1 solid #ffffff00;
  3095. focusborder : 0 none;
  3096. margin : 4 6 -4 -6;
  3097. image : URL('theme://images/btn_popClosepng')
  3098. imagealign : center middle;
  3099. }
  3100. Confirm>#okbutton
  3101. {
  3102. border : 0 none ;
  3103. bordertype : normal ;
  3104. font : Dotum,9,bold ;
  3105. color : #ffffff ;
  3106. align : center middle ;
  3107. focusborder : 0 none ;
  3108. margin : -8 0 8 0 ;
  3109. pusheddrawoffset : 0 0 ;
  3110. }
  3111. Confirm>#okbutton
  3112. {
  3113. background : url('theme://images/theme_blue/btn_alert_N.png') stretch 9,9 left top ;
  3114. }
  3115. Confirm>#okbutton:mouseover
  3116. {
  3117. background : url('theme://images/theme_blue/btn_alert_O.png') stretch 9,9 left top ;
  3118. }
  3119. Confirm>#okbutton:pushed
  3120. {
  3121. background : url('theme://images/theme_blue/btn_alert_P.png') stretch 9,9 left top ;
  3122. }
  3123. Confirm>#cancelbutton
  3124. {
  3125. border : 0 none ;
  3126. bordertype : normal ;
  3127. font : Dotum,9,bold ;
  3128. color : #666666 ;
  3129. align : center middle ;
  3130. focusborder : 0 none ;
  3131. margin : -8 0 8 0 ;
  3132. pusheddrawoffset : 0 0 ;
  3133. }
  3134. Confirm>#cancelbutton
  3135. {
  3136. background : url('theme://images/theme_blue/btn_confirm_N.png') stretch 9,9 left top;
  3137. }
  3138. Confirm>#cancelbutton:mouseover
  3139. {
  3140. background : url('theme://images/theme_blue/btn_confirm_O.png') stretch 9,9 left top;
  3141. }
  3142. Confirm>#cancelbutton:pushed
  3143. {
  3144. background : url('theme://images/theme_blue/btn_confirm_P.png') stretch 9,9 left top ;
  3145. }
  3146. /*** Tooltip ***/
  3147. Tooltip
  3148. {
  3149. background : #ffffe5;
  3150. border : 1 solid #a67756;
  3151. bordertype : normal;
  3152. font : Dotum,9;
  3153. color : #333333;
  3154. align : left middle;
  3155. padding : 2 5 2 5;
  3156. }
  3157. /*** FileDownload 정의 ***/
  3158. FileDownload
  3159. {
  3160. background : #e4f1f9 ;
  3161. border : 1 solid #84bfe1 ;
  3162. bordertype : round 2,2 ;
  3163. color : #333333 ;
  3164. font : Dotum,9 ;
  3165. padding : 0 0 0 0 ;
  3166. align : center middle ;
  3167. }
  3168. FileDownload:mouseover
  3169. {
  3170. background : #cee6f4 ;
  3171. border : 1 soild #3d95cd ;
  3172. color : #333333 ;
  3173. }
  3174. FileDownload:disabled
  3175. {
  3176. opacity : 50;
  3177. }
  3178. /*** FileUpload 정의 ***/
  3179. FileUpload
  3180. {
  3181. align : left middle ;
  3182. border : 0 none #808080 ;
  3183. font : Dotum,9 ;
  3184. color : #333333 ;
  3185. itemheight : 20 ;
  3186. buttonsize : 80 ;
  3187. focusborder : 0 none #808080 ;
  3188. cursor : hand ;
  3189. pusheddrawoffset : 0 0 ;
  3190. editbackground : url('theme://images/theme_blue/bg_edit_N.png') stretch 5,5 ;
  3191. editborder : 0 none #808080 ;
  3192. editcolor : #333333 ;
  3193. editfont : Dotum,9 ;
  3194. editpadding : 0 3 0 3 ;
  3195. buttonbackground : #e4f1f9 ;
  3196. buttonborder : 1 solid #84bfe1 ;
  3197. buttonbordertype : round 2,2 ;
  3198. buttoncolor : #333333 ;
  3199. buttonfont : Dotum,9 ;
  3200. buttontext : 파일찾기 ;
  3201. buttonpadding : 0 5 0 5 ;
  3202. buttonmargin : 0 0 0 2 ;
  3203. }
  3204. FileUpload:mouseover
  3205. {
  3206. editbackground : url('theme://images/theme_blue/bg_edit_O.png') stretch 5,5 ;
  3207. buttonbackground : #f0f7fc ;
  3208. buttonborder : 1 soild #b1d8ec ;
  3209. buttoncolor : #333333 ;
  3210. }
  3211. FileUpload:disabled
  3212. {
  3213. opacity : 50;
  3214. }
  3215. /* UserConfirm */
  3216. /*
  3217. UserConfirm
  3218. {
  3219. align : left middle;
  3220. background : #F2F6FD;
  3221. border : 2 solid #475D84;
  3222. gradation : linear 0,30 #ffffff 0,100 #eeeeee;
  3223. shadow : drop 2,2 3 #9999997f;
  3224. margin : 0 5 5 0;
  3225. font : Dotum,9;
  3226. padding : 5 10 5 10;
  3227. color : #333333;
  3228. focusborder : 0 none #808080;
  3229. titleheight : 30;
  3230. titlebackground : @gradation;
  3231. titlegradation : linear 0,0 #637BA6 0,100 #FFFFFF [90% #637BA6][91% #FFFFFF];
  3232. titlecolor : #ffffff;
  3233. titlefont : Dotum,10,bold;
  3234. titlepadding : 5 5 8 5;
  3235. titletext : Confirm;
  3236. okbuttontext : Yes;
  3237. cancelbuttontext : No;
  3238. buttonwidth : 56;
  3239. buttonheight : 20;
  3240. icon : theme://images/theme_blue/icon_confirm_default.png;
  3241. iconpadding : 0 7 0 0;
  3242. }
  3243. UserConfirm>#closebutton, UserConfirm>#closebutton:mouseover, UserConfirm>#closebutton:pushed
  3244. {
  3245. background : transparent URL('theme://images/btn_popClosepng') center middle;
  3246. border : 0 none #808080;
  3247. cursor : hand;
  3248. pusheddrawoffset : 0 0;
  3249. }
  3250. UserConfirm>#closebutton:disabled
  3251. {
  3252. opacity : 50;
  3253. }
  3254. UserConfirm>#okbutton
  3255. {
  3256. border : 0 none;
  3257. bordertype : normal;
  3258. font : Dotum,9,bold;
  3259. color : #ffffff;
  3260. align : center middle;
  3261. shadow : drop 0,1 2 #0000007f;
  3262. focusborder : 0 none;
  3263. margin : -8 0 8 0;
  3264. pusheddrawoffset : 0 0;
  3265. }
  3266. UserConfirm>#okbutton:mouseover
  3267. {
  3268. background : url('theme://images/theme_blue/btn_confirm_N.png') stretch 9,9;
  3269. }
  3270. UserConfirm>#okbutton:mouseover
  3271. {
  3272. background : url('theme://images/theme_blue/btn_confirm_O.png') stretch 9,9;
  3273. }
  3274. UserConfirm>#okbutton:pushed
  3275. {
  3276. background : url('theme://images/theme_blue/btn_confirm_P.png') stretch 9,9;
  3277. }
  3278. UserConfirm>#okbutton:disabled
  3279. {
  3280. opacity : 50;
  3281. }
  3282. UserConfirm>#cancelbutton
  3283. {
  3284. font : Dotum,9,bold;
  3285. color : #ffffff;
  3286. padding : 0 5 2 5;
  3287. border : 0 none #808080;
  3288. bordertype : normal 0 0;
  3289. focusborder : 0 none #808080;
  3290. margin : 0 0 3 0;
  3291. cursor : hand;
  3292. pusheddrawoffset : 0 0;
  3293. }
  3294. UserConfirm>#cancelbutton
  3295. {
  3296. background : url('theme://images/theme_blue/btn_confirm_N.png') stretch 9,9;
  3297. }
  3298. UserConfirm>#cancelbutton:mouseover
  3299. {
  3300. background : url('theme://images/theme_blue/btn_confirm_O.png') stretch 9,9;
  3301. }
  3302. UserConfirm>#cancelbutton:pushed
  3303. {
  3304. background : url('theme://images/theme_blue/btn_confirm_P.png') stretch 9,9;
  3305. }
  3306. UserConfirm>#cancelbutton:disabled
  3307. {
  3308. opacity : 50;
  3309. }
  3310. UserConfirm>#checkbox
  3311. {
  3312. border : 0 none #808080;
  3313. color : #333333;
  3314. font : Dotum,9;
  3315. focusborder : 0 none #808080;
  3316. textpadding : -2 0 0 2;
  3317. buttonalign : left middle;
  3318. buttonbackground : theme://images/bg_check_N.png;
  3319. buttonborder : 0 none;
  3320. buttonimage : theme://images/icon_check_N.png;
  3321. buttonsize : 13;
  3322. }
  3323. UserConfirm>#checkbox:mouseover
  3324. {
  3325. buttonborder : 2 double #459094 #ffffff;
  3326. buttonbackground : #f2f2f2;
  3327. }
  3328. UserConfirm>#checkbox:disabled
  3329. {
  3330. buttonbackground : theme://images/bg_check_N.png;
  3331. buttonimage : theme://images/theme_blue/icon_check_D.png;
  3332. opacity : 50;
  3333. }
  3334. */
  3335. UserConfirm
  3336. {
  3337. align : left middle ;
  3338. background : #f0f7fc ;
  3339. border : 2 solid #2674aa ;
  3340. bordertype : round 5 5 ;
  3341. shadow : drop 2,2 3 #999999 ;
  3342. margin : 0 5 5 0 ;
  3343. font : Dotum,9 ;
  3344. padding : 5 10 5 10 ;
  3345. color : #333333 ;
  3346. focusborder : 0 none #808080 ;
  3347. titleheight : 30 ;
  3348. titlebackground : #f0f7fc URL('theme://images/theme_blue/alert_title_bg.png') stretch 28,0 ;
  3349. titlecolor : #333333 ;
  3350. titlefont : Dotum,10,bold ;
  3351. titlepadding : 5 5 8 23 ;
  3352. titletext : Confirm ;
  3353. okbuttontext : Yes ;
  3354. cancelbuttontext : No ;
  3355. buttonwidth : 56 ;
  3356. buttonheight : 20 ;
  3357. icon : theme://images/theme_blue/confirm_default.png ;
  3358. iconpadding : 0 7 0 0 ;
  3359. }
  3360. UserConfirm>#closebutton, UserConfirm>#closebutton:mouseover, UserConfirm>#closebutton:pushed
  3361. {
  3362. background : transparent URL('theme://images/theme_blue/popup_close.png') center middle;
  3363. border : 0 none #808080;
  3364. cursor : hand;
  3365. pusheddrawoffset : 0 0;
  3366. }
  3367. UserConfirm>#closebutton:disabled
  3368. {
  3369. opacity : 50 ;
  3370. }
  3371. UserConfirm>#okbutton
  3372. {
  3373. background : transparent URL('theme://images/theme_blue/btn_alert_N.png') stretch 8,14 ;
  3374. font : Dotum,9,bold ;
  3375. color : #ffffff ;
  3376. padding : 0 5 2 5 ;
  3377. border : 0 none #808080 ;
  3378. focusborder : 0 none #808080 ;
  3379. margin : 0 0 3 0 ;
  3380. cursor : hand ;
  3381. pusheddrawoffset : 0 0 ;
  3382. }
  3383. UserConfirm>#okbutton:mouseover
  3384. {
  3385. background : transparent URL('theme://images/theme_blue/btn_alert_O.png') stretch 8,14 ;
  3386. }
  3387. UserConfirm>#okbutton:pushed
  3388. {
  3389. background : transparent URL('theme://images/theme_blue/btn_alert_P.png') stretch 8,14 ;
  3390. }
  3391. UserConfirm>#okbutton:disabled
  3392. {
  3393. opacity : 50;
  3394. }
  3395. UserConfirm>#cancelbutton
  3396. {
  3397. background : transparent URL('theme://images/theme_blue/btn_confirm_N.png') stretch 8,14 ;
  3398. font : Dotum,9,bold ;
  3399. color : #666666 ;
  3400. padding : 0 5 2 5 ;
  3401. border : 0 none #808080 ;
  3402. bordertype : normal 0 0 ;
  3403. focusborder : 0 none #808080 ;
  3404. margin : 0 0 3 0 ;
  3405. cursor : hand ;
  3406. pusheddrawoffset : 0 0 ;
  3407. }
  3408. UserConfirm>#cancelbutton:mouseover
  3409. {
  3410. background : transparent URL('theme://images/theme_blue/btn_confirm_o.png') stretch 8,14;
  3411. }
  3412. UserConfirm>#cancelbutton:pushed
  3413. {
  3414. background : transparent URL('theme://images/theme_blue/btn_confirm_p.png') stretch 8,14;
  3415. }
  3416. UserConfirm>#cancelbutton:disabled
  3417. {
  3418. opacity : 50;
  3419. }
  3420. UserConfirm>#checkbox
  3421. {
  3422. border : 0 none #808080;
  3423. color : #333333;
  3424. font : Dotum,9;
  3425. focusborder : 0 none #808080;
  3426. textpadding : -2 0 0 2;
  3427. buttonalign : left middle;
  3428. buttonbackground : #ffffff;
  3429. buttonborder : 2 double #a8a8a8 #ffffff;
  3430. buttonbordertype : round 2 2;
  3431. buttonimage : theme://images/theme_blue/btn_check.png;
  3432. buttonsize : 13;
  3433. }
  3434. UserConfirm>#checkbox:mouseover
  3435. {
  3436. buttonborder : 2 double #459094 #ffffff;
  3437. buttonbackground : #f2f2f2;
  3438. }
  3439. UserConfirm>#checkbox:pushed, UserConfirm>#checkbox:focused, UserConfirm>#checkbox:selected
  3440. {
  3441. buttonborder : 2 double #459094 #ffffff;
  3442. buttonbackground : #ffffff;
  3443. }
  3444. UserConfirm>#checkbox:disabled
  3445. {
  3446. buttonimage : theme://images/theme_blue/bg_check_D.png;
  3447. opacity : 50;
  3448. }
  3449. /*** READONLY (Attribute Selector) ***/
  3450. Edit[readonly="true"],Edit[readonly="true"]:mouseover, Edit[readonly="true"]:focused, Edit[readonly="true"]:selected, Edit[readonly="true"]:disabled
  3451. {
  3452. background : url('theme://images/theme_blue/bg_edit_N.png') stretch 5,5;
  3453. }
  3454. TextArea[readonly="true"], TextArea[readonly="true"]:mouseover, TextArea[readonly="true"]:focused, TextArea[readonly="true"]:selected, TextArea[readonly="true"]:disabled
  3455. {
  3456. background : url('theme://images/theme_blue/bg_edit_R.png') stretch 5,5;
  3457. }
  3458. MaskEdit[readonly="true"], MaskEdit[readonly="true"]:mouseover, MaskEdit[readonly="true"]:focused, MaskEdit[readonly="true"]:selected, MaskEdit[readonly="true"]:disabled
  3459. {
  3460. background : url('theme://images/theme_blue/bg_edit_R.png') stretch 5,5;
  3461. }
  3462. Spin[readonly="true"],
  3463. Spin[readonly="true"]:mouseover, Spin[readonly="true"]:focused, Spin[readonly="true"]:selected, Spin[readonly="true"]:pushed
  3464. {
  3465. background : url('theme://images/theme_blue/bg_edit_R.png') stretch 5,5;
  3466. buttonsize : -3;
  3467. itembackground : ;
  3468. }
  3469. Combo[readonly="true"],
  3470. Combo[readonly="true"]:mouseover, Combo[readonly="true"]:focused,
  3471. Combo[readonly="true"]:pushed, Combo[readonly="true"]:selected
  3472. {
  3473. background : url('theme://images/theme_blue/bg_edit_R.png') stretch 5,5;
  3474. buttonsize : -3;
  3475. }
  3476. Calendar[readonly="true"],
  3477. Calendar[readonly="true"]:mouseover, Calendar[readonly="true"]:focused,
  3478. Calendar[readonly="true"]:pushed, Calendar[readonly="true"]:selected
  3479. {
  3480. background : url('theme://images/theme_blue/bg_edit_N.png') stretch 5,5;
  3481. buttonsize : -25;
  3482. }
  3483. Calendar.cal_transbg[readonly="true"],Calendar.cal_transbg[readonly="true"]:mouseover, Calendar.cal_transbg[readonly="true"]:focused, Calendar.cal_transbg[readonly="true"]:selected, Calendar.cal_transbg[readonly="true"]:disabled
  3484. {
  3485. background : transparent;
  3486. buttonsize : -25;
  3487. }
  3488. /*** 기본-필수입력 ***/
  3489. .input_essential
  3490. {
  3491. background : url('theme://images/theme_blue/bg_edit_est_N.png') stretch 9,9;
  3492. padding : 0 5 0 8;
  3493. }
  3494. .input_essential:mouseover
  3495. {
  3496. background : url('theme://images/theme_blue/bg_edit_est_O.png') stretch 9,9;
  3497. }
  3498. .input_essential:selected, .input_essential:focused, .input_essential:pushed
  3499. {
  3500. background : url('theme://images/theme_blue/bg_edit_est_P.png') stretch 9,9;
  3501. }
  3502. .input_essential:disabled
  3503. {
  3504. background : url('theme://images/theme_blue/bg_edit_est_D.png') stretch 9,9;
  3505. }
  3506. .combo_essential
  3507. {
  3508. background : url('theme://images/theme_blue/bg_edit_est_N.png') stretch 9,9;
  3509. }
  3510. .combo_essential:mouseover
  3511. {
  3512. background : url('theme://images/theme_blue/bg_edit_est_O.png') stretch 9,9;
  3513. }
  3514. .combo_essential:selected, .input_essential:focused, .input_essential:pushed
  3515. {
  3516. background : url('theme://images/theme_blue/bg_edit_est_P.png') stretch 9,9;
  3517. }
  3518. .combo_essential:disabled
  3519. {
  3520. background : url('theme://images/theme_blue/bg_edit_est_D.png') stretch 9,9;
  3521. }
  3522. .text_essential, .text_essential:mouseover, .text_essential:selected, .input_essential:focused, .input_essential:pushed
  3523. {
  3524. background : url('theme://images/theme_blue/bg_edit_est_N.png') stretch 9,9;
  3525. }
  3526. /*
  3527. .text_essential:mouseover
  3528. {
  3529. background : url('theme://images/theme_blue/bg_edit_est_O.png') stretch 9,9;
  3530. }
  3531. .text_essential:selected, .input_essential:focused, .input_essential:pushed
  3532. {
  3533. background : url('theme://images/theme_blue/bg_edit_est_P.png') stretch 9,9;
  3534. }
  3535. */
  3536. .text_essential:disabled
  3537. {
  3538. background : url('theme://images/theme_blue/bg_edit_est_D.png') stretch 9,9;
  3539. }
  3540. Calendar.input_essential
  3541. {
  3542. background : url('theme://images/theme_blue/bg_edit_est_N.png') stretch 9,9;
  3543. padding : 0 0 0 5;
  3544. }
  3545. /***** Common Btn *****/
  3546. /** btn1(Search)**/
  3547. Button.btn1, Button.btn1:focused, Button.btn1:selected
  3548. {
  3549. background : @gradation URL('theme://images/theme_blue/icon_search_N.png') left middle ;
  3550. gradation : linear 0,0 #2674aaff 0,100 #2674aaff;
  3551. border : 1 solid #1b5a89 ;
  3552. bordertype : round 2 2 ;
  3553. font : Dotum,9,bold ;
  3554. color : #e4f1f9 ;
  3555. align : left middle ;
  3556. padding : 0 0 0 20 ;
  3557. }
  3558. Button.btn1:mouseover
  3559. {
  3560. background : @gradation URL('theme://images/theme_blue/icon_search_P.png') left middle ;
  3561. gradation : linear 0,0 #3d95cdff 0,100 #3d95cdff;
  3562. border : 1 solid #2d84be ;
  3563. color : #ffffff ;
  3564. }
  3565. Button.btn1:pushed
  3566. {
  3567. background : @gradation URL('theme://images/theme_blue/icon_search_P.png') left middle ;
  3568. gradation : linear 0,0 #f97818ff 0,100 #f97818ff;
  3569. border : 1 solid #ec6400 ;
  3570. color : #ffffff;
  3571. }
  3572. /*** btn2(Default) ***/
  3573. Button.btn2, Button.btn2:focused, Button.btn2:selected
  3574. {
  3575. background : @gradation URL('theme://images/theme_blue/icon_single_N.png') left middle ;
  3576. gradation : linear 0,0 #2674aaff 0,100 #2674aaff;
  3577. border : 1 solid #1b5a89 ;
  3578. bordertype : round 2 2 ;
  3579. font : Dotum,9 ;
  3580. color : #e4f1f9 ;
  3581. align : left middle ;
  3582. padding : 0 0 0 10 ;
  3583. }
  3584. Button.btn2:mouseover
  3585. {
  3586. background : @gradation URL('theme://images/theme_blue/icon_single_P.png') left middle ;
  3587. gradation : linear 0,0 #3d95cdff 0,100 #3d95cdff;
  3588. border : 1 solid #2d84be ;
  3589. color : #ffffff ;
  3590. }
  3591. Button.btn2:pushed
  3592. {
  3593. background : @gradation URL('theme://images/theme_blue/icon_single_P.png') left middle ;
  3594. gradation : linear 0,0 #f97818ff 0,100 #f97818ff;
  3595. border : 1 solid #ec6400 ;
  3596. color : #ffffff ;
  3597. }
  3598. /** btn3(Link)**/
  3599. Button.btn3, Button.btn3:focused, Button.btn3:selected
  3600. {
  3601. background : @gradation URL('theme://images/theme_blue/icon_link_N.png') left middle ;
  3602. gradation : linear 0,0 #2674aaff 0,100 #2674aaff;
  3603. border : 1 solid #1b5a89 ;
  3604. bordertype : round 2 2 ;
  3605. font : Dotum,9,bold ;
  3606. color : #e4f1f9 ;
  3607. align : left middle ;
  3608. padding : 0 0 0 17 ;
  3609. }
  3610. Button.btn3:mouseover
  3611. {
  3612. background : @gradation URL('theme://images/theme_blue/icon_link_P.png') left middle ;
  3613. gradation : linear 0,0 #3d95cdff 0,100 #3d95cdff;
  3614. border : 1 solid #2d84be ;
  3615. color : #ffffff ;
  3616. }
  3617. Button.btn3:pushed
  3618. {
  3619. background : @gradation URL('theme://images/theme_blue/icon_link_P.png') left middle ;
  3620. gradation : linear 0,0 #f97818ff 0,100 #f97818ff;
  3621. border : 1 solid #ec6400 ;
  3622. color : #ffffff ;
  3623. }
  3624. /*** CRUD ***/
  3625. Button.btn4, Button.btn4:focused, Button.btn4:selected
  3626. {
  3627. background : @gradation URL('theme://images/theme_blue/icon_crud_N.png') right middle ;
  3628. gradation : linear 0,0 #2674aaff 0,100 #2674aaff;
  3629. border : 1 solid #1b5a89 ;
  3630. bordertype : round 2 2 ;
  3631. font : Dotum,9,bold ;
  3632. color : #e4f1f9 ;
  3633. align : right middle;
  3634. padding : 0 18 0 0;
  3635. }
  3636. Button.btn4:mouseover
  3637. {
  3638. background : @gradation URL('theme://images/theme_blue/icon_crud_P.png') right middle ;
  3639. gradation : linear 0,0 #3d95cdff 0,100 #3d95cdff;
  3640. border : 1 solid #2d84be ;
  3641. color : #ffffff ;
  3642. }
  3643. Button.btn4:pushed
  3644. {
  3645. background : @gradation URL('theme://images/theme_blue/icon_crud_P.png') right middle ;
  3646. gradation : linear 0,0 #f97818ff 0,100 #f97818ff;
  3647. border : 1 solid #ec6400 ;
  3648. color : #ffffff ;
  3649. }
  3650. /*** btn5(SingleData) ***/
  3651. Button.btn5, Button.btn5:focused, Button.btn5:selected
  3652. {
  3653. background : @gradation url('theme://images/icon_single_N2.png') left middle;
  3654. border : 2 double #E1ADFF #ffffff;
  3655. gradation : linear 0,0 #FDFBFF 0,100 #F0D7FF;
  3656. color : #423A46;
  3657. font : Dotum,9;
  3658. padding : 0 0 0 10;
  3659. align : left middle;
  3660. }
  3661. Button.btn5:mouseover
  3662. {
  3663. background : @gradation url('theme://images/icon_single_N2.png') left middle;
  3664. border : 2 double #E2B3FF #ffffff;
  3665. gradation : linear 0,0 #EEDDFF 0,100 #EBCAFF;
  3666. color : #423A46;
  3667. shadow : outer 0,0 1 #0000005F;
  3668. }
  3669. Button.btn5:pushed
  3670. {
  3671. background : @gradation url('theme://images/icon_single_P.png') left middle;
  3672. gradation : linear 0,0 #E2B3FFff 0,100 #E2B3FFff;
  3673. border : 2 double #DCA2FF #ffffff;
  3674. color : #ffffff;
  3675. shadow : drop 0,0 1 #0000005F;
  3676. }
  3677. /** btn6(Print)**/
  3678. Button.btn6, Button.btn6:focused, Button.btn6:selected
  3679. {
  3680. background : @gradation URL('theme://images/theme_blue/icon_print_N.png') left middle ;
  3681. gradation : linear 0,0 #2674aaff 0,100 #2674aaff;
  3682. border : 1 solid #1b5a89 ;
  3683. bordertype : round 2 2 ;
  3684. font : Dotum,9 ;
  3685. color : #e4f1f9 ;
  3686. align : left middle ;
  3687. padding : 0 0 0 23 ;
  3688. }
  3689. Button.btn6:mouseover
  3690. {
  3691. background : @gradation URL('theme://images/theme_blue/icon_print_P.png') left middle ;
  3692. gradation : linear 0,0 #3d95cdff 0,100 #3d95cdff;
  3693. border : 1 solid #2d84be ;
  3694. color : #ffffff ;
  3695. }
  3696. Button.btn6:pushed
  3697. {
  3698. background : @gradation URL('theme://images/theme_blue/icon_print_P.png') left middle ;
  3699. gradation : linear 0,0 #f97818ff 0,100 #f97818ff;
  3700. border : 1 solid #ec6400 ;
  3701. color : #ffffff ;
  3702. }
  3703. /** btn7(Execl)**/
  3704. Button.btn7, Button.btn7:focused, Button.btn7:selected
  3705. {
  3706. background : @gradation URL('theme://images/theme_blue/icon_execl_N.png') left middle ;
  3707. gradation : linear 0,0 #2674aaff 0,100 #2674aaff;
  3708. border : 1 solid #1b5a89 ;
  3709. bordertype : round 2 2 ;
  3710. font : Dotum,9 ;
  3711. color : #e4f1f9 ;
  3712. align : left middle ;
  3713. padding : 0 0 0 23 ;
  3714. }
  3715. Button.btn7:mouseover
  3716. {
  3717. background : @gradation URL('theme://images/theme_blue/icon_execl_P.png') left middle ;
  3718. gradation : linear 0,0 #3d95cdff 0,100 #3d95cdff;
  3719. border : 1 solid #2d84be ;
  3720. color : #ffffff ;
  3721. }
  3722. Button.btn7:pushed
  3723. {
  3724. background : @gradation URL('theme://images/theme_blue/icon_execl_N.png') left middle ;
  3725. gradation : linear 0,0 #f97818ff 0,100 #f97818ff;
  3726. border : 1 solid #ec6400 ;
  3727. color : #ffffff ;
  3728. }
  3729. /* btn_iptWork */
  3730. Button.btn_iptWork, Button.btn_iptWork:focused, Button.btn_iptWork:selected
  3731. {
  3732. background : url('theme://images/theme_blue/bg_edit_N.png') stretch 5,5;
  3733. border : 0 solid #000000ff;
  3734. color : #000000;
  3735. focusborder : 0 none #808080ff;
  3736. padding : 0 5 0 5;
  3737. font : Dotum,9;
  3738. align : left middle;
  3739. }
  3740. Button.btn_iptWork:mouseover
  3741. {
  3742. background : url('theme://images/theme_blue/bg_edit_O.png') stretch 5,5;
  3743. border : 0 solid #000000ff;
  3744. color : #000000;
  3745. focusborder : 0 none #808080ff;
  3746. padding : 0 5 0 5;
  3747. font : Dotum,9;
  3748. align : left middle;
  3749. }
  3750. Button.btn_iptWork:pushed
  3751. {
  3752. background : url('theme://images/theme_blue/bg_edit_P.png') stretch 5,5;
  3753. border : 0 solid #000000ff;
  3754. color : #000000;
  3755. shadow : drop 0,0 1 #ffffff5f;
  3756. }
  3757. Button.btn_iptWork:disabled
  3758. {
  3759. background : url('theme://images/theme_blue/bg_edit_D.png') stretch 5,5;
  3760. border : 0 solid #000000ff;
  3761. color : #888888;
  3762. }
  3763. /*** ImgBtn ***/
  3764. /** Shuttle **/
  3765. Button.icon_top
  3766. {
  3767. image : url('theme://images/theme_blue/icon_shuttleTop_N.png');
  3768. }
  3769. Button.icon_top:pushed
  3770. {
  3771. image : url('theme://images/theme_blue/icon_shuttleTop_P.png');
  3772. }
  3773. Button.icon_right
  3774. {
  3775. image : url('theme://images/theme_blue/icon_shuttleRight_N.png');
  3776. }
  3777. Button.icon_right:pushed
  3778. {
  3779. image : url('theme://images/theme_blue/icon_shuttleRight_P.png');
  3780. }
  3781. Button.icon_bottom
  3782. {
  3783. image : url('theme://images/theme_blue/icon_shuttleBottom_N.png');
  3784. }
  3785. Button.icon_bottom:pushed
  3786. {
  3787. image : url('theme://images/theme_blue/icon_shuttleBottom_P.png');
  3788. }
  3789. Button.icon_left
  3790. {
  3791. image : url('theme://images/theme_blue/icon_shuttleLeft_N.png');
  3792. }
  3793. Button.icon_left:pushed
  3794. {
  3795. image : url('theme://images/theme_blue/icon_shuttleLeft_P.png');
  3796. }
  3797. Button.icon_up
  3798. {
  3799. image : url('theme://images/theme_blue/btn_up_N.png');
  3800. }
  3801. Button.icon_up:pushed
  3802. {
  3803. image : url('theme://images/theme_blue/btn_up_P.png');
  3804. }
  3805. Button.icon_down
  3806. {
  3807. image : url('theme://images/theme_blue/btn_down_N.png');
  3808. }
  3809. Button.icon_down:pushed
  3810. {
  3811. image : url('theme://images/theme_blue/btn_down_P.png');
  3812. }
  3813. /*** Arrow icon ***/
  3814. /* 20141028 jw.choe TF Style icon_clock Add */
  3815. Button.icon_clock, Button.icon_clock:mouseover, Button.icon_clock:focused, Button.icon_clock:selected, Button.icon_clock:pushed
  3816. {
  3817. background : transparent;
  3818. border : 0 none;
  3819. image : url('theme://images/theme_blue/icon_clock.png');
  3820. }
  3821. Button.icon_clock:disabled
  3822. {
  3823. background : transparent;
  3824. border : 0 none;
  3825. image : url('theme://images/theme_blue/icon_clock.png');
  3826. opacity : 60
  3827. }
  3828. Button.icon_pre
  3829. {
  3830. image : url('theme://images/theme_blue/icon_arrowLeft_N.png');
  3831. }
  3832. Button.icon_pre:pushed
  3833. {
  3834. image : url('theme://images/theme_blue/icon_arrowLeft_P.png');
  3835. }
  3836. Button.icon_next
  3837. {
  3838. image : url('theme://images/theme_blue/icon_arrowRight_N.png');
  3839. }
  3840. Button.icon_next:pushed
  3841. {
  3842. image : url('theme://images/theme_blue/icon_arrowRight_P.png');
  3843. }
  3844. Button.icon_pre2, Button.icon_pre2:focused, Button.icon_pre2:selected
  3845. {
  3846. background : #cee6f4 ;
  3847. border : 1 solid #84bfe1 ;
  3848. bordertype : round 2,2 ;
  3849. image : url('theme://images/theme_blue/icon_arrowLeft2_N.png') ;
  3850. }
  3851. Button.icon_pre2:mouseover
  3852. {
  3853. background : #e4f1f9 ;
  3854. border : 1 solid #b1d8ec ;
  3855. image : url('theme://images/theme_blue/icon_arrowLeft2_N.png') ;
  3856. }
  3857. Button.icon_pre2:pushed
  3858. {
  3859. background : #f97818 ;
  3860. border : 1 solid #ec6400 ;
  3861. image : url('theme://images/theme_blue/icon_arrowLeft2_P.png') ;
  3862. }
  3863. Button.icon_next2, Button.icon_next2:focused, Button.icon_next2:selected
  3864. {
  3865. background : #cee6f4 ;
  3866. border : 1 solid #84bfe1 ;
  3867. bordertype : round 2,2 ;
  3868. image : url('theme://images/theme_blue/icon_arrowRight2_N.png') ;
  3869. }
  3870. Button.icon_next2:mouseover
  3871. {
  3872. background : #e4f1f9 ;
  3873. border : 1 solid #b1d8ec ;
  3874. image : url('theme://images/theme_blue/icon_arrowRight2_N.png') ;
  3875. }
  3876. Button.icon_next2:pushed
  3877. {
  3878. background : #f97818 ;
  3879. border : 1 solid #ec6400 ;
  3880. image : url('theme://images/theme_blue/icon_arrowRight2_P.png') ;
  3881. }
  3882. Button.btn_up
  3883. {
  3884. image : url('theme://images/theme_blue/icon_arrowTop_N.png');
  3885. }
  3886. Button.btn_up:pushed
  3887. {
  3888. image : url('theme://images/theme_blue/icon_arrowTop_P.png');
  3889. }
  3890. Button.btn_down
  3891. {
  3892. image : url('theme://images/theme_blue/icon_arrowBottom_N.png');
  3893. imagealign : center middle;
  3894. }
  3895. Button.btn_down:pushed
  3896. {
  3897. image : url('theme://images/theme_blue/icon_arrowBottom_P.png');
  3898. }
  3899. Button.btn_up2, Button.btn_up2:focused, Button.btn_up2:selected
  3900. {
  3901. background : #cee6f4 ;
  3902. border : 1 solid #84bfe1 ;
  3903. bordertype : round 2,2 ;
  3904. image : url('theme://images/theme_blue/icon_arrowTop2_N.png') ;
  3905. }
  3906. Button.btn_up2:mouseover
  3907. {
  3908. background : #e4f1f9 ;
  3909. border : 1 solid #b1d8ec ;
  3910. image : url('theme://images/theme_blue/icon_arrowTop2_N.png') ;
  3911. }
  3912. Button.btn_up2:pushed
  3913. {
  3914. background : #f97818 ;
  3915. border : 1 solid #ec6400 ;
  3916. image : url('theme://images/theme_blue/icon_arrowTop2_P.png') ;
  3917. }
  3918. Button.btn_down2, Button.btn_down2:focused, Button.btn_down2:selected
  3919. {
  3920. background : #cee6f4 ;
  3921. border : 1 solid #84bfe1 ;
  3922. bordertype : round 2,2 ;
  3923. image : url('theme://images/theme_blue/icon_arrowBottom2_N.png') ;
  3924. }
  3925. Button.btn_down2:mouseover
  3926. {
  3927. background : #e4f1f9 ;
  3928. border : 1 solid #b1d8ec ;
  3929. image : url('theme://images/theme_blue/icon_arrowBottom2_N.png') ;
  3930. }
  3931. Button.btn_down2:pushed
  3932. {
  3933. background : #f97818 ;
  3934. border : 1 solid #ec6400 ;
  3935. image : url('theme://images/theme_blue/icon_arrowBottom2_P.png') ;
  3936. }
  3937. /** Calendar ***/
  3938. Button.icon_pre_month, Button.icon_pre_month:focused, Button.icon_pre_month:selected
  3939. {
  3940. background : #f0f7fc ;
  3941. border : 1 solid #84bfe1 ;
  3942. bordertype : round 2,2 ;
  3943. image : url('theme://images/theme_blue/icon_arrowPre_N.png') ;
  3944. }
  3945. Button.icon_pre_month:mouseover
  3946. {
  3947. background : #ffffff ;
  3948. border : 1 solid #b1d8ec ;
  3949. image : url('theme://images/theme_blue/icon_arrowPre_O.png') ;
  3950. }
  3951. Button.icon_pre_month:pushed
  3952. {
  3953. background : #f97818 ;
  3954. border : 1 solid #ec6400 ;
  3955. image : url('theme://images/theme_blue/icon_arrowPre_P.png') ;
  3956. }
  3957. Button.icon_next_month, Button.icon_next_month:focused, Button.icon_next_month:selected
  3958. {
  3959. background : #f0f7fc ;
  3960. border : 1 solid #84bfe1 ;
  3961. bordertype : round 2,2 ;
  3962. image : url('theme://images/theme_blue/icon_arrowNext_N.png') ;
  3963. }
  3964. Button.icon_next_month:mouseover
  3965. {
  3966. background : #ffffff ;
  3967. border : 1 solid #b1d8ec ;
  3968. image : url('theme://images/theme_blue/icon_arrowNext_O.png') ;
  3969. }
  3970. Button.icon_next_month:pushed
  3971. {
  3972. background : #f97818 ;
  3973. border : 1 solid #ec6400 ;
  3974. image : url('theme://images/theme_blue/icon_arrowNext_P.png') ;
  3975. }
  3976. Button.icon_pre_year, Button.icon_pre_year:focused, Button.icon_pre_year:selected
  3977. {
  3978. background : #f0f7fc ;
  3979. border : 1 solid #84bfe1 ;
  3980. bordertype : round 2,2 ;
  3981. image : url('theme://images/theme_blue/icon_arrowDoublePre_N.png') ;
  3982. }
  3983. Button.icon_pre_year:mouseover
  3984. {
  3985. background : #ffffff ;
  3986. border : 1 solid #b1d8ec ;
  3987. image : url('theme://images/theme_blue/icon_arrowDoublePre_O.png') ;
  3988. }
  3989. Button.icon_pre_year:pushed
  3990. {
  3991. background : #f97818 ;
  3992. border : 1 solid #ec6400 ;
  3993. image : url('theme://images/theme_blue/icon_arrowDoublePre_P.png') ;
  3994. }
  3995. Button.icon_next_year, Button.icon_next_year:focused, Button.icon_next_year:selected
  3996. {
  3997. background : #f0f7fc ;
  3998. border : 1 solid #84bfe1 ;
  3999. bordertype : round 2,2 ;
  4000. image : url('theme://images/theme_blue/icon_arrowDoubleNext_N.png') ;
  4001. }
  4002. Button.icon_next_year:mouseover
  4003. {
  4004. background : #ffffff ;
  4005. border : 1 solid #b1d8ec ;
  4006. image : url('theme://images/theme_blue/icon_arrowDoubleNext_O.png') ;
  4007. }
  4008. Button.icon_next_year:pushed
  4009. {
  4010. background : #f97818 ;
  4011. border : 1 solid #ec6400 ;
  4012. image : url('theme://images/theme_blue/icon_arrowDoubleNext_P.png') ;
  4013. }
  4014. /** transparent ***/
  4015. Button.icon_trans, Button.icon_trans:focused, Button.icon_trans:selected, Button.icon_trans:mouseover, Button.icon_trans:pushed, Button.icon_trans:disabled
  4016. {
  4017. background : transparent;
  4018. border : 0 none;
  4019. cursor : NO;
  4020. }
  4021. /** icon_search ***/
  4022. Button.icon_search, Button.icon_search:mouseover, Button.icon_search:focused, Button.icon_search:selected, Button.icon_search:disabled
  4023. {
  4024. background : transparent;
  4025. border : 0 none;
  4026. image : url('theme://images/theme_blue/icon_glassSearch_N.png');
  4027. }
  4028. Button.icon_search:pushed
  4029. {
  4030. background : transparent;
  4031. border : 0 none;
  4032. image : url('theme://images/theme_blue/icon_glassSearch_P.png');
  4033. }
  4034. Button.icon_search2, Button.icon_search2:mouseover, Button.icon_search2:focused, Button.icon_search2:selected, Button.icon_search2:pushed, Button.icon_search2:disabled
  4035. {
  4036. background : transparent;
  4037. border : 0 none;
  4038. image : url('theme://images/theme_blue/icon_glassSearch3_N.png');
  4039. }
  4040. Button.icon_search2:pushed
  4041. {
  4042. background : transparent;
  4043. border : 0 none;
  4044. image : url('theme://images/theme_blue/icon_glassSearch3_P.png');
  4045. }
  4046. /** btn_search ***/
  4047. Button.btn_search
  4048. {
  4049. image : url('theme://images/theme_blue/icon_glassSearch2_N.png');
  4050. }
  4051. Button.btn_search:pushed
  4052. {
  4053. image : url('theme://images/theme_blue/icon_glassSearch2_P.png');
  4054. }
  4055. Button.btn_search2, Button.btn_search2:focused, Button.btn_search2:selected
  4056. {
  4057. background : #f0f7fc ;
  4058. border : 1 solid #84bfe1 ;
  4059. image : url('theme://images/theme_blue/icon_glassSearch4_N.png') ;
  4060. }
  4061. Button.btn_search2:mouseover
  4062. {
  4063. background : #ffffff ;
  4064. border : 1 solid #b1d8ec ;
  4065. image : url('theme://images/theme_blue/icon_glassSearch4_N.png') ;
  4066. }
  4067. Button.btn_search2:pushed
  4068. {
  4069. background : #f97818 ;
  4070. border : 1 solid #ec6400 ;
  4071. image : url('theme://images/theme_blue/icon_glassSearch4_P.png') ;
  4072. }
  4073. /** icon_List ***/
  4074. Button.icon_list, Button.icon_list:mouseover, Button.icon_list:focused, Button.icon_list:selected, Button.icon_list:pushed
  4075. {
  4076. background : transparent ;
  4077. border : 0 none ;
  4078. shadow : 0 none ;
  4079. image : url('theme://images/icon_List_N.png') ;
  4080. }
  4081. Button.icon_list:pushed
  4082. {
  4083. background : transparent;
  4084. border : 0 none;
  4085. image : url('theme://images/icon_List_P.png');
  4086. }
  4087. Button.icon_list2, Button.icon_list2:mouseover, Button.icon_list2:focused, Button.icon_list2:selected, Button.icon_list2:pushed
  4088. {
  4089. background : transparent;
  4090. border : 0 none;
  4091. image : url('theme://images/theme_blue/icon_list3_N.png');
  4092. }
  4093. Button.icon_list2:pushed
  4094. {
  4095. background : transparent;
  4096. border : 0 none;
  4097. image : url('theme://images/theme_blue/icon_list3_P.png');
  4098. }
  4099. /*** btn_List ***/
  4100. Button.btn_list2, Button.btn_list2:focused, Button.btn_list2:selected
  4101. {
  4102. background : #f0f7fc ;
  4103. border : 1 solid #84bfe1 ;
  4104. image : url('theme://images/theme_blue/icon_list4_N.png') ;
  4105. }
  4106. Button.btn_list2:mouseover
  4107. {
  4108. background : #ffffff ;
  4109. border : 1 solid #b1d8ec ;
  4110. image : url('theme://images/theme_blue/icon_list4_N.png') ;
  4111. }
  4112. Button.btn_list2:pushed
  4113. {
  4114. background : #f97818 ;
  4115. border : 1 solid #ec6400 ;
  4116. image : url('theme://images/theme_blue/icon_list4_P.png') ;
  4117. }
  4118. /** icon_Picture ***/
  4119. Button.icon_picture, Button.icon_picture:mouseover, Button.icon_picture:focused, Button.icon_picture:selected, Button.icon_picture:pushed
  4120. {
  4121. background : transparent ;
  4122. border : 0 none ;
  4123. shadow : 0 none ;
  4124. image : url('theme://images/theme_blue/icon_gallery_N.png') ;
  4125. }
  4126. Button.icon_picture:pushed
  4127. {
  4128. background : transparent;
  4129. border : 0 none;
  4130. image : url('theme://images/theme_blue/icon_gallery_P.png');
  4131. }
  4132. /*** btn_Picture ***/
  4133. Button.btn_Picture
  4134. {
  4135. image : url('theme://images/theme_blue/icon_gallery2_N.png');
  4136. }
  4137. Button.btn_Picture:pushed
  4138. {
  4139. image : url('theme://images/theme_blue/icon_gallery2_P.png');
  4140. }
  4141. Button.btn_Picture2, Button.btn_Picture2:focused, Button.btn_Picture2:selected
  4142. {
  4143. background : #f0f7fc ;
  4144. border : 1 solid #84bfe1 ;
  4145. image : url('theme://images/theme_blue/icon_gallery3_N.png') ;
  4146. }
  4147. Button.btn_Picture2:mouseover
  4148. {
  4149. background : #ffffff ;
  4150. border : 1 solid #b1d8ec ;
  4151. image : url('theme://images/theme_blue/icon_gallery3_N.png') ;
  4152. }
  4153. Button.btn_Picture2:pushed
  4154. {
  4155. background : #f97818 ;
  4156. border : 1 solid #ec6400 ;
  4157. image : url('theme://images/theme_blue/icon_gallery3_P.png') ;
  4158. }
  4159. /*** plus ***/
  4160. Button.icon_plus
  4161. {
  4162. image : url('theme://images/theme_blue/icon_plus_N.png');
  4163. }
  4164. Button.icon_plus:pushed
  4165. {
  4166. image : url('theme://images/theme_blue/icon_plus_P.png');
  4167. }
  4168. Button.icon_plus2, Button.icon_plus2:focused, Button.icon_plus2:selected
  4169. {
  4170. background : #f0f7fc ;
  4171. border : 1 solid #84bfe1 ;
  4172. image : url('theme://images/theme_blue/icon_plus2_N.png') ;
  4173. }
  4174. Button.icon_plus2:mouseover
  4175. {
  4176. background : #ffffff ;
  4177. border : 1 solid #b1d8ec ;
  4178. image : url('theme://images/theme_blue/icon_plus2_N.png') ;
  4179. }
  4180. Button.icon_plus2:pushed
  4181. {
  4182. background : #f97818 ;
  4183. border : 1 solid #ec6400 ;
  4184. image : url('theme://images/theme_blue/icon_plus2_P.png') ;
  4185. }
  4186. /*** minus ***/
  4187. Button.icon_minus
  4188. {
  4189. image : url('theme://images/theme_blue/icon_minus_N.png');
  4190. }
  4191. Button.icon_minus:pushed
  4192. {
  4193. image : url('theme://images/theme_blue/icon_minus_P.png');
  4194. }
  4195. Button.icon_minus2, Button.icon_minus2:focused, Button.icon_minus2:selected
  4196. {
  4197. background : #f0f7fc ;
  4198. border : 1 solid #84bfe1 ;
  4199. image : url('theme://images/theme_blue/icon_minus2_N.png') ;
  4200. }
  4201. Button.icon_minus2:mouseover
  4202. {
  4203. background : #ffffff ;
  4204. border : 1 solid #b1d8ec ;
  4205. image : url('theme://images/theme_blue/icon_minus2_N.png') ;
  4206. }
  4207. Button.icon_minus2:pushed
  4208. {
  4209. background : #f97818 ;
  4210. border : 1 solid #ec6400 ;
  4211. image : url('theme://images/theme_blue/icon_minus2_P.png') ;
  4212. }
  4213. /*** today ***/
  4214. Button.btn_today, Button.btn_today:focused, Button.btn_today:selected
  4215. {
  4216. background : #f0f7fc ;
  4217. border : 1 solid #84bfe1 ;
  4218. image : url('theme://images/icon_today_N.png') ;
  4219. }
  4220. Button.btn_today:mouseover
  4221. {
  4222. background : #ffffff ;
  4223. border : 1 solid #b1d8ec ;
  4224. image : url('theme://images/icon_today_N.png') ;
  4225. }
  4226. Button.btn_today:pushed
  4227. {
  4228. background : #f97818 ;
  4229. border : 1 solid #ec6400 ;
  4230. image : url('theme://images/icon_today_P.png') ;
  4231. }
  4232. /*** month ***/
  4233. Button.btn_month, Button.btn_month:focused, Button.btn_month:selected
  4234. {
  4235. background : #f0f7fc ;
  4236. border : 1 solid #84bfe1 ;
  4237. image : url('theme://images/icon_Month_N.png') ;
  4238. }
  4239. Button.btn_month:mouseover
  4240. {
  4241. background : #ffffff ;
  4242. border : 1 solid #b1d8ec ;
  4243. image : url('theme://images/icon_Month_N.png') ;
  4244. }
  4245. Button.btn_month:pushed
  4246. {
  4247. background : #f97818 ;
  4248. border : 1 solid #ec6400 ;
  4249. image : url('theme://images/icon_Month_P.png') ;
  4250. }
  4251. /*** btn_Tab ***/
  4252. /*tab button*/
  4253. Button.btn_sw, Button.btn_sw:mouseover
  4254. {
  4255. background : url(theme://images/theme_blue/btn_tab_D.png) stretch 10,10 ;
  4256. border : 0 none ;
  4257. bordertype : normal ;
  4258. color : #ffffff ;
  4259. }
  4260. Button.btn_sw:focused, Button.btn_sw:selected, Button.btn_sw:pushed
  4261. {
  4262. background : url(theme://images/theme_blue/btn_tab_N.png) stretch 10,10 ;
  4263. border : 0 none ;
  4264. bordertype : normal ;
  4265. color : #ffffff ;
  4266. }
  4267. Button.btn_tab, Button.btn_tab:selected, Button.btn_tab:focused
  4268. {
  4269. background : url(theme://images/theme_blue/btn_tab_N.png) stretch 10,10 ;
  4270. border : 0 none ;
  4271. bordertype : normal ;
  4272. color : #ffffff ;
  4273. font : Dotum,9 ;
  4274. }
  4275. Button.btn_tab:mouseover
  4276. {
  4277. border : 0 none ;
  4278. bordertype : normal ;
  4279. color : #ffffff ;
  4280. background : url(theme://images/theme_blue/btn_tab_O.png) stretch 10,10 ;
  4281. font : Dotum,9, bold ;
  4282. }
  4283. Button.btn_tab:pushed
  4284. {
  4285. background : url(theme://images/theme_blue/btn_tab_P.png) stretch 10,10;
  4286. border : 0 none;
  4287. color : #ffffff;
  4288. font : Dotum,9,bold;
  4289. }
  4290. Button.btn_tab:disabled
  4291. {
  4292. background : url(theme://images/theme_blue/btn_tab_D.png) stretch 10,10;
  4293. border : 0 none;
  4294. color : #888888;
  4295. font : Dotum,9;
  4296. }
  4297. Button.btn_tab_S, Button.btn_tab_S:mouseover, Button.btn_tab_S:pushed, Button.btn_tab_S:selected, Button.btn_tab_S:focused
  4298. {
  4299. background : url(theme://images/theme_blue/btn_tab_P.png) stretch 10,10;
  4300. border : 0 none;
  4301. bordertype : normal;
  4302. color : #ffffff;
  4303. font : Dotum,9,bold;
  4304. }
  4305. Button.btn_tab_S:disabled
  4306. {
  4307. background : url(theme://images/theme_blue/btn_tab_D.png) stretch 10,10;
  4308. border : 0 none;
  4309. bordertype : normal;
  4310. color : #888888;
  4311. font : Dotum,9;
  4312. }
  4313. Static.sta_tabline
  4314. {
  4315. border : 0 solid #84bfe1, 0 solid #84bfe1, 1 solid #84bfe1, 0 solid #84bfe1 ;
  4316. }
  4317. /*tab2 button*/
  4318. Button.btn_sw2, Button.btn_sw2:mouseover
  4319. {
  4320. background : url(theme://images/theme_blue/btn_tab2_D.png) stretch 10,10 ;
  4321. border : 0 none ;
  4322. bordertype : normal ;
  4323. color : #333333 ;
  4324. }
  4325. Button.btn_sw2:focused, Button.btn_sw2:selected, Button.btn_sw2:pushed
  4326. {
  4327. background : url(theme://images/theme_blue/btn_tab2_N.png) stretch 10,10 ;
  4328. border : 0 none ;
  4329. bordertype : normal ;
  4330. color : #333333 ;
  4331. }
  4332. Button.btn_tab2, Button.btn_tab2:selected, Button.btn_tab2:focused
  4333. {
  4334. background : url(theme://images/theme_blue/btn_tab2_N.png) stretch 10,10 ;
  4335. border : 0 none ;
  4336. bordertype : normal ;
  4337. color : #333333 ;
  4338. }
  4339. Button.btn_tab2:mouseover
  4340. {
  4341. border : 0 none ;
  4342. bordertype : normal ;
  4343. color : #333333 ;
  4344. background : url(theme://images/theme_blue/btn_tab2_O.png) stretch 10,10 ;
  4345. }
  4346. Button.btn_tab2:pushed
  4347. {
  4348. background : url(theme://images/theme_blue/btn_tab2_P.png) stretch 10,10 ;
  4349. border : 0 none ;
  4350. color : #333333 ;
  4351. font : Dotum,9,bold ;
  4352. }
  4353. Button.btn_tab2_S, Button.btn_tab2_S:mouseover, Button.btn_tab2_S:pushed, Button.btn_tab2_S:selected, Button.btn_tab2_S:focused
  4354. {
  4355. background : url(theme://images/theme_blue/btn_tab2_P.png) stretch 10,10 ;
  4356. border : 0 none ;
  4357. bordertype : normal ;
  4358. color : #333333 ;
  4359. font : Dotum,9,bold ;
  4360. }
  4361. Button.icon_eraser,Button.icon_eraser:pushed,Button.icon_eraser:selected,Button.icon_eraser:focused
  4362. {
  4363. background : url(theme://images/icon_eraser.gif);
  4364. border : 0 none;
  4365. }
  4366. Button.icon_eraser:mouseover
  4367. {
  4368. background : url(theme://images/icon_eraser_over.gif);
  4369. border : 0 none;
  4370. }
  4371. Static.sta_tabline
  4372. {
  4373. border : 0 solid #84bfe1, 0 solid #84bfe1, 1 solid #84bfe1, 0solid #84bfe1 ;
  4374. }
  4375. /* Grid Cell Class */
  4376. Cell.grd_head_essential, Cell.grd_head_essential:mouseover, Cell.grd_head_essential:pushed, Cell.grd_head_essential:selected, Cell.grd_head_essential:focused
  4377. {
  4378. background : @gradation url('theme://images/theme_blue/bg_gridHead_est.png') stretch 10,10;
  4379. }
  4380. Cell.grd_2depth_head_essential, Cell.grd_2depth_head_essential:mouseover, Cell.grd_2depth_head_essential:pushed, Cell.grd_2depth_head_essential:selected, Cell.grd_2depth_head_essential:focused
  4381. {
  4382. background : @gradation url('theme://images/theme_blue/bg_gridHead_2depth_est.png') stretch 10,10;
  4383. }
  4384. Cell.grd_body_essential, Cell.grd_body_essential:mouseover, Cell.grd_body_essential:pushed, Cell.grd_body_essential:selected, Cell.grd_body_essential:focused
  4385. {
  4386. background : #ffffff url('theme://images/theme_blue/bg_gridBody_est.png') left top;
  4387. background2 : #F9FAFB url('theme://images/theme_blue/bg_gridBody_est.png') left top;
  4388. selectbackground : #FFD1C9 url('theme://images/theme_blue/bg_gridBody_est.png') left top;
  4389. }
  4390. Cell.cell_TH
  4391. {
  4392. background : #B9EAE5;
  4393. background2 : #B9EAE5;
  4394. }
  4395. Cell.cell_TH_2depth
  4396. {
  4397. background : #E8E8E8;
  4398. background2 : #E8E8E8;
  4399. line : 1 solid #ADC9C9;
  4400. }
  4401. Cell.cell_point1
  4402. {
  4403. background : #ffffff;
  4404. background2 : #ffffff;
  4405. selectbackground : #FFD3CF;
  4406. selectcolor : #BB1C00;
  4407. }
  4408. Cell.cell_nopadding
  4409. {
  4410. padding : 0 0 0 0;
  4411. }
  4412. /***** Month Cal *****/
  4413. /*** Month Style1 ***/
  4414. Static.sta_Month
  4415. {
  4416. background : URL('theme://images/theme_blue/bg_MonthCal.png') stretch 10,10;
  4417. }
  4418. /*** Month Style2 ***/
  4419. Static.sta_Year
  4420. {
  4421. background : #2674aa URL('theme://images/theme_blue/bg_MonthCal.png') repeat-x left bottom ;
  4422. border : 1 solid #2674aa ;
  4423. bordertype : round 3,3 lefttop righttop ;
  4424. }
  4425. Static.sta_Month2
  4426. {
  4427. background : #E5EEF4 ;
  4428. border : 0 solid #067ba0, 1 solid #2674aa, 1 solid #84bfe1, 1 solid #2674aa ;
  4429. }
  4430. Static.sta_Month_Year
  4431. {
  4432. align : center middle;
  4433. font : Tahoma,11,bold;
  4434. color : #ffffff;
  4435. }
  4436. Button.btn_m01
  4437. {
  4438. background : #cee6f4 ;
  4439. image : url('theme://images/img_Month01_N.png') ;
  4440. border : 1 solid #84bfe1 ;
  4441. bordertype : round 2 2 ;
  4442. shadow : 0 none ;
  4443. }
  4444. Button.btn_m01:mouseover, Button.btn_m01:pushed, Button.btn_m01:focus, Button.btn_m01:selected
  4445. {
  4446. background : #2674aa ;
  4447. image : url('theme://images/img_Month01_S.png');
  4448. border : none;
  4449. }
  4450. Button.btn_m02
  4451. {
  4452. background : #cee6f4 ;
  4453. image : url('theme://images/img_Month02_N.png') ;
  4454. border : 1 solid #84bfe1 ;
  4455. bordertype : round 2 2 ;
  4456. shadow : 0 none ;
  4457. }
  4458. Button.btn_m02:mouseover, Button.btn_m02:pushed, Button.btn_m02:focus, Button.btn_m02:selected
  4459. {
  4460. background : #2674aa ;
  4461. image : url('theme://images/img_Month02_S.png');
  4462. border : none;
  4463. }
  4464. Button.btn_m03
  4465. {
  4466. background : #cee6f4 ;
  4467. image : url('theme://images/img_Month03_N.png') ;
  4468. border : 1 solid #84bfe1 ;
  4469. bordertype : round 2 2 ;
  4470. shadow : 0 none ;
  4471. }
  4472. Button.btn_m03:mouseover, Button.btn_m03:pushed, Button.btn_m03:focus, Button.btn_m03:selected
  4473. {
  4474. background : #2674aa ;
  4475. image : url('theme://images/img_Month03_S.png');
  4476. border : none;
  4477. }
  4478. Button.btn_m04
  4479. {
  4480. background : #cee6f4 ;
  4481. image : url('theme://images/img_Month04_N.png') ;
  4482. border : 1 solid #84bfe1 ;
  4483. bordertype : round 2 2 ;
  4484. shadow : 0 none ;
  4485. }
  4486. Button.btn_m04:mouseover, Button.btn_m04:pushed, Button.btn_m04:focus, Button.btn_m04:selected
  4487. {
  4488. background : #2674aa ;
  4489. image : url('theme://images/img_Month04_S.png');
  4490. border : none;
  4491. }
  4492. Button.btn_m05
  4493. {
  4494. background : #cee6f4 ;
  4495. image : url('theme://images/img_Month05_N.png') ;
  4496. border : 1 solid #84bfe1 ;
  4497. bordertype : round 2 2 ;
  4498. shadow : 0 none ;
  4499. }
  4500. Button.btn_m05:mouseover, Button.btn_m05:pushed, Button.btn_m05:focus, Button.btn_m05:selected
  4501. {
  4502. background : #2674aa ;
  4503. image : url('theme://images/img_Month05_S.png');
  4504. border : none;
  4505. }
  4506. Button.btn_m06
  4507. {
  4508. background : #cee6f4 ;
  4509. image : url('theme://images/img_Month06_N.png') ;
  4510. border : 1 solid #84bfe1 ;
  4511. bordertype : round 2 2 ;
  4512. shadow : 0 none ;
  4513. }
  4514. Button.btn_m06:mouseover, Button.btn_m06:pushed, Button.btn_m06:focus, Button.btn_m06:selected
  4515. {
  4516. background : #2674aa ;
  4517. image : url('theme://images/img_Month06_S.png');
  4518. border : none;
  4519. }
  4520. Button.btn_m07
  4521. {
  4522. background : #cee6f4 ;
  4523. image : url('theme://images/img_Month07_N.png') ;
  4524. border : 1 solid #84bfe1 ;
  4525. bordertype : round 2 2 ;
  4526. shadow : 0 none ;
  4527. }
  4528. Button.btn_m07:mouseover, Button.btn_m07:pushed, Button.btn_m07:focus, Button.btn_m07:selected
  4529. {
  4530. background : #2674aa ;
  4531. image : url('theme://images/img_Month07_S.png');
  4532. border : none;
  4533. }
  4534. Button.btn_m08
  4535. {
  4536. background : #cee6f4 ;
  4537. image : url('theme://images/img_Month08_N.png') ;
  4538. border : 1 solid #84bfe1 ;
  4539. bordertype : round 2 2 ;
  4540. shadow : 0 none ;
  4541. }
  4542. Button.btn_m08:mouseover, Button.btn_m08:pushed, Button.btn_m08:focus, Button.btn_m08:selected
  4543. {
  4544. background : #2674aa ;
  4545. image : url('theme://images/img_Month08_S.png');
  4546. border : none;
  4547. }
  4548. Button.btn_m09
  4549. {
  4550. background : #cee6f4 ;
  4551. image : url('theme://images/img_Month09_N.png') ;
  4552. border : 1 solid #84bfe1 ;
  4553. bordertype : round 2 2 ;
  4554. shadow : 0 none ;
  4555. }
  4556. Button.btn_m09:mouseover, Button.btn_m09:pushed, Button.btn_m09:focus, Button.btn_m09:selected
  4557. {
  4558. background : #2674aa ;
  4559. image : url('theme://images/img_Month09_S.png');
  4560. border : none;
  4561. }
  4562. Button.btn_m10
  4563. {
  4564. background : #cee6f4 ;
  4565. image : url('theme://images/img_Month10_N.png') ;
  4566. border : 1 solid #84bfe1 ;
  4567. bordertype : round 2 2 ;
  4568. shadow : 0 none ;
  4569. }
  4570. Button.btn_m10:mouseover, Button.btn_m10:pushed, Button.btn_m10:focus, Button.btn_m10:selected
  4571. {
  4572. background : #2674aa ;
  4573. image : url('theme://images/img_Month10_S.png');
  4574. border : none;
  4575. }
  4576. Button.btn_m11
  4577. {
  4578. background : #cee6f4 ;
  4579. image : url('theme://images/img_Month11_N.png') ;
  4580. border : 1 solid #84bfe1 ;
  4581. bordertype : round 2 2 ;
  4582. shadow : 0 none ;
  4583. }
  4584. Button.btn_m11:mouseover, Button.btn_m11:pushed, Button.btn_m11:focus, Button.btn_m11:selected
  4585. {
  4586. background : #2674aa ;
  4587. image : url('theme://images/img_Month11_S.png');
  4588. border : none;
  4589. }
  4590. Button.btn_m12
  4591. {
  4592. background : #cee6f4 ;
  4593. image : url('theme://images/img_Month12_N.png') ;
  4594. border : 1 solid #84bfe1 ;
  4595. bordertype : round 2 2 ;
  4596. shadow : 0 none ;
  4597. }
  4598. Button.btn_m12:mouseover, Button.btn_m12:pushed, Button.btn_m12:focus, Button.btn_m12:selected
  4599. {
  4600. background : #2674aa ;
  4601. image : url('theme://images/img_Month12_S.png');
  4602. border : none;
  4603. }
  4604. /**** Btn ****/
  4605. Button.btn_MonthN, Button.btn_MonthN:focus, Button.btn_MonthN:selected
  4606. {
  4607. background : transparent;
  4608. image : url('theme://images/theme_blue/icon_MonthNext_N.png');
  4609. border : none;
  4610. }
  4611. Button.btn_MonthN:mouseover
  4612. {
  4613. background : transparent ;
  4614. image : url('theme://images/theme_blue/icon_MonthNext_O.png') ;
  4615. border : none ;
  4616. shadow : 0 none ;
  4617. }
  4618. Button.btn_MonthN:pushed
  4619. {
  4620. background : transparent;
  4621. image : url('theme://images/theme_blue/icon_MonthNext_P.png');
  4622. border : none;
  4623. }
  4624. Button.btn_MonthP, Button.btn_MonthP:focus, Button.btn_MonthP:selected
  4625. {
  4626. background : transparent;
  4627. image : url('theme://images/theme_blue/icon_MonthPre_N.png');
  4628. border : none;
  4629. }
  4630. Button.btn_MonthP:mouseover
  4631. {
  4632. background : transparent ;
  4633. image : url('theme://images/theme_blue/icon_MonthPre_O.png') ;
  4634. border : none ;
  4635. shadow : 0 none ;
  4636. }
  4637. Button.btn_MonthP:pushed
  4638. {
  4639. background : transparent;
  4640. image : url('theme://images/theme_blue/icon_MonthPre_P.png');
  4641. border : none;
  4642. }
  4643. Button.btn_MonthText
  4644. {
  4645. background : transparent ;
  4646. border : 0 none ;
  4647. font : Dotum,10,bold ;
  4648. color : #333333 ;
  4649. align : center middle ;
  4650. cursor : hand ;
  4651. focusborder : 0 none ;
  4652. }
  4653. Button.btn_MonthText:mouseover, Button.btn_MonthText:pushed, Button.btn_MonthText:focused, Button.btn_MonthText:selected
  4654. {
  4655. background : #2674aa ;
  4656. border : 1 solid #2674aa ;
  4657. bordertype : round 2,2 ;
  4658. font : Dotum,10,bold ;
  4659. color : #ffffff ;
  4660. shadow : 0 none ;
  4661. pusheddrawoffset : 0 0 ;
  4662. }
  4663. /*** Grid ***/
  4664. Grid.gridcalendar
  4665. {
  4666. background : #F9F9F9 ;
  4667. border : 0 none, 1 solid #2674aa, 1 solid #2674aa, 1 solid #2674aa ;
  4668. font : Dotum,9,bold ;
  4669. color : #333333 ;
  4670. align : center middle ;
  4671. focusborder : 0 none ;
  4672. cursor : hand ;
  4673. }
  4674. Grid.gridcalendar>#head
  4675. {
  4676. border : none, none, 1 solid #C5D8E9, none;
  4677. cellalign : center middle;
  4678. cellbackground : #F1F7FA;
  4679. cellcolor : #6A513E;
  4680. cellfont : Dotum,9;
  4681. cellline : 0 solid #C5D8E9;
  4682. cellpadding : 0 0 0 0;
  4683. }
  4684. Grid.gridcalendar>#body
  4685. {
  4686. background : #F9F9F9 ;
  4687. border : 0 none ;
  4688. font : Dotum,9 ;
  4689. color : #333333 ;
  4690. cellpadding : 0 3 0 3 ;
  4691. cellbackground : #F9F9F9 ;
  4692. cellbackground2 : #F9F9F9 ;
  4693. cellalign : center middle ;
  4694. cellline : 1 solid #C5D8E9 ;
  4695. celllinetype : ;
  4696. cellfont : Dotum,9 ;
  4697. cellcolor : #333333 ;
  4698. selectbackground : #F9F9F9 ;
  4699. selectborder : none ;
  4700. selectfont : Dotum,9 ;
  4701. selectcolor : #333333 ;
  4702. }
  4703. Grid.gridcalendar>#body:mouseover
  4704. {
  4705. cellbackground : #E5EEF4 ;
  4706. cellbackground2 : #E5EEF4 ;
  4707. selectbackground : #E5EEF4 ;
  4708. selectcolor : #333333 ;
  4709. cellcolor : #333333 ;
  4710. cellcolor2 : #333333 ;
  4711. }
  4712. Grid.gridcalendar>#body:focused
  4713. {
  4714. cellbackground : #E5EEF4 ;
  4715. cellbackground2 : #E5EEF4 ;
  4716. selectbackground : #E5EEF4 ;
  4717. selectcolor : #333333 ;
  4718. cellcolor : #333333 ;
  4719. cellcolor2 : #333333 ;
  4720. }
  4721. Cell.btborder_white
  4722. {
  4723. line : 1 solid #C5D8E9, 1 solid #C5D8E9, 0 none, 1 solid #C5D8E9;
  4724. }
  4725. Cell.btriborder_white
  4726. {
  4727. line : 1 solid #C5D8E9, 0 none, 0 none, 1 solid #C5D8E9;
  4728. }
  4729. Cell.riborder_white
  4730. {
  4731. line : 1 solid #C5D8E9, 0 none, 1 solid #C5D8E9, 1 solid #C5D8E9;
  4732. }
  4733. /*** Edit ***/
  4734. Edit.calendar_output, Edit.calendar_output:mouseover, Edit.calendar_output:focused
  4735. {
  4736. background : #E5EEF4 ;
  4737. border : 1 solid #3576AE ;
  4738. bordertype : round 2 2 ;
  4739. }
  4740. Static.calendar_output
  4741. {
  4742. color : #FFFFFF;
  4743. align : center middle;
  4744. }
  4745. /* 20141023 jw.choe TF style output */
  4746. Edit.output[readonly="true"],Edit.output[readonly="true"]:mouseover, Edit.output[readonly="true"]:focused, Edit.output[readonly="true"]:selected, Edit.output[readonly="true"]:disabled
  4747. {
  4748. background : url('theme://images/theme_blue/bg_edit_R.png') stretch 5,5;
  4749. }
  4750. Edit.edt_transbg[readonly="true"],Edit.edt_transbg[readonly="true"]:mouseover, Edit.edt_transbg[readonly="true"]:focused, Edit.edt_transbg[readonly="true"]:selected, Edit.edt_transbg[readonly="true"]:disabled, Edit.edt_transbg[readonly="true"]:pushed
  4751. {
  4752. background : transparent;
  4753. shadow : ;
  4754. }
  4755. Edit.edt_transbg_right[readonly="true"],Edit.edt_transbg_right[readonly="true"]:mouseover, Edit.edt_transbg_right[readonly="true"]:focused, Edit.edt_transbg_right[readonly="true"]:selected, Edit.edt_transbg_right[readonly="true"]:disabled, Edit.edt_transbg_right[readonly="true"]:pushed
  4756. {
  4757. align : right middle;
  4758. background : transparent;
  4759. shadow : ;
  4760. font : Dotum,9,bold;
  4761. }
  4762. MaskEdit.edt_transbg[readonly="true"],MaskEdit.edt_transbg[readonly="true"]:mouseover, MaskEdit.edt_transbg[readonly="true"]:focused, MaskEdit.edt_transbg[readonly="true"]:selected, MaskEdit.edt_transbg[readonly="true"]:disabled, MaskEdit.edt_transbg[readonly="true"]:pushed
  4763. {
  4764. background : transparent;
  4765. shadow : ;
  4766. }
  4767. Calendar.cal_transbg[readonly="true"],Calendar.cal_transbg[readonly="true"]:mouseover, Calendar.cal_transbg[readonly="true"]:focused, Calendar.cal_transbg[readonly="true"]:selected, Calendar.cal_transbg[readonly="true"]:disabled, Calendar.cal_transbg[readonly="true"]:pushed
  4768. {
  4769. background : transparent;
  4770. shadow : ;
  4771. }
  4772. Static.St_CalDW_Sun
  4773. {
  4774. align : center middle ;
  4775. background : #ccd9e2 ;
  4776. font : Tahoma,8 ;
  4777. color : #de1300 ;
  4778. border : 1 solid #b8cad7, 1 solid #d9f0eb, 1 solid #b8cad7, 1 solid #b8cad7 ;
  4779. }
  4780. Static.St_CalDW_Sat
  4781. {
  4782. align : center middle ;
  4783. background : #ccd9e2 ;
  4784. font : Tahoma,8 ;
  4785. color : #1a8ddd ;
  4786. border : 1 solid #b8cad7, 1 solid #b8cad7, 1 solid #b8cad7, 1 solid #b8cad7 ;
  4787. }
  4788. Static.St_CalDW_Day
  4789. {
  4790. align : center middle;
  4791. background : #ccd9e2;
  4792. font : Tahoma,8;
  4793. color : #637786;
  4794. border : 1 solid #b8cad7, 1 solid #ccd9e2, 1 solid #b8cad7, 1 solid #b8cad7;
  4795. }
  4796. Static.St_CalDay
  4797. {
  4798. align : center middle;
  4799. background : #f0f7fc;
  4800. border : 1 solid #b1d8ec;
  4801. font : Tahoma,8;
  4802. color : #2674aa;
  4803. }
  4804. Static.St_popupBg02, Static.St_popupBg02:mouseover, Static.St_popupBg02:disabled
  4805. {
  4806. background : #f0f7fc ;
  4807. border : 1 solid #2674aa ;
  4808. bordertype : round 2 2 ;
  4809. shadow : 1,1 5 #00000066 ;
  4810. opacity : 100:
  4811. }
  4812. Static.St_POPCA_stcYear
  4813. {
  4814. font : Tahoma,12,bold;
  4815. color : #ffffff;
  4816. align : center middle;
  4817. }
  4818. /**** SearchArea ****/
  4819. /** SearchBox **/
  4820. Div.div_SA
  4821. {
  4822. background : URL('theme://images/theme_blue/bg_search.png') stretch 7,7 ;
  4823. bordertype : round 2 2 leftbottom rightbottom;
  4824. }
  4825. Div.div_SA2
  4826. {
  4827. background : URL('theme://images/theme_blue/bg_search2.png') stretch 7,7 ;
  4828. bordertype : round 2 2;
  4829. }
  4830. /** SearchTable**/
  4831. Static.search_name
  4832. {
  4833. font : Dotum,9,bold ;
  4834. align : left middle ;
  4835. padding : 0 0 0 8 ;
  4836. background : url('theme://images/theme_blue/icon_search_bullet.png') left middle ;
  4837. color : #1b5a89 ;
  4838. }
  4839. Static.search_no_b
  4840. {
  4841. font : Dotum,9 ;
  4842. color : #333333 ;
  4843. align : left middle ;
  4844. }
  4845. /**** DataGroup ****/
  4846. /** DataGroupx **/
  4847. Static.sta_DG_box
  4848. {
  4849. background : #e4f1f9;
  4850. border : 1 solid #b1d8ec;
  4851. bordertype : round 2 2;
  4852. }
  4853. Static.sta_DG_sublabel
  4854. {
  4855. background : URL('theme://images/bg_DG_sublabel.png') stretch 23,23 ;
  4856. padding : 0 0 0 9;
  4857. color : #1b5a89;
  4858. }
  4859. Static.sta_DG_line
  4860. {
  4861. border : 0 none, 0 none, 1 solid #b1d8ec, 0 none;
  4862. }
  4863. /**** DetileArea ****/
  4864. /** DetileBox **/
  4865. Static.sta_DA_box
  4866. {
  4867. background : #f0f7fc ;
  4868. border : 2 solid #1b5a89, 0 solid #B0B0B0, 0 solid #B0B0B0, 0 solid #B0B0B0 ;
  4869. }
  4870. Static.sta_DA_box2
  4871. {
  4872. background : #ffffff ;
  4873. border : 1 solid #84bfe1 ;
  4874. }
  4875. /*** DetileTable ***/
  4876. Static.cell_1
  4877. {
  4878. background : #cce8ffff ;
  4879. border : 0 none ;
  4880. bordertype : round 2,2 ;
  4881. color : #333333 ;
  4882. padding : 0 0 0 8 ;
  4883. }
  4884. Static.cell_2
  4885. {
  4886. background : #E9ECD2 ;
  4887. border : 1 solid #9EBED4 ;
  4888. bordertype : round 2,2 ;
  4889. color : #333333 ;
  4890. padding : 0 0 0 8 ;
  4891. }
  4892. /* 20141028 jw.choe static border style add*/
  4893. Static.cell_3
  4894. {
  4895. border : 1 solid #84bfe1 ;
  4896. bordertype : round 2,2 ;
  4897. color : #333333 ;
  4898. padding : 0 0 0 1 ;
  4899. }
  4900. /*** DataBox ***/
  4901. Div.div_DA
  4902. {
  4903. background : #ffffff ;
  4904. border : 1 solid #84bfe1 ;
  4905. bordertype : round 2 2 ;
  4906. }
  4907. Div.groupbox_blue, Static.groupbox_blue
  4908. {
  4909. background : #f0f7fc ;
  4910. border : 1 solid #3d95cd ;
  4911. bordertype : round 5 5 ;
  4912. }
  4913. Div.div_Layer
  4914. {
  4915. background : URL('theme://images/theme_blue/bg_form_popup.png') stretch 40,40;
  4916. border : ;
  4917. }
  4918. Div.div_DA_box
  4919. {
  4920. background : #ffffff ;
  4921. border : 1 solid #B0B0B0 ;
  4922. }
  4923. Div.div_Gradation
  4924. {
  4925. background : #f0f7fc;
  4926. border : 2 solid #84bfe1;
  4927. }
  4928. PopupDiv.div_Gradation
  4929. {
  4930. background : #f0f7fc;
  4931. border : 2 solid #84bfe1;
  4932. }
  4933. /***** Title *****/
  4934. /*** WorkFormTitle ***/
  4935. Static.tit_1
  4936. {
  4937. font : Dotum,9,bold ;
  4938. align : left middle ;
  4939. padding : 0 0 0 22 ;
  4940. background : #2d84be url('theme://images/icon_tit_bullet1.png') left middle ;
  4941. color : #FFFFFF ;
  4942. }
  4943. Static.tit_2
  4944. {
  4945. font : Dotum,9,bold;
  4946. align : left top;
  4947. padding : 2 0 0 19;
  4948. background : url('theme://images/theme_blue/icon_tit_bullet2.png') left top;
  4949. color : #333333;
  4950. }
  4951. Static.tit_3
  4952. {
  4953. font : Dotum,9,bold;
  4954. align : left millde;
  4955. padding : 2 0 0 19;
  4956. background : url('theme://images/theme_blue/icon_tit_bullet3.png') left middle;
  4957. color : #1b5a89;
  4958. }
  4959. /* Static ondblclick event 2014.12.03 jw.choe*/
  4960. Button.tit_2, Button.tit_2:mouseover, Button.tit_2:pushed, Button.tit_2:focus, Button.tit_2:selected, Button.tit_2:disabled
  4961. {
  4962. font : Dotum,9,bold;
  4963. align : left top;
  4964. padding : 2 0 0 19;
  4965. background : url('theme://images/theme_blue/icon_tit_bullet2.png') left top;
  4966. color : #333333;
  4967. border : 0 none;
  4968. cursor : auto;
  4969. }
  4970. /* caption ondblclick event 2014.12.17 jw.choe*/
  4971. Button.caption, Button.caption:mouseover, Button.caption:pushed, Button.caption:focus, Button.caption:selected
  4972. {
  4973. background : transparent ;
  4974. border : 0 none ;
  4975. align : left middle ;
  4976. font : Dotum,9 ;
  4977. color : #333333 ;
  4978. cursor : auto ;
  4979. }
  4980. /*** 멀티 셀렉트 버튼 ***/
  4981. Button.Combo_list_dropbtn
  4982. {
  4983. background : transparent url('theme://images/theme_blue/btn_dropBg1_N.png') stretch 5,0;
  4984. border : 0 none;
  4985. bordertype : round 2,2 righttop rightbuttom;
  4986. image : theme://images/theme_blue/btn_drop_N.png;
  4987. imagepadding : 0 0 0 1;
  4988. imagealign : center middle;
  4989. pusheddrawoffset : 0 0;
  4990. }
  4991. Button.Combo_list_dropbtn:mouseover
  4992. {
  4993. background : transparent url('theme://images/theme_blue/btn_dropBg1_O.png') stretch 5,0 ;
  4994. border : 0 none ;
  4995. bordertype : round 2,2 righttop rightbuttom ;
  4996. image : theme://images/theme_blue/btn_drop_O.png ;
  4997. imagepadding : 0 0 0 1 ;
  4998. imagealign : center middle ;
  4999. shadow : 0 none ;
  5000. }
  5001. Button.Combo_list_dropbtn:pushed
  5002. {
  5003. background : transparent url('theme://images/theme_blue/btn_dropBg1_P.png') stretch 5,0 ;
  5004. border : 0 none ;
  5005. bordertype : round 2,2 righttop rightbuttom ;
  5006. image : theme://images/theme_blue/btn_drop_P.png ;
  5007. imagepadding : 0 0 0 1 ;
  5008. imagealign : center middle ;
  5009. shadow : 0 none ;
  5010. pusheddrawoffset : 0 0 ;
  5011. }
  5012. Button.Combo_list_dropbtn:focus, Button.Combo_list_dropbtn:selected
  5013. {
  5014. background : #fff000 ;
  5015. border : 0 none ;
  5016. bordertype : round 2,2 righttop rightbuttom ;
  5017. image : theme://images/theme_blue/btn_drop_P.png ;
  5018. imagepadding : 0 0 0 1 ;
  5019. imagealign : center middle ;
  5020. margin : 1 1 1 1 ;
  5021. shadow : 0 none ;
  5022. pusheddrawoffset : 0 0 ;
  5023. }
  5024. /***** PopupForm *****/
  5025. /*** Title ***/
  5026. Static.sta_POP_title, Static.sta_POP_title:disabled
  5027. {
  5028. font : Dotum,11,bold;
  5029. align : left millde;
  5030. color : #ffffff;
  5031. }
  5032. /*** Close ***/
  5033. Button.btn_POP_cls, Button.btn_POP_cls:focused, Button.btn_POP_cls:selected
  5034. {
  5035. background : transparent;
  5036. border : none;
  5037. image : url('theme://images/theme_blue/icon_form_popClose_N.png');
  5038. }
  5039. Button.btn_POP_cls:mouseover
  5040. {
  5041. background : transparent ;
  5042. border : none ;
  5043. image : url('theme://images/theme_blue/icon_form_popClose_O.png') ;
  5044. }
  5045. Button.btn_POP_cls:pushed
  5046. {
  5047. background : transparent;
  5048. border : none;
  5049. image : url('theme://images/theme_blue/icon_form_popClose_P.png');
  5050. }
  5051. Button.btn_POP_cls2, Button.btn_POP_cls2:mouseover, Button.btn_POP_cls2:pushed, Button.btn_POP_cls2:selected
  5052. {
  5053. image : url('theme://images/btn_popcloseN.png');
  5054. border : none;
  5055. background : transparent;
  5056. padding : 0 0 0 0;
  5057. }
  5058. /*** Minimize ***/
  5059. Button.btn_POP_min, Button.btn_POP_min:focused, Button.btn_POP_min:selected
  5060. {
  5061. background : transparent;
  5062. border : 0 none;
  5063. bordertype : normal ;
  5064. margin : 0 0 0 4;
  5065. image : theme://images/btn_TitlebarForm_Min_N.png;
  5066. imagealign : center middle;
  5067. cursor : hand;
  5068. }
  5069. Button.btn_POP_min:mouseover
  5070. {
  5071. background : transparent;
  5072. border : none;
  5073. image : theme://images/btn_TitlebarForm_Min_D.png;
  5074. shadow : ;
  5075. }
  5076. Button.btn_POP_min:pushed, Button.btn_POP_min:deactivate,Button.btn_POP_min:nested
  5077. {
  5078. background : transparent;
  5079. border : none;
  5080. image : theme://images/btn_TitlebarForm_Min_D.png;
  5081. pusheddrawoffset : 0 0;
  5082. }
  5083. /***** 가이드안내용 *****/
  5084. Static.sta_guide
  5085. {
  5086. background : #ff7f5099;
  5087. font : Dotum,8;
  5088. align : center middle;
  5089. color : #ffffff;
  5090. }
  5091. /***** BOTTOMFRAME *****/
  5092. Static.sta_BF_STMsg
  5093. {
  5094. background : #103b5f URL('theme://images/theme_blue/bg_BF_line.png') repeat-y right middle ;
  5095. border : 1 solid #1e242e, 0 solid #1e242e, 0 solid #1e242e, 0 solid #1e242e ;
  5096. font : Dotum,9 ;
  5097. color : #cfd0d1ff ;
  5098. padding : 1 10 0 10 ;
  5099. }
  5100. Static.sta_BF_STUser
  5101. {
  5102. align : center middle ;
  5103. background : #103b5f URL('theme://images/theme_blue/bg_BF_line.png') repeat-y right middle ;
  5104. border : 1 solid #1e242e, 0 solid #1e242e, 0 solid #1e242e, 0 solid #1e242e ;
  5105. font : Dotum,9 ;
  5106. color : #82caebff ;
  5107. padding : 1 10 0 10 ;
  5108. }
  5109. Static.sta_BF_STDate
  5110. {
  5111. align : right middle;
  5112. background : transparent;
  5113. border : 1 solid #1e242e, 0 solid #1e242e, 0 solid #1e242e, 0 solid #1e242e;
  5114. font : Dotum,9;
  5115. color : #cfd0d1ff;
  5116. padding : 1 10 0 10;
  5117. }
  5118. Static.sta_BF_STNoti
  5119. {
  5120. background : #103b5f URL('theme://images/theme_blue/bg_BF_line.png') repeat-y right middle ;
  5121. border : 1 solid #1e242e, 0 solid #1e242e, 0 solid #1e242e, 0 solid #1e242e ;
  5122. font : Dotum,9 ;
  5123. color : #cfd0d1ff ;
  5124. padding : 1 10 0 10 ;
  5125. }
  5126. Static.sta_BF_ST_BG
  5127. {
  5128. background : #103b5f ;
  5129. border : 1 solid #1e242e, 0 solid #1e242e, 0 solid #1e242e, 0 solid #1e242e ;
  5130. font : Dotum,9 ;
  5131. color : #cfd0d1ff ;
  5132. padding : 1 10 0 10 ;
  5133. }
  5134. /***** BOTTOMFRAMEEnd *****/
  5135. Static.sta_LoginForm_bg
  5136. {
  5137. background : @gradation url('theme://main/Login_Bg_Visual1.png') left top;
  5138. }
  5139. /***** FRAMEStart *****/
  5140. /*** TOPFRAME ***/
  5141. Button.btn_Menu, Button.btn_Menu:disabled
  5142. {
  5143. background : transparent URL('theme://images/btn_menu_N.png') left middle;
  5144. border : 0 none;
  5145. bordertype : normal;
  5146. align : left middle;
  5147. margin : 0 0 0 4;
  5148. }
  5149. Button.btn_Menu:mouseover
  5150. {
  5151. background : transparent URL('theme://images/btn_menu_N.png') left middle;
  5152. border : 0 none;
  5153. margin : 0 0 0 4;
  5154. }
  5155. Button.btn_Menu:pushed
  5156. {
  5157. background : transparent URL('theme://images/btn_menu_N.png') left middle;
  5158. border : 0 none;
  5159. margin : 0 0 0 4;
  5160. }
  5161. Button.btn_Menu:focused,Button.btn_Menu:selected
  5162. {
  5163. background : transparent URL('theme://images/btn_menu_N.png') left middle;
  5164. border : 0 none;
  5165. margin : 0 0 0 4;
  5166. }
  5167. Button.btn_Menu_032, Button.btn_Menu_032:disabled
  5168. {
  5169. background : transparent URL('theme://images/btn_menu_N1.png') left middle;
  5170. border : 0 none;
  5171. bordertype : normal;
  5172. align : left middle;
  5173. margin : 0 0 0 4;
  5174. }
  5175. Button.btn_Menu_032:mouseover
  5176. {
  5177. background : transparent URL('theme://images/btn_menu_N1.png') left middle ;
  5178. border : 0 none ;
  5179. margin : 0 0 0 4;
  5180. }
  5181. Button.btn_Menu_032:pushed
  5182. {
  5183. background : transparent URL('theme://images/btn_menu_N1.png') left middle ;
  5184. border : 0 none ;
  5185. margin : 0 0 0 4;
  5186. }
  5187. Button.btn_Menu_032:focused,Button.btn_Menu:selected
  5188. {
  5189. background : transparent URL('theme://images/btn_menu_N1.png') left middle;
  5190. border : 0 none;
  5191. margin : 0 0 0 4;
  5192. }
  5193. Button.btn_Menu_033, Button.btn_Menu_033:disabled
  5194. {
  5195. background : transparent URL('theme://images/btn_menu_N2.png') left middle;
  5196. border : 0 none;
  5197. bordertype : normal;
  5198. align : left middle;
  5199. margin : 0 0 0 4;
  5200. }
  5201. Button.btn_Menu_033:mouseover
  5202. {
  5203. background : transparent URL('theme://images/btn_menu_N2.png') left middle ;
  5204. border : 0 none ;
  5205. margin : 0 0 0 4;
  5206. }
  5207. Button.btn_Menu_033:pushed
  5208. {
  5209. background : transparent URL('theme://images/btn_menu_N2.png') left middle ;
  5210. border : 0 none ;
  5211. margin : 0 0 0 4;
  5212. }
  5213. Button.btn_Menu_033:focused,Button.btn_Menu:selected
  5214. {
  5215. background : transparent URL('theme://images/btn_menu_N2.png') left middle;
  5216. border : 0 none;
  5217. margin : 0 0 0 4;
  5218. }
  5219. Button.btn_TF_GNB_SpinPre,Button.btn_TF_GNB_SpinPre:focused,Button.btn_TF_GNB_SpinPre:selected
  5220. {
  5221. background : transparent URL('theme://images/theme_blue/BTN_TF_SpinPre_N.png') left top;
  5222. border : 0 none;
  5223. bordertype : normal;
  5224. align : center middle;
  5225. }
  5226. Button.btn_TF_GNB_SpinPre:mouseover
  5227. {
  5228. background : transparent URL('theme://images/theme_blue/BTN_TF_SpinPre_O.png') left top;
  5229. border : 0 none;
  5230. }
  5231. Button.btn_TF_GNB_SpinPre:pushed
  5232. {
  5233. background : transparent URL('theme://images/theme_blue/BTN_TF_SpinPre_P.png') left top;
  5234. border : 0 none;
  5235. }
  5236. Button.btn_TF_GNB_SpinNext,Button.btn_TF_GNB_SpinNext:focused,Button.btn_TF_GNB_SpinNext:selected
  5237. {
  5238. background : transparent URL('theme://images/theme_blue/BTN_TF_SpinNext_N.png') left top;
  5239. border : 0 none;
  5240. bordertype : normal;
  5241. align : center middle;
  5242. }
  5243. Button.btn_TF_GNB_SpinNext:mouseover
  5244. {
  5245. background : transparent URL('theme://images/theme_blue/BTN_TF_SpinNext_O.png') left top;
  5246. border : 0 none;
  5247. }
  5248. Button.btn_TF_GNB_SpinNext:pushed
  5249. {
  5250. background : transparent URL('theme://images/theme_blue/BTN_TF_SpinNext_P.png') left top;
  5251. border : 0 none;
  5252. }
  5253. Button.btn_MenuGroup,Button.btn_MenuGroup:focused,Button.btn_MenuGroup:selected
  5254. {
  5255. background : #2674aa ;
  5256. border : 0 none;
  5257. bordertype : normal 0 0;
  5258. color : #ffffff ;
  5259. align : center middle ;
  5260. image : theme://images/theme_blue/icon_menu_group.png ;
  5261. imagealign : lefttext middle ;
  5262. imagepadding : 0 2 0 0 ;
  5263. }
  5264. Button.btn_MenuGroup:mouseover
  5265. {
  5266. background : #2d84be ;
  5267. color : #e4f1f9 ;
  5268. }
  5269. Button.btn_MenuGroup:pushed
  5270. {
  5271. background : #f97818 ;
  5272. color : #ffffff ;
  5273. }
  5274. Button.btn_InfoMod,Button.btn_InfoMod:focused,Button.btn_InfoMod:selected,Button.btn_InfoMod:disabled
  5275. {
  5276. background : royalblue;
  5277. border : 0 none;
  5278. bordertype : normal;
  5279. color : #ffffff;
  5280. align : center bottom ;
  5281. image : theme://images/btn_TF_InfoMod.png;
  5282. imagealign : center top ;
  5283. padding : 5 0 5 0 ;
  5284. }
  5285. Button.btn_InfoMod:mouseover
  5286. {
  5287. background : royalblue;
  5288. border : 0 none;
  5289. color : #0a3948;
  5290. }
  5291. Button.btn_InfoMod:pushed
  5292. {
  5293. background : royalblue;
  5294. border : 0 none;
  5295. color : #ffffff;
  5296. }
  5297. Button.btn_OpenPage,Button.btn_OpenPage:focused,Button.btn_OpenPage:selected,Button.btn_OpenPage:disabled
  5298. {
  5299. background : seagreen;
  5300. border : 0 none;
  5301. bordertype : normal;
  5302. color : #ffffff;
  5303. align : center bottom ;
  5304. image : theme://images/btn_TF_OpenPage_N.png;
  5305. imagealign : center top ;
  5306. padding : 10 0 5 0 ;
  5307. }
  5308. Button.btn_OpenPage:mouseover
  5309. {
  5310. background : seagreen;
  5311. border : 0 none;
  5312. color : #0a3948;
  5313. }
  5314. Button.btn_OpenPage:pushed
  5315. {
  5316. background : seagreen;
  5317. border : 0 none;
  5318. color : #ffffff;
  5319. }
  5320. Button.btn_Logout,Button.btn_Logout:focused,Button.btn_Logout:selected
  5321. {
  5322. background : #103b5f ;
  5323. bordertype : round 30 30 ;
  5324. border : none 0 ;
  5325. color : #e4f1f9 ;
  5326. align : center middle ;
  5327. image : ;
  5328. padding : 5 0 5 0 ;
  5329. }
  5330. Button.btn_Logout:mouseover
  5331. {
  5332. background : #2674aa ;
  5333. color : #ffffff ;
  5334. }
  5335. Button.btn_Logout:pushed
  5336. {
  5337. background : #f97818 ;
  5338. color : #ffffff ;
  5339. }
  5340. Button.btn_phone,Button.btn_phone:focused,Button.btn_phone:selected
  5341. {
  5342. background : transparent URL('theme://images/phoneinfo_N.png');
  5343. border : 0 none;
  5344. color : #ffffff;
  5345. align : center middle;
  5346. padding : 0 0 0 0 ;
  5347. }
  5348. Button.btn_phone:mouseover
  5349. {
  5350. background : transparent URL('theme://images/phoneinfo_O.png');
  5351. border : 0 none;
  5352. }
  5353. Button.btn_phone:pushed
  5354. {
  5355. background : transparent URL('theme://images/phoneinfo_P.png');
  5356. border : 0 none;
  5357. }
  5358. Button.btn_Mesg,Button.btn_Mesg:focused,Button.btn_Mesg:selected,Button.btn_Mesg:disabled
  5359. {
  5360. background : tomato;
  5361. border : 0 none;
  5362. bordertype : normal;
  5363. color : #ffffff;
  5364. align : center bottom;
  5365. image : theme://images\messenger.png;
  5366. imagealign : center top ;
  5367. padding : 5 0 5 0 ;
  5368. }
  5369. Button.btn_Mesg:mouseover
  5370. {
  5371. background : tomato;
  5372. border : 0 none;
  5373. color : #0a3948;
  5374. }
  5375. Button.btn_Mesg:pushed
  5376. {
  5377. background : tomato;
  5378. border : 0 none;
  5379. color : #ffffff;
  5380. }
  5381. Button.btn_Mesg_Open,Button.btn_Mesg_Open:focused,Button.btn_Mesg_Open:selected
  5382. {
  5383. background : deepskyblue;
  5384. border : 0 none;
  5385. bordertype : normal;
  5386. color : #ffffff;
  5387. align : center bottom;
  5388. image : theme://images/btn_TF_Mesg_Open.png;
  5389. imagealign : center top ;
  5390. padding : 5 0 5 0 ;
  5391. }
  5392. Button.btn_Mesg_Open:mouseover
  5393. {
  5394. background : deepskyblue;
  5395. border : 0 none;
  5396. color : #0a3948;
  5397. }
  5398. Button.btn_Mesg_Open:pushed
  5399. {
  5400. background : deepskyblue;
  5401. border : 0 none;
  5402. color : #ffffff;
  5403. }
  5404. Button.btn_Mis,Button.btn_Mis:focused,Button.btn_Mis:selected,Button.btn_Mis:disabled
  5405. {
  5406. background : deepskyblue;
  5407. border : 0 none;
  5408. bordertype : normal;
  5409. color : #ffffff;
  5410. align : center bottom;
  5411. image : theme://images/btn_mis.png;
  5412. imagealign : center top ;
  5413. padding : 5 0 5 0 ;
  5414. }
  5415. Button.btn_Mis:mouseover
  5416. {
  5417. background : deepskyblue;
  5418. border : 0 none;
  5419. color : #0a3948;
  5420. }
  5421. Button.btn_Mis:pushed
  5422. {
  5423. background : deepskyblue;
  5424. border : 0 none;
  5425. color : #ffffff;
  5426. }
  5427. Button.btn_ElecSign,Button.btn_ElecSign:focused,Button.btn_ElecSign:selected,Button.btn_ElecSign:disabled
  5428. {
  5429. background : violet;
  5430. border : 0 none;
  5431. bordertype : normal;
  5432. color : #ffffff;
  5433. align : center bottom;
  5434. image : theme://images/btn_TF_InfoMod_N.png;
  5435. imagealign : center top ;
  5436. padding : 5 0 5 0 ;
  5437. }
  5438. Button.btn_ElecSign:mouseover
  5439. {
  5440. background : violet;
  5441. border : 0 none;
  5442. color : #0a3948;
  5443. }
  5444. Button.btn_ElecSign:pushed
  5445. {
  5446. background : violet;
  5447. border : 0 none;
  5448. color : #ffffff;
  5449. }
  5450. Button.btn_Call,Button.btn_Call:focused,Button.btn_Call:selected,Button.btn_Call:disabled
  5451. {
  5452. background : lightslategray;
  5453. border : 0 none;
  5454. bordertype : normal;
  5455. color : #ffffff;
  5456. align : center bottom;
  5457. image : theme://images/btn_call.png;
  5458. imagealign : center top ;
  5459. padding : 5 0 5 0 ;
  5460. }
  5461. Button.btn_Call:mouseover
  5462. {
  5463. background : lightslategray;
  5464. border : 0 none;
  5465. color : #0a3948;
  5466. }
  5467. Button.btn_Call:pushed
  5468. {
  5469. background : lightslategray;
  5470. border : 0 none;
  5471. color : #ffffff;
  5472. }
  5473. Button.btn_GuideLine,Button.btn_GuideLine:focused,Button.btn_GuideLine:selected,Button.btn_GuideLine:disabled
  5474. {
  5475. background : #f5b510ff;
  5476. border : 0 none;
  5477. bordertype : normal;
  5478. color : #ffffff;
  5479. align : center bottom;
  5480. image : theme://images\btn_guideline.png;
  5481. imagealign : center top ;
  5482. padding : 5 0 5 0 ;
  5483. }
  5484. Button.btn_GuideLine:mouseover
  5485. {
  5486. background : #f5b510ff;
  5487. border : 0 none;
  5488. color : #0a3948;
  5489. }
  5490. Button.btn_GuideLine:pushed
  5491. {
  5492. background : #f5b510ff;
  5493. border : 0 none;
  5494. color : #ffffff;
  5495. }
  5496. Button.btn_CDW,Button.btn_CDW:focused,Button.btn_CDW:selected,Button.btn_CDW:disabled
  5497. {
  5498. background : mediumseagreen;
  5499. border : 0 none;
  5500. bordertype : normal;
  5501. color : #ffffff;
  5502. align : center bottom;
  5503. image : theme://images\btn_cdw.png;
  5504. imagealign : center top ;
  5505. padding : 5 0 5 0 ;
  5506. }
  5507. Button.btn_CDW:mouseover
  5508. {
  5509. background : mediumseagreen;
  5510. border : 0 none;
  5511. color : #0a3948;
  5512. }
  5513. Button.btn_CDW:pushed
  5514. {
  5515. background : mediumseagreen;
  5516. border : 0 none;
  5517. color : #ffffff;
  5518. }
  5519. Button.btn_MesgNew,Button.btn_MesgNew:focused,Button.btn_MesgNew:selected
  5520. {
  5521. background : transparent URL('theme://images/theme_blue/btn_TF_MesgNew_N.png') stretch 5,0 left top;
  5522. border : 0 none;
  5523. bordertype : normal;
  5524. align : center middle;
  5525. }
  5526. Button.btn_MesgNew:mouseover
  5527. {
  5528. background : transparent URL('theme://images/theme_blue/btn_TF_MesgNew_O.png') stretch 5,0 left top;
  5529. border : 0 none;
  5530. }
  5531. Button.btn_MesgNew:pushed
  5532. {
  5533. background : transparent URL('theme://images/theme_blue/btn_TF_MesgNew_P.png') stretch 5,0 left top;
  5534. border : 0 none;
  5535. }
  5536. Button.btn_MesgError,Button.btn_MesgError:focused,Button.btn_MesgError:selected
  5537. {
  5538. background : transparent URL('theme://images/theme_blue/btn_TF_MesgError_N.png') stretch 5,0 left top;
  5539. border : 0 none;
  5540. bordertype : normal;
  5541. align : center middle;
  5542. }
  5543. Button.btn_MesgError:mouseover
  5544. {
  5545. background : transparent URL('theme://images/theme_blue/btn_TF_MesgError_O.png') stretch 5,0 left top;
  5546. border : 0 none;
  5547. }
  5548. Button.btn_MesgError:pushed
  5549. {
  5550. background : transparent URL('theme://images/theme_blue/btn_TF_MesgError_P.png') stretch 5,0 left top;
  5551. border : 0 none;
  5552. }
  5553. /*** 팝업메뉴 ***/
  5554. PopupDiv.pdv_TF_Menu
  5555. {
  5556. background : #f0f7fc URL('theme://images/theme_blue/bg_TF_Popdiv_Tit.png') repeat-x left top ;
  5557. border : 1 solid #2674aa ;
  5558. bordertype : round 2,2 ;
  5559. font : Dotum,9,bold ;
  5560. align : left top;
  5561. color : #ffffff;
  5562. }
  5563. Button.btn_PDVClose,Button.btn_PDVClose:focused,Button.btn_PDVClose:selected
  5564. {
  5565. background : transparent URL('theme://images/theme_blue/btn_TF_PopDiv_Close_N.png') left top;
  5566. border : 0 none;
  5567. bordertype : normal;
  5568. align : center middle;
  5569. }
  5570. Button.btn_PDVClose:mouseover
  5571. {
  5572. background : transparent URL('theme://images/theme_blue/btn_TF_PopDiv_Close_O.png') left top ;
  5573. border : 0 none ;
  5574. shadow : 0 none ;
  5575. }
  5576. Button.btn_PDVClose:pushed
  5577. {
  5578. background : transparent URL('theme://images/theme_blue/btn_TF_PopDiv_Close_P.png') left top;
  5579. border : 0 none;
  5580. }
  5581. Static.sta_TF_MenuTit
  5582. {
  5583. align : left middle;
  5584. background : transparent;
  5585. border : 0 none;
  5586. font : Dotum,9,bold;
  5587. color : #ffffff;
  5588. padding : 8 0 8 8;
  5589. }
  5590. Grid.grd_TF_PDVMenu
  5591. {
  5592. background : #f0f7fc ;
  5593. border : 0 none ;
  5594. font : Dotum,9,bold ;
  5595. color : #f97818 ;
  5596. align : center middle ;
  5597. focusborder : 0 none ;
  5598. }
  5599. Grid.grd_TF_PDVMenu>#body
  5600. {
  5601. background : transparent ;
  5602. border : none ;
  5603. font : Dotum,9,bold ;
  5604. color : #666666 ;
  5605. cellpadding : 0 3 0 3 ;
  5606. cellbackground : #f0f7fc ;
  5607. cellbackground2 : #f0f7fc ;
  5608. cellalign : left middle ;
  5609. cellline : 1 solid #B0B0B0 ;
  5610. celllinetype : onlyhorz ;
  5611. cellfont : Dotum,9 ;
  5612. cellcolor : #666666 ;
  5613. selectbackground : #f0f7fc ;
  5614. selectborder : none ;
  5615. selectline : 1 solid #B0B0B0 ;
  5616. selectline : onlyhorz ;
  5617. selectfont : Dotum,9,bold ;
  5618. selectcolor : #666666 ;
  5619. }
  5620. Grid.grd_TF_PDVMenu>#body:mouseover
  5621. {
  5622. cellbackground : transparent ;
  5623. cellbackground2 : transparent ;
  5624. cellcolor : #666666 ;
  5625. selectbackground : transparent ;
  5626. selectfont : Dotum,9,bold ;
  5627. selectcolor : #666666 ;
  5628. }
  5629. Grid.grd_TF_PDVMenu>#body:disabled
  5630. {
  5631. cellbackground : #ffffff ;
  5632. cellbackground2 : #f0f7fc ;
  5633. cellcolor : #666666 ;
  5634. selectbackground : #ffffff ;
  5635. selectcolor : #666666 ;
  5636. }
  5637. /* Grid TF vscrollbar */
  5638. Grid.grd_TF_PDVMenu>#vscrollbar
  5639. {
  5640. background : transparent URL('theme://images/theme_blue/bg_Popdiv_SrollLine.png') repeat-y left top;
  5641. barminsize : 0;
  5642. border : 0 none ;
  5643. imgoutsize : 11;
  5644. decbtnsize : 0;
  5645. incbtnsize : 0;
  5646. scrollbarsize : 16;
  5647. trackbarsize : 25;
  5648. }
  5649. Grid.grd_TF_PDVMenu>#vscrollbar:mouseover, Grid.grd_TF_PDVMenu>#vscrollbar:pushed, Grid.grd_TF_PDVMenu>#vscrollbar:focused
  5650. {
  5651. background : transparent;
  5652. }
  5653. Grid.grd_TF_PDVMenu>#vscrollbar>#trackbar
  5654. {
  5655. background : #e4f1f9 ;
  5656. border : 1 solid #b1d8ec ;
  5657. bordertype : round 4 4 ;
  5658. padding : 0 0 0 0 ;
  5659. align : center middle ;
  5660. image : ;
  5661. pusheddrawoffset : 0 0;
  5662. }
  5663. Grid.grd_TF_PDVMenu>#vscrollbar>#trackbar:mouseover
  5664. {
  5665. background : #cee6f4 ;
  5666. border : 1 solid #84bfe1 ;
  5667. image : ;
  5668. }
  5669. Grid.grd_TF_PDVMenu>#vscrollbar>#trackbar:pushed
  5670. {
  5671. background : #b1d8ec
  5672. border : 1 solid #58a6d5 ;
  5673. image : ;
  5674. }
  5675. Grid.grd_TF_PDVMenu>#vscrollbar>#trackbar:disabled
  5676. {
  5677. background : #CCD1D6 ;
  5678. border : 1 solid #b1d8ec ;
  5679. }
  5680. /*** 환자 상단 정보 ***/
  5681. Div.div_shortcut_bg
  5682. {
  5683. background : #84bfe1 ;
  5684. }
  5685. Div.div_menu_bg
  5686. {
  5687. background : #1b5a89 ;
  5688. }
  5689. Div.div_patientInfo_all_bg
  5690. {
  5691. background : #f0f7fc ;
  5692. }
  5693. Div.div_patientinfo_bg
  5694. {
  5695. background : #2674aa ;
  5696. bordertype : round 4 4 ;
  5697. }
  5698. Static.sta_seperate
  5699. {
  5700. border : 0, 1 solid #84bfe1, 0, 0 ;
  5701. }
  5702. Static.sta_PatientInfo
  5703. {
  5704. background : transparent ;
  5705. color : #ffffffff ;
  5706. font : Gulim,10,bold ;
  5707. }
  5708. Static.sta_PatientInfo2
  5709. {
  5710. background : transparent URL('theme://images/theme_blue/icon_patinfo.png') left middle ;
  5711. padding : 0 0 0 10 ;
  5712. }
  5713. Static.sta_PatientInfo3
  5714. {
  5715. background : transparent URL('theme://images/theme_blue/icon_bullet.png') left middle ;
  5716. color : #333333 ;
  5717. font : Dotum,9,bold ;
  5718. padding : 0 0 0 13 ;
  5719. }
  5720. Static.stt_diagnosis_d
  5721. {
  5722. background : transparent ;
  5723. border : 1 solid #84bfe1 ;
  5724. bordertype : round 1 1 ;
  5725. padding : 0 1 0 1 ;
  5726. }
  5727. Static.stt_diagnosis_over
  5728. {
  5729. background : #ffffffff ;
  5730. border : 1 solid #84bfe1 ;
  5731. bordertype : round 1 1 ;
  5732. padding : 0 1 0 1 ;
  5733. }
  5734. Edit.edt_pid[readonly="true"],Edit.edt_pid[readonly="true"]:mouseover, Edit.edt_pid[readonly="true"]:focused, Edit.edt_pid[readonly="true"]:selected, Edit.edt_pid[readonly="true"]:disabled
  5735. {
  5736. align : left middle;
  5737. background : transparent;
  5738. border : 0 none #808080ff;
  5739. bordertype : normal 0 0;
  5740. color : #ffffffff;
  5741. font : Gulim,10,bold;
  5742. padding : 0 0 0 0;
  5743. }
  5744. Button.btn_diagnosis, Button.btn_diagnosis:focused, Button.btn_diagnosis:selected, Button.btn_diagnosis:mouseover, Button.btn_diagnosis:pushed
  5745. {
  5746. background : transparent URL('theme://images/theme_blue/icon_bullet.png') left middle ;
  5747. border : 0 none #808080ff ;
  5748. color : #333333 ;
  5749. font : Dotum,9,bold ;
  5750. padding : 0 0 0 13 ;
  5751. }
  5752. Div.div_PatientInfo
  5753. {
  5754. background : #e4f1f9 URL('theme://images/theme_blue/bg_top.png') repeat ;
  5755. }
  5756. Button.btn_TF_Certificate,Button.btn_TF_Certificate:focused,Button.btn_TF_Certificate:selected
  5757. {
  5758. background : transparent URL('theme://images/theme_blue/btn_doc_N.png') center middle ;
  5759. align : center middle ;
  5760. }
  5761. Button.btn_TF_Certificate:mouseover
  5762. {
  5763. background : transparent URL('theme://images/theme_blue/btn_doc_O.png') center middle ;
  5764. }
  5765. Button.btn_TF_Certificate:pushed
  5766. {
  5767. background : transparent URL('theme://images/theme_blue/btn_doc_P.png') center middle ;
  5768. }
  5769. Button.btn_TF_PatientCase, Button.btn_TF_PatientCase:focused, Button.btn_TF_PatientCase:selected, Button.btn_TF_PatientCase:disabled
  5770. {
  5771. background : #84bfe1 ;
  5772. border : 0 solid #8abad8ff;
  5773. color : #e4f1f9 ;
  5774. font : Dotum,8,bold ;
  5775. cursor : hand ;
  5776. }
  5777. Button.btn_TF_PatientCase:mouseover
  5778. {
  5779. background : #b1d8ec ;
  5780. border : 0 solid #8abad8ff;
  5781. color : #ffffff ;
  5782. }
  5783. Button.btn_TF_PatientCase:pushed
  5784. {
  5785. background : #f97818 ;
  5786. border : 0 solid #8abad8ff;
  5787. color : #ffffff ;
  5788. }
  5789. Button.btn_top_allergy, Button.btn_top_allergy:focused, Button.btn_top_allergy:selected, Button.btn_top_allergy:disabled
  5790. {
  5791. background : #fb4b38ff;
  5792. border : 0 solid #8abad8ff;
  5793. color : #ffffffff;
  5794. cursor : hand;
  5795. focusborder : 0 none;
  5796. font : Dotum,8,bold;
  5797. }
  5798. Button.btn_top_allergy:mouseover
  5799. {
  5800. background : #fe6e5fff;
  5801. color : #ffffffff;
  5802. border : 0 solid #8abad8ff;
  5803. }
  5804. Button.btn_top_allergy:pushed
  5805. {
  5806. background : #ff1a01ff;
  5807. border : 0 solid #8abad8ff;
  5808. }
  5809. Button.btn_top_newallergy, Button.btn_top_newallergy:focused, Button.btn_top_newallergy:selected, Button.btn_top_newallergy:disabled
  5810. {
  5811. background : #fb4b38ff;
  5812. border : 0 solid #8abad8ff;
  5813. color : #ffffffff;
  5814. cursor : hand;
  5815. focusborder : 0 none;
  5816. font : Dotum,8,bold;
  5817. }
  5818. Button.btn_top_newallergy:mouseover
  5819. {
  5820. background : #fe6e5fff;
  5821. color : #ffffffff;
  5822. border : 0 solid #8abad8ff;
  5823. }
  5824. Button.btn_top_newallergy:pushed
  5825. {
  5826. background : #ff1a01ff;
  5827. border : 0 solid #8abad8ff;
  5828. }
  5829. Button.btn_top_organ, Button.btn_top_organ:focused, Button.btn_top_organ:selected, Button.btn_top_organ:disabled
  5830. {
  5831. background : #f48706ff;
  5832. border : 0 solid #8abad8ff;
  5833. color : #ffffffff;
  5834. cursor : hand;
  5835. focusborder : 0 none;
  5836. font : Dotum,8,bold;
  5837. }
  5838. Button.btn_top_organ:mouseover
  5839. {
  5840. background : #faa53dff;
  5841. color : #ffffffff;
  5842. border : 0 solid #8abad8ff;
  5843. }
  5844. Button.btn_top_organ:pushed
  5845. {
  5846. background : #b76604ff;
  5847. border : 0 solid #8abad8ff;
  5848. }
  5849. Button.btn_top_cp, Button.btn_top_cp:focused, Button.btn_top_cp:selected, Button.btn_top_cp:disabled
  5850. {
  5851. background : #00aaf0ff;
  5852. border : 0 solid #8abad8ff;
  5853. color : #ffffffff;
  5854. cursor : hand;
  5855. focusborder : 0 none;
  5856. font : Dotum,8,bold;
  5857. }
  5858. Button.btn_top_cp:mouseover
  5859. {
  5860. background : #82c8f0ff;
  5861. color : #ffffffff;
  5862. border : 0 solid #8abad8ff;
  5863. }
  5864. Button.btn_top_cp:pushed
  5865. {
  5866. background : #1e8cffff;
  5867. border : 0 solid #8abad8ff;
  5868. }
  5869. Button.btn_top_drgflag, Button.btn_top_drgflag:focused, Button.btn_top_drgflag:selected, Button.btn_top_drgflag:disabled
  5870. {
  5871. background : #f48706ff;
  5872. border : 0 solid #8abad8ff;
  5873. color : #ffffffff;
  5874. cursor : hand;
  5875. focusborder : 0 none;
  5876. font : Dotum,8,bold;
  5877. }
  5878. Button.btn_top_drgflag:mouseover
  5879. {
  5880. background : #faa53dff;
  5881. color : #ffffffff;
  5882. border : 0 solid #8abad8ff;
  5883. }
  5884. Button.btn_top_drgflag:pushed
  5885. {
  5886. background : #b76604ff;
  5887. border : 0 solid #8abad8ff;
  5888. }
  5889. Button.btn_top_vip, Button.btn_top_vip:focused, Button.btn_top_vip:selected, Button.btn_top_vip:disabled
  5890. {
  5891. background : #fb4b38ff;
  5892. border : 0 solid #8abad8ff;
  5893. color : #ffffffff;
  5894. cursor : hand;
  5895. focusborder : 0 none;
  5896. font : Dotum,8,bold;
  5897. }
  5898. Button.btn_top_vip:mouseover
  5899. {
  5900. background : #fe6e5fff;
  5901. color : #ffffffff;
  5902. border : 0 solid #8abad8ff;
  5903. }
  5904. Button.btn_top_vip:pushed
  5905. {
  5906. background : #ff1a01ff;
  5907. border : 0 solid #8abad8ff;
  5908. }
  5909. Button.btn_top_recmer, Button.btn_top_recmer:focused, Button.btn_top_recmer:selected, Button.btn_top_recmer:disabled
  5910. {
  5911. background : #3e96f8ff;
  5912. border : 0 solid #8abad8ff;
  5913. color : #ffffffff;
  5914. cursor : hand;
  5915. focusborder : 0 none;
  5916. font : Dotum,8,bold;
  5917. }
  5918. Button.btn_top_recmer:mouseover
  5919. {
  5920. background : #5ba8fdff;
  5921. color : #ffffffff;
  5922. border : 0 solid #8abad8ff;
  5923. }
  5924. Button.btn_top_recmer:pushed
  5925. {
  5926. background : #1780f5ff;
  5927. border : 0 solid #8abad8ff;
  5928. }
  5929. Button.btn_top_healexam, Button.btn_top_healexam:focused, Button.btn_top_healexam:selected, Button.btn_top_healexam:disabled
  5930. {
  5931. background : #3fac03ff;
  5932. border : 0 solid #8abad8ff;
  5933. color : #ffffffff;
  5934. cursor : hand;
  5935. focusborder : 0 none;
  5936. font : Dotum,8,bold;
  5937. }
  5938. Button.btn_top_healexam:mouseover
  5939. {
  5940. background : #47c203ff;
  5941. color : #ffffffff;
  5942. border : 0 solid #8abad8ff;
  5943. }
  5944. Button.btn_top_healexam:pushed
  5945. {
  5946. background : #369302ff;
  5947. border : 0 solid #8abad8ff;
  5948. }
  5949. Button.btn_top_intncare, Button.btn_top_intncare:focused, Button.btn_top_intncare:selected, Button.btn_top_intncare:disabled
  5950. {
  5951. background : #f48706ff;
  5952. border : 0 solid #8abad8ff;
  5953. color : #ffffffff;
  5954. cursor : hand;
  5955. focusborder : 0 none;
  5956. font : Dotum,8,bold;
  5957. }
  5958. Button.btn_top_intncare:mouseover
  5959. {
  5960. background : #faa53dff;
  5961. color : #ffffffff;
  5962. border : 0 solid #8abad8ff;
  5963. }
  5964. Button.btn_top_intncare:pushed
  5965. {
  5966. background : #b76604ff;
  5967. border : 0 solid #8abad8ff;
  5968. }
  5969. Button.btn_top_coop, Button.btn_top_coop:focused, Button.btn_top_coop:selected, Button.btn_top_coop:disabled
  5970. {
  5971. background : #f48706ff;
  5972. border : 0 solid #8abad8ff;
  5973. color : #ffffffff;
  5974. cursor : hand;
  5975. focusborder : 0 none;
  5976. font : Dotum,8,bold;
  5977. }
  5978. Button.btn_top_coop:mouseover
  5979. {
  5980. background : #faa53dff;
  5981. color : #ffffffff;
  5982. border : 0 solid #8abad8ff;
  5983. }
  5984. Button.btn_top_coop:pushed
  5985. {
  5986. background : #b76604ff;
  5987. border : 0 solid #8abad8ff;
  5988. }
  5989. Button.btn_top_nutinfo, Button.btn_top_nutinfo:focused, Button.btn_top_nutinfo:selected, Button.btn_top_nutinfo:disabled
  5990. {
  5991. background : #000099ff;
  5992. border : 0 solid #8abad8ff;
  5993. color : #ffffffff;
  5994. cursor : hand;
  5995. focusborder : 0 none;
  5996. font : Dotum,8,bold;
  5997. }
  5998. Button.btn_top_nutinfo:mouseover
  5999. {
  6000. background : #0028f0ff;
  6001. color : #ffffffff;
  6002. border : 0 solid #8abad8ff;
  6003. }
  6004. Button.btn_top_nutinfo:pushed
  6005. {
  6006. background : #00008cff;
  6007. border : 0 solid #8abad8ff;
  6008. }
  6009. Button.btn_top_dinfo, Button.btn_top_dinfo:focused, Button.btn_top_dinfo:selected, Button.btn_top_dinfo:disabled
  6010. {
  6011. background : #ffff00ff;
  6012. border : 0 solid #8abad8ff;
  6013. color : #ff0000ff;
  6014. cursor : hand;
  6015. focusborder : 0 none;
  6016. font : Dotum,8,bold;
  6017. }
  6018. Button.btn_top_dinfo:mouseover
  6019. {
  6020. background : #ffff84ff;
  6021. color : #ff0000ff;
  6022. border : 0 solid #8abad8ff;
  6023. }
  6024. Button.btn_top_dinfo:pushed
  6025. {
  6026. background : #e8e800ff;
  6027. color : #ff0000ff;
  6028. border : 0 solid #8abad8ff;
  6029. }
  6030. Button.btn_top_binfo, Button.btn_top_binfo:focused, Button.btn_top_binfo:selected, Button.btn_top_binfo:disabled
  6031. {
  6032. background : #f48706ff;
  6033. border : 0 solid #8abad8ff;
  6034. color : #ffffffff;
  6035. cursor : hand;
  6036. focusborder : 0 none;
  6037. font : Dotum,8,bold;
  6038. }
  6039. Button.btn_top_binfo:mouseover
  6040. {
  6041. background : #faa53dff;
  6042. color : #ffffffff;
  6043. border : 0 solid #8abad8ff;
  6044. }
  6045. Button.btn_top_binfo:pushed
  6046. {
  6047. background : #b76604ff;
  6048. border : 0 solid #8abad8ff;
  6049. }
  6050. Button.btn_top_binfo_h, Button.btn_top_binfo_h:focused, Button.btn_top_binfo_h:selected, Button.btn_top_binfo_h:disabled
  6051. {
  6052. background : #ff66ccff;
  6053. border : 0 solid #8abad8ff;
  6054. color : #ffffffff;
  6055. cursor : hand;
  6056. focusborder : 0 none;
  6057. font : Dotum,8,bold;
  6058. }
  6059. Button.btn_top_binfo_h:mouseover
  6060. {
  6061. background : #ff84feff;
  6062. color : #ffffffff;
  6063. border : 0 solid #8abad8ff;
  6064. }
  6065. Button.btn_top_binfo_h:pushed
  6066. {
  6067. background : #b948c8ff;
  6068. color : #ffffffff;
  6069. border : 0 solid #8abad8ff;
  6070. }
  6071. Button.btn_top_pinfo, Button.btn_top_pinfo:focused, Button.btn_top_pinfo:selected, Button.btn_top_pinfo:disabled
  6072. {
  6073. background : #6600ccff;
  6074. border : 1 solid #8abad8ff;
  6075. color : #ffffff;
  6076. cursor : hand;
  6077. focusborder : 0 none;
  6078. font : Dotum,8,bold;
  6079. }
  6080. Button.btn_top_pinfo:mouseover
  6081. {
  6082. background : #701effff;
  6083. color : #ffffff;
  6084. border : 1 solid #8abad8ff;
  6085. }
  6086. Button.btn_top_pinfo:pushed
  6087. {
  6088. background : #521ee6ff;
  6089. color : #ffffff;
  6090. border : 1 solid #8abad8ff;
  6091. }
  6092. Button.btn_top_pinfo_h, Button.btn_top_pinfo_h:focused, Button.btn_top_pinfo_h:selected, Button.btn_top_pinfo_h:disabled
  6093. {
  6094. background : #ffffffff;
  6095. border : 1 solid #8abad8ff;
  6096. color : #3c3cffff;
  6097. cursor : hand;
  6098. focusborder : 0 none;
  6099. font : Dotum,8,bold;
  6100. }
  6101. Button.btn_top_pinfo_h:mouseover
  6102. {
  6103. background : #ffffffff;
  6104. color : #7171ffff;
  6105. border : 0 solid #8abad8ff;
  6106. }
  6107. Button.btn_top_pinfo_h:pushed
  6108. {
  6109. background : #ffffffff;
  6110. color : #1a1affff;
  6111. border : 0 solid #8abad8ff;
  6112. }
  6113. Button.btn_top_schoolflag, Button.btn_top_schoolflag:focused, Button.btn_top_schoolflag:selected, Button.btn_top_schoolflag:disabled
  6114. {
  6115. background : #b6dbf2ff;
  6116. border : 0 solid #8abad8ff;
  6117. color : #ff0000ff;
  6118. cursor : hand;
  6119. focusborder : 0 none;
  6120. font : Dotum,8,bold;
  6121. }
  6122. Button.btn_top_schoolflag:mouseover
  6123. {
  6124. background : #b6dbf2ff;
  6125. color : #ff0000ff;
  6126. border : 1 solid #8abad8ff;
  6127. }
  6128. Button.btn_top_schoolflag:pushed
  6129. {
  6130. background : #b6dbf2ff;
  6131. color : #ff0000ff;
  6132. border : 1 solid #8abad8ff;
  6133. }
  6134. Button.btn_top_drgyn, Button.btn_top_drgyn:focused, Button.btn_top_drgyn:selected, Button.btn_top_drgyn:disabled
  6135. {
  6136. background : #f48706ff;
  6137. border : 0 solid #8abad8ff;
  6138. color : #ffffffff;
  6139. cursor : hand;
  6140. focusborder : 0 none;
  6141. font : Dotum,8,bold;
  6142. }
  6143. Button.btn_top_drgyn:mouseover
  6144. {
  6145. background : #faa53dff;
  6146. color : #ffffffff;
  6147. border : 0 solid #8abad8ff;
  6148. }
  6149. Button.btn_top_drgyn:pushed
  6150. {
  6151. background : #b76604ff;
  6152. border : 0 solid #8abad8ff;
  6153. }
  6154. Button.btn_top_drginfo, Button.btn_top_drginfo:focused, Button.btn_top_drginfo:selected, Button.btn_top_drginfo:disabled
  6155. {
  6156. background : #f48706ff;
  6157. border : 0 solid #8abad8ff;
  6158. color : #ffffffff;
  6159. cursor : hand;
  6160. focusborder : 0 none;
  6161. font : Dotum,8,bold;
  6162. }
  6163. Button.btn_top_drginfo:mouseover
  6164. {
  6165. background : #faa53dff;
  6166. color : #ffffffff;
  6167. border : 0 solid #8abad8ff;
  6168. }
  6169. Button.btn_top_drginfo:pushed
  6170. {
  6171. background : #b76604ff;
  6172. border : 0 solid #8abad8ff;
  6173. }
  6174. Button.btn_top_pregnant, Button.btn_top_pregnant:focused, Button.btn_top_pregnant:selected, Button.btn_top_pregnant:disabled
  6175. {
  6176. background : #f48706ff;
  6177. border : 0 solid #8abad8ff;
  6178. color : #ffffffff;
  6179. cursor : hand;
  6180. focusborder : 0 none;
  6181. font : Dotum,8,bold;
  6182. }
  6183. Button.btn_top_pregnant:mouseover
  6184. {
  6185. background : #faa53dff;
  6186. color : #ffffffff;
  6187. border : 0 solid #8abad8ff;
  6188. }
  6189. Button.btn_top_pregnant:pushed
  6190. {
  6191. background : #b76604ff;
  6192. border : 0 solid #8abad8ff;
  6193. }
  6194. Button.btn_top_yeonmyung, Button.btn_top_yeonmyung:focused, Button.btn_top_yeonmyung:selected, Button.btn_top_yeonmyung:disabled
  6195. {
  6196. background : #f48706ff;
  6197. border : 0 solid #8abad8ff;
  6198. color : #ffffffff;
  6199. cursor : hand;
  6200. focusborder : 0 none;
  6201. font : Dotum,8,bold;
  6202. }
  6203. Button.btn_top_yeonmyung:mouseover
  6204. {
  6205. background : #faa53dff;
  6206. color : #ffffffff;
  6207. border : 0 solid #8abad8ff;
  6208. }
  6209. Button.btn_top_yeonmyung:pushed
  6210. {
  6211. background : #b76604ff;
  6212. border : 0 solid #8abad8ff;
  6213. }
  6214. Button.btn_top_lcdhistory, Button.btn_top_lcdhistory:focused, Button.btn_top_lcdhistory:selected, Button.btn_top_lcdhistory:disabled
  6215. {
  6216. background : #f48706ff;
  6217. border : 0 solid #8abad8ff;
  6218. color : #ffffffff;
  6219. cursor : hand;
  6220. focusborder : 0 none;
  6221. font : Dotum,8,bold;
  6222. }
  6223. Button.btn_top_lcdhistory:mouseover
  6224. {
  6225. background : #faa53dff;
  6226. color : #ffffffff;
  6227. border : 0 solid #8abad8ff;
  6228. }
  6229. Button.btn_top_lcdhistory:pushed
  6230. {
  6231. background : #b76604ff;
  6232. border : 0 solid #8abad8ff;
  6233. }
  6234. /*** 환자 상단 정보 여기까지 ***/
  6235. Button.btn_login, Button.btn_login:focused, Button.btn_login:selected
  6236. {
  6237. background : url('theme://images/Login_btn_login_N.png');
  6238. border : 0 none;
  6239. cursor : hand;
  6240. focusborder : 0 none;
  6241. }
  6242. Button.btn_login:mouseover
  6243. {
  6244. background : url('theme://images/Login_btn_login_O.png');
  6245. shadow : outer 0,0 1 #026886;
  6246. border : 0 none;
  6247. }
  6248. Button.btn_login:pushed
  6249. {
  6250. background : url('theme://images/Login_btn_login_P.png');
  6251. border : 0 none;
  6252. }
  6253. /** Login-Notice **/
  6254. Static.sta_LoginNoticeBar_bg
  6255. {
  6256. background : @gradation url('theme://main/Login_Bg_Visual2.png') left top;
  6257. }
  6258. /* Edit */
  6259. Edit.edt_loginID
  6260. {
  6261. background : transparent url('theme://images/Login_img_IDBg_N.png') stretch 15,0;
  6262. border : none ;
  6263. align : left middle ;
  6264. font : Dotum,9 ;
  6265. color : #333333 ;
  6266. padding : 0 5 0 19 ;
  6267. shadow : 0 none ;
  6268. caretcolor : #6A543A ;
  6269. compositecolor : #ffffff ;
  6270. selectbackground : transparent ;
  6271. selectcolor : #333333 ;
  6272. }
  6273. Edit.edt_loginID:mouseover
  6274. {
  6275. background : transparent url('theme://images/Login_img_IDBg_P.png') stretch 15,0;
  6276. }
  6277. Edit.edt_loginID:focused
  6278. {
  6279. background : transparent url('theme://images/Login_img_IDBg_P.png') stretch 15,0;
  6280. color : #333333 ;
  6281. selectbackground : #1771BE ;
  6282. selectcolor : #ffffff ;
  6283. }
  6284. Edit.edt_loginPW
  6285. {
  6286. background : transparent url('theme://images/Login_img_PWBg_N.png') stretch 15,0;
  6287. border : none ;
  6288. align : left middle ;
  6289. font : Dotum,9 ;
  6290. color : #333333 ;
  6291. padding : 0 5 0 19 ;
  6292. shadow : 0 none ;
  6293. caretcolor : #6A543A ;
  6294. compositecolor : #ffffff ;
  6295. selectbackground : transparent ;
  6296. selectcolor : #333333 ;
  6297. }
  6298. Edit.edt_loginPW:mouseover
  6299. {
  6300. background : transparent url('theme://images/Login_img_PWBg_P.png') stretch 15,0;
  6301. }
  6302. Edit.edt_loginPW:focused
  6303. {
  6304. background : transparent url('theme://images/Login_img_PWBg_P.png') stretch 15,0;
  6305. color : #333333 ;
  6306. selectbackground : #1771BE ;
  6307. selectcolor : #ffffff ;
  6308. }
  6309. /* Static */
  6310. Static.sta_loginID
  6311. {
  6312. background : transparent url('theme://images/theme_blue/Login_img_IDBg.png') left top;
  6313. font : Dotum,9,bold;
  6314. padding : 0 0 0 19;
  6315. }
  6316. Static.sta_LoginNoticeBar_txt
  6317. {
  6318. font : Dotum,9,bold;
  6319. color : #ffffff;
  6320. }
  6321. Static.sta_LoginNoticeBarMore_bg
  6322. {
  6323. background : @gradation url('theme://main/Login_Bg_Visual3.png') left top;
  6324. }
  6325. Static.sta_LoginNoticeBody_bg
  6326. {
  6327. background : @gradation url('theme://images/Login_bg_NoticeBody.png') repeat-y left top;
  6328. }
  6329. Div.div_LoginNoticeBody_bg
  6330. {
  6331. background : #f0f7fc ;
  6332. border : 2 solid #2674aa ;
  6333. shadow : drop 0,0 2 gray ;
  6334. }
  6335. Static.sta_LoginNotice_tit
  6336. {
  6337. background : url('theme://images/theme_blue/icon_send_right_P.png') left middle;
  6338. font : Dotum,9,bold;
  6339. color : #ffffff;
  6340. align : left middle;
  6341. padding : 2 0 0 18;
  6342. }
  6343. Static.sta_LoginNoticetit_bg
  6344. {
  6345. background : #2674aa ;
  6346. }
  6347. /*
  6348. Static.sta_LoginNotice_txt
  6349. {
  6350. background : #0182c5 url('theme://images/theme_blue/icon_send_right_P.png') left middle;
  6351. font : Dotum,9,bold;
  6352. color : #ffffff;
  6353. align : left middle;
  6354. padding : 0 0 0 20;
  6355. }
  6356. Static.sta_LoginNoticetxt_bg
  6357. {
  6358. background : #ebf3f4;
  6359. border : 0 none, 0 none, 1 solid #8bc4e1, 0 none;
  6360. }*/
  6361. Button.btn_LoginNoticeBarMore, Button.btn_LoginNoticeBarMore:focused, Button.btn_LoginNoticeBarMore:selected
  6362. {
  6363. background : url('theme://images/Login_btn_more_N.png');
  6364. border : 0 none;
  6365. cursor : hand;
  6366. focusborder : 0 none;
  6367. }
  6368. Button.btn_LoginNoticeBarMore:mouseover
  6369. {
  6370. background : url('theme://images/Login_btn_more_O.png') ;
  6371. shadow : 0 none ;
  6372. border : 0 none ;
  6373. }
  6374. Button.btn_LoginNoticeBarMore:pushed
  6375. {
  6376. background : url('theme://images/Login_btn_more_P.png');
  6377. border : 0 none;
  6378. }
  6379. Button.btn_LoginNoticeBarClose, Button.btn_LoginNoticeBarClose:focused, Button.btn_LoginNoticeBarClose:selected
  6380. {
  6381. background : url('theme://images/Login_btn_close_N.png') center middle;
  6382. border : 0 none;
  6383. cursor : hand;
  6384. focusborder : 0 none;
  6385. }
  6386. Button.btn_LoginNoticeBarClose:mouseover
  6387. {
  6388. background : url('theme://images/Login_btn_close_O.png') center middle ;
  6389. shadow : 0 none ;
  6390. border : 0 none ;
  6391. }
  6392. Button.btn_LoginNoticeBarClose:pushed
  6393. {
  6394. background : url('theme://images/Login_btn_close_P.png') center middle;
  6395. border : 0 none;
  6396. }
  6397. Combo.com_login
  6398. {
  6399. background : url('theme://images/bg_edit_N.png') stretch 5,5;
  6400. border : none;
  6401. bordertype : round 2 2;
  6402. align : left middle;
  6403. font : Dotum,9 ;
  6404. color : #262626;
  6405. itembackground : #ffffff;
  6406. itemheight : 20;
  6407. itemborder : 0 none;
  6408. itempadding : 0 3 0 6;
  6409. itemcolor : #262626;
  6410. buttonsize : 19;
  6411. }
  6412. Combo.com_login:mouseover
  6413. {
  6414. background : url('theme://images/bg_edit_O.png') stretch 5,5;
  6415. color : #262626;
  6416. itembackground : #BBE0F9;
  6417. itemborder : 1 solid #B1D5EC, 0 none, 1 solid #9FBFD4, 0 none;
  6418. }
  6419. Combo.com_login:focused, Combo.com_login:selected
  6420. {
  6421. background : url('theme://images/bg_edit_P.png') stretch 5,5;
  6422. color : #262626;
  6423. itemcolor : #ffffff;
  6424. itembackground : #1771BE;
  6425. itemborder : 1 solid #1569B0, 0 none, 1 solid #125793, 0 none;
  6426. itemfont : Dotum,9,bold;
  6427. }
  6428. Combo.com_login:disabled
  6429. {
  6430. background : url('theme://images/bg_edit_D.png') stretch 5,5;
  6431. color : #888888;
  6432. }
  6433. Combo.com_login>#comboedit
  6434. {
  6435. background : transparent;
  6436. border : none;
  6437. align : left middle;
  6438. font : Dotum,9 ;
  6439. color : #262626;
  6440. padding : 0 5 0 5;
  6441. caretcolor : #6A543A;
  6442. compositecolor : #ffffff;
  6443. selectbackground : transparent;
  6444. selectcolor : #262626;
  6445. }
  6446. Combo.com_login>#comboedit:focused
  6447. {
  6448. selectbackground : #1771BE;
  6449. selectcolor : #ffffff;
  6450. }
  6451. Combo.com_login>#dropbutton
  6452. {
  6453. background : url('theme://images/btn_dropBg_N.png') stretch 5,5;
  6454. border : none, none, none, 1 solid #9EBED4;
  6455. margin : 1 1 1 0;
  6456. image : theme://images/icon_drop_N.png;
  6457. imagealign : center middle;
  6458. imagepadding : 2 0 0 0;
  6459. pusheddrawoffset : 0 0;
  6460. }
  6461. Combo.com_login>#dropbutton:mouseover
  6462. {
  6463. background : url('theme://images/btn_dropBg_O.png') stretch 5,5;
  6464. border : none, none, none, 1 solid #9EBED4;
  6465. image : theme://images/icon_drop_O.png;
  6466. }
  6467. Combo.com_login>#dropbutton:selected, Combo>#dropbutton:pushed
  6468. {
  6469. background : url('theme://images/btn_dropBg_P.png') stretch 5,5;
  6470. border : none, none, none, 1 solid #3E8BCD;
  6471. margin : 1 1 1 0;
  6472. image : theme://images/icon_drop_P.png;
  6473. imagealign : center middle;
  6474. pusheddrawoffset : 0 0;
  6475. }
  6476. Combo.com_login>#dropbutton:disabled
  6477. {
  6478. background : url('theme://images/btn_dropBg_D.png') stretch 5,5;
  6479. border : none, none, none, 1 solid #BAC1C6;
  6480. image : theme://images/icon_drop_D.png;
  6481. }
  6482. Combo.com_login>#combolist
  6483. {
  6484. border : 1 solid #1771BE;
  6485. }
  6486. Grid.grd_menuGroupList
  6487. {
  6488. background : #ffffff;
  6489. border : 1 solid #33BBBB, 0 solid #B0B0B0, 1 solid #B0B0B0, 0 solid #B0B0B0;
  6490. font : Dotum,9,bold;
  6491. color : #262626;
  6492. align : center middle;
  6493. focusborder : 0 none;
  6494. treeopenbuttonimage : theme://images/icon_treeopen.png;
  6495. treeclosebuttonimage : theme://images/icon_treeclose.png;
  6496. treecollapseimage : theme://images/BTN_TF_SpinNext_O.png;
  6497. treeexpandimage : theme://images/BTN_TF_SpinPre_O.png;
  6498. treeitemimage : theme://images/icon_MonthNext_P.png;
  6499. treelinetype : 1 dotted #B0B0B0;
  6500. }
  6501. Grid.grd_menuGroupList>#head
  6502. {
  6503. border : 0 solid #92bcca, 1 solid #B0B0B0, none, 1 solid #B0B0B0;
  6504. cellalign : center middle;
  6505. cellbackground : url(theme://images/bg_gridHead.png) stretch 3,3;
  6506. cellcolor : #262626;
  6507. cellfont : Dotum,9;
  6508. cellline : 1 solid #94BEBE;
  6509. cellpadding : 1 0 0 0;
  6510. }
  6511. Grid.grd_menuGroupList>#body
  6512. {
  6513. background : #ffffff;
  6514. border : none, 1 solid #B0B0B0, 0 solid #92bcca, 1 solid #B0B0B0;
  6515. align : center middle;
  6516. font : Dotum,9;
  6517. color : #262626;
  6518. cellalign : center middle;
  6519. cellbackground : #ffffff;
  6520. cellbackground2 : #F9FAFB;
  6521. cellline : 1 solid #D1D8DC;
  6522. celllinetype : normal;
  6523. cellfont : Dotum,9;
  6524. cellcolor : #262626;
  6525. cellpadding : 0 4 0 4;
  6526. selectbackground : #FFD3CF88;
  6527. selectborder : 0 none;
  6528. }
  6529. Grid.grd_menuGroupList>#body:mouseover
  6530. {
  6531. cellbackground : #FFD3CF88;
  6532. cellbackground2 : #FFD3CF88;
  6533. }
  6534. Grid.grd_menuGroupList>#summary
  6535. {
  6536. background : #F9E6C5;
  6537. border : 0 none;
  6538. cellbackground : transparent;
  6539. cellcolor : #000000;
  6540. cellfont : Dotum,9;
  6541. cellline : 1 solid #C8CFD2;
  6542. }
  6543. /*
  6544. TextArea.txa_LoginNotice, TextArea.txa_LoginNotice:mouseover, TextArea.txa_LoginNotice:focused
  6545. {
  6546. background : transparent ;
  6547. border : none ;
  6548. bordertype : normal ;
  6549. align : left top ;
  6550. font : Dotum,9 ;
  6551. color : #333333 ;
  6552. padding : 5 5 5 5 ;
  6553. caretcolor : #00677e ;
  6554. compositecolor : #ffffff ;
  6555. selectbackground : transparent ;
  6556. selectcolor : #333333 ;
  6557. shadow : none ;
  6558. }*/
  6559. /* Call Number Guide */
  6560. Grid.grd_CallNumber
  6561. {
  6562. background : transparent;
  6563. border : 0 solid #ffffff;
  6564. font : Dotum,9,bold;
  6565. color : #444444;
  6566. align : center middle;
  6567. focusborder : 0 none;
  6568. treelinetype : 0 dotted #B0B0B0;
  6569. }
  6570. Grid.grd_CallNumber>#body
  6571. {
  6572. background : transparent;
  6573. border : none;
  6574. font : Dotum,9;
  6575. color : #444444;
  6576. cellpadding : 2 0 0 -10;
  6577. cellbackground : url('theme://images/Login_bg_1depth_N.png') stretch 30,0;
  6578. cellbackground2 : url('theme://images/Login_bg_1depth_N.png') stretch 30,0;
  6579. cellalign : center middle;
  6580. cellline : 0 solid #c8cfd2;
  6581. celllinetype : ;
  6582. cellfont : Dotum,9;
  6583. cellcolor : #333333;
  6584. selectbackground : url('theme://images/Login_bg_1depth_S.png') stretch 30,0;
  6585. selectborder : none;
  6586. selectfont : Dotum,9,bold;
  6587. selectcolor : #444444;
  6588. }
  6589. Grid.grd_CallNumber>#body:mouseover
  6590. {
  6591. cellbackground : url('theme://images/Login_bg_1depth_N.png') stretch 30,0;
  6592. cellbackground2 : url('theme://images/Login_bg_1depth_N.png') stretch 30,0;
  6593. cellcolor : #333333;
  6594. selectbackground : url('theme://images/Login_bg_1depth_S.png') stretch 30,0;
  6595. selectfont : Dotum,9,bold;
  6596. selectcolor : #ffffff;
  6597. }
  6598. /** Login-MenuGroupList **/
  6599. Static.sta_MenuGroupList_bg
  6600. {
  6601. background : url('theme://images/Login_bg_MenuGroupList.png') repeat-y left top ;
  6602. border : 1 solid #004959, none, 1 solid #1b5a89, none ;
  6603. }
  6604. Grid.grd_MenuGroupList
  6605. {
  6606. background : #ffffff ;
  6607. border : 1 solid #ffffff, 1 solid #ffffff, 1 solid #5f9fae, 1 solid #ffffff ;
  6608. font : Dotum,9,bold ;
  6609. color : #333333 ;
  6610. align : center middle ;
  6611. focusborder : 0 none ;
  6612. treelinetype : 0 dotted #B0B0B0 ;
  6613. }
  6614. Grid.grd_MenuGroupList>#body
  6615. {
  6616. background : #ffffff ;
  6617. border : none ;
  6618. font : Dotum,9 ;
  6619. color : #333333 ;
  6620. cellpadding : 2 0 0 -10 ;
  6621. cellbackground : url('theme://images/Login_bg_1depth_N.png') stretch 30,0 ;
  6622. cellbackground2 : url('theme://images/Login_bg_1depth_N.png') stretch 30,0 ;
  6623. cellalign : center middle ;
  6624. cellline : 0 solid #B0B0B0 ;
  6625. celllinetype : ;
  6626. cellfont : Dotum,9;
  6627. cellcolor : #333333;
  6628. selectbackground : url('theme://images/Login_bg_1depth_S.png') stretch 30,0;
  6629. selectborder : none;
  6630. selectfont : Dotum,9,bold;
  6631. selectcolor : #ffffff;
  6632. }
  6633. Grid.grd_MenuGroupList>#body:mouseover
  6634. {
  6635. cellbackground : url('theme://images/Login_bg_1depth_N.png') stretch 30,0;
  6636. cellbackground2 : url('theme://images/Login_bg_1depth_N.png') stretch 30,0;
  6637. cellcolor : #333333;
  6638. selectbackground : url('theme://images/Login_bg_1depth_S.png') stretch 30,0;
  6639. selectfont : Dotum,9,bold;
  6640. selectcolor : #ffffff;
  6641. }
  6642. Cell.Lv1
  6643. {
  6644. background : url('theme://images/Login_bg_1depth_N.png') stretch 30,0;
  6645. background2 : url('theme://images/Login_bg_1depth_N.png') stretch 30,0;
  6646. padding : 2 0 0 -2;
  6647. selectbackground : url('theme://images/Login_bg_1depth_S.png') stretch 30,0;
  6648. selectcolor : #ffffff;
  6649. }
  6650. Cell.Lv2
  6651. {
  6652. background : url('theme://images/Login_bg_2depth.png') stretch 30,0;
  6653. background2 : url('theme://images/Login_bg_2depth.png') stretch 30,0;
  6654. padding : 2 0 0 -9;
  6655. selectbackground : url('theme://images/Login_bg_2depth.png') stretch 30,0;
  6656. selectcolor : #008ab5;
  6657. }
  6658. /** Login-MenuGroupList **/
  6659. Static.sta_MenuGroupList_bg
  6660. {
  6661. background : url('theme://images/Login_bg_MenuGroupList.png') repeat-y left top;
  6662. border : 1 solid #004959, none, 1 solid #004959, none;
  6663. }
  6664. /**** TableArea - Other ****/
  6665. /*** caption ***/
  6666. Static.hand
  6667. {
  6668. background : URL('theme://images/icon_hand.png') left middle ;
  6669. font : Dotum,9,bold ;
  6670. color : #333333 ;
  6671. padding : 0 0 0 25 ;
  6672. }
  6673. Static.hand_search
  6674. {
  6675. align : right middle;
  6676. padding : 0 0 0 0;
  6677. background : URL('theme://images/icon_hand_s.png')left middle;
  6678. font : Dotum,9,bold;
  6679. }
  6680. /***** Error MAG Popup *****/
  6681. Static.sta_Errormag
  6682. {
  6683. align : left middle ;
  6684. background : transparent ;
  6685. border : 0 none ;
  6686. font : Dotum,9,bold ;
  6687. color : #333333 ;
  6688. }
  6689. TextArea.txa_Errormag[readonly="true"]
  6690. {
  6691. background : transparent ;
  6692. border : 1 solid #B0B0B0 ;
  6693. }
  6694. TextArea.txa_Errormag[readonly="true"]:mouseover, TextArea.txa_Errormag[readonly="true"]:focused, TextArea.txa_Errormag[readonly="true"]:selected, TextArea.txa_Errormag[readonly="true"]:disabled
  6695. {
  6696. background : transparent ;
  6697. border : 1 solid #B0B0B0 ;
  6698. }
  6699. TextArea.ta_notice[readonly="true"], TextArea.ta_notice[readonly="true"]:mouseover, TextArea.ta_notice[readonly="true"]:focused, TextArea.ta_notice[readonly="true"]:selected, TextArea.ta_notice[readonly="true"]:disabled
  6700. {
  6701. background : #ffffff ;
  6702. border : 1 solid #B0B0B0 ;
  6703. }
  6704. /***** UesrConfirm MAG Popup *****/
  6705. Static.sta_UCMAG_Tit
  6706. {
  6707. align : left middle ;
  6708. background : #2674aa ;
  6709. border : 0 none ;
  6710. font : Dotum,9,bold ;
  6711. color : #ffffff ;
  6712. padding : 0 0 0 10 ;
  6713. }
  6714. Button.btn_TF_Shortcut_set,Button.btn_TF_Shortcut_set:focused,Button.btn_TF_Shortcut_set:selected
  6715. {
  6716. background : #58a6d5 URL('theme://images/theme_blue/btn_TF_Shortcut_set_N.png') left middle ;
  6717. border : 0 none ;
  6718. bordertype : normal ;
  6719. font : Dotum,8,bold ;
  6720. color : #103b5f ;
  6721. align : left middle ;
  6722. padding : 0 0 0 22 ;
  6723. }
  6724. Button.btn_TF_Shortcut_set:mouseover
  6725. {
  6726. background : #84bfe1 URL('theme://images/theme_blue/btn_TF_Shortcut_set_O.png') left middle ;
  6727. border : 0 none ;
  6728. color : #164b74 ;
  6729. }
  6730. Button.btn_TF_Shortcut_set:pushed
  6731. {
  6732. background : #f97818 URL('theme://images/theme_blue/btn_TF_Shortcut_set_P.png') left middle ;
  6733. border : 0 none ;
  6734. color : #ffffff ;
  6735. }
  6736. Button.btn_TF_Shortcut,Button.btn_TF_Shortcut:focused,Button.btn_TF_Shortcut:selected
  6737. {
  6738. background : #84bfe1 ;
  6739. border : 0 solid #2E88BE, 1 solid #2E88BE, 0 solid #2E88BE, 0 solid #2E88BE;
  6740. bordertype : normal ;
  6741. font : Dotum,8,bold ;
  6742. color : #103b5f ;
  6743. align : center middle ;
  6744. padding : 0 0 0 0;
  6745. }
  6746. Button.btn_TF_Shortcut:mouseover
  6747. {
  6748. border : 0 solid #2E88BE, 1 solid #2E88BE, 0 solid #2E88BE, 0 solid #2E88BE;
  6749. background : #b1d8ec ;
  6750. color : #164b74 ;
  6751. }
  6752. Button.btn_TF_Shortcut:pushed
  6753. {
  6754. border : 0 solid #2E88BE, 1 solid #2E88BE, 0 solid #2E88BE, 0 solid #2E88BE;
  6755. background : #f97818 ;
  6756. color : #ffffff ;
  6757. }
  6758. Button.btn_TF_ShortcutMore,Button.btn_TF_ShortcutMore:focused,Button.btn_TF_ShortcutMore:selected
  6759. {
  6760. background : transparent URL('theme://images/theme_blue/btn_TF_ShortcutMore_N.png') left top;
  6761. border : 0 none;
  6762. bordertype : normal;
  6763. }
  6764. Button.btn_TF_ShortcutMore:mouseover
  6765. {
  6766. background : transparent URL('theme://images/theme_blue/btn_TF_ShortcutMore_O.png') left top;
  6767. border : 0 none;
  6768. }
  6769. Button.btn_TF_ShortcutMore:pushed
  6770. {
  6771. background : transparent URL('theme://images/theme_blue/btn_TF_ShortcutMore_P.png') left top;
  6772. border : 0 none;
  6773. }
  6774. /*** 일정관리 달력 ***/
  6775. Div.dv_calMonth
  6776. {
  6777. background : #3d95cd ;
  6778. border : 1 solide #2674aa ;
  6779. }
  6780. PopupDiv.popdv_monthBg
  6781. {
  6782. background : #ffffff ;
  6783. border : 1 solid #2674aa ;
  6784. }
  6785. Static.st_calYear
  6786. {
  6787. background : transparent;
  6788. border : none;
  6789. align : right middle;
  6790. padding : 0;
  6791. font : Dotum,9,bold;
  6792. color : #ffffff;
  6793. }
  6794. Static.st_calMonth
  6795. {
  6796. background : transparent;
  6797. border : none;
  6798. align : left middle;
  6799. padding : 0;
  6800. font : Dotum,9,bold;
  6801. color : #ffffff;
  6802. cursor : hand;
  6803. }
  6804. Static.St_popupBg02, Static.St_popupBg02:mouseover, Static.St_popupBg02:disabled
  6805. {
  6806. background : #f0f7fc ;
  6807. border : 1 solid #2674aa ;
  6808. bordertype : round 2 2 ;
  6809. shadow : 1,1 5 #00000066 ;
  6810. opacity : 100:
  6811. }
  6812. Button.icon_select, Button.icon_select:selected, Button.icon_select:focused
  6813. {
  6814. background : URL('theme://images/icon_select.png');
  6815. border : 0 none;
  6816. }
  6817. Button.icon_select:mouseover, Button.icon_select:pushed
  6818. {
  6819. background : URL('theme://images/icon_select_over.png') ;
  6820. border : 0 none ;
  6821. shadow : 0 none ;
  6822. }
  6823. Button.icon_select:disabled
  6824. {
  6825. opacity : 30;
  6826. }
  6827. Button.icon_text, Button.icon_text:selected
  6828. {
  6829. background : URL('theme://images/icon_text.png');
  6830. border : 0 none;
  6831. }
  6832. Button.icon_text:mouseover, Button.icon_text:pushed, Button.icon_text:focused
  6833. {
  6834. background : URL('theme://images/icon_text_over.png') ;
  6835. border : 0 none ;
  6836. shadow : 0 none ;
  6837. }
  6838. Button.icon_text:disabled
  6839. {
  6840. background : URL('theme://images/icon_text.png');
  6841. border : 0 none;
  6842. }
  6843. Button.icon_line, Button.icon_line:selected
  6844. {
  6845. background : URL('theme://images/icon_line.png');
  6846. border : 0 none;
  6847. }
  6848. Button.icon_line:mouseover, Button.icon_line:pushed, Button.icon_line:focused
  6849. {
  6850. background : URL('theme://images/icon_line_over.png') ;
  6851. border : 0 none ;
  6852. shadow : 0 none ;
  6853. }
  6854. Button.icon_line:disabled
  6855. {
  6856. opacity : 30;
  6857. }
  6858. Button.icon_freeline, Button.icon_freeline:selected
  6859. {
  6860. background : URL('theme://images/icon_freeline.png');
  6861. border : 0 none;
  6862. }
  6863. Button.icon_freeline:mouseover, Button.icon_freeline:pushed, Button.icon_freeline:focused
  6864. {
  6865. background : URL('theme://images/icon_freeline_over.png') ;
  6866. border : 0 none ;
  6867. shadow : 0 none ;
  6868. }
  6869. Button.icon_freeline:disabled
  6870. {
  6871. opacity : 30;
  6872. }
  6873. Button.icon_rect, Button.icon_rect:selected
  6874. {
  6875. background : URL('theme://images/icon_rect.png');
  6876. border : 0 none;
  6877. }
  6878. Button.icon_rect:mouseover, Button.icon_rect:pushed, Button.icon_rect:focused
  6879. {
  6880. background : URL('theme://images/icon_rect_over.png') ;
  6881. border : 0 none ;
  6882. shadow : 0 none ;
  6883. }
  6884. Button.icon_rect:disabled
  6885. {
  6886. opacity : 30;
  6887. }
  6888. Button.icon_round, Button.icon_round:selected
  6889. {
  6890. background : URL('theme://images/icon_round.png');
  6891. border : 0 none;
  6892. }
  6893. Button.icon_round:mouseover, Button.icon_round:pushed, Button.icon_round:focused
  6894. {
  6895. background : URL('theme://images/icon_round_over.png') ;
  6896. border : 0 none ;
  6897. shadow : 0 none ;
  6898. }
  6899. Button.icon_round:disabled
  6900. {
  6901. opacity : 30;
  6902. }
  6903. Button.icon_point, Button.icon_point:selected
  6904. {
  6905. background : URL('theme://images/icon_point.png');
  6906. border : 0 none;
  6907. }
  6908. Button.icon_point:mouseover, Button.icon_point:pushed, Button.icon_point:focused
  6909. {
  6910. background : URL('theme://images/icon_point_over.png') ;
  6911. border : 0 none ;
  6912. shadow : 0 none ;
  6913. }
  6914. Button.icon_point:disabled
  6915. {
  6916. opacity : 30;
  6917. }
  6918. Button.icon_x, Button.icon_x:focused, Button.icon_x:selected
  6919. {
  6920. background : URL('theme://images/theme_blue/icon_x.png');
  6921. border : 0 none;
  6922. }
  6923. Button.icon_x:mouseover, Button.icon_x:pushed
  6924. {
  6925. background : URL('theme://images/icon_x_over.png') ;
  6926. border : 0 none ;
  6927. shadow : 0 none ;
  6928. }
  6929. Button.icon_x:disabled
  6930. {
  6931. opacity : 30;
  6932. }
  6933. Button.icon_levelup, Button.icon_levelup:focused, Button.icon_levelup:selected
  6934. {
  6935. background : URL('theme://images/icon_levelup.png');
  6936. border : 0 none;
  6937. }
  6938. Button.icon_levelup:mouseover, Button.icon_levelup:pushed
  6939. {
  6940. background : URL('theme://images/icon_levelup_over.png') ;
  6941. border : 0 none ;
  6942. shadow : 0 none ;
  6943. }
  6944. Button.icon_levelup:disabled
  6945. {
  6946. opacity : 30;
  6947. }
  6948. Button.icon_leveldown, Button.icon_leveldown:focused, Button.icon_leveldown:selected
  6949. {
  6950. background : URL('theme://images/icon_leveldown.png');
  6951. border : 0 none;
  6952. }
  6953. Button.icon_leveldown:mouseover, Button.icon_leveldown:pushed
  6954. {
  6955. background : URL('theme://images/icon_leveldown_over.png') ;
  6956. border : 0 none ;
  6957. shadow : 0 none ;
  6958. }
  6959. Button.icon_leveldown:disabled
  6960. {
  6961. opacity : 30;
  6962. }
  6963. Button.icon_line_color, Button.icon_line_color:selected
  6964. {
  6965. background : URL('theme://images/icon_line_color.png');
  6966. border : 0 none;
  6967. }
  6968. Button.icon_line_color:mouseover, Button.icon_line_color:pushed, Button.icon_line_color:focused
  6969. {
  6970. background : URL('theme://images/icon_line_color_over.png') ;
  6971. border : 0 none ;
  6972. shadow : 0 none ;
  6973. }
  6974. Button.icon_line_color:disabled
  6975. {
  6976. opacity : 30;
  6977. }
  6978. Button.icon_fill_color, Button.icon_fill_color:selected
  6979. {
  6980. background : URL('theme://images/icon_fill_color.png');
  6981. border : 0 none;
  6982. }
  6983. Button.icon_fill_color:mouseover, Button.icon_fill_color:pushed, Button.icon_fill_color:focused
  6984. {
  6985. background : URL('theme://images/icon_fill_color_over.png') ;
  6986. border : 0 none ;
  6987. shadow : 0 none ;
  6988. }
  6989. Button.icon_fill_color:disabled
  6990. {
  6991. opacity : 30;
  6992. }
  6993. Button.icon_undo, Button.icon_undo:focused, Button.icon_undo:selected
  6994. {
  6995. background : URL('theme://images/icon_undo.png');
  6996. border : 0 none;
  6997. }
  6998. Button.icon_undo:mouseover, Button.icon_undo:pushed
  6999. {
  7000. background : URL('theme://images/icon_undo_over.png') ;
  7001. border : 0 none ;
  7002. shadow : 0 none ;
  7003. }
  7004. Button.icon_undo:disabled
  7005. {
  7006. opacity : 30;
  7007. }
  7008. Button.icon_redo, Button.icon_redo:focused, Button.icon_redo:selected
  7009. {
  7010. background : URL('theme://images/icon_redo.png');
  7011. border : 0 none;
  7012. }
  7013. Button.icon_redo:mouseover, Button.icon_redo:pushed
  7014. {
  7015. background : URL('theme://images/theme_blue/icon_redo_over.png') ;
  7016. border : 0 none ;
  7017. shadow : 0 none ;
  7018. }
  7019. Button.icon_redo:disabled
  7020. {
  7021. opacity : 30;
  7022. }
  7023. Button.icon_font_color, Button.icon_font_color:focused, Button.icon_font_color:selected
  7024. {
  7025. background : URL('theme://images/icon_font_color.png');
  7026. border : 0 none;
  7027. }
  7028. Button.icon_font_color:mouseover, Button.icon_font_color:pushed
  7029. {
  7030. background : URL('theme://images/icon_font_color_over.png') ;
  7031. border : 0 none ;
  7032. shadow : 0 none ;
  7033. }
  7034. Button.icon_font_color:disabled
  7035. {
  7036. opacity : 30;
  7037. }
  7038. /* 2015.03.05 서식로더 버튼 스타일 추가 */
  7039. Button.btn_Assrecord, Button.btn_Assrecord:focused, Button.btn_Assrecord:selected
  7040. {
  7041. background : @gradation url('theme://images/icon_Assrecord_N.png') center middle;
  7042. border : 2 double #45aea1 #eff8f8;
  7043. bordertype : round 2,2;
  7044. gradation : linear 0,0 #ddf1f1 0,100 #c1e8e8 [45% #d0f0f0][50% #afe5e5];
  7045. }
  7046. Button.btn_Assrecord:mouseover
  7047. {
  7048. background : @gradation url('theme://images/icon_Assrecord_N.png') center middle;
  7049. border : 2 double #45aea1 #eff8f8;
  7050. gradation : linear 0,0 #cdefef 0,100 #b2e6e6;
  7051. shadow : outer 0,0 1 #146e638f;
  7052. }
  7053. Button.btn_Assrecord:pushed
  7054. {
  7055. background : #096d82 url('theme://images/icon_Assrecord_P.png') center middle;
  7056. border : 1 solid #006176;
  7057. pusheddrawoffset : 0 0;
  7058. }
  7059. Button.btn_Assrecord:disabled
  7060. {
  7061. opacity : 50;
  7062. }
  7063. Button.btn_Assrecord_s, Button.btn_Assrecord_s:focused, Button.btn_Assrecord_s:selected
  7064. {
  7065. background : @gradation url('theme://images/icon_AssrecordS_N.png') center middle;
  7066. border : 2 double #f76273 #f8e8ea;
  7067. bordertype : round 2,2;
  7068. gradation : linear 0,0 #f1dde0 0,100 #eccad0 [45% #f0d0d5][50% #f5bec5];
  7069. }
  7070. Button.btn_Assrecord_s:mouseover
  7071. {
  7072. background : @gradation url('theme://images/icon_AssrecordS_N.png') center middle;
  7073. border : 2 double #f76273 #eff8f8;
  7074. gradation : linear 0,0 #f1dbde 0,100 #f5c1c8;
  7075. shadow : outer 0,0 1 #6e14278f;
  7076. }
  7077. Button.btn_Assrecord_s:pushed
  7078. {
  7079. background : #ce1328 url('theme://images/icon_Assrecord_P.png') center middle;
  7080. border : 1 solid #af091c;
  7081. pusheddrawoffset : 0 0;
  7082. }
  7083. Button.btn_Assrecord_s:disabled
  7084. {
  7085. opacity : 50;
  7086. }
  7087. Button.btn_Fmytree, Button.btn_Fmytree:focused, Button.btn_Fmytree:selected
  7088. {
  7089. background : @gradation url('theme://images/icon_Fmytreee_N.png') center middle;
  7090. border : 2 double #45aea1 #eff8f8;
  7091. bordertype : round 2,2;
  7092. gradation : linear 0,0 #ddf1f1 0,100 #c1e8e8 [45% #d0f0f0][50% #afe5e5];
  7093. }
  7094. Button.btn_Fmytree:mouseover
  7095. {
  7096. background : @gradation url('theme://images/icon_Fmytreee_N.png') center middle;
  7097. border : 2 double #45aea1 #eff8f8;
  7098. gradation : linear 0,0 #cdefef 0,100 #b2e6e6;
  7099. shadow : outer 0,0 1 #146e638f;
  7100. }
  7101. Button.btn_Fmytree:pushed
  7102. {
  7103. background : #096d82 url('theme://images/icon_Fmytreee_P.png') center middle;
  7104. border : 1 solid #006176;
  7105. pusheddrawoffset : 0 0;
  7106. }
  7107. Button.btn_Fmytreee:disabled
  7108. {
  7109. opacity : 50;
  7110. }
  7111. Button.btn_Fmytree_s, Button.btn_Fmytree_s:focused, Button.btn_Fmytree_s:selected
  7112. {
  7113. background : @gradation url('theme://images/icon_FmytreeeS_N.png') center middle;
  7114. border : 2 double #f76273 #f8e8ea;
  7115. bordertype : round 2,2;
  7116. gradation : linear 0,0 #f1dde0 0,100 #eccad0 [45% #f0d0d5][50% #f5bec5];
  7117. }
  7118. Button.btn_Fmytree_s:mouseover
  7119. {
  7120. background : @gradation url('theme://images/icon_FmytreeeS_N.png') center middle;
  7121. border : 2 double #f76273 #eff8f8;
  7122. gradation : linear 0,0 #f1dbde 0,100 #f5c1c8;
  7123. shadow : outer 0,0 1 #6e14278f;
  7124. }
  7125. Button.btn_Fmytree_s:pushed
  7126. {
  7127. background : #ce1328 url('theme://images/icon_Fmytreee_P.png') center middle;
  7128. border : 1 solid #af091c;
  7129. pusheddrawoffset : 0 0;
  7130. }
  7131. Button.btn_Fmytree_s:disabled
  7132. {
  7133. opacity : 50;
  7134. }
  7135. Button.btn_picture, Button.btn_picture:focused, Button.btn_picture:selected
  7136. {
  7137. background : @gradation url('theme://images/icon_picture_N.png') center middle;
  7138. border : 2 double #45aea1 #eff8f8;
  7139. bordertype : round 2,2;
  7140. gradation : linear 0,0 #ddf1f1 0,100 #c1e8e8 [45% #d0f0f0][50% #afe5e5];
  7141. }
  7142. Button.btn_picture:mouseover
  7143. {
  7144. background : @gradation url('theme://images/icon_picture_N.png') center middle;
  7145. border : 2 double #45aea1 #eff8f8;
  7146. gradation : linear 0,0 #cdefef 0,100 #b2e6e6;
  7147. shadow : outer 0,0 1 #146e638f;
  7148. }
  7149. Button.btn_picture:pushed
  7150. {
  7151. background : #096d82 url('theme://images/icon_picture_P.png') center middle;
  7152. border : 1 solid #006176;
  7153. pusheddrawoffset : 0 0;
  7154. }
  7155. Button.btn_picture:disabled
  7156. {
  7157. opacity : 50;
  7158. }
  7159. Button.btn_picture_s, Button.btn_picture_s:focused, Button.btn_picture_s:selected
  7160. {
  7161. background : @gradation url('theme://images/icon_pictureS_N.png') center middle;
  7162. border : 2 double #f76273 #f8e8ea;
  7163. bordertype : round 2,2;
  7164. gradation : linear 0,0 #f1dde0 0,100 #eccad0 [45% #f0d0d5][50% #f5bec5];
  7165. }
  7166. Button.btn_picture_s:mouseover
  7167. {
  7168. background : @gradation url('theme://images/icon_pictureS_N.png') center middle;
  7169. border : 2 double #f76273 #eff8f8;
  7170. gradation : linear 0,0 #f1dbde 0,100 #f5c1c8;
  7171. shadow : outer 0,0 1 #6e14278f;
  7172. }
  7173. Button.btn_picture_s:pushed
  7174. {
  7175. background : #ce1328 url('theme://images/icon_picture_P.png') center middle;
  7176. border : 1 solid #af091c;
  7177. pusheddrawoffset : 0 0;
  7178. }
  7179. Button.btn_picture_s:disabled
  7180. {
  7181. opacity : 50;
  7182. }
  7183. Button.btn_list, Button.btn_list:focused, Button.btn_list:selected
  7184. {
  7185. background : @gradation url('theme://images/icon_List_N.png') center middle;
  7186. border : 2 double #45aea1 #eff8f8;
  7187. bordertype : round 2,2;
  7188. gradation : linear 0,0 #ddf1f1 0,100 #c1e8e8 [45% #d0f0f0][50% #afe5e5];
  7189. }
  7190. Button.btn_list:mouseover
  7191. {
  7192. background : @gradation url('theme://images/icon_List_N.png') center middle;
  7193. border : 2 double #45aea1 #eff8f8;
  7194. gradation : linear 0,0 #cdefef 0,100 #b2e6e6;
  7195. shadow : outer 0,0 1 #146e638f;
  7196. }
  7197. Button.btn_list:pushed
  7198. {
  7199. background : #096d82 url('theme://images/icon_List_P.png') center middle;
  7200. border : 1 solid #006176;
  7201. pusheddrawoffset : 0 0;
  7202. }
  7203. Button.btn_list:disabled
  7204. {
  7205. opacity : 50;
  7206. }
  7207. Button.btn_list_s, Button.btn_list_s:focused, Button.btn_list_s:selected
  7208. {
  7209. background : @gradation url('theme://images/icon_ListS_N.png') center middle;
  7210. border : 2 double #f76273 #f8e8ea;
  7211. bordertype : round 2,2;
  7212. gradation : linear 0,0 #f1dde0 0,100 #eccad0 [45% #f0d0d5][50% #f5bec5];
  7213. }
  7214. Button.btn_list_s:mouseover
  7215. {
  7216. background : @gradation url('theme://images/icon_ListS_N.png') center middle;
  7217. border : 2 double #f76273 #eff8f8;
  7218. gradation : linear 0,0 #f1dbde 0,100 #f5c1c8;
  7219. shadow : outer 0,0 1 #6e14278f;
  7220. }
  7221. Button.btn_list_s:pushed
  7222. {
  7223. background : #ce1328 url('theme://images/icon_List_P.png') center middle;
  7224. border : 1 solid #af091c;
  7225. pusheddrawoffset : 0 0;
  7226. }
  7227. Button.btn_list_s:disabled
  7228. {
  7229. opacity : 50;
  7230. }
  7231. /** 서식생성기영역 **/
  7232. /* 대상자 */
  7233. Static.sta_DATH_box
  7234. {
  7235. background : #e0f1f6;
  7236. border : 1 solid #a0c5d8, 1 solid #a0c5d8, 1 solid #c1d3e7, 1 solid #a0c5d8;
  7237. }
  7238. Static.sta_DATD_box
  7239. {
  7240. background : #FFFFFF;
  7241. border : 0 solid #a0c5d8, 1 solid #a0c5d8, 1 solid #a0c5d8, 1 solid #a0c5d8;
  7242. }
  7243. Static.sta_DA_Imgcaption
  7244. {
  7245. background : transparent url('theme://images/theme_blue/img_DA_Imgcaption.png') center middle;
  7246. border : 1 solid #84bfe1;
  7247. bordertype : round 2 2;
  7248. }
  7249. Div.div_DA_cell, Div.div_DA_cell:selected, Div.div_DA_cell:focused
  7250. {
  7251. background : transparent url('theme://images/img_divBg_N.png') stretch 5,5;
  7252. border : 1 solid #84bfe1;
  7253. bordertype : round 2 2;
  7254. align : left middle;
  7255. font : Dotum,9 ;
  7256. color : #333333 ;
  7257. }
  7258. /*
  7259. Div.div_DA_cell:selected, Div.div_DA_cell:focused
  7260. {
  7261. background : transparent url('theme://images/img_divBg_P.png') stretch 5,5;
  7262. border : 1 solid #279bbd;
  7263. shadow : outer 0,0 2 #0000005f;
  7264. }
  7265. */
  7266. Static.sta_search_title
  7267. {
  7268. background : transparent URL('theme://images/theme_blue/icon_bullet.png') left middle ;
  7269. color : royalblue;
  7270. font : Dotum,11,bold;
  7271. padding : 0 0 0 14;
  7272. }
  7273. /*** Login 화면 버튼들***/
  7274. Button.btn_validateUser, Button.btn_validateUser:focused, Button.btn_validateUser:selected
  7275. {
  7276. background : #0062c4ff;
  7277. border : 0 none #33bbbbff #effcfbff;
  7278. bordertype : normal 0 0;
  7279. clickeffect : trans 300 linear flip3d [direction bottom];
  7280. gradation : ;
  7281. color : #ffffff;
  7282. font : Dotum,9,bold;
  7283. align : center middle;
  7284. padding : 0 0 0 0;
  7285. }
  7286. Button.btn_validateUser:mouseover
  7287. {
  7288. background : #0062ffff;
  7289. border : 0 none #33bbbbff #effcfbff;
  7290. bordertype : normal 0 0;
  7291. color : #ffffff;
  7292. }
  7293. Button.btn_validateUser:pushed
  7294. {
  7295. background : #0062a4ff;
  7296. border : 0 none #33bbbbff #effcfbff;
  7297. bordertype : normal 0 0;
  7298. color : #ffffff;
  7299. }
  7300. Button.btn_inValidateUser, Button.btn_inValidateUser:focused, Button.btn_inValidateUser:selected
  7301. {
  7302. background : #008080ff;
  7303. border : 0 none #33bbbbff #effcfbff;
  7304. bordertype : normal 0 0;
  7305. clickeffect : trans 300 linear flip3d [direction bottom];
  7306. gradation : ;
  7307. color : #ffffff;
  7308. font : Dotum,9,bold;
  7309. align : center middle;
  7310. padding : 0 0 0 0;
  7311. }
  7312. Button.btn_inValidateUser:mouseover
  7313. {
  7314. background : #009080ff;
  7315. border : 0 none #33bbbbff #effcfbff;
  7316. bordertype : normal 0 0;
  7317. color : #ffffff;
  7318. }
  7319. Button.btn_inValidateUser:pushed
  7320. {
  7321. background : #007080ff;
  7322. border : 0 none #33bbbbff #effcfbff;
  7323. bordertype : normal 0 0;
  7324. color : #ffffff;
  7325. }
  7326. Button.btn_groupware, Button.btn_groupware:focused, Button.btn_groupware:selected
  7327. {
  7328. background : @gradation;
  7329. border : 0 none #33bbbbff #effcfbff;
  7330. bordertype : normal 0 0;
  7331. clickeffect : trans 300 linear flip3d [direction bottom];
  7332. gradation : linear 100,100 #1ea0ffff 0,100 #1e90ffff;
  7333. color : #ffffff;
  7334. font : Gulim,9;
  7335. image : theme://images\btn_TF_InfoMod_big.png;
  7336. imagealign : center middle;
  7337. imagepadding : 0 5 10 0;
  7338. align : left bottom;
  7339. padding : 0 0 5 5;
  7340. }
  7341. Button.btn_groupware:mouseover
  7342. {
  7343. background : @gradation;
  7344. border : 0 none #33bbbbff #effcfbff;
  7345. bordertype : normal 0 0;
  7346. gradation : linear 100,100 #1ec0ffff 0,100 #1ea0ffff;
  7347. color : #ffffff;
  7348. }
  7349. Button.btn_groupware:pushed
  7350. {
  7351. background : @gradation;
  7352. border : 0 none #33bbbbff #effcfbff;
  7353. bordertype : normal 0 0;
  7354. gradation : linear 100,100 #1ea0dfff 0,100 #1e90bfff;
  7355. color : #ffffff;
  7356. }
  7357. Button.btn_messenger, Button.btn_messenger:focused, Button.btn_messenger:selected
  7358. {
  7359. background : @gradation;
  7360. border : 0 none #33bbbbff #effcfbff;
  7361. bordertype : normal 0 0;
  7362. clickeffect : trans 300 linear flip3d [direction bottom];
  7363. gradation : linear 100,100 #ff5500ff 0,100 #ff4500ff;
  7364. color : #ffffff;
  7365. font : Gulim,9;
  7366. image : theme://images\icon_messenger.png;
  7367. imagealign : center middle;
  7368. imagepadding : 0 5 10 0;
  7369. align : left bottom;
  7370. padding : 0 0 5 5;
  7371. }
  7372. Button.btn_messenger:mouseover
  7373. {
  7374. background : @gradation;
  7375. border : 0 none #33bbbbff #effcfbff;
  7376. bordertype : normal 0 0;
  7377. gradation : linear 100,100 #ff6500ff 0,100 #ff5500ff;
  7378. color : #ffffff;
  7379. }
  7380. Button.btn_messenger:pushed
  7381. {
  7382. background : @gradation;
  7383. border : 0 none #33bbbbff #effcfbff;
  7384. bordertype : normal 0 0;
  7385. gradation : linear 100,100 #ef5500ff 0,100 #df4500ff;
  7386. color : #ffffff;
  7387. }
  7388. Button.btn_homepage031, Button.btn_homepage031:focused, Button.btn_homepage031:selected
  7389. {
  7390. background : @gradation;
  7391. border : 0 none #33bbbbff #effcfbff;
  7392. bordertype : normal 0 0;
  7393. clickeffect : trans 300 linear flip3d [direction bottom];
  7394. gradation : linear 100,100 #a932ccff 0,100 #9932ccff;
  7395. color : #ffffff;
  7396. font : Gulim,9;
  7397. image : theme://images\icon_homepage.png;
  7398. imagealign : center middle;
  7399. imagepadding : 0 5 10 0;
  7400. align : left bottom;
  7401. padding : 0 0 5 5;
  7402. }
  7403. Button.btn_homepage031:mouseover
  7404. {
  7405. background : @gradation;
  7406. border : 0 none #33bbbbff #effcfbff;
  7407. bordertype : normal 0 0;
  7408. gradation : linear 100,100 #d932ccff 0,100 #b932ccff;
  7409. color : #ffffff;
  7410. }
  7411. Button.btn_homepage031:pushed
  7412. {
  7413. background : @gradation;
  7414. border : 0 none #33bbbbff #effcfbff;
  7415. bordertype : normal 0 0;
  7416. gradation : linear 100,100 #9932ccff 0,100 #7932ccff;
  7417. color : #ffffff;
  7418. }
  7419. Button.btn_homepage032, Button.btn_homepage032:focused, Button.btn_homepage032:selected
  7420. {
  7421. background : @gradation;
  7422. border : 0 none #33bbbbff #effcfbff;
  7423. bordertype : normal 0 0;
  7424. clickeffect : trans 300 linear flip3d [direction bottom];
  7425. gradation : linear 100,100 #02a8ffff 0,100 #02a8f3ff;
  7426. color : #ffffff;
  7427. font : Gulim,9;
  7428. image : theme://images\icon_homepage.png;
  7429. imagealign : center middle;
  7430. imagepadding : 0 5 10 0;
  7431. align : left bottom;
  7432. padding : 0 0 5 5;
  7433. }
  7434. Button.btn_homepage032:mouseover
  7435. {
  7436. background : @gradation;
  7437. border : 0 none #33bbbbff #effcfbff;
  7438. bordertype : normal 0 0;
  7439. gradation : linear 100,100 #02c3ffff 0,100 #02b3f3ff;
  7440. color : #ffffff;
  7441. }
  7442. Button.btn_homepage032:pushed
  7443. {
  7444. background : @gradation;
  7445. border : 0 none #33bbbbff #effcfbff;
  7446. bordertype : normal 0 0;
  7447. gradation : linear 100,100 #02a8dfff 0,100 #02a8b3ff;
  7448. color : #ffffff;
  7449. }
  7450. Button.btn_setmenugrupnm, Button.btn_setmenugrupnm:focused, Button.btn_setmenugrupnm:selected
  7451. {
  7452. background : @gradation;
  7453. border : 0 none #33bbbbff #effcfbff;
  7454. bordertype : normal 0 0;
  7455. clickeffect : trans 300 linear flip3d [direction bottom];
  7456. gradation : linear 100,100 #007400ff 0,100 #006400ff;
  7457. color : #ffffff;
  7458. font : Gulim,9;
  7459. image : theme://images\icon_lock_open.png;
  7460. imagealign : center middle;
  7461. imagepadding : 0 5 10 0;
  7462. align : left bottom;
  7463. padding : 0 0 5 5;
  7464. }
  7465. Button.btn_setmenugrupnm:mouseover
  7466. {
  7467. background : @gradation;
  7468. border : 0 none #33bbbbff #effcfbff;
  7469. bordertype : normal 0 0;
  7470. gradation : linear 100,100 #009400ff 0,100 #008400ff;
  7471. color : #ffffff;
  7472. }
  7473. Button.btn_setmenugrupnm:pushed
  7474. {
  7475. background : @gradation;
  7476. border : 0 none #33bbbbff #effcfbff;
  7477. bordertype : normal 0 0;
  7478. gradation : linear 100,100 #006400ff 0,100 #005400ff;
  7479. color : #ffffff;
  7480. }
  7481. Button.btn_noticeBarMore, Button.btn_noticeBarMore:focused, Button.btn_noticeBarMore:selected
  7482. {
  7483. background : transparent ;
  7484. border : 1 solid #ffffff ;
  7485. bordertype : round 20 20 ;
  7486. image : theme://images/theme_bluegray/icon_notice_more_down.png ;
  7487. }
  7488. Button.btn_noticeBarMore:mouseover
  7489. {
  7490. background : #8b70d3ff ;
  7491. border : 1 solid #ffffff ;
  7492. bordertype : round 20 20 ;
  7493. image : theme://images/theme_bluegray/icon_notice_more_down.png ;
  7494. }
  7495. Button.btn_noticeBarMore:pushed
  7496. {
  7497. background : #7a3acdff ;
  7498. border : 1 solid #ffffff ;
  7499. bordertype : round 20 20 ;
  7500. image : theme://images/theme_bluegray/icon_notice_more_down.png ;
  7501. }
  7502. Button.btn_Notice_up, Button.btn_Notice_up:focus, Button.btn_Notice_up:selected
  7503. {
  7504. background : transparent ;
  7505. image : theme://images/theme_bluegray/icon_notice_prev.png ;
  7506. imagealign : center middle ;
  7507. border : 1 solid #ffffff ;
  7508. }
  7509. Button.btn_Notice_up:mouseover
  7510. {
  7511. background : #8b70d3ff ;
  7512. image : theme://images/theme_bluegray/icon_notice_prev.png ;
  7513. imagealign : center middle ;
  7514. shadow : 0 none ;
  7515. border : 1 solid #ffffff ;
  7516. }
  7517. Button.btn_Notice_up:pushed
  7518. {
  7519. background : #7a3acdff ;
  7520. image : theme://images/theme_bluegray/icon_notice_prev.png ;
  7521. imagealign : center middle ;
  7522. border : 1 solid #ffffff ;
  7523. }
  7524. Button.btn_Notice_up:disabled
  7525. {
  7526. background : transparent ;
  7527. image : theme://images/theme_bluegray/icon_notice_prev.png ;
  7528. imagealign : center middle ;
  7529. border : 1 solid #ffffff ;
  7530. }
  7531. Button.btn_Notice_down, Button.btn_Notice_down:focus, Button.btn_Notice_down:selected
  7532. {
  7533. background : transparent;
  7534. image : theme://images/theme_bluegray/icon_notice_next.png ;
  7535. imagealign : center middle ;
  7536. border : 1 solid #ffffff ;
  7537. }
  7538. Button.btn_Notice_down:mouseover
  7539. {
  7540. background : #8b70d3ff ;
  7541. image : theme://images/theme_bluegray/icon_notice_next.png ;
  7542. imagealign : center middle ;
  7543. shadow : none ;
  7544. border : 1 solid #ffffff ;
  7545. }
  7546. Button.btn_Notice_down:pushed
  7547. {
  7548. background : #7a3acdff ;
  7549. image : theme://images/theme_bluegray/icon_notice_next.png ;
  7550. imagealign : center middle ;
  7551. border : 1 solid #ffffff ;
  7552. }
  7553. Button.btn_Notice_down:disabled
  7554. {
  7555. background : transparent ;
  7556. image : theme://images/theme_bluegray/icon_notice_next.png ;
  7557. imagealign : center middle ;
  7558. border : 1 solid #ffffff ;
  7559. }
  7560. /** zoom control **/
  7561. Button.btn_zoomrate, Button.btn_zoomrate:focus, Button.btn_zoomrate:selected
  7562. {
  7563. background : #cee6f4 ;
  7564. border : 1 solid #84bfe1 ;
  7565. color : #333333 ;
  7566. font : Dotum,9,bold ;
  7567. align : center middle ;
  7568. }
  7569. Button.btn_zoomrate:mouseover
  7570. {
  7571. background : #e4f1f9 ;
  7572. color : #333333 ;
  7573. }
  7574. Button.btn_zoomrate:pushed
  7575. {
  7576. background : #f97818 ;
  7577. color : #ffffff ;
  7578. }
  7579. Button.btn_zoomrate:disabled
  7580. {
  7581. color : #888888 ;
  7582. }
  7583. /** 서식 그리드 **/
  7584. Button.icon_search_GHD, Button.icon_search_GHD:mouseover, Button.icon_search_GHD:pushed, Button.icon_search_GHD:focus, Button.icon_search_GHD:selected
  7585. {
  7586. border : none;
  7587. background : url('theme://images/theme_blue/btn_iconBtn1_N.png');
  7588. }
  7589. /** 메인 work div_callNumber **/
  7590. Div.div_callNumber
  7591. {
  7592. background : beige;
  7593. border : 1 solid #84bfe1;
  7594. bordertype : round 5 5;
  7595. font : Dotum,9;
  7596. align : center middle;
  7597. color : #333333;
  7598. shadow : outer 5,5 5 gray;
  7599. }
  7600. /** 메뉴 그룹 **/
  7601. Static.mg_title
  7602. {
  7603. background : #2c3e50ff;
  7604. border : 0 none;
  7605. align : center top;
  7606. font : Dotum,12,bold;
  7607. color : #ffffffff;
  7608. padding : 10 20 0 0;
  7609. }
  7610. Static.mg_subtitle
  7611. {
  7612. background : #202e3cff;
  7613. border : 0 none;
  7614. align : left middle;
  7615. font : Dotum,9;
  7616. color : #ffffffff;
  7617. padding : 0 0 0 10;
  7618. }
  7619. Static.mg_chngdept
  7620. {
  7621. background : #2c3e50ff;
  7622. border : 1 solid silver ;
  7623. bordertype : normal 0 0 rightbottom;
  7624. align : left middle;
  7625. font : Dotum,9,bold;
  7626. color : #ffffffff;
  7627. padding : 0 5 0 6;
  7628. }
  7629. Button.mg_btn_reorder, Button.mg_btn_reorder:focused, Button.mg_btn_reorder:selected, Button.mg_btn_reorder:mouseover, Button.mg_btn_reorder:pushed
  7630. {
  7631. background : transparent;
  7632. border : 0 none;
  7633. image : theme://images/icon_reorder.png;
  7634. showeffect : trans 300 linear flip3d [direction right];
  7635. }
  7636. Button.mg_btn_done, Button.mg_btn_done:focused, Button.mg_btn_done:selected, Button.mg_btn_done:mouseover, Button.mg_btn_done:pushed
  7637. {
  7638. background : transparent;
  7639. border : 0 none;
  7640. image : theme://images/icon_done.png;
  7641. showeffect : trans 300 linear flip3d [direction left];
  7642. }
  7643. Combo.mg_chngdept
  7644. {
  7645. background : url('theme://images/theme_blue/bg_edit_N.png') stretch 5,5;
  7646. border : none;
  7647. bordertype : round 2 2;
  7648. align : left middle;
  7649. font : Dotum,9 ;
  7650. color : #333333;
  7651. itembackground : #ffffff;
  7652. itemheight : 20;
  7653. itemborder : 0 none;
  7654. itempadding : 0 3 0 6;
  7655. itemcolor : #333333;
  7656. buttonsize : 19;
  7657. }
  7658. Combo.mg_chngdept:mouseover
  7659. {
  7660. background : url('theme://images/theme_blue/bg_edit_O.png') stretch 5,5;
  7661. color : #333333;
  7662. itembackground : #b1d8ec;
  7663. itemborder : 1 solid #84bfe1, 0 none, 1 solid #84bfe1, 0 none;
  7664. }
  7665. Combo.mg_chngdept:focused, Combo.mg_chngdept:selected
  7666. {
  7667. background : url('theme://images/theme_blue/bg_edit_P.png') stretch 5,5;
  7668. color : #333333;
  7669. itemcolor : #ffffff;
  7670. itembackground : #2674aa;
  7671. itemborder : 1 solid #1b5a89, 0 none, 1 solid #1b5a89, 0 none;
  7672. itemfont : Dotum,9,bold;
  7673. }
  7674. Combo.mg_chngdept:disabled
  7675. {
  7676. background : url('theme://images/theme_blue/bg_edit_D.png') stretch 5,5;
  7677. color : #888888;
  7678. }
  7679. Combo.mg_chngdept>#comboedit
  7680. {
  7681. background : transparent;
  7682. border : none;
  7683. align : left middle;
  7684. font : Dotum,9 ;
  7685. color : #333333;
  7686. padding : 0 5 0 5;
  7687. caretcolor : #164b74;
  7688. compositecolor : #ffffff;
  7689. selectbackground : transparent;
  7690. selectcolor : #333333;
  7691. }
  7692. Combo.mg_chngdept>#comboedit:focused
  7693. {
  7694. selectbackground : #1b5a89;
  7695. selectcolor : #ffffff;
  7696. }
  7697. Combo.mg_chngdept>#dropbutton
  7698. {
  7699. background : url('theme://images/theme_blue/btn_dropBg_N.png') stretch 5,5;
  7700. border : none, none, none, 1 solid #84bfe1;
  7701. margin : 1 1 1 0;
  7702. image : theme://images/theme_blue/icon_drop_N.png;
  7703. imagealign : center middle;
  7704. imagepadding : 2 0 0 0;
  7705. pusheddrawoffset : 0 0;
  7706. }
  7707. Combo.mg_chngdept>#dropbutton:mouseover
  7708. {
  7709. background : url('theme://images/theme_blue/btn_dropBg_O.png') stretch 5,5;
  7710. border : none, none, none, 1 solid #84bfe1;
  7711. image : theme://images/theme_blue/icon_drop_O.png;
  7712. }
  7713. Combo.mg_chngdept>#dropbutton:selected, Combo>#dropbutton:pushed
  7714. {
  7715. background : url('theme://images/theme_blue/btn_dropBg_P.png') stretch 5,5;
  7716. border : none, none, none, 1 solid #58a6d5;
  7717. margin : 1 1 1 0;
  7718. image : theme://images/theme_blue/icon_drop_P.png;
  7719. imagealign : center middle;
  7720. pusheddrawoffset : 0 0;
  7721. }
  7722. Combo.mg_chngdept>#dropbutton:disabled
  7723. {
  7724. background : url('theme://images/theme_blue/btn_dropBg_D.png') stretch 5,5;
  7725. border : none, none, none, 1 solid #B0B0B0;
  7726. image : theme://images/theme_blue/icon_drop_D.png;
  7727. }
  7728. Combo.mg_chngdept>#combolist
  7729. {
  7730. border : 1 solid #2674aa;
  7731. }
  7732. Button.mg_btn_POP_cls, Button.mg_btn_POP_cls:focused, Button.mg_btn_POP_cls:selected
  7733. {
  7734. background : transparent;
  7735. border : none;
  7736. image : url('theme://images/theme_blue/icon_form_popClose_N.png');
  7737. pusheddrawoffset : 1 1;
  7738. }
  7739. Button.mg_btn_POP_cls:mouseover
  7740. {
  7741. background : transparent;
  7742. border : none;
  7743. image : url('theme://images/theme_blue/icon_form_popClose_O.png');
  7744. shadow : ;
  7745. pusheddrawoffset : 1 1;
  7746. }
  7747. Button.mg_btn_POP_cls:pushed
  7748. {
  7749. background : transparent;
  7750. border : none;
  7751. image : url('theme://images/theme_blue/icon_form_popClose_N.png');
  7752. pusheddrawoffset : 1 1;
  7753. }
  7754. Calendar.mg_calendar
  7755. {
  7756. background : url('theme://images/theme_blue/bg_edit_N.png') stretch 5,5;
  7757. border : none;
  7758. bordertype : round 2 2;
  7759. align : left middle;
  7760. font : Dotum,9 ;
  7761. color : #333333;
  7762. buttonsize : 16;
  7763. daybackground : transparent;
  7764. dayborder : 0 none;
  7765. dayfont : Tahoma,8;
  7766. daycolor : #333333;
  7767. daysize : 24 20;
  7768. popupalign : ;
  7769. popupbackground : url('theme://images/theme_blue/bg_calPopup.png') stretch 10,60;
  7770. popupborder : 0 none;
  7771. popupbordertype : normal;
  7772. popupsize : 202 198;
  7773. usetrailingday : true;
  7774. }
  7775. Calendar.mg_calendar:mouseover
  7776. {
  7777. background : url('theme://images/theme_blue/bg_edit_O.png') stretch 5,5;
  7778. daybackground : url('theme://images/theme_blue/bg_dayBg_O.png') stretch left top;
  7779. dayfont : Tahoma,8,bold;
  7780. daycolor : #2674aa;
  7781. }
  7782. Calendar.mg_calendar:focused, Calendar.mg_calendar:pushed, Calendar.mg_calendar:selected
  7783. {
  7784. background : url('theme://images/theme_blue/bg_edit_P.png') stretch 5,5;
  7785. daybackground : url('theme://images/theme_blue/bg_dayBg_P.png') stretch left top;
  7786. dayfont : Tahoma,8,bold;
  7787. daycolor : #ffffff;
  7788. }
  7789. Calendar.mg_calendar:disabled
  7790. {
  7791. background : url('theme://images/theme_blue/bg_edit_D.png') stretch 5,5;
  7792. border : none;
  7793. color : #888888;
  7794. }
  7795. Calendar.mg_calendar[type="monthonly"],
  7796. Calendar.mg_calendar[type="monthonly"]:mouseover, Calendar.mg_calendar[type="monthonly"]:pushed,
  7797. Calendar.mg_calendar[type="monthonly"]:focused, Calendar.mg_calendar[type="monthonly"]:selected
  7798. {
  7799. border : 0 none;
  7800. }
  7801. Calendar.mg_calendar[type="spin"],
  7802. Calendar.mg_calendar[type="spin"]:mouseover, Calendar.mg_calendar[type="spin"]:pushed,
  7803. Calendar.mg_calendar[type="spin"]:focused, Calendar.mg_calendar[type="spin"]:selected
  7804. {
  7805. buttonsize : 16;
  7806. }
  7807. Calendar.mg_calendar>#calendaredit
  7808. {
  7809. background : transparent;
  7810. border : none;
  7811. align : left middle;
  7812. font : Dotum,9 ;
  7813. color : #333333;
  7814. padding : 0 0 0 5;
  7815. caretcolor : #6A543A;
  7816. compositecolor : #ffffff;
  7817. selectbackground : transparent;
  7818. selectcolor : #333333;
  7819. }
  7820. Calendar.mg_calendar>#calendaredit:focused, Calendar.mg_calendar>#calendaredit:selected, Calendar.mg_calendar>#calendaredit:pushed
  7821. {
  7822. selectbackground : #2674aa;
  7823. selectcolor : #ffffff;
  7824. }
  7825. Calendar.mg_calendar>#dropbutton
  7826. {
  7827. background : transparent;
  7828. border : 0 none;
  7829. focusborder : 0 none;
  7830. image : theme://images/icon_calDrop_N.png;
  7831. imagealign : left middle;
  7832. imagepadding : 0 0 0 0;
  7833. cursor : hand ;
  7834. }
  7835. Calendar.mg_calendar>#dropbutton:pushed
  7836. {
  7837. pusheddrawoffset : 0 0;
  7838. }
  7839. Calendar.mg_calendar>#dropbutton:disabled
  7840. {
  7841. image : URL('theme://images/icon_calDrop_D.png');
  7842. }
  7843. Calendar.mg_calendar>#spinupbutton
  7844. {
  7845. background : transparent;
  7846. border : 0 none;
  7847. margin : 3 1 0 1;
  7848. image : theme://images/icon_spinup_N.png;
  7849. imagealign : center middle;
  7850. cursor : hand;
  7851. }
  7852. Calendar.mg_calendar>#spinupbutton:mouseover
  7853. {
  7854. image : theme://images/icon_spinup_O.png;
  7855. }
  7856. Calendar.mg_calendar>#spinupbutton:pushed
  7857. {
  7858. image : theme://images/icon_spinup_P.png;
  7859. pusheddrawoffset : 0 0;
  7860. }
  7861. Calendar.mg_calendar>#spinupbutton:disabled
  7862. {
  7863. image : theme://images/icon_spinup_D.png;
  7864. }
  7865. Calendar.mg_calendar>#spindownbutton
  7866. {
  7867. background : transparent;
  7868. border : 0 none;
  7869. margin : 0 1 2 1;
  7870. image : theme://images/icon_spindn_N.png;
  7871. imagealign : center middle;
  7872. cursor : hand;
  7873. }
  7874. Calendar.mg_calendar>#spindownbutton:mouseover
  7875. {
  7876. image : theme://images/icon_spindn_N.png;
  7877. }
  7878. Calendar.mg_calendar>#spindownbutton:pushed
  7879. {
  7880. image : theme://images/icon_spindn_N.png;
  7881. pusheddrawoffset : 0 0;
  7882. }
  7883. Calendar.mg_calendar>#spindownbutton:disabled
  7884. {
  7885. image : theme://images/icon_spindn_D.png;
  7886. }
  7887. Calendar.mg_calendar>#popupcalendar
  7888. {
  7889. background : transparent;
  7890. border : 0 none;
  7891. font : Tahoma,8;
  7892. color : #333333;
  7893. align : center middle;
  7894. padding : 0 0 0 0;
  7895. ncpadding : 29 3 3 3;
  7896. bodybackground : transparent;
  7897. bodyborder : 0 none;
  7898. headerbackground : transparent;
  7899. headerborder : 0 none ;
  7900. headerfont : Tahoma,11,bold;
  7901. headercolor : #ffffff;
  7902. headerformat : yyyy.MM;
  7903. headerheight : 27;
  7904. weekbackground : transparent;
  7905. weekfont : Tahoma,8,bold;
  7906. weekcolor : #444444;
  7907. weekformat : Su Mo Tu We Th Fr Sa;
  7908. saturdaybackground : transparent;
  7909. saturdayborder : 0 none #ffffff00;
  7910. saturdayfont : Tahoma,8;
  7911. saturdaycolor : #0061B3;
  7912. sundaybackground : transparent;
  7913. sundayborder : 0 none #ffffff00;
  7914. sundayfont : Tahoma,8;
  7915. sundaycolor : #E1081C;
  7916. todaybackground : #796999;
  7917. todayborder : 0 none;
  7918. todayfont : Tahoma,8,bold;
  7919. todaycolor : #ffffff;
  7920. usetrailingday : true;
  7921. trailingdaybackground : transparent;
  7922. trailingdayborder : 0 none #ffffff00;
  7923. trailingdayfont : Tahoma,8;
  7924. trailingdaycolor : #888888;
  7925. viewmonthspin : ;
  7926. viewyearspin : ;
  7927. margin : -2 0 0 0;
  7928. }
  7929. Calendar.mg_calendar>#popupcalendar>#prevbutton
  7930. {
  7931. image : URL('theme://images/theme_blue/btn_calPrev_N.png');
  7932. background : transparent;
  7933. border : 0 none ;
  7934. cursor : hand;
  7935. padding : 2 0 0 0;
  7936. }
  7937. Calendar.mg_calendar>#popupcalendar>#prevbutton:mouseover
  7938. {
  7939. image : URL('theme://images/theme_blue/btn_calPrev_O.png');
  7940. }
  7941. Calendar.mg_calendar>#popupcalendar>#prevbutton:pushed
  7942. {
  7943. image :URL('theme://images/theme_blue/btn_calPrev_P.png');
  7944. pusheddrawoffset : 0 0;
  7945. }
  7946. Calendar.mg_calendar>#popupcalendar>#nextbutton
  7947. {
  7948. image : URL('theme://images/theme_blue/btn_calNext_N.png');
  7949. background : transparent;
  7950. border : 0 none ;
  7951. cursor : hand;
  7952. padding : 2 0 0 0;
  7953. }
  7954. Calendar.mg_calendar>#popupcalendar>#nextbutton:mouseover
  7955. {
  7956. image : URL('theme://images/theme_blue/btn_calNext_O.png');
  7957. }
  7958. Calendar.mg_calendar>#popupcalendar>#nextbutton:pushed
  7959. {
  7960. image : URL('theme://images/theme_blue/btn_calNext_P.png');
  7961. pusheddrawoffset : 0 0;
  7962. }
  7963. Calendar.mg_calendar>#popupcalendar>#monthspin,
  7964. Calendar.mg_calendar>#popupcalendar>#yearspin
  7965. {
  7966. background : #ffffff;
  7967. border : 1 solid #125793;
  7968. bordertype : normal;
  7969. font : Tahoma,10,bold;
  7970. color : #333333;
  7971. align : left middle;
  7972. margin : 0 5 0 0;
  7973. padding : 0 0 0 5;
  7974. buttonsize : 8;
  7975. }
  7976. Calendar.mg_calendar>#popupcalendar>#monthspin>#spinedit,
  7977. Calendar.mg_calendar>#popupcalendar>#monthspin>#spinedit:mouseover,
  7978. Calendar.mg_calendar>#popupcalendar>#yearspin>#spinedit,
  7979. Calendar.mg_calendar>#popupcalendar>#yearspin>#spinedit:mouseover
  7980. {
  7981. background : transparent;
  7982. border : none;
  7983. color : #333333;
  7984. padding : 0 5 0 5;
  7985. align : left middle;
  7986. font : Dotum,9;
  7987. caretcolor : #6A543A;
  7988. compositecolor : #ffffff;
  7989. selectbackground : transparent;
  7990. selectcolor : #666666;
  7991. }
  7992. Calendar.mg_calendar>#popupcalendar>#monthspin>#spinedit:focused,
  7993. Calendar.mg_calendar>#popupcalendar>#yearspin>#spinedit:focused
  7994. {
  7995. selectbackground : #896D4B;
  7996. selectcolor : #ffffff;
  7997. }
  7998. Calendar.mg_calendar>#popupcalendar>#monthspin>#spinupbutton,
  7999. Calendar.mg_calendar>#popupcalendar>#yearspin>#spinupbutton
  8000. {
  8001. background : transparent;
  8002. border : 0 none;
  8003. bordertype : normal;
  8004. image : URL('theme://images/icon_calSpinup_N.png');
  8005. imagepadding : 2 1 0 0;
  8006. pusheddrawoffset : 0 0;
  8007. cursor : hand;
  8008. }
  8009. Calendar.mg_calendar>#popupcalendar>#monthspin>#spinupbutton:mouseover,
  8010. Calendar.mg_calendar>#popupcalendar>#yearspin>#spinupbutton:mouseover
  8011. {
  8012. image : URL('theme://images/icon_calSpinup_O.png');
  8013. }
  8014. Calendar.mg_calendar>#popupcalendar>#monthspin>#spinupbutton:pushed,
  8015. Calendar.mg_calendar>#popupcalendar>#yearspin>#spinupbutton:pushed
  8016. {
  8017. image : URL('theme://images/icon_calSpinup_P.png');
  8018. }
  8019. Calendar.mg_calendar>#popupcalendar>#monthspin>#spindownbutton,
  8020. Calendar.mg_calendar>#popupcalendar>#yearspin>#spindownbutton
  8021. {
  8022. background : transparent;
  8023. border : 0 none;
  8024. bordertype : normal;
  8025. image : URL('theme://images/icon_calSpindn_N.png');
  8026. imagepadding : 0 1 2 0;
  8027. pusheddrawoffset : 0 0;
  8028. cursor : hand;
  8029. }
  8030. Calendar.mg_calendar>#popupcalendar>#monthspin>#spindownbutton:mouseover,
  8031. Calendar.mg_calendar>#popupcalendar>#yearspin>#spindownbutton:mouseover
  8032. {
  8033. image : URL('theme://images/icon_calSpindn_O.png');
  8034. }
  8035. Calendar.mg_calendar>#popupcalendar>#monthspin>#spindownbutton:pushed,
  8036. Calendar.mg_calendar>#popupcalendar>#yearspin>#spindownbutton:pushed
  8037. {
  8038. image : URL('theme://images/icon_calSpindn_P.png');
  8039. }
  8040. /* 범례 - color */
  8041. Static.color_1
  8042. {
  8043. background : #fcd2c1;
  8044. border : 0 none;
  8045. bordertype : normal;
  8046. }
  8047. Static.color_2
  8048. {
  8049. background : #ffe79d;
  8050. border : 0 none;
  8051. bordertype : normal;
  8052. }
  8053. Static.color_3
  8054. {
  8055. background : #f3e1bf;
  8056. border : 0 none;
  8057. bordertype : normal;
  8058. }
  8059. Static.color_4
  8060. {
  8061. background : #7BE6B7;
  8062. border : 0 none;
  8063. bordertype : normal;
  8064. }
  8065. Static.color_5
  8066. {
  8067. background : #b9e5fb;
  8068. border : 0 none;
  8069. bordertype : normal;
  8070. }
  8071. Static.color_6
  8072. {
  8073. background : #f7a08b;
  8074. border : 0 none;
  8075. bordertype : normal;
  8076. }
  8077. Static.color_7
  8078. {
  8079. background : #fec34d;
  8080. border : 0 none;
  8081. bordertype : normal;
  8082. }
  8083. Static.color_8
  8084. {
  8085. background : #dec6a4;
  8086. border : 0 none;
  8087. bordertype : normal;
  8088. }
  8089. Static.color_9
  8090. {
  8091. background : #c8e67b;
  8092. border : 0 none;
  8093. bordertype : normal;
  8094. }
  8095. Static.color_10
  8096. {
  8097. background : #43c8f5;
  8098. border : 0 none;
  8099. bordertype : normal;
  8100. }
  8101. Static.color_11
  8102. {
  8103. background : #99cf16;
  8104. border : 0 none;
  8105. bordertype : normal;
  8106. }
  8107. Static.color_12
  8108. {
  8109. background : #e5f3c2;
  8110. border : 0 none;
  8111. bordertype : normal;
  8112. }
  8113. /** 환자정보 메뉴검색 */
  8114. Edit.ed_search, Edit.ed_search:disabled, Edit.ed_search:focused
  8115. {
  8116. background : #e4f1f9 ;
  8117. gradation : none ;
  8118. border : 0 none ;
  8119. bordertype : round 30 30 ;
  8120. color : #333333 ;
  8121. align : left middle ;
  8122. padding : 1 28 0 10 ;
  8123. }
  8124. Edit.ed_search:mouseover
  8125. {
  8126. background : #ffffff ;
  8127. gradation : none ;
  8128. border : 0 none ;
  8129. bordertype : round 30 30 ;
  8130. color : #333333 ;
  8131. align : left middle ;
  8132. padding : 1 28 0 10 ;
  8133. }
  8134. Edit.ed_search:pushed
  8135. {
  8136. background : #ffffff ;
  8137. gradation : none ;
  8138. border : 0 none ;
  8139. bordertype : round 30 30 ;
  8140. color : #333333 ;
  8141. align : left middle ;
  8142. padding : 1 28 0 10 ;
  8143. }
  8144. Button.btn_search_bullet, Button.btn_search_bullet:focused, Button.btn_search_bullet:selected, Button.btn_search_bullet:disabled
  8145. {
  8146. background : url('theme://images/theme_blue/search_bullet1.png') right middle;
  8147. border : 0 solid #8abad8ff;
  8148. align : right middle;
  8149. focusborder : 0 none;
  8150. padding : 0 0 0 0;
  8151. }
  8152. Button.btn_search_bullet:mouseover
  8153. {
  8154. background : url('theme://images/theme_blue/search_bullet1.png') right middle;
  8155. border : 0 solid #8abad8ff;
  8156. padding : 0 0 0 0;
  8157. }
  8158. Button.btn_search_bullet:pushed
  8159. {
  8160. background : url('theme://images/theme_blue/search_bullet1.png') right middle;
  8161. border : 0 solid #8abad8ff;
  8162. padding : 0 0 0 0;
  8163. }
  8164. ImageViewer.img_question
  8165. {
  8166. background : transparent URL('theme://images/theme_blue/icon_confirm_default.png') center middle;
  8167. border : 0 none #808080ff;
  8168. }
  8169. /* btn_hichart */
  8170. Button.btn_hichart, Button.btn_hichart:focused, Button.btn_hichart:selected
  8171. {
  8172. background : transparent;
  8173. border : 0 none #33BBBB #F0FDFC;
  8174. image : url('theme://images/btn_hichart_N.png');
  8175. shadow : outer 1,1 1 gray;
  8176. pusheddrawoffset : 1 1;
  8177. }
  8178. Button.btn_hichart:mouseover
  8179. {
  8180. background : transparent;
  8181. border : 0 none #33BBBB #F0FDFC;
  8182. image : url('theme://images/btn_hichart_P.png');
  8183. shadow : outer 1,1 1 gray;
  8184. pusheddrawoffset : 1 1;
  8185. }
  8186. Button.btn_hichart:pushed
  8187. {
  8188. background : transparent;
  8189. border : 0 none #33BBBB #F0FDFC;
  8190. image : url('theme://images/btn_hichart_P.png');
  8191. shadow : outer 1,1 1 gray;
  8192. pusheddrawoffset : 1 1;
  8193. }
  8194. /* btn_hichart2 */
  8195. Button.btn_hichart2, Button.btn_hichart2:focused, Button.btn_hichart2:selected
  8196. {
  8197. background : transparent;
  8198. border : 0 none #33BBBB #F0FDFC;
  8199. image : url('theme://images/btn_hichart_N2.png');
  8200. shadow : outer 1,1 1 gray;
  8201. pusheddrawoffset : 1 1;
  8202. }
  8203. Button.btn_hichart2:mouseover
  8204. {
  8205. background : transparent;
  8206. border : 0 none #33BBBB #F0FDFC;
  8207. image : url('theme://images/btn_hichart_P2.png');
  8208. shadow : outer 1,1 1 gray;
  8209. pusheddrawoffset : 1 1;
  8210. }
  8211. Button.btn_hichart2:pushed
  8212. {
  8213. background : transparent;
  8214. border : 0 none #33BBBB #F0FDFC;
  8215. image : url('theme://images/btn_hichart_P2.png');
  8216. shadow : outer 1,1 1 gray;
  8217. pusheddrawoffset : 1 1;
  8218. }
  8219. /* btn_corona */
  8220. Button.btn_corona, Button.btn_corona:focused, Button.btn_corona:selected
  8221. {
  8222. background : transparent;
  8223. border : 0 none #33BBBB #F0FDFC;
  8224. image : url('theme://images/btn_corona_N.png');
  8225. shadow : outer 1,1 1 gray;
  8226. pusheddrawoffset : 1 1;
  8227. }
  8228. Button.btn_corona:mouseover
  8229. {
  8230. background : transparent;
  8231. border : 0 none #33BBBB #F0FDFC;
  8232. image : url('theme://images/btn_corona_P.png');
  8233. shadow : outer 1,1 1 gray;
  8234. pusheddrawoffset : 1 1;
  8235. }
  8236. Button.btn_corona:pushed
  8237. {
  8238. background : transparent;
  8239. border : 0 none #33BBBB #F0FDFC;
  8240. image : url('theme://images/btn_corona_P.png');
  8241. shadow : outer 1,1 1 gray;
  8242. pusheddrawoffset : 1 1;
  8243. }
  8244. Grid.grd_transparent
  8245. {
  8246. background : transparent;
  8247. border : 0 none transparent;
  8248. font : Gulim,13;
  8249. color : #262626;
  8250. align : left top;
  8251. focusborder : 0 none;
  8252. line : 0 none transparent;
  8253. selectline : 0 none transparent;
  8254. treeopenbuttonimage : theme://images/icon_treeopen.png;
  8255. treeclosebuttonimage : theme://images/icon_treeclose.png;
  8256. treecollapseimage : theme://images/icon_treecollapse.png;
  8257. treeexpandimage : theme://images/icon_treeexpand.png;
  8258. treeitemimage : theme://images/icon_treeitem.png;
  8259. treelinetype : 1 dotted #B0B0B0;
  8260. }
  8261. Grid.grd_transparent>#body
  8262. {
  8263. background : transparent;
  8264. border : 0 none transparent;
  8265. align : left top;
  8266. font : Gulim,13;
  8267. color : #262626;
  8268. cellalign : left top;
  8269. cellbackground : transparent;
  8270. cellbackground2 : transparent;
  8271. cellline : 0 none transparent;
  8272. celllinetype : normal;
  8273. cellfont : Gulim,13;
  8274. cellcolor : #262626;
  8275. cellcolor2 : #262626;
  8276. cellpadding : 10 10 10 10;
  8277. selectbackground : transparent;
  8278. selectborder : 0 none;
  8279. selectcolor : #262626;
  8280. selectfont : Gulim,13;
  8281. }
  8282. Grid.grd_phone
  8283. {
  8284. background : #00000005;
  8285. border : 1 solid black, none, none, none;
  8286. bordertype : round 10 10 lefttop righttop;
  8287. font : Dotum,12;
  8288. color : black;
  8289. align : center middle;
  8290. focusborder : none;
  8291. line : none;
  8292. selectline : none;
  8293. treeopenbuttonimage : theme://images/icon_treeopen.png;
  8294. treeclosebuttonimage : theme://images/icon_treeclose.png;
  8295. treecollapseimage : theme://images/icon_treecollapse.png;
  8296. treeexpandimage : theme://images/icon_treeexpand.png;
  8297. treeitemimage : theme://images/icon_treeitem.png;
  8298. treelinetype : 1 dotted #B0B0B0;
  8299. }
  8300. Grid.grd_phone>#head
  8301. {
  8302. border : none, 1 solid black, none, none;
  8303. cellalign : center middle;
  8304. cellbackground : #00000010;
  8305. cellcolor : black;
  8306. cellfont : Dotum,9;
  8307. cellline : 1 solid black;
  8308. cellpadding : 0 0 0 0;
  8309. }
  8310. Grid.grd_phone>#body
  8311. {
  8312. background : transparent;
  8313. border : none, 1 solid black, none, 1 solid black;
  8314. align : center middle;
  8315. font : Dotum,12;
  8316. color : black;
  8317. cellalign : center middle;
  8318. cellbackground : transparent;
  8319. cellbackground2 : transparent;
  8320. cellline : 1 solid black;
  8321. celllinetype : normal;
  8322. cellfont : Dotum,12;
  8323. cellcolor : black;
  8324. cellcolor2 : black;
  8325. cellpadding : 0 0 0 4;
  8326. selectbackground : #fffff020;
  8327. selectborder : none;
  8328. selectcolor : black;
  8329. selectfont : Dotum,12;
  8330. }
  8331. Grid.grd_phone>#body:mouseover
  8332. {
  8333. cellbackground : #fffff030;
  8334. cellbackground2 : #fffff030;
  8335. cellcolor : #ffffff;
  8336. selectbackground : #fffff030;
  8337. selectfont : Dotum,12;
  8338. selectcolor : #ffffff;
  8339. }
  8340. /* btn_sbs */
  8341. Button.btn_sbs, Button.btn_sbs:focused, Button.btn_sbs:selected, Button.btn_sbs:disabled
  8342. {
  8343. background : orangered;
  8344. border : 1 solid red;
  8345. bordertype : round 9 9;
  8346. color : white;
  8347. padding : 0 1 0 0;
  8348. pusheddrawoffset : 1 1;
  8349. }
  8350. Button.btn_sbs:mouseover
  8351. {
  8352. background : #FF7540;
  8353. border : 1 solid #FF4242;
  8354. bordertype : round 9 9;
  8355. color : white;
  8356. padding : 0 1 0 0;
  8357. pusheddrawoffset : 1 1;
  8358. }
  8359. Button.btn_sbs:pushed
  8360. {
  8361. background : #C43600;
  8362. border : 1 solid red;
  8363. bordertype : round 9 9;
  8364. color : white;
  8365. padding : 0 1 0 0;
  8366. pusheddrawoffset : 1 1;
  8367. }
  8368. /* 환자확인 메시지 버튼*/
  8369. Button.btn_patcheck
  8370. {
  8371. background : #2674aa ;
  8372. border : 1 solid #1b5a89 ;
  8373. bordertype : round 2 2 ;
  8374. font : Dotum,9,bold ;
  8375. color : #e4f1f9 ;
  8376. align : center middle ;
  8377. cursor : hand ;
  8378. padding : 0 0 0 0 ;
  8379. shadow : 0 none ;
  8380. }
  8381. Button.btn_patcheck:focused, Button.btn_patcheck:selected
  8382. {
  8383. background : #164b74 ;
  8384. border : 1 solid #103b5f ;
  8385. color : #e4f1f9 ;
  8386. }
  8387. Button.btn_patcheck:mouseover
  8388. {
  8389. background : #3d95cd ;
  8390. border : 1 solid #2d84be ;
  8391. color : #ffffff ;
  8392. }
  8393. Button.btn_patcheck:pushed
  8394. {
  8395. background : #f97818 ;
  8396. border : 1 solid #ec6400 ;
  8397. color : #ffffff ;
  8398. }
  8399. Button.btn_patcheck:disabled
  8400. {
  8401. gradation : linear 0,0 #f0f0f0ff 0,100 #e1e1e1ff;
  8402. border : 1 solid #cacacaff;
  8403. color : #808080;
  8404. cursor : arrow;
  8405. }
  8406. Button.btn_sendmsg
  8407. {
  8408. background : @gradation ;
  8409. border : 1 solid coral ;
  8410. bordertype : round 10 10 ;
  8411. font : Dotum,10,bold ;
  8412. color : white ;
  8413. gradation : linear 0,0 orange 0,100 darkorange ;
  8414. align : center middle ;
  8415. cursor : hand ;
  8416. padding : 0 0 0 0 ;
  8417. shadow : 0 none ;
  8418. }
  8419. Button.btn_sendmsg:focused, Button.btn_sendmsg:selected
  8420. {
  8421. background : @gradation ;
  8422. border : 1 solid coral ;
  8423. bordertype : round 10 10 ;
  8424. font : Dotum,10,bold ;
  8425. color : white ;
  8426. gradation : linear 0,0 orange 0,100 darkorange ;
  8427. }
  8428. Button.btn_sendmsg:mouseover
  8429. {
  8430. background : @gradation ;
  8431. border : 1 solid coral ;
  8432. color : white ;
  8433. gradation : linear 0,0 #ffb428ff 0,100 #ffac13ff ;
  8434. }
  8435. Button.btn_sendmsg:pushed
  8436. {
  8437. background : @gradation ;
  8438. border : 1 solid coral ;
  8439. color : white ;
  8440. gradation : linear 0,0 orange 0,100 darkorange ;
  8441. }
  8442. Button.btn_sendmsg:disabled
  8443. {
  8444. gradation : linear 0,0 #ffffffff 0,100 #ebebebff;
  8445. border : 1 solid #cacacaff;
  8446. color : #808080;
  8447. cursor : hand;
  8448. }
  8449. Button.btn_phone_add
  8450. {
  8451. background : @gradation ;
  8452. border : 1 solid black ;
  8453. bordertype : round 10 10 ;
  8454. font : Dotum,9,bold ;
  8455. color : black ;
  8456. gradation : linear 0,0 yellow 0,100 khaki ;
  8457. align : center middle ;
  8458. cursor : hand ;
  8459. padding : 0 0 0 0 ;
  8460. shadow : 0 none ;
  8461. }
  8462. Button.btn_phone_add:focused, Button.btn_phone_add:selected
  8463. {
  8464. background : @gradation ;
  8465. border : 1 solid black ;
  8466. bordertype : round 10 10 ;
  8467. font : Dotum,9,bold ;
  8468. color : black ;
  8469. gradation : linear 0,0 yellow 0,100 khaki ;
  8470. }
  8471. Button.btn_phone_add:mouseover
  8472. {
  8473. background : @gradation ;
  8474. border : 1 solid black ;
  8475. color : black ;
  8476. gradation : linear 0,0 #ffff8aff 0,100 #f2ea9dff ;
  8477. }
  8478. Button.btn_phone_add:pushed
  8479. {
  8480. background : @gradation ;
  8481. border : 1 solid black ;
  8482. color : black ;
  8483. gradation : linear 0,0 yellow 0,100 khaki ;
  8484. }
  8485. Button.btn_phone_add:disabled
  8486. {
  8487. gradation : linear 0,0 #ffffffff 0,100 #ebebebff;
  8488. border : 1 solid #cacacaff;
  8489. color : #808080;
  8490. cursor : hand;
  8491. }
  8492. Button.btn_phone_del
  8493. {
  8494. background : @gradation ;
  8495. border : 1 solid black ;
  8496. bordertype : round 10 10 ;
  8497. font : Dotum,9,bold ;
  8498. color : black ;
  8499. gradation : linear 0,0 lightskyblue 0,100 lightsteelblue ;
  8500. align : center middle ;
  8501. cursor : hand ;
  8502. padding : 0 0 0 0 ;
  8503. shadow : 0 none ;
  8504. }
  8505. Button.btn_phone_del:focused, Button.btn_phone_del:selected
  8506. {
  8507. background : @gradation ;
  8508. border : 1 solid black ;
  8509. bordertype : round 10 10 ;
  8510. font : Dotum,9,bold ;
  8511. color : black ;
  8512. gradation : linear 0,0 lightskyblue 0,100 lightsteelblue ;
  8513. }
  8514. Button.btn_phone_del:mouseover
  8515. {
  8516. background : @gradation ;
  8517. border : 1 solid black ;
  8518. color : black ;
  8519. gradation : linear 0,0 #a4dafbff 0,100 #becee4ff ;
  8520. }
  8521. Button.btn_phone_del:pushed
  8522. {
  8523. background : @gradation ;
  8524. border : 1 solid black ;
  8525. color : black ;
  8526. gradation : linear 0,0 lightskyblue 0,100 lightsteelblue ;
  8527. }
  8528. Button.btn_phone_del:disabled
  8529. {
  8530. gradation : linear 0,0 #ffffffff 0,100 #ebebebff;
  8531. border : 1 solid #cacacaff;
  8532. color : #808080;
  8533. cursor : hand;
  8534. }
  8535. Button.btn_phone_history
  8536. {
  8537. background : @gradation ;
  8538. border : 1 solid black ;
  8539. bordertype : round 10 10 ;
  8540. font : Dotum,9,bold ;
  8541. color : black ;
  8542. gradation : linear 0,0 pink 0,100 plum ;
  8543. align : center middle ;
  8544. cursor : hand ;
  8545. padding : 0 0 0 0 ;
  8546. shadow : 0 none ;
  8547. }
  8548. Button.btn_phone_history:focused, Button.btn_phone_history:selected
  8549. {
  8550. background : @gradation ;
  8551. border : 1 solid black ;
  8552. bordertype : round 10 10 ;
  8553. font : Dotum,9,bold ;
  8554. color : black ;
  8555. gradation : linear 0,0 pink 0,100 plum ;
  8556. }
  8557. Button.btn_phone_history:mouseover
  8558. {
  8559. background : @gradation ;
  8560. border : 1 solid black ;
  8561. color : black ;
  8562. gradation : linear 0,0 #ffd9dfff 0,100 #e3b3e3ff ;
  8563. }
  8564. Button.btn_phone_history:pushed
  8565. {
  8566. background : @gradation ;
  8567. border : 1 solid black ;
  8568. color : black ;
  8569. gradation : linear 0,0 pink 0,100 plum ;
  8570. }
  8571. Button.btn_phone_history:disabled
  8572. {
  8573. gradation : linear 0,0 #ffffffff 0,100 #ebebebff;
  8574. border : 1 solid #cacacaff;
  8575. color : #808080;
  8576. cursor : hand;
  8577. }
  8578. /* 하단영역 원격 지원 버튼*/
  8579. Button.btn_RemoteCall,Button.btn_RemoteCall:focused,Button.btn_RemoteCall:selected,Button.btn_RemoteCall:disabled
  8580. {
  8581. background : #ffff00ff;
  8582. border : 1 solid black;
  8583. bordertype : round 10 10;
  8584. color : #4e3417ff;
  8585. align : center middle;
  8586. image : theme://images/theme_blue/btn_remotecall.png;
  8587. imagealign : lefttext middle;
  8588. imagepadding : 0 0 0 0;
  8589. padding : 0 0 0 0;
  8590. }
  8591. Button.btn_RemoteCall:mouseover
  8592. {
  8593. background : #ffff8cff;
  8594. border : 1 solid black;
  8595. bordertype : round 10 10;
  8596. color : #4e3417ff;
  8597. }
  8598. Button.btn_RemoteCall:pushed
  8599. {
  8600. background : #c2c22eff;
  8601. border : 1 solid black;
  8602. bordertype : round 10 10;
  8603. color : #4e3417ff;
  8604. }
  8605. /* nU CSS */
  8606. /* 일정달력 컴퍼넌트 */
  8607. Button.bn_Cal_schdule, Button.bn_Cal_schdule:mouseover,
  8608. Button.bn_Cal_schdule:focused, Button.bn_Cal_schdule:pushed, Button.bn_Cal_schdule:selected, Button.bn_Cal_schdule:disabled
  8609. {
  8610. background : url('IMG::nu/btn_CalDrop2.png');
  8611. border : none;
  8612. }
  8613. /* 기간달력 */
  8614. /* prev */
  8615. Button.bn_termcalPrev, Button.bn_termcalPrev:disabled
  8616. {
  8617. background : url('IMG::nu/bn_termcalprevN2.png');
  8618. border : none;
  8619. align : center middle;
  8620. font : Dotum,8;
  8621. color : #ffffff;
  8622. shadow : drop 0,0 0 #00000033;
  8623. }
  8624. Button.bn_termcalPrev:mouseover, Button.bn_termcalPrev:pushed, Button.bn_termcalPrev:focused, Button.bn_termcalPrev:selected
  8625. {
  8626. background : url('IMG::nu/bn_termcalprevO2.png');
  8627. }
  8628. /* next */
  8629. Button.bn_termcalNext, Button.bn_termcalNext:disabled
  8630. {
  8631. background : url('IMG::nu/bn_termcalNextN2.png');
  8632. border : none;
  8633. align : center middle;
  8634. font : Dotum,8;
  8635. color : #ffffff;
  8636. shadow : drop 0,0 0 #00000033;
  8637. }
  8638. Button.bn_termcalNext:mouseover, Button.bn_termcalNext:pushed,
  8639. Button.bn_termcalNext:focused, Button.bn_termcalNext:selected
  8640. {
  8641. background : url('IMG::nu/bn_termcalNextO2.png');
  8642. }
  8643. /* first */
  8644. Button.bn_termcalFirst, Button.bn_termcalFirst:disabled
  8645. {
  8646. background : url('IMG::nu/bn_termcalFirstN2.png');
  8647. border : none;
  8648. align : center middle;
  8649. font : Dotum,8;
  8650. color : #ffffff;
  8651. shadow : drop 0,0 0 #00000033;
  8652. }
  8653. Button.bn_termcalFirst:mouseover, Button.bn_termcalFirst:pushed,
  8654. Button.bn_termcalFirst:focused, Button.bn_termcalFirst:selected
  8655. {
  8656. background : url('IMG::nu/bn_termcalFirstO2.png');
  8657. }
  8658. /* last */
  8659. Button.bn_termcalLast, Button.bn_termcalLast:disabled
  8660. {
  8661. background : url('IMG::nu/bn_termcalLastN2.png');
  8662. border : none;
  8663. align : center middle;
  8664. font : Dotum,8;
  8665. color : #ffffff;
  8666. shadow : drop 0,0 0 #00000033;
  8667. }
  8668. Button.bn_termcalLast:mouseover, Button.bn_termcalLast:pushed,
  8669. Button.bn_termcalLast:focused, Button.bn_termcalLast:selected
  8670. {
  8671. background : url('IMG::nu/bn_termcalLastO2.png');
  8672. }
  8673. /* 일정달력 그리드 */
  8674. /* From */
  8675. Grid.grd_schdule_termFr
  8676. {
  8677. background : transparent;
  8678. border : none;
  8679. font : Dotum,8;
  8680. color : #333333;
  8681. align : center middle;
  8682. }
  8683. Grid.grd_schdule_termFr>#head
  8684. {
  8685. border : 1 solid #94a5b0,1 solid #94a5b0,none,1 solid #94a5b0;
  8686. cellalign : center middle;
  8687. cellbackground : @gradation;
  8688. cellgradation : linear 0,0 #e0e4e7 0,100 #cfd7dd;
  8689. cellcolor : #798b99;
  8690. cellfont : Dotum,8,bold ;
  8691. cellline : none;
  8692. cellpadding : 1 0 0 0;
  8693. }
  8694. Grid.grd_schdule_termFr>#head>Cell.sun
  8695. {
  8696. color : #df5e00;
  8697. cellcolor : #df5e00;
  8698. }
  8699. Grid.grd_schdule_termFr>#head>Cell.sat
  8700. {
  8701. color : #1a86ba;
  8702. cellcolor : #1a86ba;
  8703. }
  8704. Grid.grd_schdule_termFr>#body
  8705. {
  8706. background : transparent url('IMG::nu/img_term_schduleBg.png') stretch 50,0;
  8707. border : 1 solid #94a5b0, 1 solid #94a5b0, 1 solid #94a5b0, 1 solid #94a5b0;
  8708. font : Dotum,8;
  8709. color : #848484;
  8710. cellpadding : 0 0 0 0;
  8711. cellbackground : transparent;
  8712. cellbackground2 : transparent;
  8713. cellalign : center middle;
  8714. cellline : none;
  8715. celllinetype: ;
  8716. cellfont : Dotum,8;
  8717. cellcolor : #848484;
  8718. selectbackground: url('IMG::nu/img_termCalffBg.png');
  8719. selectborder : none, none, none, 1 solid #ffffff;
  8720. selectline : none;
  8721. selectfont : Dotum,8,bold;
  8722. selectcolor : #ffffff;
  8723. }
  8724. Grid.grd_schdule_termFr>#body:mouseover
  8725. {
  8726. cellbackground : url('IMG::nu/img_termCalffBg.png');
  8727. cellbackground2 : url('IMG::nu/img_termCalffBg.png');
  8728. cellfont : Dotum,8,bold;
  8729. cellcolor : #ffffff;
  8730. selectbackground: url('IMG::nu/img_termCalffBg.png');
  8731. selectcolor : #ffffff;
  8732. }
  8733. Grid.grd_schdule_termFr>#body>Cell.sch_today
  8734. {
  8735. font : Dotum,8,bold;
  8736. color : #003399;
  8737. selectfont : Dotum,8,bold;
  8738. selectcolor : #003399;
  8739. }
  8740. /* To */
  8741. Grid.grd_schdule_termTo
  8742. {
  8743. background : transparent;
  8744. border : none;
  8745. font : Dotum,8;
  8746. color : #333333;
  8747. align : center middle;
  8748. }
  8749. Grid.grd_schdule_termTo>#head
  8750. {
  8751. border : 1 solid #94a5b0,1 solid #94a5b0,none,1 solid #94a5b0;
  8752. cellalign : center middle;
  8753. cellbackground : @gradation;
  8754. cellgradation : linear 0,0 #e0e4e7 0,100 #cfd7dd;
  8755. cellcolor : #798b99;
  8756. cellfont : Dotum,8,bold ;
  8757. cellline : none;
  8758. cellpadding : 1 0 0 0;
  8759. }
  8760. Grid.grd_schdule_termTo>#head>Cell.sun
  8761. {
  8762. color : #df5e00;
  8763. cellcolor : #df5e00;
  8764. }
  8765. Grid.grd_schdule_termTo>#head>Cell.sat
  8766. {
  8767. color : #1a86ba;
  8768. cellcolor : #1a86ba;
  8769. }
  8770. Grid.grd_schdule_termTo>#body
  8771. {
  8772. background : transparent url('IMG::nu/img_term_schduleBg.png') stretch 50,0;
  8773. border : 1 solid #94a5b0, 1 solid #94a5b0, 1 solid #94a5b0, 1 solid #94a5b0;
  8774. font : Dotum,8;
  8775. color : #848484;
  8776. cellpadding : 0 0 0 0;
  8777. cellbackground : transparent;
  8778. cellbackground2 : transparent;
  8779. cellalign : center middle;
  8780. cellline : none;
  8781. celllinetype: ;
  8782. cellfont : Dotum,8;
  8783. cellcolor : #848484;
  8784. selectbackground: url('IMG::nu/img_termCaltoBg.png');
  8785. selectborder : none, none, none, 1 solid #ffffff;
  8786. selectline : none;
  8787. selectfont : Dotum,8,bold;
  8788. selectcolor : #ffffff;
  8789. }
  8790. Grid.grd_schdule_termTo>#body:mouseover
  8791. {
  8792. cellbackground : url('IMG::nu/img_termCaltoBg.png');
  8793. cellbackground2 : url('IMG::nu/img_termCaltoBg.png');
  8794. cellfont : Dotum,8,bold;
  8795. cellcolor : #ffffff;
  8796. selectbackground: url('IMG::nu/img_termCaltoBg.png');
  8797. selectcolor : #ffffff;
  8798. }
  8799. Grid.grd_schdule_termTo>#body>Cell.sch_today
  8800. {
  8801. background : url('IMG::nu/img_termcalBg.png');
  8802. background2 : url('IMG::nu/img_termcalBg.png');
  8803. font : Dotum,8,bold;
  8804. color : #ffffff;
  8805. selectbackground : url('IMG::nu/img_termcalBg.png');
  8806. selectfont : Dotum,8,bold;
  8807. selectcolor : #ffffff;
  8808. }
  8809. /* 페이지타이틀 */
  8810. Static.st_main_til
  8811. {
  8812. background : url('IMG::nu/ico_bullet1.png') left middle;
  8813. padding : 0 0 0 25;
  8814. font : Dotum,11,bold;
  8815. color : #091e74;
  8816. }
  8817. /* 항목설명 도움말 타이틀 */
  8818. Static.st_help_til
  8819. {
  8820. background : url('IMG::nu/ico_help.png') left middle;
  8821. font : font,9,bold;
  8822. color : #333333;
  8823. padding : 0 0 0 22;
  8824. }
  8825. /* 진료기록메인 */
  8826. Static.st_boxTilT_PD
  8827. {
  8828. background : #cce8ff;
  8829. border : 1 solid #b0c9de;
  8830. padding : 0;
  8831. align : center middle;
  8832. font : Dotum,9;
  8833. color : #00305c;
  8834. }
  8835. Static.st_boxTilT
  8836. {
  8837. background : #e8f2fb;
  8838. border : 1 solid #9db7c6;
  8839. padding : 0;
  8840. align : center middle;
  8841. font : Dotum,9;
  8842. color : #323335;
  8843. }
  8844. Static.st_dfLeft
  8845. {
  8846. background : none;
  8847. border : 0 none ;
  8848. align : left middle;
  8849. padding : 0;
  8850. font : Dotum,9 ;
  8851. color : #555555;
  8852. }
  8853. Grid.grd_PD_remark
  8854. {
  8855. border : 1 solid #000000ff
  8856. }
  8857. Grid.grd_PD_remark>#head
  8858. {
  8859. border : 0 solid #92bcca, 1 solid #B0B0B0, none, 1 solid #B0B0B0;
  8860. cellalign : center middle;
  8861. cellbackground : #ebeef1ff;
  8862. cellfont : Dotum,9 ;
  8863. }
  8864. Grid.grd_PD_remark>#body
  8865. {
  8866. border : none, 1 solid #B0B0B0, 0 solid #92bcca, 1 solid #B0B0B0;
  8867. }
  8868. Grid.grd_PD_remark>#controlcombo>#dropbutton
  8869. {
  8870. background : @gradation;
  8871. gradation : linear 0,0 #eeeeee 0,100 #d2d2d2;
  8872. border : none, none, none, 2 double #cacaca #f2f2f2;
  8873. margin : 1 1 1 0;
  8874. image : IMG::nu/btn_drop_N.png;
  8875. imagealign : center middle;
  8876. pusheddrawoffset : 0 0;
  8877. cursor : arrow ;
  8878. }
  8879. Grid.grd_PD_remark>#controlcombo>#dropbutton:mouseover
  8880. {
  8881. background : @gradation;
  8882. gradation : linear 0,0 #e7f6f9 0,100 #b7e4ec;
  8883. border : none, none, none, 2 double #addee7 #f2f2f2;
  8884. image : IMG::nu/btn_drop_N.png;
  8885. cursor : arrow ;
  8886. }
  8887. Grid.grd_PD_remark>#controlcombo>#dropbutton:pushed
  8888. {
  8889. background : @gradation;
  8890. gradation : linear 0,0 #eeeeee 0,100 #d2d2d2;
  8891. border : none, none, none, 2 double #cacaca #f2f2f2;
  8892. margin : 1 1 1 0;
  8893. image : IMG::nu/btn_drop_N.png;
  8894. imagealign : center middle;
  8895. pusheddrawoffset : 0 0;
  8896. cursor : arrow ;
  8897. }
  8898. Grid.grd_PD_remark>#controlcombo>#dropbutton:disabled
  8899. {
  8900. gradation : linear 0,0 #f6f6f6 0,100 #e8e8e8;
  8901. border : none, none, none, 1 solid #f2f2f2;
  8902. image : IMG::nu/btn_drop_D.png;
  8903. }
  8904. /* 진료기록 remark
  8905. margin : -1 -1 -1 -1;
  8906. */
  8907. Grid.grd_PD_remark>#controltextarea
  8908. {
  8909. background : #ffffff;
  8910. border : 0 solid #d1d1d1;
  8911. align : left middle ;
  8912. font : Dotum,9 ;
  8913. color : #000000;
  8914. padding : 0;
  8915. caretcolor : #3da2df;
  8916. selectbackground : #ffffff;
  8917. selectcolor : #000000;
  8918. }
  8919. Grid.grd_PD_remark>#controltextarea:mouseover, Grid.grd_PD_remark>#controltextarea:focused
  8920. {
  8921. background : #ffffff;
  8922. border : 0 solid #32b3d1;
  8923. color : #000000;
  8924. caretcolor : #3da2df;
  8925. compositecolor : #ffffff;
  8926. selectbackground: #3da2df;
  8927. selectcolor : #ffffff;
  8928. padding : 0;
  8929. }
  8930. Grid.grd_PD_remark>#controltextarea:disabled
  8931. {
  8932. background : #f5f5f5;
  8933. border : 0 solid #cdcdcd;
  8934. color : #4d4d4d;
  8935. padding : 0;
  8936. }
  8937. /* Col header */
  8938. Grid>#body>Cell.grd_headerCol
  8939. {
  8940. background : url('IMG::nu/img_headercol.png') stretch 5,5;
  8941. background2 : url('IMG::nu/img_headercol.png') stretch 5,5;
  8942. padding : 0 0 0 5;
  8943. color : #000000;
  8944. selectbackground : url('IMG::nu/img_headercol.png') stretch 5,5;
  8945. selectcolor : #000000;
  8946. cellcolor : #000000;
  8947. }
  8948. Shape.sh_medirec
  8949. {
  8950. border:0 none #808080ff;
  8951. background : none;
  8952. fillbrush:none transparent true;
  8953. strokepen: 1 solid #000000ff;
  8954. }
  8955. Div.ed_mask_medirec_est
  8956. {
  8957. background : transparent;
  8958. border : 0 solid #808080;
  8959. bordertype : normal 0 0;
  8960. }
  8961. Div.ed_mask_medirec_est:disabled
  8962. {
  8963. background : #e6e6e6;
  8964. border : 0 none transparent;
  8965. }
  8966. MaskEdit.ed_mask_medirec_est2:disabled
  8967. {
  8968. background : #e6e6e6;
  8969. border : 0 solid #808080;
  8970. bordertype : normal 0 0;
  8971. color : #4d4d4d;
  8972. padding : 0 2 0 2;
  8973. }
  8974. MaskEdit.ed_mask_medirec_est
  8975. {
  8976. background : URL('IMG::nu/img_edt_medirec_est.png') no-repeat ;
  8977. border : 1 solid #808080;
  8978. bordertype : normal 0 0 ;
  8979. align : left middle;
  8980. font : Dotum,9 ;
  8981. color : #333333;
  8982. padding : 0 2 0 2;
  8983. caretcolor : #3da2df;
  8984. selectbackground : #ffffff;
  8985. selectcolor : #333333;
  8986. }
  8987. MaskEdit.ed_mask_medirec_est:mouseover
  8988. {
  8989. background : URL('IMG::nu/img_edt_medirec_est.png') no-repeat ;
  8990. border : 1 solid #32b3d1;
  8991. glow : 1 #96dcec;
  8992. }
  8993. MaskEdit.ed_mask_medirec_est:focused
  8994. {
  8995. background : URL('IMG::nu/img_edt_medirec_est.png') no-repeat ;
  8996. border : 1 solid #32b3d1;
  8997. caretcolor : #3da2df;
  8998. compositecolor : #ffffff;
  8999. selectbackground : #3da2df;
  9000. selectcolor : #ffffff;
  9001. padding : 0 2 0 2;
  9002. glow : 1 #96dcec;
  9003. }
  9004. MaskEdit.ed_mask_medirec_est:disabled
  9005. {
  9006. background : #e6e6e6;
  9007. border : 1 solid #808080;
  9008. bordertype : normal 0 0;
  9009. color : #4d4d4d;
  9010. padding : 0 2 0 2;
  9011. }
  9012. MaskEdit.ed_mask_medirec_est[readonly="true"]
  9013. {
  9014. background : #e6e6e6;
  9015. border : 1 solid #808080;
  9016. padding : 0 2 0 2;
  9017. }
  9018. MaskEdit.ed_mask_medirec_est[readonly="true"]:mouseover, MaskEdit.ed_mask_medirec_est[readonly="true"]:focused, MaskEdit.ed_mask_medirec_est[readonly="true"]:disabled
  9019. {
  9020. background : #e6e6e6;
  9021. border : 1 solid #808080;
  9022. padding : 0 2 0 2;
  9023. }
  9024. MaskEdit.ed_mask_medirec_est[valid="false"], MaskEdit.ed_mask_medirec_est[valid="false"]:mouseover
  9025. {
  9026. background : #ffd7d5 URL('IMG::nu/img_edt_medirec_est.png') no-repeat;
  9027. }
  9028. MaskEdit.ed_mask_medirec
  9029. {
  9030. background : #ffffff;
  9031. border : 1 solid #808080;
  9032. bordertype : normal 0 0 ;
  9033. align : left middle;
  9034. font : Dotum,9 ;
  9035. color : #333333;
  9036. padding : 0 2 0 2;
  9037. caretcolor : #3da2df;
  9038. selectbackground : #ffffff;
  9039. selectcolor : #333333;
  9040. }
  9041. MaskEdit.ed_mask_medirec:mouseover
  9042. {
  9043. background : #ffffff;
  9044. border : 1 solid #32b3d1;
  9045. glow : 1 #96dcec;
  9046. }
  9047. MaskEdit.ed_mask_medirec:focused
  9048. {
  9049. background : #ffffff;
  9050. border : 1 solid #32b3d1;
  9051. caretcolor : #3da2df;
  9052. compositecolor : #ffffff;
  9053. selectbackground : #3da2df;
  9054. selectcolor : #ffffff;
  9055. padding : 0 2 0 2;
  9056. glow : 1 #96dcec;
  9057. }
  9058. MaskEdit.ed_mask_medirec:disabled
  9059. {
  9060. background : #e6e6e6;
  9061. border : 1 solid #808080;
  9062. bordertype : normal 0 0;
  9063. color : #4d4d4d;
  9064. padding : 0 2 0 2;
  9065. }
  9066. MaskEdit.ed_mask_medirec[readonly="true"]
  9067. {
  9068. background : #e6e6e6;
  9069. border : 1 solid #808080;
  9070. padding : 0 2 0 2;
  9071. }
  9072. MaskEdit.ed_mask_medirec[type="number"],MaskEdit.ed_mask_medirec_est[type="number"]
  9073. {
  9074. align : right middle;
  9075. }
  9076. MaskEdit.ed_mask_medirec[valid="false"], MaskEdit.ed_mask_medirec[valid="false"]:mouseover
  9077. {
  9078. background : #ffd7d5;
  9079. }
  9080. MaskEdit.ed_mask_medirec[readonly="true"]:mouseover, MaskEdit.ed_mask_medirec[readonly="true"]:focused, MaskEdit.ed_mask_medirec[readonly="true"]:disabled
  9081. {
  9082. background : #e6e6e6;
  9083. border : 1 solid #808080;
  9084. padding : 0 2 0 2;
  9085. }
  9086. Edit.ed_medirec_est
  9087. {
  9088. background : URL('IMG::nu/img_edt_medirec_est.png') no-repeat;
  9089. border : 1 solid #808080;
  9090. bordertype : normal 0 0 ;
  9091. align : left middle;
  9092. font : Dotum,9 ;
  9093. color : #333333;
  9094. padding : 0 2 0 2;
  9095. caretcolor : #3da2df;
  9096. selectbackground : #ffffff;
  9097. selectcolor : #333333;
  9098. }
  9099. Edit.ed_medirec_est:mouseover
  9100. {
  9101. background : URL('IMG::nu/img_edt_medirec_est.png') no-repeat;
  9102. border : 1 solid #32b3d1;
  9103. padding : 0 2 0 2;
  9104. glow : 1 #96dcec;
  9105. }
  9106. Edit.ed_medirec_est:focused
  9107. {
  9108. background : URL('IMG::nu/img_edt_medirec_est.png') no-repeat;
  9109. border : 1 solid #32b3d1;
  9110. color : #333333;
  9111. caretcolor : #3da2df;
  9112. compositecolor : #ffffff;
  9113. selectbackground : #3da2df;
  9114. selectcolor : #ffffff;
  9115. padding : 0 2 0 2;
  9116. glow : 1 #96dcec;
  9117. }
  9118. Edit.ed_medirec_est:disabled
  9119. {
  9120. background : #e6e6e6;
  9121. border : 1 solid #808080;
  9122. bordertype : normal 0 0;
  9123. color : #4d4d4d;
  9124. padding : 0 2 0 2;
  9125. }
  9126. Edit.ed_medirec_est[readonly="true"]
  9127. {
  9128. background : #e6e6e6;
  9129. border : 1 solid #808080;
  9130. padding : 0 2 0 2;
  9131. }
  9132. Edit.ed_medirec_est[readonly="true"]:mouseover, Edit.ed_medirec_est[readonly="true"]:focused, Edit.ed_medirec_est[readonly="true"]:disabled
  9133. {
  9134. background : #e6e6e6;
  9135. border : 1 solid #808080;
  9136. padding : 0 2 0 2;
  9137. }
  9138. Edit.ed_medirec
  9139. {
  9140. background : #ffffff;
  9141. border : 1 solid #808080;
  9142. bordertype : normal 0 0 ;
  9143. align : left middle;
  9144. font : Dotum,9 ;
  9145. color : #333333;
  9146. padding : 0 2 0 2;
  9147. caretcolor : #3da2df;
  9148. selectbackground : #ffffff;
  9149. selectcolor : #333333;
  9150. }
  9151. Edit.ed_medirec:mouseover
  9152. {
  9153. background : #ffffff;
  9154. border : 1 solid #32b3d1;
  9155. padding : 0 2 0 2;
  9156. glow : 1 #96dcec;
  9157. }
  9158. Edit.ed_medirec:focused
  9159. {
  9160. background : #ffffff;
  9161. border : 1 solid #32b3d1;
  9162. color : #333333;
  9163. caretcolor : #3da2df;
  9164. compositecolor : #ffffff;
  9165. selectbackground : #3da2df;
  9166. selectcolor : #ffffff;
  9167. padding : 0 2 0 2;
  9168. glow : 1 #96dcec;
  9169. }
  9170. Edit.ed_medirec:disabled
  9171. {
  9172. background : #e6e6e6;
  9173. border : 1 solid #808080;
  9174. bordertype : normal 0 0;
  9175. color : #4d4d4d;
  9176. padding : 0 2 0 2;
  9177. }
  9178. Edit.ed_medirec[readonly="true"]
  9179. {
  9180. background : #e6e6e6;
  9181. border : 1 solid #808080;
  9182. padding : 0 2 0 2;
  9183. }
  9184. Edit.ed_medirec[readonly="true"]:mouseover, Edit.ed_medirec[readonly="true"]:focused, Edit.ed_medirec[readonly="true"]:disabled
  9185. {
  9186. background : #e6e6e6;
  9187. border : 1 solid #808080;
  9188. padding : 0 2 0 2;
  9189. }
  9190. Calendar.ed_mask_medirec_est
  9191. {
  9192. background : URL('IMG::nu/img_edt_medirec_est.png') no-repeat ;
  9193. align : left middle;
  9194. font : Dotum,9 ;
  9195. color : #333333;
  9196. padding : 0 2 0 2;
  9197. caretcolor : #3da2df;
  9198. selectbackground : #ffffff;
  9199. selectcolor : #333333;
  9200. border : 1 solid #808080;
  9201. bordertype : normal 0 0 ;
  9202. }
  9203. /*
  9204. Calendar.ed_mask_medirec_est
  9205. {
  9206. background : URL('IMG::nu/img_edt_medirec_est.png') no-repeat ;
  9207. border : 1 solid #808080;
  9208. bordertype : normal 0 0 ;
  9209. font : Dotum,9;
  9210. color : #333333;
  9211. align : left middle;
  9212. buttonsize : 15;
  9213. daybackground : transparent;
  9214. dayborder : 0 none #ffffff00;
  9215. dayfont : Dotum,8;
  9216. daycolor : #46463d;
  9217. daysize : 24 20;
  9218. popupalign : ;
  9219. popupbackground : transparent;
  9220. popupborder : 0 none;
  9221. popupbordertype : normal;
  9222. popupsize : 229 190;
  9223. usetrailingday : true;
  9224. trailingdaycolor : #b0b0b0;
  9225. }
  9226. */
  9227. Calendar.ed_mask_medirec_est:mouseover
  9228. {
  9229. background : URL('IMG::nu/img_edt_medirec_est.png') no-repeat ;
  9230. glow : 1 #96dcec;
  9231. }
  9232. Calendar.ed_mask_medirec_est:focused
  9233. {
  9234. background : URL('IMG::nu/img_edt_medirec_est.png') no-repeat ;
  9235. caretcolor : #3da2df;
  9236. compositecolor : #ffffff;
  9237. selectbackground : #3da2df;
  9238. selectcolor : #ffffff;
  9239. padding : 0 2 0 2;
  9240. glow : 1 #96dcec;
  9241. }
  9242. Calendar.ed_mask_medirec_est:disabled
  9243. {
  9244. background : #e6e6e6;
  9245. bordertype : normal 0 0;
  9246. color : #4d4d4d;
  9247. padding : 0 2 0 2;
  9248. }
  9249. Calendar.ed_mask_medirec_est[readonly="true"]
  9250. {
  9251. background : #e6e6e6;
  9252. padding : 0 0 0 0;
  9253. buttonsize : -25;
  9254. border : 1 solid #808080;
  9255. bordertype : normal 0 0 ;
  9256. }
  9257. Calendar.ed_mask_medirec_est[readonly="true"]:mouseover, Calendar.ed_mask_medirec_est[readonly="true"]:focused, Calendar.ed_mask_medirec_est[readonly="true"]:disabled
  9258. {
  9259. background : #e6e6e6;
  9260. padding : 0 0 0 0;
  9261. buttonsize : -25;
  9262. }
  9263. Calendar.ed_mask_medirec_est[valid="false"], Calendar.ed_mask_medirec_est[valid="false"]:mouseover
  9264. {
  9265. background : #ffd7d5 URL('IMG::nu/img_edt_medirec_est.png') no-repeat;
  9266. }
  9267. Calendar.ed_mask_medirec
  9268. {
  9269. background : #ffffff;
  9270. align : left middle;
  9271. font : Dotum,9 ;
  9272. color : #333333;
  9273. padding : 0 2 0 2;
  9274. caretcolor : #3da2df;
  9275. selectbackground : #ffffff;
  9276. selectcolor : #333333;
  9277. border : 1 solid #808080;
  9278. bordertype : normal 0 0 ;
  9279. }
  9280. Calendar.ed_mask_medirec:mouseover
  9281. {
  9282. background : #ffffff;
  9283. glow : 1 #96dcec;
  9284. }
  9285. Calendar.ed_mask_medirec:focused
  9286. {
  9287. background : #ffffff;
  9288. caretcolor : #3da2df;
  9289. compositecolor : #ffffff;
  9290. selectbackground : #3da2df;
  9291. selectcolor : #ffffff;
  9292. padding : 0 2 0 2;
  9293. glow : 1 #96dcec;
  9294. }
  9295. Calendar.ed_mask_medirec:disabled
  9296. {
  9297. background : #e6e6e6;
  9298. border : 1 solid #808080;
  9299. bordertype : normal 0 0 ;
  9300. color : #4d4d4d;
  9301. }
  9302. Calendar.ed_mask_medirec[type="number"],Calendar.ed_mask_medirec_est[type="number"]
  9303. {
  9304. align : right middle;
  9305. }
  9306. Calendar.ed_mask_medirec[valid="false"], Calendar.ed_mask_medirec[valid="false"]:mouseover
  9307. {
  9308. background : #ffd7d5;
  9309. }
  9310. Calendar.ed_mask_medirec[readonly="true"]
  9311. {
  9312. background : #e6e6e6;
  9313. border : 1 solid #808080;
  9314. bordertype : normal 0 0 ;
  9315. buttonsize : -25;
  9316. padding : 0 0 0 0;
  9317. }
  9318. Calendar.ed_mask_medirec[readonly="true"]:mouseover, Calendar.ed_mask_medirec[readonly="true"]:focused, Calendar.ed_mask_medirec[readonly="true"]:pushed, Calendar.ed_mask_medirec[readonly="true"]:selected
  9319. {
  9320. background : #e6e6e6;
  9321. buttonsize : -25;
  9322. padding : 0 0 0 0;
  9323. }
  9324. /* buttonbackground : URL('IMG::images/bg_radio_N.png') left top; */
  9325. Radio.rd_medirec_est
  9326. {
  9327. background : transparent;
  9328. border : 0 none ;
  9329. font : Dotum,9 ;
  9330. padding : 0;
  9331. color : #333333 ;
  9332. align : left middle;
  9333. buttonimage : url('IMG::nu/btn_radio_medirec1_est_N.png');
  9334. buttonalign : left center;
  9335. buttonborder : none;
  9336. buttonsize : 14;
  9337. buttonpadding : 0;
  9338. textpadding : 0 0 0 2;
  9339. buttonbackground : url('IMG::nu/img_radioBg_medirec1_est_O.png');
  9340. focusborder : 1, solid, #32b3d1;
  9341. }
  9342. Radio.rd_medirec_est:mouseover, Radio.rd_medirec_est:focused, Radio.rd_medirec_est:selected
  9343. {
  9344. buttonborder : none;
  9345. buttonbackground : url('IMG::nu/img_radioBg_medirec1_est_O.png');
  9346. glow : 1 #96dcec;
  9347. }
  9348. /*
  9349. Radio.rd_medirec_est:pushed
  9350. {
  9351. buttonborder : none;
  9352. buttonbackground : URL('IMG::nu/img_radioBg_medirec1_est_O.png') stretch;
  9353. glow : 1 #96dcec;
  9354. }
  9355. Radio.rd_medirec_est:disabled
  9356. {
  9357. color : #4d4d4d;
  9358. buttonborder : none;
  9359. buttonbackground : url('IMG::nu/img_radioBg_medirec1_D.png');
  9360. }
  9361. */
  9362. Radio.rd_medirec_est:disabled
  9363. {
  9364. color : #262626;
  9365. buttonbackground : #E2E5E8;
  9366. buttonborder : 1 solid #BAC1C6;
  9367. buttonimage : url('theme://images/icon_radio_D.png');
  9368. }
  9369. /*
  9370. Radio.rd_medirec_est[readonly="true"]
  9371. {
  9372. color : #333333;
  9373. buttonborder : none;
  9374. buttonbackground : url('IMG::nu/img_radioBg_medirec1_D.png');
  9375. }
  9376. Radio.rd_medirec_est[readonly="true"]:mouseover, Radio.rd_medirec_est[readonly="true"]:focused, Radio.rd_medirec_est[readonly="true"]:disabled
  9377. {
  9378. color : #333333;
  9379. buttonborder : none;
  9380. buttonbackground : url('IMG::nu/img_radioBg_medirec1_D.png');
  9381. }
  9382. */
  9383. Radio.rd_medirec_est[readonly="true"]
  9384. {
  9385. color : #333333;
  9386. buttonborder : none;
  9387. buttonbackground : #E2E5E8;
  9388. buttonimage : url('theme://images/icon_radio_D.png');
  9389. }
  9390. Radio.rd_medirec_est[readonly="true"]:mouseover, Radio.rd_medirec_est[readonly="true"]:focused, Radio.rd_medirec_est[readonly="true"]:disabled
  9391. {
  9392. color : #333333;
  9393. buttonborder : none;
  9394. buttonbackground : #E2E5E8;
  9395. buttonimage : url('theme://images/icon_radio_D.png');
  9396. }
  9397. Radio.rd_medirec
  9398. {
  9399. background : transparent;
  9400. border : 0 none ;
  9401. font : Dotum,9 ;
  9402. padding : 0;
  9403. color : #333333 ;
  9404. align : left middle;
  9405. buttonimage : URL('IMG::nu/btn_radio_medirec1_N.png');
  9406. buttonalign : left center;
  9407. buttonborder : none;
  9408. buttonsize : 14;
  9409. buttonpadding : 0;
  9410. textpadding : 0 0 0 2;
  9411. buttonbackground : url('IMG::nu/img_radioBg_medirec1_O.png');
  9412. focusborder : 1, solid, #32b3d1;
  9413. }
  9414. Radio.rd_medirec:mouseover, Radio.rd_medirec:focused, Radio.rd_medirec:selected
  9415. {
  9416. buttonborder : none;
  9417. buttonbackground : url('IMG::nu/img_radioBg_medirec1_O.png');
  9418. glow : 1 #96dcec;
  9419. }
  9420. /*
  9421. Radio.rd_medirec:pushed
  9422. {
  9423. buttonborder : none;
  9424. buttonbackground : URL('theme://images/bg_radio_P.png') stretch left top;
  9425. glow : 1 #96dcec;
  9426. }
  9427. Radio.rd_medirec:disabled
  9428. {
  9429. color : #4d4d4d;
  9430. buttonborder : none;
  9431. buttonbackground : url('IMG::nu/img_radioBg_medirec1_D.png');
  9432. }
  9433. */
  9434. Radio.rd_medirec:disabled
  9435. {
  9436. color : #262626;
  9437. buttonbackground : #E2E5E8;
  9438. buttonborder : 1 solid #BAC1C6;
  9439. buttonimage : url('theme://images/icon_radio_D.png');
  9440. }
  9441. Radio.rd_medirec[columncount="-1"], Radio.rd_medirec_est[columncount="-1"]
  9442. {
  9443. textpadding : 0 14 0 2;
  9444. }
  9445. /*
  9446. Radio.rd_medirec[readonly="true"]
  9447. {
  9448. color : #333333;
  9449. buttonborder : none;
  9450. buttonbackground : url('IMG::nu/img_radioBg_medirec1_D.png');
  9451. }
  9452. Radio.rd_medirec[readonly="true"]:mouseover, Radio.rd_medirec[readonly="true"]:focused, Radio.rd_medirec[readonly="true"]:disabled
  9453. {
  9454. color : #333333;
  9455. buttonborder : none;
  9456. buttonbackground : url('IMG::nu/img_radioBg_medirec1_D.png');
  9457. }
  9458. */
  9459. Radio.rd_medirec[readonly="true"]
  9460. {
  9461. color : #333333;
  9462. buttonborder : none;
  9463. buttonbackground : #E2E5E8;
  9464. buttonimage : url('theme://images/icon_radio_D.png');
  9465. }
  9466. Radio.rd_medirec[readonly="true"]:mouseover, Radio.rd_medirec[readonly="true"]:focused, Radio.rd_medirec[readonly="true"]:disabled
  9467. {
  9468. color : #333333;
  9469. buttonborder : none;
  9470. buttonbackground : #E2E5E8;
  9471. buttonimage : url('theme://images/icon_radio_D.png');
  9472. }
  9473. CheckBox.ck_medirec_est
  9474. {
  9475. background : transparent;
  9476. border : 0 none ;
  9477. font : Dotum,9 ;
  9478. padding : 0 0 0 2;
  9479. color : #333333 ;
  9480. align : left middle;
  9481. buttonimage : URL('IMG::nu/img_medire1_est_check.png');
  9482. buttonalign : left center;
  9483. buttonborder : 2 double #f29f4e #fcfcfc ;
  9484. buttonbordertype : normal 0 0 ;
  9485. buttonsize : 13;
  9486. textpadding : 1 0 0 0;
  9487. buttonbackground: @gradation;
  9488. buttongradation : liner 0,0 #ffd8b2 100,100 #ffd8b2;
  9489. focusborder : 0 none;
  9490. }
  9491. CheckBox.ck_medirec_est:mouseover, CheckBox.ck_medirec_est:focused, CheckBox.ck_medirec_est:selected, CheckBox.ck_medirec_est:pushed
  9492. {
  9493. buttonbackground: @gradation;
  9494. buttonimage : URL('IMG::nu/img_medire1_est_check.png');
  9495. buttonborder : 2 double #f29f4e #fcfcfc ;
  9496. buttongradation : liner 0,0 #ffd8b2 100,100 #ffd8b2;
  9497. glow : 1 #96dcec;
  9498. }
  9499. CheckBox.ck_medirec_est:disabled
  9500. {
  9501. color : #4d4d4d;
  9502. buttonborder : 2 double #b1b1b1 #fcfcfc;
  9503. buttongradation : liner 0,0 #b1b1b1 100,100 #b1b1b1;
  9504. }
  9505. CheckBox.ck_medirec_est[readonly="true"]
  9506. {
  9507. color : #333333;
  9508. buttonborder : 2 double #b1b1b1 #fcfcfc;
  9509. buttongradation : liner 0,0 #b1b1b1 100,100 #b1b1b1;
  9510. }
  9511. CheckBox.ck_medirec_est[readonly="true"]:mouseover, CheckBox.ck_medirec_est[readonly="true"]:focused, CheckBox.ck_medirec_est[readonly="true"]:disabled
  9512. {
  9513. color : #333333;
  9514. buttonborder : 2 double #b1b1b1 #fcfcfc;
  9515. buttongradation : liner 0,0 #b1b1b1 100,100 #b1b1b1;
  9516. }
  9517. CheckBox.ck_medirec
  9518. {
  9519. background : transparent;
  9520. border : 0 none ;
  9521. font : Dotum,9 ;
  9522. padding : 0 0 0 2;
  9523. color : #333333 ;
  9524. align : left middle;
  9525. buttonimage : URL('IMG::nu/img_medire1_check.png');
  9526. buttonalign : left center;
  9527. buttonborder : 2 double #32b3d1 #fcfcfc;
  9528. buttonbordertype : normal 0 0 ;
  9529. buttonsize : 13;
  9530. textpadding : 1 0 0 0;
  9531. buttonbackground: @gradation;
  9532. buttongradation : liner 0,0 #ffffff 100,100 #ffffff;
  9533. focusborder : 0 none;
  9534. }
  9535. CheckBox.ck_medirec:mouseover, CheckBox.ck_medirec:focused, CheckBox.ck_medirec:selected
  9536. {
  9537. buttonborder : 2 double #32b3d1 #fcfcfc;
  9538. buttongradation : liner 0,0 #ffffff 100,100 #ffffff;
  9539. glow : 1 #96dcec;
  9540. }
  9541. CheckBox.ck_medirec:disabled
  9542. {
  9543. color : #4d4d4d;
  9544. buttonborder : 2 double #b1b1b1 #fcfcfc;
  9545. buttongradation : liner 0,0 #b1b1b1 100,100 #b1b1b1;
  9546. }
  9547. CheckBox.ck_medirec[readonly="true"]
  9548. {
  9549. color : #333333;
  9550. buttonborder : 2 double #b1b1b1 #fcfcfc;
  9551. buttongradation : liner 0,0 #b1b1b1 100,100 #b1b1b1;
  9552. }
  9553. CheckBox.ck_medirec[readonly="true"]:mouseover, CheckBox.ck_medirec[readonly="true"]:focused, CheckBox.ck_medirec[readonly="true"]:disabled
  9554. {
  9555. color : #333333;
  9556. buttonborder : 2 double #b1b1b1 #fcfcfc;
  9557. buttongradation : liner 0,0 #b1b1b1 100,100 #b1b1b1;
  9558. }
  9559. Button.bn_block_min, Button.bn_block_min:disabled
  9560. {
  9561. image : IMG::nu/ico_WF_max.png;
  9562. imagealign : center middle;
  9563. imagepadding : 1 0 0 2;
  9564. focusborder : 0 none ;
  9565. pusheddrawoffset : 0 0;
  9566. cursor : hand;
  9567. }
  9568. Button.bn_block_min:mouseover, Button.bn_block_min:pushed, Button.bn_block_min:focused, Button.bn_block_min:selected
  9569. {
  9570. image : IMG::nu/ico_WF_maxO.png;
  9571. }
  9572. Button.bn_block_max, Button.bn_block_max:disabled
  9573. {
  9574. image : IMG::nu/ico_WF_min.png;
  9575. imagealign : center middle;
  9576. imagepadding : 1 0 0 2;
  9577. focusborder : 0 none ;
  9578. pusheddrawoffset : 0 0;
  9579. cursor : hand;
  9580. }
  9581. Button.bn_block_max:mouseover, Button.bn_block_max:pushed, Button.bn_block_max:focused, Button.bn_block_max:selected
  9582. {
  9583. image : IMG::nu/ico_WF_minO.png;
  9584. }
  9585. Button.bn_medirec_basic
  9586. {
  9587. background : url('IMG::nu/bn_medirec_basicN.png') stretch 7,7;
  9588. border : none;
  9589. font : Dotum,9;
  9590. color : #134a89;
  9591. }
  9592. Button.bn_medirec_basic:mouseover, Button.bn_medirec_basic:focused
  9593. {
  9594. background : url('IMG::nu/bn_medirec_basicO.png') stretch 7,7;
  9595. shadow : 0,1 1 #00000033;
  9596. color : #134a89;
  9597. }
  9598. Button.bn_medirec_basic:pushed, Button.bn_medirec_basic:selected
  9599. {
  9600. background : url('IMG::nu/bn_medirec_basicO.png') stretch 7,7;
  9601. shadow : 0,1 1 #00000033;
  9602. color : #134a89;
  9603. }
  9604. Button.bn_medirec_basic:disabled
  9605. {
  9606. background : url('IMG::nu/bn_blockDis_new.png') stretch 7,7;
  9607. border : none;
  9608. bordertype : round 3 3;
  9609. font : Dotum,9 ;
  9610. color : #919191;
  9611. align : center middle;
  9612. }
  9613. /* 블럭버튼 */
  9614. Button.bn_block
  9615. {
  9616. background : url('IMG::nu/bn_blockN3.png') stretch 7,7;
  9617. border : none;
  9618. bordertype : round 3 3;
  9619. font : Dotum,9 ;
  9620. color : #595959;
  9621. align : center middle;
  9622. focusborder : 0 none ;
  9623. pusheddrawoffset : 0 0;
  9624. cursor : hand;
  9625. shadow : 0,1 1 #f2f2f2;
  9626. }
  9627. Button.bn_block:mouseover, Button.bn_block:focused
  9628. {
  9629. background : url('IMG::nu/bn_blockO3.png') stretch 7,7;
  9630. border : none;
  9631. color : #595959;
  9632. shadow : 0,1 1 #00000033;
  9633. }
  9634. Button.bn_block:pushed, Button.bn_block:selected
  9635. {
  9636. background : url('IMG::nu/bn_blockP3.png') stretch 7,7;
  9637. border : none;
  9638. color : #595959;
  9639. }
  9640. Button.bn_block:disabled
  9641. {
  9642. background : url('IMG::nu/bn_blockDis_new.png') stretch 7,7;
  9643. border : none;
  9644. bordertype : round 3 3;
  9645. font : Dotum,9 ;
  9646. color : #919191;
  9647. align : center middle;
  9648. }
  9649. Combo.cb_medirec_est
  9650. {
  9651. background : #ffffff url('IMG::nu/img_edt_medirec_est.png') no-repeat;
  9652. color : #333333;
  9653. border : 1 solid #808080;
  9654. bordertype : normal 0 0 ;
  9655. font : Dotum,9 ;
  9656. align : left middle;
  9657. itemheight : 22;
  9658. itemborder : 1 solid #4485ad00;
  9659. itempadding : 0 3 0 6;
  9660. itemcolor : #333333;
  9661. buttonsize : 19;
  9662. }
  9663. Combo.cb_medirec_est:mouseover, Combo.cb_medirec_est:focused
  9664. {
  9665. background : url('IMG::nu/img_edt_medirec_est.png') no-repeat;
  9666. border : 1 solid #32b3d1;
  9667. itemcolor : #333333;
  9668. glow : 1 #96dcec;
  9669. }
  9670. Combo.cb_medirec_est:selected
  9671. {
  9672. background : url('IMG::nu/img_edt_medirec_est.png') no-repeat;
  9673. bordertype : normal 0 0 ;
  9674. border : 1 solid #32b3d1;
  9675. itemcolor : #ffffff;
  9676. itemborder : 1 solid #4485ad;
  9677. }
  9678. Combo.cb_medirec_est:disabled
  9679. {
  9680. background : #e6e6e6;
  9681. border : 1 solid #808080;
  9682. bordertype : normal 0 0;
  9683. color : #4d4d4d;
  9684. }
  9685. Combo.cb_medirec_est>#comboedit
  9686. {
  9687. background : url('IMG::nu/img_edt_medirec_est.png') no-repeat;
  9688. color : #333333;
  9689. border : 0 solid #808080;
  9690. bordertype : normal 0 0 ;
  9691. padding : 0 3 0 1;
  9692. align : left middle;
  9693. font : Dotum,9;
  9694. caretcolor : #3da2df;
  9695. selectbackground : #ffffff;
  9696. selectcolor : #555555;
  9697. cursor : arrow ;
  9698. }
  9699. Combo.cb_medirec_est>#comboedit:mouseover, Combo.cb_medirec_est>#comboedit:focused
  9700. {
  9701. background : url('IMG::nu/img_edt_medirec_est.png') no-repeat;
  9702. color : #333333;
  9703. border : 0 solid #32b3d1;
  9704. bordertype : normal 0 0 ;
  9705. caretcolor : #3da2df;
  9706. compositecolor : #ffffff;
  9707. selectbackground : #3da2df;
  9708. selectcolor : #ffffff;
  9709. cursor : arrow ;
  9710. }
  9711. Combo.cb_medirec_est>#comboedit:disabled
  9712. {
  9713. background : #e6e6e6;
  9714. border : 0 solid #808080;
  9715. bordertype : normal 0 0;
  9716. color : #4d4d4d;
  9717. }
  9718. Combo.cb_medirec_est>#dropbutton, Combo.cb_medirec_est>#dropbutton:selected, Combo.cb_medirec_est>#dropbutton:pushed
  9719. {
  9720. background : #ffffff ;
  9721. gradation : linear 0,0 #eeeeee 0,100 #d2d2d2;
  9722. border : none;
  9723. margin : 1 1 1 0;
  9724. image : IMG::nu/btn_drop_N.png;
  9725. imagealign : center middle;
  9726. pusheddrawoffset : 0 0;
  9727. cursor : arrow ;
  9728. }
  9729. Combo.cb_medirec_est>#dropbutton:mouseover
  9730. {
  9731. background : #ffffff ;
  9732. gradation : linear 0,0 #e7f6f9 0,100 #b7e4ec;
  9733. border : none, none, none, 2 double #addee7 #f2f2f2;
  9734. image : IMG::nu/btn_drop_N.png;
  9735. cursor : arrow ;
  9736. }
  9737. Combo.cb_medirec_est>#dropbutton:disabled
  9738. {
  9739. background : #e6e6e6;
  9740. gradation : linear 0,0 #f6f6f6 0,100 #e8e8e8;
  9741. border : none;
  9742. image : IMG::nu/btn_drop_D.png;
  9743. }
  9744. Combo.cb_medirec_est>#combolist
  9745. {
  9746. border : 1 solid #32b3d1;
  9747. }
  9748. Combo.cb_medirec
  9749. {
  9750. background : #ffffff;
  9751. color : #333333;
  9752. border : 1 solid #808080;
  9753. bordertype : normal 0 0 ;
  9754. font : Dotum,9 ;
  9755. align : left middle;
  9756. itemheight : 22;
  9757. itemborder : 1 solid #4485ad00;
  9758. itempadding : 0 3 0 6;
  9759. itemcolor : #333333;
  9760. buttonsize : 19;
  9761. }
  9762. Combo.cb_medirec:mouseover, Combo.cb_medirec:focused
  9763. {
  9764. background : #ffffff;
  9765. border : 1 solid #32b3d1;
  9766. itemcolor : #333333;
  9767. glow : 1 #96dcec;
  9768. }
  9769. Combo.cb_medirec:selected
  9770. {
  9771. background : #ffffff;
  9772. bordertype : normal 0 0 ;
  9773. border : 1 solid #32b3d1;
  9774. itemcolor : #ffffff;
  9775. itemborder : 1 solid #4485ad;
  9776. }
  9777. Combo.cb_medirec:disabled
  9778. {
  9779. background : #e6e6e6;
  9780. border : 1 solid #808080;
  9781. bordertype : normal 0 0;
  9782. color : #4d4d4d;
  9783. }
  9784. Combo.cb_medirec>#comboedit
  9785. {
  9786. background : transparent;
  9787. color : #333333;
  9788. border : 0 solid #808080;
  9789. bordertype : normal 0 0 ;
  9790. padding : 0 3 0 1;
  9791. align : left middle;
  9792. font : Dotum,9;
  9793. caretcolor : #3da2df;
  9794. selectbackground : #ffffff;
  9795. selectcolor : #555555;
  9796. cursor : arrow ;
  9797. }
  9798. Combo.cb_medirec>#comboedit:mouseover, Combo.cb_medirec>#comboedit:focused
  9799. {
  9800. background : transparent;
  9801. color : #333333;
  9802. border : 0 solid #32b3d1;
  9803. bordertype : normal 0 0 ;
  9804. caretcolor : #3da2df;
  9805. compositecolor : #ffffff;
  9806. selectbackground : #3da2df;
  9807. selectcolor : #ffffff;
  9808. cursor : arrow ;
  9809. }
  9810. Combo.cb_medirec>#comboedit:disabled
  9811. {
  9812. background : #e6e6e6;
  9813. border : 0 solid #808080;
  9814. bordertype : normal 0 0;
  9815. color : #4d4d4d;
  9816. }
  9817. Combo.cb_medirec>#dropbutton, Combo.cb_medirec>#dropbutton:selected, Combo.cb_medirec>#dropbutton:pushed
  9818. {
  9819. background : #ffffff;
  9820. gradation : linear 0,0 #eeeeee 0,100 #d2d2d2;
  9821. border : none;
  9822. margin : 1 1 1 0;
  9823. image : IMG::nu/btn_drop_N.png;
  9824. imagealign : center middle;
  9825. pusheddrawoffset : 0 0;
  9826. cursor : arrow ;
  9827. }
  9828. Combo.cb_medirec>#dropbutton:mouseover
  9829. {
  9830. background : #ffffff;
  9831. gradation : linear 0,0 #e7f6f9 0,100 #b7e4ec;
  9832. border : none, none, none, 2 double #addee7 #f2f2f2;
  9833. image : IMG::nu/btn_drop_N.png;
  9834. cursor : arrow ;
  9835. }
  9836. Combo.cb_medirec>#dropbutton:disabled
  9837. {
  9838. background : #e6e6e6;
  9839. gradation : linear 0,0 #f6f6f6 0,100 #e8e8e8;
  9840. border : none;
  9841. image : IMG::nu/btn_drop_D.png;
  9842. }
  9843. Combo.cb_medirec>#combolist
  9844. {
  9845. border : 1 solid #32b3d1;
  9846. }
  9847. TextArea.ta_medirec_est
  9848. {
  9849. background : white URL('IMG::nu/img_edt_medirec_est.png') no-repeat;
  9850. border : 1 solid #808080;
  9851. bordertype : normal 0 0 ;
  9852. align : left top;
  9853. font : Dotum,9 ;
  9854. color : #333333;
  9855. padding : 3 0 0 7;
  9856. caretcolor : #3da2df;
  9857. selectbackground : #ffffff;
  9858. selectcolor : #333333;
  9859. }
  9860. TextArea.ta_medirec_est:mouseover, TextArea.ta_medirec_est:focused
  9861. {
  9862. background : white URL('IMG::nu/img_edt_medirec_est.png') no-repeat;
  9863. border : 1 solid #32b3d1;
  9864. color : #000000;
  9865. caretcolor : #3da2df;
  9866. compositecolor : #ffffff;
  9867. selectbackground : #3da2df;
  9868. selectcolor : #ffffff;
  9869. padding : 3 0 0 7;
  9870. glow : 1 #96dcec;
  9871. }
  9872. TextArea.ta_medirec_est:disabled
  9873. {
  9874. background : #e6e6e6;
  9875. border : 1 solid #808080;
  9876. bordertype : normal 0 0;
  9877. color : #4d4d4d;
  9878. padding : 3;
  9879. }
  9880. TextArea.ta_medirec_est[readonly="true"]
  9881. {
  9882. background : #e6e6e6;
  9883. border : 1 solid #808080;
  9884. padding : 3;
  9885. }
  9886. TextArea.ta_medirec_est[readonly="true"]:mouseover, TextArea.ta_medirec_est[readonly="true"]:focused, TextArea.ta_medirec_est[readonly="true"]:disabled
  9887. {
  9888. background : #e6e6e6;
  9889. border : 1 solid #808080;
  9890. padding : 3;
  9891. }
  9892. TextArea.ta_medirec
  9893. {
  9894. background : #ffffff;
  9895. border : 1 solid #808080;
  9896. bordertype : normal 0 0 ;
  9897. align : left top;
  9898. font : Dotum,9 ;
  9899. color : #333333;
  9900. padding : 3;
  9901. caretcolor : #3da2df;
  9902. selectbackground : #ffffff;
  9903. selectcolor : #333333;
  9904. }
  9905. TextArea.ta_medirec:mouseover, TextArea.ta_medirec:focused
  9906. {
  9907. background : #ffffff;
  9908. border : 1 solid #32b3d1;
  9909. color : #000000;
  9910. caretcolor : #3da2df;
  9911. compositecolor : #ffffff;
  9912. selectbackground : #3da2df;
  9913. selectcolor : #ffffff;
  9914. padding : 3;
  9915. glow : 1 #96dcec;
  9916. }
  9917. TextArea.ta_medirec:disabled
  9918. {
  9919. background : #e6e6e6;
  9920. border : 1 solid #808080;
  9921. bordertype : normal 0 0;
  9922. color : #4d4d4d;
  9923. padding : 3;
  9924. }
  9925. TextArea.ta_medirec[readonly="true"]
  9926. {
  9927. background : #e6e6e6;
  9928. border : 1 solid #808080;
  9929. padding : 3;
  9930. }
  9931. TextArea.ta_medirec[readonly="true"]:mouseover, TextArea.ta_medirec[readonly="true"]:focused, TextArea.ta_medirec[readonly="true"]:disabled
  9932. {
  9933. background : #e6e6e6;
  9934. border : 1 solid #808080;
  9935. padding : 3;
  9936. }
  9937. Button.btn_block_Ntop
  9938. {
  9939. background : url('IMG::nu/btn_block_NtopN.png');
  9940. border : 0 none;
  9941. bordertype : normal ;
  9942. shadow : drop 0,0 0 gray ;
  9943. }
  9944. Button.btn_block_Ntop:disabled
  9945. {
  9946. background : url('IMG::nu/btn_block_NtopD.png');}
  9947. Button.btn_block_Ntop:pushed, Button.btn_block_Ntop:focused, Button.btn_block_Ntop:selected, Button.btn_block_Ntop:mouseover
  9948. {
  9949. background : url('IMG::nu/btn_block_NtopO.png');
  9950. }
  9951. Button.btn_block_Nbottom
  9952. {
  9953. background : url('IMG::nu/btn_block_NbottomN.png');
  9954. border : 0 none;
  9955. bordertype : normal ;
  9956. shadow : drop 0,0 0 gray ;
  9957. }
  9958. Button.btn_block_Nbottom:disabled
  9959. {
  9960. background : url('IMG::nu/btn_block_NbottomD.png');
  9961. }
  9962. Button.btn_block_Nbottom:pushed, Button.btn_block_Nbottom:focused, Button.btn_block_Nbottom:selected, Button.btn_block_Nbottom:mouseover
  9963. {
  9964. background : url('IMG::nu/btn_block_NbottomO.png');
  9965. }
  9966. Button.icon_search_GHD2, Button.icon_search_GHD2:mouseover, Button.icon_search_GHD2:pushed, Button.icon_search_GHD2:focus, Button.icon_search_GHD2:selected, Button.icon_search_GHD2:disabled
  9967. {
  9968. align : center middle;
  9969. border : none;
  9970. background : url('IMG::nu/grid_expend.png');
  9971. }
  9972. Button.btn_PD_img_N
  9973. {
  9974. background : url('IMG::nu/icon_PD_img_NN.png');
  9975. border : 0 none;
  9976. bordertype : normal ;
  9977. shadow : drop 0,0 0 gray ;
  9978. }
  9979. Button.btn_PD_img_N:disabled
  9980. {
  9981. background : url('IMG::nu/icon_PD_img_DN.png');
  9982. }
  9983. Button.btn_PD_img_N:mouseover, Button.btn_PD_img_N:pushed, Button.btn_PD_img_N:focused, Button.btn_PD_img_N:selected
  9984. {
  9985. background : url('IMG::nu/icon_PD_img_NO.png');
  9986. }
  9987. Button.btn_PD_img_O, Button.btn_PD_img_O:disabled
  9988. {
  9989. background : url('IMG::nu/icon_PD_img_ON.png');
  9990. border : 0 none;
  9991. bordertype : normal ;
  9992. shadow : drop 0,0 0 gray ;
  9993. }
  9994. Button.btn_PD_img_O:mouseover, Button.btn_PD_img_O:pushed, Button.btn_PD_img_O:focused, Button.btn_PD_img_O:selected
  9995. {
  9996. background : url('IMG::nu/icon_PD_img_OO.png');
  9997. }
  9998. Button.btn_PD_hir_N
  9999. {
  10000. background : url('IMG::nu/icon_PD_hir_NN.png');
  10001. border : 0 none;
  10002. bordertype : normal ;
  10003. shadow : drop 0,0 0 gray ;
  10004. }
  10005. Button.btn_PD_hir_N:disabled
  10006. {
  10007. background : url('IMG::nu/icon_PD_hir_DN.png');
  10008. }
  10009. Button.btn_PD_hir_N:mouseover, Button.btn_PD_hir_N:pushed, Button.btn_PD_hir_N:focused, Button.btn_PD_hir_N:selected
  10010. {
  10011. background : url('IMG::nu/icon_PD_hir_NO.png');
  10012. }
  10013. Button.btn_PD_hir_O
  10014. {
  10015. background : url('IMG::nu/icon_PD_hir_ON.png');
  10016. border : 0 none;
  10017. bordertype : normal ;
  10018. shadow : drop 0,0 0 gray ;
  10019. }
  10020. Button.btn_PD_hir_O:disabled
  10021. {
  10022. background : url('IMG::nu/icon_PD_hir_DN.png');
  10023. }
  10024. Button.btn_PD_hir_O:mouseover, Button.btn_PD_hir_O:pushed, Button.btn_PD_hir_O:focused, Button.btn_PD_hir_O:selected
  10025. {
  10026. background : url('IMG::nu/icon_PD_hir_OO.png');
  10027. }
  10028. Button.btn_PD_add_N
  10029. {
  10030. background : url('IMG::nu/icon_PD_add_NN.png');
  10031. border : 0 none;
  10032. bordertype : normal ;
  10033. shadow : drop 0,0 0 gray ;
  10034. }
  10035. Button.btn_PD_add_N:disabled
  10036. {
  10037. background : url('IMG::nu/icon_PD_add_DN.png');
  10038. }
  10039. Button.btn_PD_add_N:mouseover, Button.btn_PD_add_N:pushed, Button.btn_PD_add_N:focused, Button.btn_PD_add_N:selected
  10040. {
  10041. background : url('IMG::nu/icon_PD_add_NO.png');
  10042. }
  10043. Button.btn_PD_add_O, Button.btn_PD_add_O:disabled
  10044. {
  10045. background : url('IMG::nu/icon_PD_add_ON.png');
  10046. border : 0 none;
  10047. bordertype : normal ;
  10048. shadow : drop 0,0 0 gray ;
  10049. }
  10050. Button.btn_PD_add_O:mouseover, Button.btn_PD_add_O:pushed, Button.btn_PD_add_O:focused, Button.btn_PD_add_O:selected
  10051. {
  10052. background : url('IMG::nu/icon_PD_add_OO.png');
  10053. }
  10054. Button.bn_sht3mo, Button.bn_sht3mo:disabled, Button.bn_sht3mo:focused, Button.bn_sht3mo:selected
  10055. {
  10056. background : url('IMG::nu/btn_leftdepartmo_N.png') stretch 3,3;
  10057. align : center middle;
  10058. font : Dotum,8 ;
  10059. color : #494949;
  10060. }
  10061. Button.bn_sht3mo:mouseover, Button.bn_sht3mo:pushed
  10062. {
  10063. background : url('IMG::nu/btn_leftdepartmo_P.png') stretch 3,3;
  10064. font : Dotum,8;
  10065. color : #5c3b47;
  10066. shadow : drop 0,0 0 gray ;
  10067. }
  10068. /* nU CSS END */