icon.css 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066
  1. /*-------------------------------------------------------
  2. All Rights Reserved, Copyright (C) 2013, Wuyeguo, Ltd.
  3. -------------------------------------------------------*/
  4. .icon-blank{ background:url('icons/blank.gif') no-repeat center center;}
  5. .icon-add{ background:url('icons/edit_add.png') no-repeat center center;}
  6. .icon-edit{ background:url('icons/pencil.png') no-repeat center center;}
  7. .icon-remove{ background:url('icons/edit_remove.png') no-repeat center center;}
  8. .icon-save{ background:url('icons/filesave.png') no-repeat center center;}
  9. .icon-cut{ background:url('icons/cut.png') no-repeat center center;}
  10. .icon-ok{ background:url('icons/ok.png') no-repeat center center;}
  11. .icon-no{ background:url('icons/no.png') no-repeat center center;}
  12. .icon-cancel{ background:url('icons/cancel.png') no-repeat center center;}
  13. .icon-reload{ background:url('icons/reload.png') no-repeat center center;}
  14. .icon-search{ background:url('icons/search.png') no-repeat center center;}
  15. .icon-print{ background:url('icons/print.png') no-repeat center center;}
  16. .icon-help{ background:url('icons/help.png') no-repeat center center;}
  17. .icon-undo{ background:url('icons/undo.png') no-repeat center center;}
  18. .icon-redo{ background:url('icons/redo.png') no-repeat center center;}
  19. .icon-back{ background:url('icons/back.png') no-repeat center center;}
  20. .icon-sum{ background:url('icons/sum.png') no-repeat center center;}
  21. .icon-tip{ background:url('icons/tip.png') no-repeat center center;}
  22. .icon-mini-add{ background:url('icons/mini_add.png') no-repeat center center;}
  23. .icon-mini-edit{ background:url('icons/mini_edit.png') no-repeat center center;}
  24. .icon-mini-refresh{ background:url('icons/mini_refresh.png') no-repeat center center;}
  25. .icon-accept { background:url('icons/accept.png') no-repeat center center;}
  26. .icon-add { background:url('icons/add.png') no-repeat center center;}
  27. .icon-add1 { background:url('icons/add1.png') no-repeat center center;}
  28. .icon-advancedsettings { background:url('icons/advancedsettings.png') no-repeat center center;}
  29. .icon-advancedsettings2 { background:url('icons/advancedsettings2.png') no-repeat center center;}
  30. .icon-anchor { background:url('icons/anchor.png') no-repeat center center;}
  31. .icon-application { background:url('icons/application.png') no-repeat center center;}
  32. .icon-application-add { background:url('icons/application_add.png') no-repeat center center;}
  33. .icon-application-cascade { background:url('icons/application_cascade.png') no-repeat center center;}
  34. .icon-application-delete { background:url('icons/application_delete.png') no-repeat center center;}
  35. .icon-application-double { background:url('icons/application_double.png') no-repeat center center;}
  36. .icon-application-edit { background:url('icons/application_edit.png') no-repeat center center;}
  37. .icon-application-error { background:url('icons/application_error.png') no-repeat center center;}
  38. .icon-application-form { background:url('icons/application_form.png') no-repeat center center;}
  39. .icon-application-form-add { background:url('icons/application_form_add.png') no-repeat center center;}
  40. .icon-application-form-delete { background:url('icons/application_form_delete.png') no-repeat center center;}
  41. .icon-application-form-edit { background:url('icons/application_form_edit.png') no-repeat center center;}
  42. .icon-application-form-magnify { background:url('icons/application_form_magnify.png') no-repeat center center;}
  43. .icon-application-get { background:url('icons/application_get.png') no-repeat center center;}
  44. .icon-application-go { background:url('icons/application_go.png') no-repeat center center;}
  45. .icon-application-home { background:url('icons/application_home.png') no-repeat center center;}
  46. .icon-application-key { background:url('icons/application_key.png') no-repeat center center;}
  47. .icon-application-lightning { background:url('icons/application_lightning.png') no-repeat center center;}
  48. .icon-application-link { background:url('icons/application_link.png') no-repeat center center;}
  49. .icon-application-osx { background:url('icons/application_osx.png') no-repeat center center;}
  50. .icon-application-osx-add { background:url('icons/application_osx_add.png') no-repeat center center;}
  51. .icon-application-osx-cascade { background:url('icons/application_osx_cascade.png') no-repeat center center;}
  52. .icon-application-osx-delete { background:url('icons/application_osx_delete.png') no-repeat center center;}
  53. .icon-application-osx-double { background:url('icons/application_osx_double.png') no-repeat center center;}
  54. .icon-application-osx-error { background:url('icons/application_osx_error.png') no-repeat center center;}
  55. .icon-application-osx-get { background:url('icons/application_osx_get.png') no-repeat center center;}
  56. .icon-application-osx-go { background:url('icons/application_osx_go.png') no-repeat center center;}
  57. .icon-application-osx-home { background:url('icons/application_osx_home.png') no-repeat center center;}
  58. .icon-application-osx-key { background:url('icons/application_osx_key.png') no-repeat center center;}
  59. .icon-application-osx-lightning { background:url('icons/application_osx_lightning.png') no-repeat center center;}
  60. .icon-application-osx-link { background:url('icons/application_osx_link.png') no-repeat center center;}
  61. .icon-application-osx-split { background:url('icons/application_osx_split.png') no-repeat center center;}
  62. .icon-application-osx-start { background:url('icons/application_osx_start.png') no-repeat center center;}
  63. .icon-application-osx-stop { background:url('icons/application_osx_stop.png') no-repeat center center;}
  64. .icon-application-osx-terminal { background:url('icons/application_osx_terminal.png') no-repeat center center;}
  65. .icon-application-put { background:url('icons/application_put.png') no-repeat center center;}
  66. .icon-application-side-boxes { background:url('icons/application_side_boxes.png') no-repeat center center;}
  67. .icon-application-side-contract { background:url('icons/application_side_contract.png') no-repeat center center;}
  68. .icon-application-side-expand { background:url('icons/application_side_expand.png') no-repeat center center;}
  69. .icon-application-side-list { background:url('icons/application_side_list.png') no-repeat center center;}
  70. .icon-application-side-tree { background:url('icons/application_side_tree.png') no-repeat center center;}
  71. .icon-application-split { background:url('icons/application_split.png') no-repeat center center;}
  72. .icon-application-start { background:url('icons/application_start.png') no-repeat center center;}
  73. .icon-application-stop { background:url('icons/application_stop.png') no-repeat center center;}
  74. .icon-application-tile-horizontal { background:url('icons/application_tile_horizontal.png') no-repeat center center;}
  75. .icon-application-tile-vertical { background:url('icons/application_tile_vertical.png') no-repeat center center;}
  76. .icon-application-view-columns { background:url('icons/application_view_columns.png') no-repeat center center;}
  77. .icon-application-view-detail { background:url('icons/application_view_detail.png') no-repeat center center;}
  78. .icon-application-view-gallery { background:url('icons/application_view_gallery.png') no-repeat center center;}
  79. .icon-application-view-icons { background:url('icons/application_view_icons.png') no-repeat center center;}
  80. .icon-application-view-list { background:url('icons/application_view_list.png') no-repeat center center;}
  81. .icon-application-view-tile { background:url('icons/application_view_tile.png') no-repeat center center;}
  82. .icon-application-xp { background:url('icons/application_xp.png') no-repeat center center;}
  83. .icon-application-xp-terminal { background:url('icons/application_xp_terminal.png') no-repeat center center;}
  84. .icon-arrow-branch { background:url('icons/arrow_branch.png') no-repeat center center;}
  85. .icon-arrow-divide { background:url('icons/arrow_divide.png') no-repeat center center;}
  86. .icon-arrow-down { background:url('icons/arrow_down.png') no-repeat center center;}
  87. .icon-arrow-ew { background:url('icons/arrow_ew.png') no-repeat center center;}
  88. .icon-arrow-in { background:url('icons/arrow_in.png') no-repeat center center;}
  89. .icon-arrow-inout { background:url('icons/arrow_inout.png') no-repeat center center;}
  90. .icon-arrow-in-longer { background:url('icons/arrow_in_longer.png') no-repeat center center;}
  91. .icon-arrow-join { background:url('icons/arrow_join.png') no-repeat center center;}
  92. .icon-arrow-left { background:url('icons/arrow_left.png') no-repeat center center;}
  93. .icon-arrow-merge { background:url('icons/arrow_merge.png') no-repeat center center;}
  94. .icon-arrow-ne { background:url('icons/arrow_ne.png') no-repeat center center;}
  95. .icon-arrow-ns { background:url('icons/arrow_ns.png') no-repeat center center;}
  96. .icon-arrow-nsew { background:url('icons/arrow_nsew.png') no-repeat center center;}
  97. .icon-arrow-nw { background:url('icons/arrow_nw.png') no-repeat center center;}
  98. .icon-arrow-nw-ne-sw-se { background:url('icons/arrow_nw_ne_sw_se.png') no-repeat center center;}
  99. .icon-arrow-nw-se { background:url('icons/arrow_nw_se.png') no-repeat center center;}
  100. .icon-arrow-out { background:url('icons/arrow_out.png') no-repeat center center;}
  101. .icon-arrow-out-longer { background:url('icons/arrow_out_longer.png') no-repeat center center;}
  102. .icon-arrow-redo { background:url('icons/arrow_redo.png') no-repeat center center;}
  103. .icon-arrow-refresh { background:url('icons/arrow_refresh.png') no-repeat center center;}
  104. .icon-arrow-refresh-small { background:url('icons/arrow_refresh_small.png') no-repeat center center;}
  105. .icon-arrow-right { background:url('icons/arrow_right.png') no-repeat center center;}
  106. .icon-arrow-right-16 { background:url('icons/arrow_right_16.png') no-repeat center center;}
  107. .icon-arrow-rotate-anticlockwise { background:url('icons/arrow_rotate_anticlockwise.png') no-repeat center center;}
  108. .icon-arrow-rotate-clockwise { background:url('icons/arrow_rotate_clockwise.png') no-repeat center center;}
  109. .icon-arrow-se { background:url('icons/arrow_se.png') no-repeat center center;}
  110. .icon-arrow-sw { background:url('icons/arrow_sw.png') no-repeat center center;}
  111. .icon-arrow-switch { background:url('icons/arrow_switch.png') no-repeat center center;}
  112. .icon-arrow-switch-bluegreen { background:url('icons/arrow_switch_bluegreen.png') no-repeat center center;}
  113. .icon-arrow-sw-ne { background:url('icons/arrow_sw_ne.png') no-repeat center center;}
  114. .icon-arrow-turn-left { background:url('icons/arrow_turn_left.png') no-repeat center center;}
  115. .icon-arrow-turn-right { background:url('icons/arrow_turn_right.png') no-repeat center center;}
  116. .icon-arrow-undo { background:url('icons/arrow_undo.png') no-repeat center center;}
  117. .icon-arrow-up { background:url('icons/arrow_up.png') no-repeat center center;}
  118. .icon-asterisk-orange { background:url('icons/asterisk_orange.png') no-repeat center center;}
  119. .icon-asterisk-red { background:url('icons/asterisk_red.png') no-repeat center center;}
  120. .icon-asterisk-yellow { background:url('icons/asterisk_yellow.png') no-repeat center center;}
  121. .icon-attach { background:url('icons/attach.png') no-repeat center center;}
  122. .icon-award-star-add { background:url('icons/award_star_add.png') no-repeat center center;}
  123. .icon-award-star-bronze-1 { background:url('icons/award_star_bronze_1.png') no-repeat center center;}
  124. .icon-award-star-bronze-2 { background:url('icons/award_star_bronze_2.png') no-repeat center center;}
  125. .icon-award-star-bronze-3 { background:url('icons/award_star_bronze_3.png') no-repeat center center;}
  126. .icon-award-star-delete { background:url('icons/award_star_delete.png') no-repeat center center;}
  127. .icon-award-star-gold-1 { background:url('icons/award_star_gold_1.png') no-repeat center center;}
  128. .icon-award-star-gold-2 { background:url('icons/award_star_gold_2.png') no-repeat center center;}
  129. .icon-award-star-gold-3 { background:url('icons/award_star_gold_3.png') no-repeat center center;}
  130. .icon-award-star-silver-1 { background:url('icons/award_star_silver_1.png') no-repeat center center;}
  131. .icon-award-star-silver-2 { background:url('icons/award_star_silver_2.png') no-repeat center center;}
  132. .icon-award-star-silver-3 { background:url('icons/award_star_silver_3.png') no-repeat center center;}
  133. .icon-basket { background:url('icons/basket.png') no-repeat center center;}
  134. .icon-basket-add { background:url('icons/basket_add.png') no-repeat center center;}
  135. .icon-basket-delete { background:url('icons/basket_delete.png') no-repeat center center;}
  136. .icon-basket-edit { background:url('icons/basket_edit.png') no-repeat center center;}
  137. .icon-basket-error { background:url('icons/basket_error.png') no-repeat center center;}
  138. .icon-basket-go { background:url('icons/basket_go.png') no-repeat center center;}
  139. .icon-basket-put { background:url('icons/basket_put.png') no-repeat center center;}
  140. .icon-basket-remove { background:url('icons/basket_remove.png') no-repeat center center;}
  141. .icon-bell { background:url('icons/bell.png') no-repeat center center;}
  142. .icon-bell-add { background:url('icons/bell_add.png') no-repeat center center;}
  143. .icon-bell-delete { background:url('icons/bell_delete.png') no-repeat center center;}
  144. .icon-bell-error { background:url('icons/bell_error.png') no-repeat center center;}
  145. .icon-bell-go { background:url('icons/bell_go.png') no-repeat center center;}
  146. .icon-bell-link { background:url('icons/bell_link.png') no-repeat center center;}
  147. .icon-bell-silver { background:url('icons/bell_silver.png') no-repeat center center;}
  148. .icon-bell-silver-start { background:url('icons/bell_silver_start.png') no-repeat center center;}
  149. .icon-bell-silver-stop { background:url('icons/bell_silver_stop.png') no-repeat center center;}
  150. .icon-bell-start { background:url('icons/bell_start.png') no-repeat center center;}
  151. .icon-bell-stop { background:url('icons/bell_stop.png') no-repeat center center;}
  152. .icon-bin { background:url('icons/bin.png') no-repeat center center;}
  153. .icon-bin-closed { background:url('icons/bin_closed.png') no-repeat center center;}
  154. .icon-bin-empty { background:url('icons/bin_empty.png') no-repeat center center;}
  155. .icon-bomb { background:url('icons/bomb.png') no-repeat center center;}
  156. .icon-book { background:url('icons/book.png') no-repeat center center;}
  157. .icon-bookmark { background:url('icons/bookmark.png') no-repeat center center;}
  158. .icon-bookmark-add { background:url('icons/bookmark_add.png') no-repeat center center;}
  159. .icon-bookmark-delete { background:url('icons/bookmark_delete.png') no-repeat center center;}
  160. .icon-bookmark-edit { background:url('icons/bookmark_edit.png') no-repeat center center;}
  161. .icon-bookmark-error { background:url('icons/bookmark_error.png') no-repeat center center;}
  162. .icon-bookmark-go { background:url('icons/bookmark_go.png') no-repeat center center;}
  163. .icon-book-add { background:url('icons/book_add.png') no-repeat center center;}
  164. .icon-book-addresses { background:url('icons/book_addresses.png') no-repeat center center;}
  165. .icon-book-addresses-add { background:url('icons/book_addresses_add.png') no-repeat center center;}
  166. .icon-book-addresses-delete { background:url('icons/book_addresses_delete.png') no-repeat center center;}
  167. .icon-book-addresses-edit { background:url('icons/book_addresses_edit.png') no-repeat center center;}
  168. .icon-book-addresses-error { background:url('icons/book_addresses_error.png') no-repeat center center;}
  169. .icon-book-addresses-key { background:url('icons/book_addresses_key.png') no-repeat center center;}
  170. .icon-book-delete { background:url('icons/book_delete.png') no-repeat center center;}
  171. .icon-book-edit { background:url('icons/book_edit.png') no-repeat center center;}
  172. .icon-book-error { background:url('icons/book_error.png') no-repeat center center;}
  173. .icon-book-go { background:url('icons/book_go.png') no-repeat center center;}
  174. .icon-book-key { background:url('icons/book_key.png') no-repeat center center;}
  175. .icon-book-link { background:url('icons/book_link.png') no-repeat center center;}
  176. .icon-book-magnify { background:url('icons/book_magnify.png') no-repeat center center;}
  177. .icon-book-next { background:url('icons/book_next.png') no-repeat center center;}
  178. .icon-book-open { background:url('icons/book_open.png') no-repeat center center;}
  179. .icon-book-open-mark { background:url('icons/book_open_mark.png') no-repeat center center;}
  180. .icon-book-previous { background:url('icons/book_previous.png') no-repeat center center;}
  181. .icon-book-red { background:url('icons/book_red.png') no-repeat center center;}
  182. .icon-book-tabs { background:url('icons/book_tabs.png') no-repeat center center;}
  183. .icon-border-all { background:url('icons/border_all.png') no-repeat center center;}
  184. .icon-border-bottom { background:url('icons/border_bottom.png') no-repeat center center;}
  185. .icon-border-draw { background:url('icons/border_draw.png') no-repeat center center;}
  186. .icon-border-inner { background:url('icons/border_inner.png') no-repeat center center;}
  187. .icon-border-inner-horizontal { background:url('icons/border_inner_horizontal.png') no-repeat center center;}
  188. .icon-border-inner-vertical { background:url('icons/border_inner_vertical.png') no-repeat center center;}
  189. .icon-border-left { background:url('icons/border_left.png') no-repeat center center;}
  190. .icon-border-none { background:url('icons/border_none.png') no-repeat center center;}
  191. .icon-border-outer { background:url('icons/border_outer.png') no-repeat center center;}
  192. .icon-border-right { background:url('icons/border_right.png') no-repeat center center;}
  193. .icon-border-top { background:url('icons/border_top.png') no-repeat center center;}
  194. .icon-box { background:url('icons/box.png') no-repeat center center;}
  195. .icon-box-error { background:url('icons/box_error.png') no-repeat center center;}
  196. .icon-box-picture { background:url('icons/box_picture.png') no-repeat center center;}
  197. .icon-box-world { background:url('icons/box_world.png') no-repeat center center;}
  198. .icon-brick { background:url('icons/brick.png') no-repeat center center;}
  199. .icon-bricks { background:url('icons/bricks.png') no-repeat center center;}
  200. .icon-brick-add { background:url('icons/brick_add.png') no-repeat center center;}
  201. .icon-brick-delete { background:url('icons/brick_delete.png') no-repeat center center;}
  202. .icon-brick-edit { background:url('icons/brick_edit.png') no-repeat center center;}
  203. .icon-brick-error { background:url('icons/brick_error.png') no-repeat center center;}
  204. .icon-brick-go { background:url('icons/brick_go.png') no-repeat center center;}
  205. .icon-brick-link { background:url('icons/brick_link.png') no-repeat center center;}
  206. .icon-brick-magnify { background:url('icons/brick_magnify.png') no-repeat center center;}
  207. .icon-briefcase { background:url('icons/briefcase.png') no-repeat center center;}
  208. .icon-bug { background:url('icons/bug.png') no-repeat center center;}
  209. .icon-bug-add { background:url('icons/bug_add.png') no-repeat center center;}
  210. .icon-bug-delete { background:url('icons/bug_delete.png') no-repeat center center;}
  211. .icon-bug-edit { background:url('icons/bug_edit.png') no-repeat center center;}
  212. .icon-bug-error { background:url('icons/bug_error.png') no-repeat center center;}
  213. .icon-bug-fix { background:url('icons/bug_fix.png') no-repeat center center;}
  214. .icon-bug-go { background:url('icons/bug_go.png') no-repeat center center;}
  215. .icon-bug-link { background:url('icons/bug_link.png') no-repeat center center;}
  216. .icon-bug-magnify { background:url('icons/bug_magnify.png') no-repeat center center;}
  217. .icon-build { background:url('icons/build.png') no-repeat center center;}
  218. .icon-building { background:url('icons/building.png') no-repeat center center;}
  219. .icon-building-add { background:url('icons/building_add.png') no-repeat center center;}
  220. .icon-building-delete { background:url('icons/building_delete.png') no-repeat center center;}
  221. .icon-building-edit { background:url('icons/building_edit.png') no-repeat center center;}
  222. .icon-building-error { background:url('icons/building_error.png') no-repeat center center;}
  223. .icon-building-go { background:url('icons/building_go.png') no-repeat center center;}
  224. .icon-building-key { background:url('icons/building_key.png') no-repeat center center;}
  225. .icon-building-link { background:url('icons/building_link.png') no-repeat center center;}
  226. .icon-build-cancel { background:url('icons/build_cancel.png') no-repeat center center;}
  227. .icon-bullet-add { background:url('icons/bullet_add.png') no-repeat center center;}
  228. .icon-bullet-arrow-bottom { background:url('icons/bullet_arrow_bottom.png') no-repeat center center;}
  229. .icon-bullet-arrow-down { background:url('icons/bullet_arrow_down.png') no-repeat center center;}
  230. .icon-bullet-arrow-top { background:url('icons/bullet_arrow_top.png') no-repeat center center;}
  231. .icon-bullet-arrow-up { background:url('icons/bullet_arrow_up.png') no-repeat center center;}
  232. .icon-bullet-black { background:url('icons/bullet_black.png') no-repeat center center;}
  233. .icon-bullet-blue { background:url('icons/bullet_blue.png') no-repeat center center;}
  234. .icon-bullet-connect { background:url('icons/bullet_connect.png') no-repeat center center;}
  235. .icon-bullet-cross { background:url('icons/bullet_cross.png') no-repeat center center;}
  236. .icon-bullet-database { background:url('icons/bullet_database.png') no-repeat center center;}
  237. .icon-bullet-database-yellow { background:url('icons/bullet_database_yellow.png') no-repeat center center;}
  238. .icon-bullet-delete { background:url('icons/bullet_delete.png') no-repeat center center;}
  239. .icon-bullet-disk { background:url('icons/bullet_disk.png') no-repeat center center;}
  240. .icon-bullet-earth { background:url('icons/bullet_earth.png') no-repeat center center;}
  241. .icon-bullet-edit { background:url('icons/bullet_edit.png') no-repeat center center;}
  242. .icon-bullet-eject { background:url('icons/bullet_eject.png') no-repeat center center;}
  243. .icon-bullet-error { background:url('icons/bullet_error.png') no-repeat center center;}
  244. .icon-bullet-feed { background:url('icons/bullet_feed.png') no-repeat center center;}
  245. .icon-bullet-get { background:url('icons/bullet_get.png') no-repeat center center;}
  246. .icon-bullet-go { background:url('icons/bullet_go.png') no-repeat center center;}
  247. .icon-bullet-green { background:url('icons/bullet_green.png') no-repeat center center;}
  248. .icon-bullet-home { background:url('icons/bullet_home.png') no-repeat center center;}
  249. .icon-bullet-key { background:url('icons/bullet_key.png') no-repeat center center;}
  250. .icon-bullet-left { background:url('icons/bullet_left.png') no-repeat center center;}
  251. .icon-bullet-lightning { background:url('icons/bullet_lightning.png') no-repeat center center;}
  252. .icon-bullet-magnify { background:url('icons/bullet_magnify.png') no-repeat center center;}
  253. .icon-bullet-minus { background:url('icons/bullet_minus.png') no-repeat center center;}
  254. .icon-bullet-orange { background:url('icons/bullet_orange.png') no-repeat center center;}
  255. .icon-bullet-page-white { background:url('icons/bullet_page_white.png') no-repeat center center;}
  256. .icon-bullet-picture { background:url('icons/bullet_picture.png') no-repeat center center;}
  257. .icon-bullet-pink { background:url('icons/bullet_pink.png') no-repeat center center;}
  258. .icon-bullet-plus { background:url('icons/bullet_plus.png') no-repeat center center;}
  259. .icon-bullet-purple { background:url('icons/bullet_purple.png') no-repeat center center;}
  260. .icon-bullet-red { background:url('icons/bullet_red.png') no-repeat center center;}
  261. .icon-bullet-right { background:url('icons/bullet_right.png') no-repeat center center;}
  262. .icon-bullet-shape { background:url('icons/bullet_shape.png') no-repeat center center;}
  263. .icon-bullet-sparkle { background:url('icons/bullet_sparkle.png') no-repeat center center;}
  264. .icon-bullet-star { background:url('icons/bullet_star.png') no-repeat center center;}
  265. .icon-bullet-start { background:url('icons/bullet_start.png') no-repeat center center;}
  266. .icon-bullet-stop { background:url('icons/bullet_stop.png') no-repeat center center;}
  267. .icon-bullet-stop-alt { background:url('icons/bullet_stop_alt.png') no-repeat center center;}
  268. .icon-bullet-tick { background:url('icons/bullet_tick.png') no-repeat center center;}
  269. .icon-bullet-toggle-minus { background:url('icons/bullet_toggle_minus.png') no-repeat center center;}
  270. .icon-bullet-toggle-plus { background:url('icons/bullet_toggle_plus.png') no-repeat center center;}
  271. .icon-bullet-white { background:url('icons/bullet_white.png') no-repeat center center;}
  272. .icon-bullet-wrench { background:url('icons/bullet_wrench.png') no-repeat center center;}
  273. .icon-bullet-wrench-red { background:url('icons/bullet_wrench_red.png') no-repeat center center;}
  274. .icon-bullet-yellow { background:url('icons/bullet_yellow.png') no-repeat center center;}
  275. .icon-button { background:url('icons/button.png') no-repeat center center;}
  276. .icon-cake { background:url('icons/cake.png') no-repeat center center;}
  277. .icon-cake-out { background:url('icons/cake_out.png') no-repeat center center;}
  278. .icon-cake-sliced { background:url('icons/cake_sliced.png') no-repeat center center;}
  279. .icon-calculator { background:url('icons/calculator.png') no-repeat center center;}
  280. .icon-calculator-add { background:url('icons/calculator_add.png') no-repeat center center;}
  281. .icon-calculator-delete { background:url('icons/calculator_delete.png') no-repeat center center;}
  282. .icon-calculator-edit { background:url('icons/calculator_edit.png') no-repeat center center;}
  283. .icon-calculator-error { background:url('icons/calculator_error.png') no-repeat center center;}
  284. .icon-calculator-link { background:url('icons/calculator_link.png') no-repeat center center;}
  285. .icon-calendar { background:url('icons/calendar.png') no-repeat center center;}
  286. .icon-calendar-add { background:url('icons/calendar_add.png') no-repeat center center;}
  287. .icon-calendar-delete { background:url('icons/calendar_delete.png') no-repeat center center;}
  288. .icon-calendar-edit { background:url('icons/calendar_edit.png') no-repeat center center;}
  289. .icon-calendar-link { background:url('icons/calendar_link.png') no-repeat center center;}
  290. .icon-calendar-select-day { background:url('icons/calendar_select_day.png') no-repeat center center;}
  291. .icon-calendar-select-none { background:url('icons/calendar_select_none.png') no-repeat center center;}
  292. .icon-calendar-select-week { background:url('icons/calendar_select_week.png') no-repeat center center;}
  293. .icon-calendar-star { background:url('icons/calendar_star.png') no-repeat center center;}
  294. .icon-calendar-view-day { background:url('icons/calendar_view_day.png') no-repeat center center;}
  295. .icon-calendar-view-month { background:url('icons/calendar_view_month.png') no-repeat center center;}
  296. .icon-calendar-view-week { background:url('icons/calendar_view_week.png') no-repeat center center;}
  297. .icon-camera { background:url('icons/camera.png') no-repeat center center;}
  298. .icon-camera-add { background:url('icons/camera_add.png') no-repeat center center;}
  299. .icon-camera-connect { background:url('icons/camera_connect.png') no-repeat center center;}
  300. .icon-camera-delete { background:url('icons/camera_delete.png') no-repeat center center;}
  301. .icon-camera-edit { background:url('icons/camera_edit.png') no-repeat center center;}
  302. .icon-camera-error { background:url('icons/camera_error.png') no-repeat center center;}
  303. .icon-camera-go { background:url('icons/camera_go.png') no-repeat center center;}
  304. .icon-camera-link { background:url('icons/camera_link.png') no-repeat center center;}
  305. .icon-camera-magnify { background:url('icons/camera_magnify.png') no-repeat center center;}
  306. .icon-camera-picture { background:url('icons/camera_picture.png') no-repeat center center;}
  307. .icon-camera-small { background:url('icons/camera_small.png') no-repeat center center;}
  308. .icon-camera-start { background:url('icons/camera_start.png') no-repeat center center;}
  309. .icon-camera-stop { background:url('icons/camera_stop.png') no-repeat center center;}
  310. .icon-cancel { background:url('icons/cancel.png') no-repeat center center;}
  311. .icon-car { background:url('icons/car.png') no-repeat center center;}
  312. .icon-cart { background:url('icons/cart.png') no-repeat center center;}
  313. .icon-cart-add { background:url('icons/cart_add.png') no-repeat center center;}
  314. .icon-cart-delete { background:url('icons/cart_delete.png') no-repeat center center;}
  315. .icon-cart-edit { background:url('icons/cart_edit.png') no-repeat center center;}
  316. .icon-cart-error { background:url('icons/cart_error.png') no-repeat center center;}
  317. .icon-cart-full { background:url('icons/cart_full.png') no-repeat center center;}
  318. .icon-cart-go { background:url('icons/cart_go.png') no-repeat center center;}
  319. .icon-cart-magnify { background:url('icons/cart_magnify.png') no-repeat center center;}
  320. .icon-cart-put { background:url('icons/cart_put.png') no-repeat center center;}
  321. .icon-cart-remove { background:url('icons/cart_remove.png') no-repeat center center;}
  322. .icon-car-add { background:url('icons/car_add.png') no-repeat center center;}
  323. .icon-car-delete { background:url('icons/car_delete.png') no-repeat center center;}
  324. .icon-car-error { background:url('icons/car_error.png') no-repeat center center;}
  325. .icon-car-red { background:url('icons/car_red.png') no-repeat center center;}
  326. .icon-car-start { background:url('icons/car_start.png') no-repeat center center;}
  327. .icon-car-stop { background:url('icons/car_stop.png') no-repeat center center;}
  328. .icon-cd { background:url('icons/cd.png') no-repeat center center;}
  329. .icon-cdr { background:url('icons/cdr.png') no-repeat center center;}
  330. .icon-cdr-add { background:url('icons/cdr_add.png') no-repeat center center;}
  331. .icon-cdr-burn { background:url('icons/cdr_burn.png') no-repeat center center;}
  332. .icon-cdr-cross { background:url('icons/cdr_cross.png') no-repeat center center;}
  333. .icon-cdr-delete { background:url('icons/cdr_delete.png') no-repeat center center;}
  334. .icon-cdr-edit { background:url('icons/cdr_edit.png') no-repeat center center;}
  335. .icon-cdr-eject { background:url('icons/cdr_eject.png') no-repeat center center;}
  336. .icon-cdr-error { background:url('icons/cdr_error.png') no-repeat center center;}
  337. .icon-cdr-go { background:url('icons/cdr_go.png') no-repeat center center;}
  338. .icon-cdr-magnify { background:url('icons/cdr_magnify.png') no-repeat center center;}
  339. .icon-cdr-play { background:url('icons/cdr_play.png') no-repeat center center;}
  340. .icon-cdr-start { background:url('icons/cdr_start.png') no-repeat center center;}
  341. .icon-cdr-stop { background:url('icons/cdr_stop.png') no-repeat center center;}
  342. .icon-cdr-stop-alt { background:url('icons/cdr_stop_alt.png') no-repeat center center;}
  343. .icon-cdr-tick { background:url('icons/cdr_tick.png') no-repeat center center;}
  344. .icon-cd-add { background:url('icons/cd_add.png') no-repeat center center;}
  345. .icon-cd-burn { background:url('icons/cd_burn.png') no-repeat center center;}
  346. .icon-cd-delete { background:url('icons/cd_delete.png') no-repeat center center;}
  347. .icon-cd-edit { background:url('icons/cd_edit.png') no-repeat center center;}
  348. .icon-cd-eject { background:url('icons/cd_eject.png') no-repeat center center;}
  349. .icon-cd-go { background:url('icons/cd_go.png') no-repeat center center;}
  350. .icon-cd-magnify { background:url('icons/cd_magnify.png') no-repeat center center;}
  351. .icon-cd-play { background:url('icons/cd_play.png') no-repeat center center;}
  352. .icon-cd-stop { background:url('icons/cd_stop.png') no-repeat center center;}
  353. .icon-cd-stop-alt { background:url('icons/cd_stop_alt.png') no-repeat center center;}
  354. .icon-cd-tick { background:url('icons/cd_tick.png') no-repeat center center;}
  355. .icon-chart-bar { background:url('icons/chart_bar.png') no-repeat center center;}
  356. .icon-chart-bar-add { background:url('icons/chart_bar_add.png') no-repeat center center;}
  357. .icon-chart-bar-delete { background:url('icons/chart_bar_delete.png') no-repeat center center;}
  358. .icon-chart-bar-edit { background:url('icons/chart_bar_edit.png') no-repeat center center;}
  359. .icon-chart-bar-error { background:url('icons/chart_bar_error.png') no-repeat center center;}
  360. .icon-chart-bar-link { background:url('icons/chart_bar_link.png') no-repeat center center;}
  361. .icon-chart-curve { background:url('icons/chart_curve.png') no-repeat center center;}
  362. .icon-chart-curve-add { background:url('icons/chart_curve_add.png') no-repeat center center;}
  363. .icon-chart-curve-delete { background:url('icons/chart_curve_delete.png') no-repeat center center;}
  364. .icon-chart-curve-edit { background:url('icons/chart_curve_edit.png') no-repeat center center;}
  365. .icon-chart-curve-error { background:url('icons/chart_curve_error.png') no-repeat center center;}
  366. .icon-chart-curve-go { background:url('icons/chart_curve_go.png') no-repeat center center;}
  367. .icon-chart-curve-link { background:url('icons/chart_curve_link.png') no-repeat center center;}
  368. .icon-chart-line { background:url('icons/chart_line.png') no-repeat center center;}
  369. .icon-chart-line-add { background:url('icons/chart_line_add.png') no-repeat center center;}
  370. .icon-chart-line-delete { background:url('icons/chart_line_delete.png') no-repeat center center;}
  371. .icon-chart-line-edit { background:url('icons/chart_line_edit.png') no-repeat center center;}
  372. .icon-chart-line-error { background:url('icons/chart_line_error.png') no-repeat center center;}
  373. .icon-chart-line-link { background:url('icons/chart_line_link.png') no-repeat center center;}
  374. .icon-chart-organisation { background:url('icons/chart_organisation.png') no-repeat center center;}
  375. .icon-chart-organisation-add { background:url('icons/chart_organisation_add.png') no-repeat center center;}
  376. .icon-chart-organisation-delete { background:url('icons/chart_organisation_delete.png') no-repeat center center;}
  377. .icon-chart-org-inverted { background:url('icons/chart_org_inverted.png') no-repeat center center;}
  378. .icon-chart-pie { background:url('icons/chart_pie.png') no-repeat center center;}
  379. .icon-chart-pie-add { background:url('icons/chart_pie_add.png') no-repeat center center;}
  380. .icon-chart-pie-delete { background:url('icons/chart_pie_delete.png') no-repeat center center;}
  381. .icon-chart-pie-edit { background:url('icons/chart_pie_edit.png') no-repeat center center;}
  382. .icon-chart-pie-error { background:url('icons/chart_pie_error.png') no-repeat center center;}
  383. .icon-chart-pie-lightning { background:url('icons/chart_pie_lightning.png') no-repeat center center;}
  384. .icon-chart-pie-link { background:url('icons/chart_pie_link.png') no-repeat center center;}
  385. .icon-check-error { background:url('icons/check_error.png') no-repeat center center;}
  386. .icon-chk-checked { background:url('icons/chk_checked.gif') no-repeat center center;}
  387. .icon-chk-unchecked { background:url('icons/chk_unchecked.gif') no-repeat center center;}
  388. .icon-clipboard { background:url('icons/clipboard.png') no-repeat center center;}
  389. .icon-clock { background:url('icons/clock.png') no-repeat center center;}
  390. .icon-clock-add { background:url('icons/clock_add.png') no-repeat center center;}
  391. .icon-clock-delete { background:url('icons/clock_delete.png') no-repeat center center;}
  392. .icon-clock-edit { background:url('icons/clock_edit.png') no-repeat center center;}
  393. .icon-clock-error { background:url('icons/clock_error.png') no-repeat center center;}
  394. .icon-clock-go { background:url('icons/clock_go.png') no-repeat center center;}
  395. .icon-clock-link { background:url('icons/clock_link.png') no-repeat center center;}
  396. .icon-clock-pause { background:url('icons/clock_pause.png') no-repeat center center;}
  397. .icon-clock-play { background:url('icons/clock_play.png') no-repeat center center;}
  398. .icon-clock-red { background:url('icons/clock_red.png') no-repeat center center;}
  399. .icon-clock-start { background:url('icons/clock_start.png') no-repeat center center;}
  400. .icon-clock-stop { background:url('icons/clock_stop.png') no-repeat center center;}
  401. .icon-cmy { background:url('icons/cmy.png') no-repeat center center;}
  402. .icon-cog { background:url('icons/cog.png') no-repeat center center;}
  403. .icon-cog-add { background:url('icons/cog_add.png') no-repeat center center;}
  404. .icon-cog-delete { background:url('icons/cog_delete.png') no-repeat center center;}
  405. .icon-cog-edit { background:url('icons/cog_edit.png') no-repeat center center;}
  406. .icon-cog-error { background:url('icons/cog_error.png') no-repeat center center;}
  407. .icon-cog-go { background:url('icons/cog_go.png') no-repeat center center;}
  408. .icon-cog-start { background:url('icons/cog_start.png') no-repeat center center;}
  409. .icon-cog-stop { background:url('icons/cog_stop.png') no-repeat center center;}
  410. .icon-coins { background:url('icons/coins.png') no-repeat center center;}
  411. .icon-coins-add { background:url('icons/coins_add.png') no-repeat center center;}
  412. .icon-coins-delete { background:url('icons/coins_delete.png') no-repeat center center;}
  413. .icon-collapse-all { background:url('icons/collapse-all.gif') no-repeat center center;}
  414. .icon-color { background:url('icons/color.png') no-repeat center center;}
  415. .icon-color-swatch { background:url('icons/color_swatch.png') no-repeat center center;}
  416. .icon-color-wheel { background:url('icons/color_wheel.png') no-repeat center center;}
  417. .icon-comment { background:url('icons/comment.png') no-repeat center center;}
  418. .icon-comments { background:url('icons/comments.png') no-repeat center center;}
  419. .icon-comments-add { background:url('icons/comments_add.png') no-repeat center center;}
  420. .icon-comments-delete { background:url('icons/comments_delete.png') no-repeat center center;}
  421. .icon-comment-add { background:url('icons/comment_add.png') no-repeat center center;}
  422. .icon-comment-delete { background:url('icons/comment_delete.png') no-repeat center center;}
  423. .icon-comment-dull { background:url('icons/comment_dull.png') no-repeat center center;}
  424. .icon-comment-edit { background:url('icons/comment_edit.png') no-repeat center center;}
  425. .icon-comment-play { background:url('icons/comment_play.png') no-repeat center center;}
  426. .icon-comment-record { background:url('icons/comment_record.png') no-repeat center center;}
  427. .icon-compass { background:url('icons/compass.png') no-repeat center center;}
  428. .icon-compress { background:url('icons/compress.png') no-repeat center center;}
  429. .icon-computer { background:url('icons/computer.png') no-repeat center center;}
  430. .icon-computer-add { background:url('icons/computer_add.png') no-repeat center center;}
  431. .icon-computer-connect { background:url('icons/computer_connect.png') no-repeat center center;}
  432. .icon-computer-delete { background:url('icons/computer_delete.png') no-repeat center center;}
  433. .icon-computer-edit { background:url('icons/computer_edit.png') no-repeat center center;}
  434. .icon-computer-error { background:url('icons/computer_error.png') no-repeat center center;}
  435. .icon-computer-go { background:url('icons/computer_go.png') no-repeat center center;}
  436. .icon-computer-key { background:url('icons/computer_key.png') no-repeat center center;}
  437. .icon-computer-link { background:url('icons/computer_link.png') no-repeat center center;}
  438. .icon-computer-magnify { background:url('icons/computer_magnify.png') no-repeat center center;}
  439. .icon-computer-off { background:url('icons/computer_off.png') no-repeat center center;}
  440. .icon-computer-start { background:url('icons/computer_start.png') no-repeat center center;}
  441. .icon-computer-stop { background:url('icons/computer_stop.png') no-repeat center center;}
  442. .icon-computer-wrench { background:url('icons/computer_wrench.png') no-repeat center center;}
  443. .icon-connect { background:url('icons/connect.png') no-repeat center center;}
  444. .icon-contrast { background:url('icons/contrast.png') no-repeat center center;}
  445. .icon-contrast-decrease { background:url('icons/contrast_decrease.png') no-repeat center center;}
  446. .icon-contrast-high { background:url('icons/contrast_high.png') no-repeat center center;}
  447. .icon-contrast-increase { background:url('icons/contrast_increase.png') no-repeat center center;}
  448. .icon-contrast-low { background:url('icons/contrast_low.png') no-repeat center center;}
  449. .icon-controller { background:url('icons/controller.png') no-repeat center center;}
  450. .icon-controller-add { background:url('icons/controller_add.png') no-repeat center center;}
  451. .icon-controller-delete { background:url('icons/controller_delete.png') no-repeat center center;}
  452. .icon-controller-error { background:url('icons/controller_error.png') no-repeat center center;}
  453. .icon-control-add { background:url('icons/control_add.png') no-repeat center center;}
  454. .icon-control-add-blue { background:url('icons/control_add_blue.png') no-repeat center center;}
  455. .icon-control-blank { background:url('icons/control_blank.png') no-repeat center center;}
  456. .icon-control-blank-blue { background:url('icons/control_blank_blue.png') no-repeat center center;}
  457. .icon-control-eject { background:url('icons/control_eject.png') no-repeat center center;}
  458. .icon-control-eject-blue { background:url('icons/control_eject_blue.png') no-repeat center center;}
  459. .icon-control-end { background:url('icons/control_end.png') no-repeat center center;}
  460. .icon-control-end-blue { background:url('icons/control_end_blue.png') no-repeat center center;}
  461. .icon-control-equalizer { background:url('icons/control_equalizer.png') no-repeat center center;}
  462. .icon-control-equalizer-blue { background:url('icons/control_equalizer_blue.png') no-repeat center center;}
  463. .icon-control-fastforward { background:url('icons/control_fastforward.png') no-repeat center center;}
  464. .icon-control-fastforward-blue { background:url('icons/control_fastforward_blue.png') no-repeat center center;}
  465. .icon-control-pause { background:url('icons/control_pause.png') no-repeat center center;}
  466. .icon-control-pause-blue { background:url('icons/control_pause_blue.png') no-repeat center center;}
  467. .icon-control-play { background:url('icons/control_play.png') no-repeat center center;}
  468. .icon-control-play-blue { background:url('icons/control_play_blue.png') no-repeat center center;}
  469. .icon-control-power { background:url('icons/control_power.png') no-repeat center center;}
  470. .icon-control-power-blue { background:url('icons/control_power_blue.png') no-repeat center center;}
  471. .icon-control-record { background:url('icons/control_record.png') no-repeat center center;}
  472. .icon-control-record-blue { background:url('icons/control_record_blue.png') no-repeat center center;}
  473. .icon-control-remove { background:url('icons/control_remove.png') no-repeat center center;}
  474. .icon-control-remove-blue { background:url('icons/control_remove_blue.png') no-repeat center center;}
  475. .icon-control-repeat { background:url('icons/control_repeat.png') no-repeat center center;}
  476. .icon-control-repeat-blue { background:url('icons/control_repeat_blue.png') no-repeat center center;}
  477. .icon-control-rewind { background:url('icons/control_rewind.png') no-repeat center center;}
  478. .icon-control-rewind-blue { background:url('icons/control_rewind_blue.png') no-repeat center center;}
  479. .icon-control-start { background:url('icons/control_start.png') no-repeat center center;}
  480. .icon-control-start-blue { background:url('icons/control_start_blue.png') no-repeat center center;}
  481. .icon-control-stop { background:url('icons/control_stop.png') no-repeat center center;}
  482. .icon-control-stop-blue { background:url('icons/control_stop_blue.png') no-repeat center center;}
  483. .icon-creditcards { background:url('icons/creditcards.png') no-repeat center center;}
  484. .icon-cross { background:url('icons/cross.png') no-repeat center center;}
  485. .icon-cross-octagon { background:url('icons/cross_octagon.png') no-repeat center center;}
  486. .icon-css { background:url('icons/css.png') no-repeat center center;}
  487. .icon-css-add { background:url('icons/css_add.png') no-repeat center center;}
  488. .icon-css-delete { background:url('icons/css_delete.png') no-repeat center center;}
  489. .icon-css-error { background:url('icons/css_error.png') no-repeat center center;}
  490. .icon-css-go { background:url('icons/css_go.png') no-repeat center center;}
  491. .icon-css-valid { background:url('icons/css_valid.png') no-repeat center center;}
  492. .icon-cup { background:url('icons/cup.png') no-repeat center center;}
  493. .icon-cup-add { background:url('icons/cup_add.png') no-repeat center center;}
  494. .icon-cup-black { background:url('icons/cup_black.png') no-repeat center center;}
  495. .icon-cup-delete { background:url('icons/cup_delete.png') no-repeat center center;}
  496. .icon-cup-edit { background:url('icons/cup_edit.png') no-repeat center center;}
  497. .icon-cup-error { background:url('icons/cup_error.png') no-repeat center center;}
  498. .icon-cup-go { background:url('icons/cup_go.png') no-repeat center center;}
  499. .icon-cup-green { background:url('icons/cup_green.png') no-repeat center center;}
  500. .icon-cup-key { background:url('icons/cup_key.png') no-repeat center center;}
  501. .icon-cup-link { background:url('icons/cup_link.png') no-repeat center center;}
  502. .icon-cup-tea { background:url('icons/cup_tea.png') no-repeat center center;}
  503. .icon-cursor { background:url('icons/cursor.png') no-repeat center center;}
  504. .icon-cursor-small { background:url('icons/cursor_small.png') no-repeat center center;}
  505. .icon-cut { background:url('icons/cut.png') no-repeat center center;}
  506. .icon-cut-red { background:url('icons/cut_red.png') no-repeat center center;}
  507. .icon-database { background:url('icons/database.png') no-repeat center center;}
  508. .icon-database-add { background:url('icons/database_add.png') no-repeat center center;}
  509. .icon-database-connect { background:url('icons/database_connect.png') no-repeat center center;}
  510. .icon-database-copy { background:url('icons/database_copy.png') no-repeat center center;}
  511. .icon-database-delete { background:url('icons/database_delete.png') no-repeat center center;}
  512. .icon-database-edit { background:url('icons/database_edit.png') no-repeat center center;}
  513. .icon-database-error { background:url('icons/database_error.png') no-repeat center center;}
  514. .icon-database-gear { background:url('icons/database_gear.png') no-repeat center center;}
  515. .icon-database-go { background:url('icons/database_go.png') no-repeat center center;}
  516. .icon-database-key { background:url('icons/database_key.png') no-repeat center center;}
  517. .icon-database-lightning { background:url('icons/database_lightning.png') no-repeat center center;}
  518. .icon-database-link { background:url('icons/database_link.png') no-repeat center center;}
  519. .icon-database-refresh { background:url('icons/database_refresh.png') no-repeat center center;}
  520. .icon-database-save { background:url('icons/database_save.png') no-repeat center center;}
  521. .icon-database-start { background:url('icons/database_start.png') no-repeat center center;}
  522. .icon-database-stop { background:url('icons/database_stop.png') no-repeat center center;}
  523. .icon-database-table { background:url('icons/database_table.png') no-repeat center center;}
  524. .icon-database-wrench { background:url('icons/database_wrench.png') no-repeat center center;}
  525. .icon-database-yellow { background:url('icons/database_yellow.png') no-repeat center center;}
  526. .icon-database-yellow-start { background:url('icons/database_yellow_start.png') no-repeat center center;}
  527. .icon-database-yellow-stop { background:url('icons/database_yellow_stop.png') no-repeat center center;}
  528. .icon-date { background:url('icons/date.png') no-repeat center center;}
  529. .icon-date-add { background:url('icons/date_add.png') no-repeat center center;}
  530. .icon-date-delete { background:url('icons/date_delete.png') no-repeat center center;}
  531. .icon-date-edit { background:url('icons/date_edit.png') no-repeat center center;}
  532. .icon-date-error { background:url('icons/date_error.png') no-repeat center center;}
  533. .icon-date-go { background:url('icons/date_go.png') no-repeat center center;}
  534. .icon-date-link { background:url('icons/date_link.png') no-repeat center center;}
  535. .icon-date-magnify { background:url('icons/date_magnify.png') no-repeat center center;}
  536. .icon-date-next { background:url('icons/date_next.png') no-repeat center center;}
  537. .icon-date-previous { background:url('icons/date_previous.png') no-repeat center center;}
  538. .icon-decline { background:url('icons/decline.png') no-repeat center center;}
  539. .icon-delete { background:url('icons/delete.gif') no-repeat center center;}
  540. .icon-delete { background:url('icons/delete.png') no-repeat center center;}
  541. .icon-delete3 { background:url('icons/delete3.png') no-repeat center center;}
  542. .icon-DeleteRed { background:url('icons/DeleteRed.png') no-repeat center center;}
  543. .icon-device-stylus { background:url('icons/device_stylus.png') no-repeat center center;}
  544. .icon-disconnect { background:url('icons/disconnect.png') no-repeat center center;}
  545. .icon-disk { background:url('icons/disk.png') no-repeat center center;}
  546. .icon-disk-black { background:url('icons/disk_black.png') no-repeat center center;}
  547. .icon-disk-black-error { background:url('icons/disk_black_error.png') no-repeat center center;}
  548. .icon-disk-black-magnify { background:url('icons/disk_black_magnify.png') no-repeat center center;}
  549. .icon-disk-download { background:url('icons/disk_download.png') no-repeat center center;}
  550. .icon-disk-edit { background:url('icons/disk_edit.png') no-repeat center center;}
  551. .icon-disk-error { background:url('icons/disk_error.png') no-repeat center center;}
  552. .icon-disk-magnify { background:url('icons/disk_magnify.png') no-repeat center center;}
  553. .icon-disk-multiple { background:url('icons/disk_multiple.png') no-repeat center center;}
  554. .icon-disk-upload { background:url('icons/disk_upload.png') no-repeat center center;}
  555. .icon-door { background:url('icons/door.png') no-repeat center center;}
  556. .icon-door-error { background:url('icons/door_error.png') no-repeat center center;}
  557. .icon-door-in { background:url('icons/door_in.png') no-repeat center center;}
  558. .icon-door-open { background:url('icons/door_open.png') no-repeat center center;}
  559. .icon-door-out { background:url('icons/door_out.png') no-repeat center center;}
  560. .icon-download { background:url('icons/download.gif') no-repeat center center;}
  561. .icon-download { background:url('icons/download.png') no-repeat center center;}
  562. .icon-drink { background:url('icons/drink.png') no-repeat center center;}
  563. .icon-drink-empty { background:url('icons/drink_empty.png') no-repeat center center;}
  564. .icon-drink-red { background:url('icons/drink_red.png') no-repeat center center;}
  565. .icon-drive { background:url('icons/drive.png') no-repeat center center;}
  566. .icon-drive-add { background:url('icons/drive_add.png') no-repeat center center;}
  567. .icon-drive-burn { background:url('icons/drive_burn.png') no-repeat center center;}
  568. .icon-drive-cd { background:url('icons/drive_cd.png') no-repeat center center;}
  569. .icon-drive-cdr { background:url('icons/drive_cdr.png') no-repeat center center;}
  570. .icon-drive-cd-empty { background:url('icons/drive_cd_empty.png') no-repeat center center;}
  571. .icon-drive-delete { background:url('icons/drive_delete.png') no-repeat center center;}
  572. .icon-drive-disk { background:url('icons/drive_disk.png') no-repeat center center;}
  573. .icon-drive-edit { background:url('icons/drive_edit.png') no-repeat center center;}
  574. .icon-drive-error { background:url('icons/drive_error.png') no-repeat center center;}
  575. .icon-drive-go { background:url('icons/drive_go.png') no-repeat center center;}
  576. .icon-drive-key { background:url('icons/drive_key.png') no-repeat center center;}
  577. .icon-drive-link { background:url('icons/drive_link.png') no-repeat center center;}
  578. .icon-drive-magnify { background:url('icons/drive_magnify.png') no-repeat center center;}
  579. .icon-drive-network { background:url('icons/drive_network.png') no-repeat center center;}
  580. .icon-drive-network-error { background:url('icons/drive_network_error.png') no-repeat center center;}
  581. .icon-drive-network-stop { background:url('icons/drive_network_stop.png') no-repeat center center;}
  582. .icon-drive-rename { background:url('icons/drive_rename.png') no-repeat center center;}
  583. .icon-drive-user { background:url('icons/drive_user.png') no-repeat center center;}
  584. .icon-drive-web { background:url('icons/drive_web.png') no-repeat center center;}
  585. .icon-dvd { background:url('icons/dvd.png') no-repeat center center;}
  586. .icon-dvd-add { background:url('icons/dvd_add.png') no-repeat center center;}
  587. .icon-dvd-delete { background:url('icons/dvd_delete.png') no-repeat center center;}
  588. .icon-dvd-edit { background:url('icons/dvd_edit.png') no-repeat center center;}
  589. .icon-dvd-error { background:url('icons/dvd_error.png') no-repeat center center;}
  590. .icon-dvd-go { background:url('icons/dvd_go.png') no-repeat center center;}
  591. .icon-dvd-key { background:url('icons/dvd_key.png') no-repeat center center;}
  592. .icon-dvd-link { background:url('icons/dvd_link.png') no-repeat center center;}
  593. .icon-dvd-start { background:url('icons/dvd_start.png') no-repeat center center;}
  594. .icon-dvd-stop { background:url('icons/dvd_stop.png') no-repeat center center;}
  595. .icon-edit-clear { background:url('icons/edit-clear.png') no-repeat center center;}
  596. .icon-edit { background:url('icons/edit.gif') no-repeat center center;}
  597. .icon-edit-remove { background:url('icons/edit_remove.png') no-repeat center center;}
  598. .icon-eject-blue { background:url('icons/eject_blue.png') no-repeat center center;}
  599. .icon-eject-green { background:url('icons/eject_green.png') no-repeat center center;}
  600. .icon-email { background:url('icons/email.png') no-repeat center center;}
  601. .icon-email-add { background:url('icons/email_add.png') no-repeat center center;}
  602. .icon-email-attach { background:url('icons/email_attach.png') no-repeat center center;}
  603. .icon-email-delete { background:url('icons/email_delete.png') no-repeat center center;}
  604. .icon-email-edit { background:url('icons/email_edit.png') no-repeat center center;}
  605. .icon-email-error { background:url('icons/email_error.png') no-repeat center center;}
  606. .icon-email-go { background:url('icons/email_go.png') no-repeat center center;}
  607. .icon-email-link { background:url('icons/email_link.png') no-repeat center center;}
  608. .icon-email-magnify { background:url('icons/email_magnify.png') no-repeat center center;}
  609. .icon-email-open { background:url('icons/email_open.png') no-repeat center center;}
  610. .icon-email-open-image { background:url('icons/email_open_image.png') no-repeat center center;}
  611. .icon-email-star { background:url('icons/email_star.png') no-repeat center center;}
  612. .icon-email-start { background:url('icons/email_start.png') no-repeat center center;}
  613. .icon-email-stop { background:url('icons/email_stop.png') no-repeat center center;}
  614. .icon-email-transfer { background:url('icons/email_transfer.png') no-repeat center center;}
  615. .icon-emoticon-evilgrin { background:url('icons/emoticon_evilgrin.png') no-repeat center center;}
  616. .icon-emoticon-grin { background:url('icons/emoticon_grin.png') no-repeat center center;}
  617. .icon-emoticon-happy { background:url('icons/emoticon_happy.png') no-repeat center center;}
  618. .icon-emoticon-smile { background:url('icons/emoticon_smile.png') no-repeat center center;}
  619. .icon-emoticon-surprised { background:url('icons/emoticon_surprised.png') no-repeat center center;}
  620. .icon-emoticon-tongue { background:url('icons/emoticon_tongue.png') no-repeat center center;}
  621. .icon-emoticon-unhappy { background:url('icons/emoticon_unhappy.png') no-repeat center center;}
  622. .icon-emoticon-waii { background:url('icons/emoticon_waii.png') no-repeat center center;}
  623. .icon-emoticon-wink { background:url('icons/emoticon_wink.png') no-repeat center center;}
  624. .icon-erase { background:url('icons/erase.png') no-repeat center center;}
  625. .icon-error { background:url('icons/error.png') no-repeat center center;}
  626. .icon-error-add { background:url('icons/error_add.png') no-repeat center center;}
  627. .icon-error-delete { background:url('icons/error_delete.png') no-repeat center center;}
  628. .icon-error-go { background:url('icons/error_go.png') no-repeat center center;}
  629. .icon-exclamation { background:url('icons/exclamation.png') no-repeat center center;}
  630. .icon-expand-all { background:url('icons/expand-all.gif') no-repeat center center;}
  631. .icon-export { background:url('icons/export.png') no-repeat center center;}
  632. .icon-eye { background:url('icons/eye.png') no-repeat center center;}
  633. .icon-eyes { background:url('icons/eyes.png') no-repeat center center;}
  634. .icon-feed { background:url('icons/feed.png') no-repeat center center;}
  635. .icon-feed-add { background:url('icons/feed_add.png') no-repeat center center;}
  636. .icon-feed-delete { background:url('icons/feed_delete.png') no-repeat center center;}
  637. .icon-feed-disk { background:url('icons/feed_disk.png') no-repeat center center;}
  638. .icon-feed-edit { background:url('icons/feed_edit.png') no-repeat center center;}
  639. .icon-feed-error { background:url('icons/feed_error.png') no-repeat center center;}
  640. .icon-feed-go { background:url('icons/feed_go.png') no-repeat center center;}
  641. .icon-feed-key { background:url('icons/feed_key.png') no-repeat center center;}
  642. .icon-feed-link { background:url('icons/feed_link.png') no-repeat center center;}
  643. .icon-feed-magnify { background:url('icons/feed_magnify.png') no-repeat center center;}
  644. .icon-feed-star { background:url('icons/feed_star.png') no-repeat center center;}
  645. .icon-female { background:url('icons/female.png') no-repeat center center;}
  646. .icon-film { background:url('icons/film.png') no-repeat center center;}
  647. .icon-film-add { background:url('icons/film_add.png') no-repeat center center;}
  648. .icon-film-delete { background:url('icons/film_delete.png') no-repeat center center;}
  649. .icon-film-edit { background:url('icons/film_edit.png') no-repeat center center;}
  650. .icon-film-eject { background:url('icons/film_eject.png') no-repeat center center;}
  651. .icon-film-error { background:url('icons/film_error.png') no-repeat center center;}
  652. .icon-film-go { background:url('icons/film_go.png') no-repeat center center;}
  653. .icon-film-key { background:url('icons/film_key.png') no-repeat center center;}
  654. .icon-film-link { background:url('icons/film_link.png') no-repeat center center;}
  655. .icon-film-magnify { background:url('icons/film_magnify.png') no-repeat center center;}
  656. .icon-film-save { background:url('icons/film_save.png') no-repeat center center;}
  657. .icon-film-star { background:url('icons/film_star.png') no-repeat center center;}
  658. .icon-film-start { background:url('icons/film_start.png') no-repeat center center;}
  659. .icon-film-stop { background:url('icons/film_stop.png') no-repeat center center;}
  660. .icon-find { background:url('icons/find.png') no-repeat center center;}
  661. .icon-finger-point { background:url('icons/finger_point.png') no-repeat center center;}
  662. .icon-flag-black { background:url('icons/flag_black.png') no-repeat center center;}
  663. .icon-flag-blue { background:url('icons/flag_blue.png') no-repeat center center;}
  664. .icon-flag-checked { background:url('icons/flag_checked.png') no-repeat center center;}
  665. .icon-flag-france { background:url('icons/flag_france.png') no-repeat center center;}
  666. .icon-flag-green { background:url('icons/flag_green.png') no-repeat center center;}
  667. .icon-flag-grey { background:url('icons/flag_grey.png') no-repeat center center;}
  668. .icon-flag-orange { background:url('icons/flag_orange.png') no-repeat center center;}
  669. .icon-flag-pink { background:url('icons/flag_pink.png') no-repeat center center;}
  670. .icon-flag-purple { background:url('icons/flag_purple.png') no-repeat center center;}
  671. .icon-flag-red { background:url('icons/flag_red.png') no-repeat center center;}
  672. .icon-flag-white { background:url('icons/flag_white.png') no-repeat center center;}
  673. .icon-flag-yellow { background:url('icons/flag_yellow.png') no-repeat center center;}
  674. .icon-flower-daisy { background:url('icons/flower_daisy.png') no-repeat center center;}
  675. .icon-folder { background:url('icons/folder.png') no-repeat center center;}
  676. .icon-folder-add { background:url('icons/folder_add.png') no-repeat center center;}
  677. .icon-folder-bell { background:url('icons/folder_bell.png') no-repeat center center;}
  678. .icon-folder-bookmark { background:url('icons/folder_bookmark.png') no-repeat center center;}
  679. .icon-folder-brick { background:url('icons/folder_brick.png') no-repeat center center;}
  680. .icon-folder-bug { background:url('icons/folder_bug.png') no-repeat center center;}
  681. .icon-folder-camera { background:url('icons/folder_camera.png') no-repeat center center;}
  682. .icon-folder-connect { background:url('icons/folder_connect.png') no-repeat center center;}
  683. .icon-folder-database { background:url('icons/folder_database.png') no-repeat center center;}
  684. .icon-folder-delete { background:url('icons/folder_delete.png') no-repeat center center;}
  685. .icon-folder-edit { background:url('icons/folder_edit.png') no-repeat center center;}
  686. .icon-folder-error { background:url('icons/folder_error.png') no-repeat center center;}
  687. .icon-folder-explore { background:url('icons/folder_explore.png') no-repeat center center;}
  688. .icon-folder-feed { background:url('icons/folder_feed.png') no-repeat center center;}
  689. .icon-folder-film { background:url('icons/folder_film.png') no-repeat center center;}
  690. .icon-folder-find { background:url('icons/folder_find.png') no-repeat center center;}
  691. .icon-folder-font { background:url('icons/folder_font.png') no-repeat center center;}
  692. .icon-folder-go { background:url('icons/folder_go.png') no-repeat center center;}
  693. .icon-folder-heart { background:url('icons/folder_heart.png') no-repeat center center;}
  694. .icon-folder-home { background:url('icons/folder_home.png') no-repeat center center;}
  695. .icon-folder-image { background:url('icons/folder_image.png') no-repeat center center;}
  696. .icon-folder-key { background:url('icons/folder_key.png') no-repeat center center;}
  697. .icon-folder-lightbulb { background:url('icons/folder_lightbulb.png') no-repeat center center;}
  698. .icon-folder-link { background:url('icons/folder_link.png') no-repeat center center;}
  699. .icon-folder-magnify { background:url('icons/folder_magnify.png') no-repeat center center;}
  700. .icon-folder-page { background:url('icons/folder_page.png') no-repeat center center;}
  701. .icon-folder-page-white { background:url('icons/folder_page_white.png') no-repeat center center;}
  702. .icon-folder-palette { background:url('icons/folder_palette.png') no-repeat center center;}
  703. .icon-folder-picture { background:url('icons/folder_picture.png') no-repeat center center;}
  704. .icon-folder-star { background:url('icons/folder_star.png') no-repeat center center;}
  705. .icon-folder-table { background:url('icons/folder_table.png') no-repeat center center;}
  706. .icon-folder-up { background:url('icons/folder_up.png') no-repeat center center;}
  707. .icon-folder-user { background:url('icons/folder_user.png') no-repeat center center;}
  708. .icon-folder-wrench { background:url('icons/folder_wrench.png') no-repeat center center;}
  709. .icon-font { background:url('icons/font.png') no-repeat center center;}
  710. .icon-font-add { background:url('icons/font_add.png') no-repeat center center;}
  711. .icon-font-color { background:url('icons/font_color.png') no-repeat center center;}
  712. .icon-font-delete { background:url('icons/font_delete.png') no-repeat center center;}
  713. .icon-font-go { background:url('icons/font_go.png') no-repeat center center;}
  714. .icon-font-larger { background:url('icons/font_larger.png') no-repeat center center;}
  715. .icon-font-smaller { background:url('icons/font_smaller.png') no-repeat center center;}
  716. .icon-forward-blue { background:url('icons/forward_blue.png') no-repeat center center;}
  717. .icon-forward-green { background:url('icons/forward_green.png') no-repeat center center;}
  718. .icon-group { background:url('icons/group.png') no-repeat center center;}
  719. .icon-group32 { background:url('icons/group32.png') no-repeat center center;}
  720. .icon-group-add { background:url('icons/group_add.png') no-repeat center center;}
  721. .icon-group-delete { background:url('icons/group_delete.png') no-repeat center center;}
  722. .icon-group-edit { background:url('icons/group_edit.png') no-repeat center center;}
  723. .icon-group-error { background:url('icons/group_error.png') no-repeat center center;}
  724. .icon-group-gear { background:url('icons/group_gear.png') no-repeat center center;}
  725. .icon-group-go { background:url('icons/group_go.png') no-repeat center center;}
  726. .icon-group-key { background:url('icons/group_key.png') no-repeat center center;}
  727. .icon-group-link { background:url('icons/group_link.png') no-repeat center center;}
  728. .icon-heart { background:url('icons/heart.png') no-repeat center center;}
  729. .icon-heart-add { background:url('icons/heart_add.png') no-repeat center center;}
  730. .icon-heart-broken { background:url('icons/heart_broken.png') no-repeat center center;}
  731. .icon-heart-connect { background:url('icons/heart_connect.png') no-repeat center center;}
  732. .icon-heart-delete { background:url('icons/heart_delete.png') no-repeat center center;}
  733. .icon-help { background:url('icons/help.png') no-repeat center center;}
  734. .icon-hourglass { background:url('icons/hourglass.png') no-repeat center center;}
  735. .icon-hourglass-add { background:url('icons/hourglass_add.png') no-repeat center center;}
  736. .icon-hourglass-delete { background:url('icons/hourglass_delete.png') no-repeat center center;}
  737. .icon-hourglass-go { background:url('icons/hourglass_go.png') no-repeat center center;}
  738. .icon-hourglass-link { background:url('icons/hourglass_link.png') no-repeat center center;}
  739. .icon-house { background:url('icons/house.png') no-repeat center center;}
  740. .icon-house-connect { background:url('icons/house_connect.png') no-repeat center center;}
  741. .icon-house-go { background:url('icons/house_go.png') no-repeat center center;}
  742. .icon-house-in { background:url('icons/house_in.png') no-repeat center center;}
  743. .icon-house-key { background:url('icons/house_key.png') no-repeat center center;}
  744. .icon-house-link { background:url('icons/house_link.png') no-repeat center center;}
  745. .icon-house-star { background:url('icons/house_star.png') no-repeat center center;}
  746. .icon-html { background:url('icons/html.png') no-repeat center center;}
  747. .icon-html-add { background:url('icons/html_add.png') no-repeat center center;}
  748. .icon-html-delete { background:url('icons/html_delete.png') no-repeat center center;}
  749. .icon-html-error { background:url('icons/html_error.png') no-repeat center center;}
  750. .icon-html-go { background:url('icons/html_go.png') no-repeat center center;}
  751. .icon-html-valid { background:url('icons/html_valid.png') no-repeat center center;}
  752. .icon-image { background:url('icons/image.png') no-repeat center center;}
  753. .icon-images { background:url('icons/images.png') no-repeat center center;}
  754. .icon-image-add { background:url('icons/image_add.png') no-repeat center center;}
  755. .icon-image-delete { background:url('icons/image_delete.png') no-repeat center center;}
  756. .icon-image-edit { background:url('icons/image_edit.png') no-repeat center center;}
  757. .icon-image-link { background:url('icons/image_link.png') no-repeat center center;}
  758. .icon-image-magnify { background:url('icons/image_magnify.png') no-repeat center center;}
  759. .icon-image-star { background:url('icons/image_star.png') no-repeat center center;}
  760. .icon-information { background:url('icons/information.png') no-repeat center center;}
  761. .icon-ipod { background:url('icons/ipod.png') no-repeat center center;}
  762. .icon-ipod-cast { background:url('icons/ipod_cast.png') no-repeat center center;}
  763. .icon-ipod-cast-add { background:url('icons/ipod_cast_add.png') no-repeat center center;}
  764. .icon-ipod-cast-delete { background:url('icons/ipod_cast_delete.png') no-repeat center center;}
  765. .icon-ipod-connect { background:url('icons/ipod_connect.png') no-repeat center center;}
  766. .icon-ipod-nano { background:url('icons/ipod_nano.png') no-repeat center center;}
  767. .icon-ipod-nano-connect { background:url('icons/ipod_nano_connect.png') no-repeat center center;}
  768. .icon-ipod-sound { background:url('icons/ipod_sound.png') no-repeat center center;}
  769. .icon-joystick { background:url('icons/joystick.png') no-repeat center center;}
  770. .icon-joystick-add { background:url('icons/joystick_add.png') no-repeat center center;}
  771. .icon-joystick-connect { background:url('icons/joystick_connect.png') no-repeat center center;}
  772. .icon-joystick-delete { background:url('icons/joystick_delete.png') no-repeat center center;}
  773. .icon-joystick-error { background:url('icons/joystick_error.png') no-repeat center center;}
  774. .icon-key { background:url('icons/key.png') no-repeat center center;}
  775. .icon-keyboard { background:url('icons/keyboard.png') no-repeat center center;}
  776. .icon-keyboard-add { background:url('icons/keyboard_add.png') no-repeat center center;}
  777. .icon-keyboard-connect { background:url('icons/keyboard_connect.png') no-repeat center center;}
  778. .icon-keyboard-delete { background:url('icons/keyboard_delete.png') no-repeat center center;}
  779. .icon-keyboard-magnify { background:url('icons/keyboard_magnify.png') no-repeat center center;}
  780. .icon-key-add { background:url('icons/key_add.png') no-repeat center center;}
  781. .icon-key-delete { background:url('icons/key_delete.png') no-repeat center center;}
  782. .icon-key-go { background:url('icons/key_go.png') no-repeat center center;}
  783. .icon-key-start { background:url('icons/key_start.png') no-repeat center center;}
  784. .icon-key-stop { background:url('icons/key_stop.png') no-repeat center center;}
  785. .icon-laptop { background:url('icons/laptop.png') no-repeat center center;}
  786. .icon-laptop-add { background:url('icons/laptop_add.png') no-repeat center center;}
  787. .icon-laptop-connect { background:url('icons/laptop_connect.png') no-repeat center center;}
  788. .icon-laptop-delete { background:url('icons/laptop_delete.png') no-repeat center center;}
  789. .icon-laptop-disk { background:url('icons/laptop_disk.png') no-repeat center center;}
  790. .icon-laptop-edit { background:url('icons/laptop_edit.png') no-repeat center center;}
  791. .icon-laptop-error { background:url('icons/laptop_error.png') no-repeat center center;}
  792. .icon-laptop-go { background:url('icons/laptop_go.png') no-repeat center center;}
  793. .icon-laptop-key { background:url('icons/laptop_key.png') no-repeat center center;}
  794. .icon-laptop-link { background:url('icons/laptop_link.png') no-repeat center center;}
  795. .icon-laptop-magnify { background:url('icons/laptop_magnify.png') no-repeat center center;}
  796. .icon-laptop-start { background:url('icons/laptop_start.png') no-repeat center center;}
  797. .icon-laptop-stop { background:url('icons/laptop_stop.png') no-repeat center center;}
  798. .icon-laptop-wrench { background:url('icons/laptop_wrench.png') no-repeat center center;}
  799. .icon-layers { background:url('icons/layers.png') no-repeat center center;}
  800. .icon-layout { background:url('icons/layout.png') no-repeat center center;}
  801. .icon-layout-add { background:url('icons/layout_add.png') no-repeat center center;}
  802. .icon-layout-content { background:url('icons/layout_content.png') no-repeat center center;}
  803. .icon-layout-delete { background:url('icons/layout_delete.png') no-repeat center center;}
  804. .icon-layout-edit { background:url('icons/layout_edit.png') no-repeat center center;}
  805. .icon-layout-error { background:url('icons/layout_error.png') no-repeat center center;}
  806. .icon-layout-header { background:url('icons/layout_header.png') no-repeat center center;}
  807. .icon-layout-key { background:url('icons/layout_key.png') no-repeat center center;}
  808. .icon-layout-lightning { background:url('icons/layout_lightning.png') no-repeat center center;}
  809. .icon-layout-link { background:url('icons/layout_link.png') no-repeat center center;}
  810. .icon-layout-sidebar { background:url('icons/layout_sidebar.png') no-repeat center center;}
  811. .icon-lightbulb { background:url('icons/lightbulb.png') no-repeat center center;}
  812. .icon-lightbulb-add { background:url('icons/lightbulb_add.png') no-repeat center center;}
  813. .icon-lightbulb-delete { background:url('icons/lightbulb_delete.png') no-repeat center center;}
  814. .icon-lightbulb-off { background:url('icons/lightbulb_off.png') no-repeat center center;}
  815. .icon-lightning { background:url('icons/lightning.png') no-repeat center center;}
  816. .icon-lightning-add { background:url('icons/lightning_add.png') no-repeat center center;}
  817. .icon-lightning-delete { background:url('icons/lightning_delete.png') no-repeat center center;}
  818. .icon-lightning-go { background:url('icons/lightning_go.png') no-repeat center center;}
  819. .icon-link { background:url('icons/link.png') no-repeat center center;}
  820. .icon-link-add { background:url('icons/link_add.png') no-repeat center center;}
  821. .icon-link-break { background:url('icons/link_break.png') no-repeat center center;}
  822. .icon-link-delete { background:url('icons/link_delete.png') no-repeat center center;}
  823. .icon-link-edit { background:url('icons/link_edit.png') no-repeat center center;}
  824. .icon-link-error { background:url('icons/link_error.png') no-repeat center center;}
  825. .icon-link-go { background:url('icons/link_go.png') no-repeat center center;}
  826. .icon-lock { background:url('icons/lock.png') no-repeat center center;}
  827. .icon-lock-add { background:url('icons/lock_add.png') no-repeat center center;}
  828. .icon-lock-break { background:url('icons/lock_break.png') no-repeat center center;}
  829. .icon-lock-delete { background:url('icons/lock_delete.png') no-repeat center center;}
  830. .icon-lock-edit { background:url('icons/lock_edit.png') no-repeat center center;}
  831. .icon-lock-go { background:url('icons/lock_go.png') no-repeat center center;}
  832. .icon-lock-key { background:url('icons/lock_key.png') no-repeat center center;}
  833. .icon-lock-open { background:url('icons/lock_open.png') no-repeat center center;}
  834. .icon-lock-start { background:url('icons/lock_start.png') no-repeat center center;}
  835. .icon-lock-stop { background:url('icons/lock_stop.png') no-repeat center center;}
  836. .icon-lorry { background:url('icons/lorry.png') no-repeat center center;}
  837. .icon-lorry-add { background:url('icons/lorry_add.png') no-repeat center center;}
  838. .icon-lorry-delete { background:url('icons/lorry_delete.png') no-repeat center center;}
  839. .icon-lorry-error { background:url('icons/lorry_error.png') no-repeat center center;}
  840. .icon-lorry-flatbed { background:url('icons/lorry_flatbed.png') no-repeat center center;}
  841. .icon-lorry-go { background:url('icons/lorry_go.png') no-repeat center center;}
  842. .icon-lorry-link { background:url('icons/lorry_link.png') no-repeat center center;}
  843. .icon-lorry-start { background:url('icons/lorry_start.png') no-repeat center center;}
  844. .icon-lorry-stop { background:url('icons/lorry_stop.png') no-repeat center center;}
  845. .icon-magifier-zoom-out { background:url('icons/magifier_zoom_out.png') no-repeat center center;}
  846. .icon-magnifier { background:url('icons/magnifier.png') no-repeat center center;}
  847. .icon-magnifier-zoom-in { background:url('icons/magnifier_zoom_in.png') no-repeat center center;}
  848. .icon-mail { background:url('icons/mail.png') no-repeat center center;}
  849. .icon-male { background:url('icons/male.png') no-repeat center center;}
  850. .icon-map { background:url('icons/map.png') no-repeat center center;}
  851. .icon-map-add { background:url('icons/map_add.png') no-repeat center center;}
  852. .icon-map-clipboard { background:url('icons/map_clipboard.png') no-repeat center center;}
  853. .icon-map-cursor { background:url('icons/map_cursor.png') no-repeat center center;}
  854. .icon-map-delete { background:url('icons/map_delete.png') no-repeat center center;}
  855. .icon-map-edit { background:url('icons/map_edit.png') no-repeat center center;}
  856. .icon-map-error { background:url('icons/map_error.png') no-repeat center center;}
  857. .icon-map-go { background:url('icons/map_go.png') no-repeat center center;}
  858. .icon-map-link { background:url('icons/map_link.png') no-repeat center center;}
  859. .icon-map-magnify { background:url('icons/map_magnify.png') no-repeat center center;}
  860. .icon-map-start { background:url('icons/map_start.png') no-repeat center center;}
  861. .icon-map-stop { background:url('icons/map_stop.png') no-repeat center center;}
  862. .icon-medal-bronze-1 { background:url('icons/medal_bronze_1.png') no-repeat center center;}
  863. .icon-medal-bronze-2 { background:url('icons/medal_bronze_2.png') no-repeat center center;}
  864. .icon-medal-bronze-3 { background:url('icons/medal_bronze_3.png') no-repeat center center;}
  865. .icon-medal-bronze-add { background:url('icons/medal_bronze_add.png') no-repeat center center;}
  866. .icon-medal-bronze-delete { background:url('icons/medal_bronze_delete.png') no-repeat center center;}
  867. .icon-medal-gold-1 { background:url('icons/medal_gold_1.png') no-repeat center center;}
  868. .icon-medal-gold-2 { background:url('icons/medal_gold_2.png') no-repeat center center;}
  869. .icon-medal-gold-3 { background:url('icons/medal_gold_3.png') no-repeat center center;}
  870. .icon-medal-gold-add { background:url('icons/medal_gold_add.png') no-repeat center center;}
  871. .icon-medal-gold-delete { background:url('icons/medal_gold_delete.png') no-repeat center center;}
  872. .icon-medal-silver-1 { background:url('icons/medal_silver_1.png') no-repeat center center;}
  873. .icon-medal-silver-2 { background:url('icons/medal_silver_2.png') no-repeat center center;}
  874. .icon-medal-silver-3 { background:url('icons/medal_silver_3.png') no-repeat center center;}
  875. .icon-medal-silver-add { background:url('icons/medal_silver_add.png') no-repeat center center;}
  876. .icon-medal-silver-delete { background:url('icons/medal_silver_delete.png') no-repeat center center;}
  877. .icon-menu-rightarrow { background:url('icons/menu_rightarrow.png') no-repeat center center;}
  878. .icon-money { background:url('icons/money.png') no-repeat center center;}
  879. .icon-money-add { background:url('icons/money_add.png') no-repeat center center;}
  880. .icon-money-delete { background:url('icons/money_delete.png') no-repeat center center;}
  881. .icon-money-dollar { background:url('icons/money_dollar.png') no-repeat center center;}
  882. .icon-money-euro { background:url('icons/money_euro.png') no-repeat center center;}
  883. .icon-money-pound { background:url('icons/money_pound.png') no-repeat center center;}
  884. .icon-money-yen { background:url('icons/money_yen.png') no-repeat center center;}
  885. .icon-monitor { background:url('icons/monitor.png') no-repeat center center;}
  886. .icon-monitor-add { background:url('icons/monitor_add.png') no-repeat center center;}
  887. .icon-monitor-delete { background:url('icons/monitor_delete.png') no-repeat center center;}
  888. .icon-monitor-edit { background:url('icons/monitor_edit.png') no-repeat center center;}
  889. .icon-monitor-error { background:url('icons/monitor_error.png') no-repeat center center;}
  890. .icon-monitor-go { background:url('icons/monitor_go.png') no-repeat center center;}
  891. .icon-monitor-key { background:url('icons/monitor_key.png') no-repeat center center;}
  892. .icon-monitor-lightning { background:url('icons/monitor_lightning.png') no-repeat center center;}
  893. .icon-monitor-link { background:url('icons/monitor_link.png') no-repeat center center;}
  894. .icon-moon-full { background:url('icons/moon_full.png') no-repeat center center;}
  895. .icon-mouse { background:url('icons/mouse.png') no-repeat center center;}
  896. .icon-mouse-add { background:url('icons/mouse_add.png') no-repeat center center;}
  897. .icon-mouse-delete { background:url('icons/mouse_delete.png') no-repeat center center;}
  898. .icon-mouse-error { background:url('icons/mouse_error.png') no-repeat center center;}
  899. .icon-music { background:url('icons/music.png') no-repeat center center;}
  900. .icon-music-note { background:url('icons/music_note.png') no-repeat center center;}
  901. .icon-neighbourhood { background:url('icons/neighbourhood.png') no-repeat center center;}
  902. .icon-new { background:url('icons/new.png') no-repeat center center;}
  903. .icon-newspaper { background:url('icons/newspaper.png') no-repeat center center;}
  904. .icon-newspaper-add { background:url('icons/newspaper_add.png') no-repeat center center;}
  905. .icon-newspaper-delete { background:url('icons/newspaper_delete.png') no-repeat center center;}
  906. .icon-newspaper-go { background:url('icons/newspaper_go.png') no-repeat center center;}
  907. .icon-newspaper-link { background:url('icons/newspaper_link.png') no-repeat center center;}
  908. .icon-new-blue { background:url('icons/new_blue.png') no-repeat center center;}
  909. .icon-new-red { background:url('icons/new_red.png') no-repeat center center;}
  910. .icon-next-green { background:url('icons/next-green.png') no-repeat center center;}
  911. .icon-next { background:url('icons/next.png') no-repeat center center;}
  912. .icon-next-blue { background:url('icons/next_blue.png') no-repeat center center;}
  913. .icon-next-green { background:url('icons/next_green.png') no-repeat center center;}
  914. .icon-node-tree16 { background:url('icons/node_tree16.png') no-repeat center center;}
  915. .icon-node-tree32 { background:url('icons/node_tree32.png') no-repeat center center;}
  916. .icon-note { background:url('icons/note.png') no-repeat center center;}
  917. .icon-note-add { background:url('icons/note_add.png') no-repeat center center;}
  918. .icon-note-delete { background:url('icons/note_delete.png') no-repeat center center;}
  919. .icon-note-edit { background:url('icons/note_edit.png') no-repeat center center;}
  920. .icon-note-error { background:url('icons/note_error.png') no-repeat center center;}
  921. .icon-note-go { background:url('icons/note_go.png') no-repeat center center;}
  922. .icon-ok { background:url('icons/ok.png') no-repeat center center;}
  923. .icon-org32 { background:url('icons/org32.png') no-repeat center center;}
  924. .icon-organization { background:url('icons/organization.png') no-repeat center center;}
  925. .icon-outline { background:url('icons/outline.png') no-repeat center center;}
  926. .icon-overlays { background:url('icons/overlays.png') no-repeat center center;}
  927. .icon-package { background:url('icons/package.png') no-repeat center center;}
  928. .icon-package-add { background:url('icons/package_add.png') no-repeat center center;}
  929. .icon-package-delete { background:url('icons/package_delete.png') no-repeat center center;}
  930. .icon-package-down { background:url('icons/package_down.png') no-repeat center center;}
  931. .icon-package-go { background:url('icons/package_go.png') no-repeat center center;}
  932. .icon-package-green { background:url('icons/package_green.png') no-repeat center center;}
  933. .icon-package-in { background:url('icons/package_in.png') no-repeat center center;}
  934. .icon-package-link { background:url('icons/package_link.png') no-repeat center center;}
  935. .icon-package-se { background:url('icons/package_se.png') no-repeat center center;}
  936. .icon-package-start { background:url('icons/package_start.png') no-repeat center center;}
  937. .icon-package-stop { background:url('icons/package_stop.png') no-repeat center center;}
  938. .icon-package-system { background:url('icons/package_system.png') no-repeat center center;}
  939. .icon-package-white { background:url('icons/package_white.png') no-repeat center center;}
  940. .icon-page { background:url('icons/page.png') no-repeat center center;}
  941. .icon-page-add { background:url('icons/page_add.png') no-repeat center center;}
  942. .icon-page-attach { background:url('icons/page_attach.png') no-repeat center center;}
  943. .icon-page-back { background:url('icons/page_back.png') no-repeat center center;}
  944. .icon-page-break { background:url('icons/page_break.png') no-repeat center center;}
  945. .icon-page-break-insert { background:url('icons/page_break_insert.png') no-repeat center center;}
  946. .icon-page-cancel { background:url('icons/page_cancel.png') no-repeat center center;}
  947. .icon-page-code { background:url('icons/page_code.png') no-repeat center center;}
  948. .icon-page-copy { background:url('icons/page_copy.png') no-repeat center center;}
  949. .icon-page-delete { background:url('icons/page_delete.png') no-repeat center center;}
  950. .icon-page-edit { background:url('icons/page_edit.png') no-repeat center center;}
  951. .icon-page-error { background:url('icons/page_error.png') no-repeat center center;}
  952. .icon-page-excel { background:url('icons/page_excel.png') no-repeat center center;}
  953. .icon-page-find { background:url('icons/page_find.png') no-repeat center center;}
  954. .icon-page-forward { background:url('icons/page_forward.png') no-repeat center center;}
  955. .icon-page-gear { background:url('icons/page_gear.png') no-repeat center center;}
  956. .icon-page-go { background:url('icons/page_go.png') no-repeat center center;}
  957. .icon-page-green { background:url('icons/page_green.png') no-repeat center center;}
  958. .icon-page-header-footer { background:url('icons/page_header_footer.png') no-repeat center center;}
  959. .icon-page-key { background:url('icons/page_key.png') no-repeat center center;}
  960. .icon-page-landscape { background:url('icons/page_landscape.png') no-repeat center center;}
  961. .icon-page-landscape-shot { background:url('icons/page_landscape_shot.png') no-repeat center center;}
  962. .icon-page-lightning { background:url('icons/page_lightning.png') no-repeat center center;}
  963. .icon-page-link { background:url('icons/page_link.png') no-repeat center center;}
  964. .icon-page-magnify { background:url('icons/page_magnify.png') no-repeat center center;}
  965. .icon-page-paintbrush { background:url('icons/page_paintbrush.png') no-repeat center center;}
  966. .icon-page-paste { background:url('icons/page_paste.png') no-repeat center center;}
  967. .icon-page-portrait { background:url('icons/page_portrait.png') no-repeat center center;}
  968. .icon-page-portrait-shot { background:url('icons/page_portrait_shot.png') no-repeat center center;}
  969. .icon-page-red { background:url('icons/page_red.png') no-repeat center center;}
  970. .icon-page-refresh { background:url('icons/page_refresh.png') no-repeat center center;}
  971. .icon-page-save { background:url('icons/page_save.png') no-repeat center center;}
  972. .icon-page-white { background:url('icons/page_white.png') no-repeat center center;}
  973. .icon-page-white-acrobat { background:url('icons/page_white_acrobat.png') no-repeat center center;}
  974. .icon-page-white-actionscript { background:url('icons/page_white_actionscript.png') no-repeat center center;}
  975. .icon-page-white-add { background:url('icons/page_white_add.png') no-repeat center center;}
  976. .icon-page-white-break { background:url('icons/page_white_break.png') no-repeat center center;}
  977. .icon-page-white-c { background:url('icons/page_white_c.png') no-repeat center center;}
  978. .icon-page-white-camera { background:url('icons/page_white_camera.png') no-repeat center center;}
  979. .icon-page-white-cd { background:url('icons/page_white_cd.png') no-repeat center center;}
  980. .icon-page-white-cdr { background:url('icons/page_white_cdr.png') no-repeat center center;}
  981. .icon-page-white-code { background:url('icons/page_white_code.png') no-repeat center center;}
  982. .icon-page-white-code-red { background:url('icons/page_white_code_red.png') no-repeat center center;}
  983. .icon-page-white-coldfusion { background:url('icons/page_white_coldfusion.png') no-repeat center center;}
  984. .icon-page-white-compressed { background:url('icons/page_white_compressed.png') no-repeat center center;}
  985. .icon-page-white-connect { background:url('icons/page_white_connect.png') no-repeat center center;}
  986. .icon-page-white-copy { background:url('icons/page_white_copy.png') no-repeat center center;}
  987. .icon-page-white-cplusplus { background:url('icons/page_white_cplusplus.png') no-repeat center center;}
  988. .icon-page-white-csharp { background:url('icons/page_white_csharp.png') no-repeat center center;}
  989. .icon-page-white-cup { background:url('icons/page_white_cup.png') no-repeat center center;}
  990. .icon-page-white-database { background:url('icons/page_white_database.png') no-repeat center center;}
  991. .icon-page-white-database-yellow { background:url('icons/page_white_database_yellow.png') no-repeat center center;}
  992. .icon-page-white-delete { background:url('icons/page_white_delete.png') no-repeat center center;}
  993. .icon-page-white-dvd { background:url('icons/page_white_dvd.png') no-repeat center center;}
  994. .icon-page-white-edit { background:url('icons/page_white_edit.png') no-repeat center center;}
  995. .icon-page-white-error { background:url('icons/page_white_error.png') no-repeat center center;}
  996. .icon-page-white-excel { background:url('icons/page_white_excel.png') no-repeat center center;}
  997. .icon-page-white-find { background:url('icons/page_white_find.png') no-repeat center center;}
  998. .icon-page-white-flash { background:url('icons/page_white_flash.png') no-repeat center center;}
  999. .icon-page-white-font { background:url('icons/page_white_font.png') no-repeat center center;}
  1000. .icon-page-white-freehand { background:url('icons/page_white_freehand.png') no-repeat center center;}
  1001. .icon-page-white-gear { background:url('icons/page_white_gear.png') no-repeat center center;}
  1002. .icon-page-white-get { background:url('icons/page_white_get.png') no-repeat center center;}
  1003. .icon-page-white-go { background:url('icons/page_white_go.png') no-repeat center center;}
  1004. .icon-page-white-h { background:url('icons/page_white_h.png') no-repeat center center;}
  1005. .icon-page-white-horizontal { background:url('icons/page_white_horizontal.png') no-repeat center center;}
  1006. .icon-page-white-key { background:url('icons/page_white_key.png') no-repeat center center;}
  1007. .icon-page-white-lightning { background:url('icons/page_white_lightning.png') no-repeat center center;}
  1008. .icon-page-white-link { background:url('icons/page_white_link.png') no-repeat center center;}
  1009. .icon-page-white-magnify { background:url('icons/page_white_magnify.png') no-repeat center center;}
  1010. .icon-page-white-medal { background:url('icons/page_white_medal.png') no-repeat center center;}
  1011. .icon-page-white-office { background:url('icons/page_white_office.png') no-repeat center center;}
  1012. .icon-page-white-paint { background:url('icons/page_white_paint.png') no-repeat center center;}
  1013. .icon-page-white-paintbrush { background:url('icons/page_white_paintbrush.png') no-repeat center center;}
  1014. .icon-page-white-paste { background:url('icons/page_white_paste.png') no-repeat center center;}
  1015. .icon-page-white-paste-table { background:url('icons/page_white_paste_table.png') no-repeat center center;}
  1016. .icon-page-white-php { background:url('icons/page_white_php.png') no-repeat center center;}
  1017. .icon-page-white-picture { background:url('icons/page_white_picture.png') no-repeat center center;}
  1018. .icon-page-white-powerpoint { background:url('icons/page_white_powerpoint.png') no-repeat center center;}
  1019. .icon-page-white-put { background:url('icons/page_white_put.png') no-repeat center center;}
  1020. .icon-page-white-refresh { background:url('icons/page_white_refresh.png') no-repeat center center;}
  1021. .icon-page-white-ruby { background:url('icons/page_white_ruby.png') no-repeat center center;}
  1022. .icon-page-white-side-by-side { background:url('icons/page_white_side_by_side.png') no-repeat center center;}
  1023. .icon-page-white-stack { background:url('icons/page_white_stack.png') no-repeat center center;}
  1024. .icon-page-white-star { background:url('icons/page_white_star.png') no-repeat center center;}
  1025. .icon-page-white-swoosh { background:url('icons/page_white_swoosh.png') no-repeat center center;}
  1026. .icon-page-white-text { background:url('icons/page_white_text.png') no-repeat center center;}
  1027. .icon-page-white-text-width { background:url('icons/page_white_text_width.png') no-repeat center center;}
  1028. .icon-page-white-tux { background:url('icons/page_white_tux.png') no-repeat center center;}
  1029. .icon-page-white-vector { background:url('icons/page_white_vector.png') no-repeat center center;}
  1030. .icon-page-white-visualstudio { background:url('icons/page_white_visualstudio.png') no-repeat center center;}
  1031. .icon-page-white-width { background:url('icons/page_white_width.png') no-repeat center center;}
  1032. .icon-page-white-word { background:url('icons/page_white_word.png') no-repeat center center;}
  1033. .icon-page-white-world { background:url('icons/page_white_world.png') no-repeat center center;}
  1034. .icon-page-white-wrench { background:url('icons/page_white_wrench.png') no-repeat center center;}
  1035. .icon-page-white-zip { background:url('icons/page_white_zip.png') no-repeat center center;}
  1036. .icon-page-word { background:url('icons/page_word.png') no-repeat center center;}
  1037. .icon-page-world { background:url('icons/page_world.png') no-repeat center center;}
  1038. .icon-paint { background:url('icons/paint.png') no-repeat center center;}
  1039. .icon-paintbrush { background:url('icons/paintbrush.png') no-repeat center center;}
  1040. .icon-paintbrush-color { background:url('icons/paintbrush_color.png') no-repeat center center;}
  1041. .icon-paintcan { background:url('icons/paintcan.png') no-repeat center center;}
  1042. .icon-paintcan-red { background:url('icons/paintcan_red.png') no-repeat center center;}
  1043. .icon-paint-can-brush { background:url('icons/paint_can_brush.png') no-repeat center center;}
  1044. .icon-palette { background:url('icons/palette.png') no-repeat center center;}
  1045. .icon-paste-plain { background:url('icons/paste_plain.png') no-repeat center center;}
  1046. .icon-paste-word { background:url('icons/paste_word.png') no-repeat center center;}
  1047. .icon-pause-blue { background:url('icons/pause_blue.png') no-repeat center center;}
  1048. .icon-pause-green { background:url('icons/pause_green.png') no-repeat center center;}
  1049. .icon-pause-record { background:url('icons/pause_record.png') no-repeat center center;}
  1050. .icon-pencil { background:url('icons/pencil.png') no-repeat center center;}
  1051. .icon-pencil-add { background:url('icons/pencil_add.png') no-repeat center center;}
  1052. .icon-pencil-delete { background:url('icons/pencil_delete.png') no-repeat center center;}
  1053. .icon-pencil-go { background:url('icons/pencil_go.png') no-repeat center center;}
  1054. .icon-personal { background:url('icons/personal.png') no-repeat center center;}
  1055. .icon-phone { background:url('icons/phone.png') no-repeat center center;}
  1056. .icon-phone-add { background:url('icons/phone_add.png') no-repeat center center;}
  1057. .icon-phone-delete { background:url('icons/phone_delete.png') no-repeat center center;}
  1058. .icon-phone-edit { background:url('icons/phone_edit.png') no-repeat center center;}
  1059. .icon-phone-error { background:url('icons/phone_error.png') no-repeat center center;}
  1060. .icon-phone-go { background:url('icons/phone_go.png') no-repeat center center;}
  1061. .icon-phone-key { background:url('icons/phone_key.png') no-repeat center center;}
  1062. .icon-phone-link { background:url('icons/phone_link.png') no-repeat center center;}
  1063. .icon-phone-sound { background:url('icons/phone_sound.png') no-repeat center center;}
  1064. .icon-phone-start { background:url('icons/phone_start.png') no-repeat center center;}
  1065. .icon-phone-stop { background:url('icons/phone_stop.png') no-repeat center center;}
  1066. .icon-photo { background:url('icons/photo.png') no-repeat center center;}
  1067. .icon-photos { background:url('icons/photos.png') no-repeat center center;}
  1068. .icon-photo-add { background:url('icons/photo_add.png') no-repeat center center;}
  1069. .icon-photo-delete { background:url('icons/photo_delete.png') no-repeat center center;}
  1070. .icon-photo-edit { background:url('icons/photo_edit.png') no-repeat center center;}
  1071. .icon-photo-link { background:url('icons/photo_link.png') no-repeat center center;}
  1072. .icon-photo-paint { background:url('icons/photo_paint.png') no-repeat center center;}
  1073. .icon-picture { background:url('icons/picture.png') no-repeat center center;}
  1074. .icon-pictures { background:url('icons/pictures.png') no-repeat center center;}
  1075. .icon-pictures-thumbs { background:url('icons/pictures_thumbs.png') no-repeat center center;}
  1076. .icon-picture-add { background:url('icons/picture_add.png') no-repeat center center;}
  1077. .icon-picture-clipboard { background:url('icons/picture_clipboard.png') no-repeat center center;}
  1078. .icon-picture-delete { background:url('icons/picture_delete.png') no-repeat center center;}
  1079. .icon-picture-edit { background:url('icons/picture_edit.png') no-repeat center center;}
  1080. .icon-picture-empty { background:url('icons/picture_empty.png') no-repeat center center;}
  1081. .icon-picture-error { background:url('icons/picture_error.png') no-repeat center center;}
  1082. .icon-picture-go { background:url('icons/picture_go.png') no-repeat center center;}
  1083. .icon-picture-key { background:url('icons/picture_key.png') no-repeat center center;}
  1084. .icon-picture-link { background:url('icons/picture_link.png') no-repeat center center;}
  1085. .icon-picture-save { background:url('icons/picture_save.png') no-repeat center center;}
  1086. .icon-pilcrow { background:url('icons/pilcrow.png') no-repeat center center;}
  1087. .icon-pill { background:url('icons/pill.png') no-repeat center center;}
  1088. .icon-pill-add { background:url('icons/pill_add.png') no-repeat center center;}
  1089. .icon-pill-delete { background:url('icons/pill_delete.png') no-repeat center center;}
  1090. .icon-pill-error { background:url('icons/pill_error.png') no-repeat center center;}
  1091. .icon-pill-go { background:url('icons/pill_go.png') no-repeat center center;}
  1092. .icon-play-blue { background:url('icons/play_blue.png') no-repeat center center;}
  1093. .icon-play-green { background:url('icons/play_green.png') no-repeat center center;}
  1094. .icon-plugin { background:url('icons/plugin.png') no-repeat center center;}
  1095. .icon-plugin-add { background:url('icons/plugin_add.png') no-repeat center center;}
  1096. .icon-plugin-delete { background:url('icons/plugin_delete.png') no-repeat center center;}
  1097. .icon-plugin-disabled { background:url('icons/plugin_disabled.png') no-repeat center center;}
  1098. .icon-plugin-edit { background:url('icons/plugin_edit.png') no-repeat center center;}
  1099. .icon-plugin-error { background:url('icons/plugin_error.png') no-repeat center center;}
  1100. .icon-plugin-go { background:url('icons/plugin_go.png') no-repeat center center;}
  1101. .icon-plugin-key { background:url('icons/plugin_key.png') no-repeat center center;}
  1102. .icon-plugin-link { background:url('icons/plugin_link.png') no-repeat center center;}
  1103. .icon-previous-green { background:url('icons/previous-green.png') no-repeat center center;}
  1104. .icon-previous { background:url('icons/previous.png') no-repeat center center;}
  1105. .icon-printer { background:url('icons/printer.png') no-repeat center center;}
  1106. .icon-printer-add { background:url('icons/printer_add.png') no-repeat center center;}
  1107. .icon-printer-cancel { background:url('icons/printer_cancel.png') no-repeat center center;}
  1108. .icon-printer-color { background:url('icons/printer_color.png') no-repeat center center;}
  1109. .icon-printer-connect { background:url('icons/printer_connect.png') no-repeat center center;}
  1110. .icon-printer-delete { background:url('icons/printer_delete.png') no-repeat center center;}
  1111. .icon-printer-empty { background:url('icons/printer_empty.png') no-repeat center center;}
  1112. .icon-printer-error { background:url('icons/printer_error.png') no-repeat center center;}
  1113. .icon-printer-go { background:url('icons/printer_go.png') no-repeat center center;}
  1114. .icon-printer-key { background:url('icons/printer_key.png') no-repeat center center;}
  1115. .icon-printer-mono { background:url('icons/printer_mono.png') no-repeat center center;}
  1116. .icon-printer-start { background:url('icons/printer_start.png') no-repeat center center;}
  1117. .icon-printer-stop { background:url('icons/printer_stop.png') no-repeat center center;}
  1118. .icon-rainbow { background:url('icons/rainbow.png') no-repeat center center;}
  1119. .icon-rainbow-star { background:url('icons/rainbow_star.png') no-repeat center center;}
  1120. .icon-record-blue { background:url('icons/record_blue.png') no-repeat center center;}
  1121. .icon-record-green { background:url('icons/record_green.png') no-repeat center center;}
  1122. .icon-record-red { background:url('icons/record_red.png') no-repeat center center;}
  1123. .icon-refresh { background:url('icons/refresh.png') no-repeat center center;}
  1124. .icon-reload { background:url('icons/reload.png') no-repeat center center;}
  1125. .icon-report { background:url('icons/report.png') no-repeat center center;}
  1126. .icon-report-add { background:url('icons/report_add.png') no-repeat center center;}
  1127. .icon-report-delete { background:url('icons/report_delete.png') no-repeat center center;}
  1128. .icon-report-disk { background:url('icons/report_disk.png') no-repeat center center;}
  1129. .icon-report-edit { background:url('icons/report_edit.png') no-repeat center center;}
  1130. .icon-report-go { background:url('icons/report_go.png') no-repeat center center;}
  1131. .icon-report-key { background:url('icons/report_key.png') no-repeat center center;}
  1132. .icon-report-link { background:url('icons/report_link.png') no-repeat center center;}
  1133. .icon-report-magnify { background:url('icons/report_magnify.png') no-repeat center center;}
  1134. .icon-report-picture { background:url('icons/report_picture.png') no-repeat center center;}
  1135. .icon-report-start { background:url('icons/report_start.png') no-repeat center center;}
  1136. .icon-report-stop { background:url('icons/report_stop.png') no-repeat center center;}
  1137. .icon-report-user { background:url('icons/report_user.png') no-repeat center center;}
  1138. .icon-report-word { background:url('icons/report_word.png') no-repeat center center;}
  1139. .icon-resultset-first { background:url('icons/resultset_first.png') no-repeat center center;}
  1140. .icon-resultset-last { background:url('icons/resultset_last.png') no-repeat center center;}
  1141. .icon-resultset-next { background:url('icons/resultset_next.png') no-repeat center center;}
  1142. .icon-resultset-previous { background:url('icons/resultset_previous.png') no-repeat center center;}
  1143. .icon-reverse-blue { background:url('icons/reverse_blue.png') no-repeat center center;}
  1144. .icon-reverse-green { background:url('icons/reverse_green.png') no-repeat center center;}
  1145. .icon-rewind-blue { background:url('icons/rewind_blue.png') no-repeat center center;}
  1146. .icon-rewind-green { background:url('icons/rewind_green.png') no-repeat center center;}
  1147. .icon-rgb { background:url('icons/rgb.png') no-repeat center center;}
  1148. .icon-rosette { background:url('icons/rosette.png') no-repeat center center;}
  1149. .icon-rosette-blue { background:url('icons/rosette_blue.png') no-repeat center center;}
  1150. .icon-rss { background:url('icons/rss.png') no-repeat center center;}
  1151. .icon-rss-add { background:url('icons/rss_add.png') no-repeat center center;}
  1152. .icon-rss-delete { background:url('icons/rss_delete.png') no-repeat center center;}
  1153. .icon-rss-error { background:url('icons/rss_error.png') no-repeat center center;}
  1154. .icon-rss-go { background:url('icons/rss_go.png') no-repeat center center;}
  1155. .icon-rss-valid { background:url('icons/rss_valid.png') no-repeat center center;}
  1156. .icon-ruby { background:url('icons/ruby.png') no-repeat center center;}
  1157. .icon-ruby-add { background:url('icons/ruby_add.png') no-repeat center center;}
  1158. .icon-ruby-delete { background:url('icons/ruby_delete.png') no-repeat center center;}
  1159. .icon-ruby-gear { background:url('icons/ruby_gear.png') no-repeat center center;}
  1160. .icon-ruby-get { background:url('icons/ruby_get.png') no-repeat center center;}
  1161. .icon-ruby-go { background:url('icons/ruby_go.png') no-repeat center center;}
  1162. .icon-ruby-key { background:url('icons/ruby_key.png') no-repeat center center;}
  1163. .icon-ruby-link { background:url('icons/ruby_link.png') no-repeat center center;}
  1164. .icon-ruby-put { background:url('icons/ruby_put.png') no-repeat center center;}
  1165. .icon-script { background:url('icons/script.png') no-repeat center center;}
  1166. .icon-script-add { background:url('icons/script_add.png') no-repeat center center;}
  1167. .icon-script-code { background:url('icons/script_code.png') no-repeat center center;}
  1168. .icon-script-code-red { background:url('icons/script_code_red.png') no-repeat center center;}
  1169. .icon-script-delete { background:url('icons/script_delete.png') no-repeat center center;}
  1170. .icon-script-edit { background:url('icons/script_edit.png') no-repeat center center;}
  1171. .icon-script-error { background:url('icons/script_error.png') no-repeat center center;}
  1172. .icon-script-gear { background:url('icons/script_gear.png') no-repeat center center;}
  1173. .icon-script-go { background:url('icons/script_go.png') no-repeat center center;}
  1174. .icon-script-key { background:url('icons/script_key.png') no-repeat center center;}
  1175. .icon-script-lightning { background:url('icons/script_lightning.png') no-repeat center center;}
  1176. .icon-script-link { background:url('icons/script_link.png') no-repeat center center;}
  1177. .icon-script-palette { background:url('icons/script_palette.png') no-repeat center center;}
  1178. .icon-script-save { background:url('icons/script_save.png') no-repeat center center;}
  1179. .icon-script-start { background:url('icons/script_start.png') no-repeat center center;}
  1180. .icon-script-stop { background:url('icons/script_stop.png') no-repeat center center;}
  1181. .icon-search { background:url('icons/search.png') no-repeat center center;}
  1182. .icon-seasons { background:url('icons/seasons.png') no-repeat center center;}
  1183. .icon-section-collapsed { background:url('icons/section_collapsed.png') no-repeat center center;}
  1184. .icon-section-expanded { background:url('icons/section_expanded.png') no-repeat center center;}
  1185. .icon-server { background:url('icons/server.png') no-repeat center center;}
  1186. .icon-server-add { background:url('icons/server_add.png') no-repeat center center;}
  1187. .icon-server-chart { background:url('icons/server_chart.png') no-repeat center center;}
  1188. .icon-server-compressed { background:url('icons/server_compressed.png') no-repeat center center;}
  1189. .icon-server-connect { background:url('icons/server_connect.png') no-repeat center center;}
  1190. .icon-server-database { background:url('icons/server_database.png') no-repeat center center;}
  1191. .icon-server-delete { background:url('icons/server_delete.png') no-repeat center center;}
  1192. .icon-server-edit { background:url('icons/server_edit.png') no-repeat center center;}
  1193. .icon-server-error { background:url('icons/server_error.png') no-repeat center center;}
  1194. .icon-server-go { background:url('icons/server_go.png') no-repeat center center;}
  1195. .icon-server-key { background:url('icons/server_key.png') no-repeat center center;}
  1196. .icon-server-lightning { background:url('icons/server_lightning.png') no-repeat center center;}
  1197. .icon-server-link { background:url('icons/server_link.png') no-repeat center center;}
  1198. .icon-server-start { background:url('icons/server_start.png') no-repeat center center;}
  1199. .icon-server-stop { background:url('icons/server_stop.png') no-repeat center center;}
  1200. .icon-server-uncompressed { background:url('icons/server_uncompressed.png') no-repeat center center;}
  1201. .icon-server-wrench { background:url('icons/server_wrench.png') no-repeat center center;}
  1202. .icon-settings32 { background:url('icons/settings32.png') no-repeat center center;}
  1203. .icon-shading { background:url('icons/shading.png') no-repeat center center;}
  1204. .icon-shapes-many { background:url('icons/shapes_many.png') no-repeat center center;}
  1205. .icon-shapes-many-select { background:url('icons/shapes_many_select.png') no-repeat center center;}
  1206. .icon-shape-3d { background:url('icons/shape_3d.png') no-repeat center center;}
  1207. .icon-shape-align-bottom { background:url('icons/shape_align_bottom.png') no-repeat center center;}
  1208. .icon-shape-align-center { background:url('icons/shape_align_center.png') no-repeat center center;}
  1209. .icon-shape-align-left { background:url('icons/shape_align_left.png') no-repeat center center;}
  1210. .icon-shape-align-middle { background:url('icons/shape_align_middle.png') no-repeat center center;}
  1211. .icon-shape-align-right { background:url('icons/shape_align_right.png') no-repeat center center;}
  1212. .icon-shape-align-top { background:url('icons/shape_align_top.png') no-repeat center center;}
  1213. .icon-shape-flip-horizontal { background:url('icons/shape_flip_horizontal.png') no-repeat center center;}
  1214. .icon-shape-flip-vertical { background:url('icons/shape_flip_vertical.png') no-repeat center center;}
  1215. .icon-shape-group { background:url('icons/shape_group.png') no-repeat center center;}
  1216. .icon-shape-handles { background:url('icons/shape_handles.png') no-repeat center center;}
  1217. .icon-shape-move-back { background:url('icons/shape_move_back.png') no-repeat center center;}
  1218. .icon-shape-move-backwards { background:url('icons/shape_move_backwards.png') no-repeat center center;}
  1219. .icon-shape-move-forwards { background:url('icons/shape_move_forwards.png') no-repeat center center;}
  1220. .icon-shape-move-front { background:url('icons/shape_move_front.png') no-repeat center center;}
  1221. .icon-shape-rotate-anticlockwise { background:url('icons/shape_rotate_anticlockwise.png') no-repeat center center;}
  1222. .icon-shape-rotate-clockwise { background:url('icons/shape_rotate_clockwise.png') no-repeat center center;}
  1223. .icon-shape-shade-a { background:url('icons/shape_shade_a.png') no-repeat center center;}
  1224. .icon-shape-shade-b { background:url('icons/shape_shade_b.png') no-repeat center center;}
  1225. .icon-shape-shade-c { background:url('icons/shape_shade_c.png') no-repeat center center;}
  1226. .icon-shape-shadow { background:url('icons/shape_shadow.png') no-repeat center center;}
  1227. .icon-shape-shadow-toggle { background:url('icons/shape_shadow_toggle.png') no-repeat center center;}
  1228. .icon-shape-square { background:url('icons/shape_square.png') no-repeat center center;}
  1229. .icon-shape-square-add { background:url('icons/shape_square_add.png') no-repeat center center;}
  1230. .icon-shape-square-delete { background:url('icons/shape_square_delete.png') no-repeat center center;}
  1231. .icon-shape-square-edit { background:url('icons/shape_square_edit.png') no-repeat center center;}
  1232. .icon-shape-square-error { background:url('icons/shape_square_error.png') no-repeat center center;}
  1233. .icon-shape-square-go { background:url('icons/shape_square_go.png') no-repeat center center;}
  1234. .icon-shape-square-key { background:url('icons/shape_square_key.png') no-repeat center center;}
  1235. .icon-shape-square-link { background:url('icons/shape_square_link.png') no-repeat center center;}
  1236. .icon-shape-square-select { background:url('icons/shape_square_select.png') no-repeat center center;}
  1237. .icon-shape-ungroup { background:url('icons/shape_ungroup.png') no-repeat center center;}
  1238. .icon-share { background:url('icons/share.png') no-repeat center center;}
  1239. .icon-shield { background:url('icons/shield.png') no-repeat center center;}
  1240. .icon-shield-add { background:url('icons/shield_add.png') no-repeat center center;}
  1241. .icon-shield-delete { background:url('icons/shield_delete.png') no-repeat center center;}
  1242. .icon-shield-error { background:url('icons/shield_error.png') no-repeat center center;}
  1243. .icon-shield-go { background:url('icons/shield_go.png') no-repeat center center;}
  1244. .icon-shield-rainbow { background:url('icons/shield_rainbow.png') no-repeat center center;}
  1245. .icon-shield-silver { background:url('icons/shield_silver.png') no-repeat center center;}
  1246. .icon-shield-start { background:url('icons/shield_start.png') no-repeat center center;}
  1247. .icon-shield-stop { background:url('icons/shield_stop.png') no-repeat center center;}
  1248. .icon-sitemap { background:url('icons/sitemap.png') no-repeat center center;}
  1249. .icon-sitemap-color { background:url('icons/sitemap_color.png') no-repeat center center;}
  1250. .icon-smartphone { background:url('icons/smartphone.png') no-repeat center center;}
  1251. .icon-smartphone-add { background:url('icons/smartphone_add.png') no-repeat center center;}
  1252. .icon-smartphone-connect { background:url('icons/smartphone_connect.png') no-repeat center center;}
  1253. .icon-smartphone-delete { background:url('icons/smartphone_delete.png') no-repeat center center;}
  1254. .icon-smartphone-disk { background:url('icons/smartphone_disk.png') no-repeat center center;}
  1255. .icon-smartphone-edit { background:url('icons/smartphone_edit.png') no-repeat center center;}
  1256. .icon-smartphone-error { background:url('icons/smartphone_error.png') no-repeat center center;}
  1257. .icon-smartphone-go { background:url('icons/smartphone_go.png') no-repeat center center;}
  1258. .icon-smartphone-key { background:url('icons/smartphone_key.png') no-repeat center center;}
  1259. .icon-smartphone-wrench { background:url('icons/smartphone_wrench.png') no-repeat center center;}
  1260. .icon-sort-ascending { background:url('icons/sort_ascending.png') no-repeat center center;}
  1261. .icon-sort-descending { background:url('icons/sort_descending.png') no-repeat center center;}
  1262. .icon-sound { background:url('icons/sound.png') no-repeat center center;}
  1263. .icon-sound-add { background:url('icons/sound_add.png') no-repeat center center;}
  1264. .icon-sound-delete { background:url('icons/sound_delete.png') no-repeat center center;}
  1265. .icon-sound-high { background:url('icons/sound_high.png') no-repeat center center;}
  1266. .icon-sound-in { background:url('icons/sound_in.png') no-repeat center center;}
  1267. .icon-sound-low { background:url('icons/sound_low.png') no-repeat center center;}
  1268. .icon-sound-mute { background:url('icons/sound_mute.png') no-repeat center center;}
  1269. .icon-sound-none { background:url('icons/sound_none.png') no-repeat center center;}
  1270. .icon-sound-out { background:url('icons/sound_out.png') no-repeat center center;}
  1271. .icon-spellcheck { background:url('icons/spellcheck.png') no-repeat center center;}
  1272. .icon-sport-8ball { background:url('icons/sport_8ball.png') no-repeat center center;}
  1273. .icon-sport-basketball { background:url('icons/sport_basketball.png') no-repeat center center;}
  1274. .icon-sport-football { background:url('icons/sport_football.png') no-repeat center center;}
  1275. .icon-sport-golf { background:url('icons/sport_golf.png') no-repeat center center;}
  1276. .icon-sport-golf-practice { background:url('icons/sport_golf_practice.png') no-repeat center center;}
  1277. .icon-sport-raquet { background:url('icons/sport_raquet.png') no-repeat center center;}
  1278. .icon-sport-shuttlecock { background:url('icons/sport_shuttlecock.png') no-repeat center center;}
  1279. .icon-sport-soccer { background:url('icons/sport_soccer.png') no-repeat center center;}
  1280. .icon-sport-tennis { background:url('icons/sport_tennis.png') no-repeat center center;}
  1281. .icon-star { background:url('icons/star.png') no-repeat center center;}
  1282. .icon-star-bronze { background:url('icons/star_bronze.png') no-repeat center center;}
  1283. .icon-star-bronze-half-grey { background:url('icons/star_bronze_half_grey.png') no-repeat center center;}
  1284. .icon-star-gold { background:url('icons/star_gold.png') no-repeat center center;}
  1285. .icon-star-gold-half-grey { background:url('icons/star_gold_half_grey.png') no-repeat center center;}
  1286. .icon-star-gold-half-silver { background:url('icons/star_gold_half_silver.png') no-repeat center center;}
  1287. .icon-star-grey { background:url('icons/star_grey.png') no-repeat center center;}
  1288. .icon-star-half-grey { background:url('icons/star_half_grey.png') no-repeat center center;}
  1289. .icon-star-silver { background:url('icons/star_silver.png') no-repeat center center;}
  1290. .icon-status-away { background:url('icons/status_away.png') no-repeat center center;}
  1291. .icon-status-be-right-back { background:url('icons/status_be_right_back.png') no-repeat center center;}
  1292. .icon-status-busy { background:url('icons/status_busy.png') no-repeat center center;}
  1293. .icon-status-invisible { background:url('icons/status_invisible.png') no-repeat center center;}
  1294. .icon-status-offline { background:url('icons/status_offline.png') no-repeat center center;}
  1295. .icon-status-online { background:url('icons/status_online.png') no-repeat center center;}
  1296. .icon-stop { background:url('icons/stop.png') no-repeat center center;}
  1297. .icon-stop-blue { background:url('icons/stop_blue.png') no-repeat center center;}
  1298. .icon-stop-green { background:url('icons/stop_green.png') no-repeat center center;}
  1299. .icon-stop-red { background:url('icons/stop_red.png') no-repeat center center;}
  1300. .icon-style { background:url('icons/style.png') no-repeat center center;}
  1301. .icon-style-add { background:url('icons/style_add.png') no-repeat center center;}
  1302. .icon-style-delete { background:url('icons/style_delete.png') no-repeat center center;}
  1303. .icon-style-edit { background:url('icons/style_edit.png') no-repeat center center;}
  1304. .icon-style-go { background:url('icons/style_go.png') no-repeat center center;}
  1305. .icon-sum { background:url('icons/sum.png') no-repeat center center;}
  1306. .icon-sys { background:url('icons/sys.png') no-repeat center center;}
  1307. .icon-tab { background:url('icons/tab.png') no-repeat center center;}
  1308. .icon-table { background:url('icons/table.png') no-repeat center center;}
  1309. .icon-table-add { background:url('icons/table_add.png') no-repeat center center;}
  1310. .icon-table-cell { background:url('icons/table_cell.png') no-repeat center center;}
  1311. .icon-table-column { background:url('icons/table_column.png') no-repeat center center;}
  1312. .icon-table-column-add { background:url('icons/table_column_add.png') no-repeat center center;}
  1313. .icon-table-column-delete { background:url('icons/table_column_delete.png') no-repeat center center;}
  1314. .icon-table-connect { background:url('icons/table_connect.png') no-repeat center center;}
  1315. .icon-table-delete { background:url('icons/table_delete.png') no-repeat center center;}
  1316. .icon-table-edit { background:url('icons/table_edit.png') no-repeat center center;}
  1317. .icon-table-error { background:url('icons/table_error.png') no-repeat center center;}
  1318. .icon-table-gear { background:url('icons/table_gear.png') no-repeat center center;}
  1319. .icon-table-go { background:url('icons/table_go.png') no-repeat center center;}
  1320. .icon-table-key { background:url('icons/table_key.png') no-repeat center center;}
  1321. .icon-table-lightning { background:url('icons/table_lightning.png') no-repeat center center;}
  1322. .icon-table-link { background:url('icons/table_link.png') no-repeat center center;}
  1323. .icon-table-multiple { background:url('icons/table_multiple.png') no-repeat center center;}
  1324. .icon-table-refresh { background:url('icons/table_refresh.png') no-repeat center center;}
  1325. .icon-table-relationship { background:url('icons/table_relationship.png') no-repeat center center;}
  1326. .icon-table-row { background:url('icons/table_row.png') no-repeat center center;}
  1327. .icon-table-row-delete { background:url('icons/table_row_delete.png') no-repeat center center;}
  1328. .icon-table-row-insert { background:url('icons/table_row_insert.png') no-repeat center center;}
  1329. .icon-table-save { background:url('icons/table_save.png') no-repeat center center;}
  1330. .icon-table-sort { background:url('icons/table_sort.png') no-repeat center center;}
  1331. .icon-tab-add { background:url('icons/tab_add.png') no-repeat center center;}
  1332. .icon-tab-blue { background:url('icons/tab_blue.png') no-repeat center center;}
  1333. .icon-tab-delete { background:url('icons/tab_delete.png') no-repeat center center;}
  1334. .icon-tab-edit { background:url('icons/tab_edit.png') no-repeat center center;}
  1335. .icon-tab-go { background:url('icons/tab_go.png') no-repeat center center;}
  1336. .icon-tab-green { background:url('icons/tab_green.png') no-repeat center center;}
  1337. .icon-tab-red { background:url('icons/tab_red.png') no-repeat center center;}
  1338. .icon-tag { background:url('icons/tag.png') no-repeat center center;}
  1339. .icon-tags-grey { background:url('icons/tags_grey.png') no-repeat center center;}
  1340. .icon-tags-red { background:url('icons/tags_red.png') no-repeat center center;}
  1341. .icon-tag-blue { background:url('icons/tag_blue.png') no-repeat center center;}
  1342. .icon-tag-blue-add { background:url('icons/tag_blue_add.png') no-repeat center center;}
  1343. .icon-tag-blue-delete { background:url('icons/tag_blue_delete.png') no-repeat center center;}
  1344. .icon-tag-blue-edit { background:url('icons/tag_blue_edit.png') no-repeat center center;}
  1345. .icon-tag-green { background:url('icons/tag_green.png') no-repeat center center;}
  1346. .icon-tag-orange { background:url('icons/tag_orange.png') no-repeat center center;}
  1347. .icon-tag-pink { background:url('icons/tag_pink.png') no-repeat center center;}
  1348. .icon-tag-purple { background:url('icons/tag_purple.png') no-repeat center center;}
  1349. .icon-tag-red { background:url('icons/tag_red.png') no-repeat center center;}
  1350. .icon-tag-yellow { background:url('icons/tag_yellow.png') no-repeat center center;}
  1351. .icon-telephone { background:url('icons/telephone.png') no-repeat center center;}
  1352. .icon-telephone-add { background:url('icons/telephone_add.png') no-repeat center center;}
  1353. .icon-telephone-delete { background:url('icons/telephone_delete.png') no-repeat center center;}
  1354. .icon-telephone-edit { background:url('icons/telephone_edit.png') no-repeat center center;}
  1355. .icon-telephone-error { background:url('icons/telephone_error.png') no-repeat center center;}
  1356. .icon-telephone-go { background:url('icons/telephone_go.png') no-repeat center center;}
  1357. .icon-telephone-key { background:url('icons/telephone_key.png') no-repeat center center;}
  1358. .icon-telephone-link { background:url('icons/telephone_link.png') no-repeat center center;}
  1359. .icon-telephone-red { background:url('icons/telephone_red.png') no-repeat center center;}
  1360. .icon-television { background:url('icons/television.png') no-repeat center center;}
  1361. .icon-television-add { background:url('icons/television_add.png') no-repeat center center;}
  1362. .icon-television-delete { background:url('icons/television_delete.png') no-repeat center center;}
  1363. .icon-television-in { background:url('icons/television_in.png') no-repeat center center;}
  1364. .icon-television-off { background:url('icons/television_off.png') no-repeat center center;}
  1365. .icon-television-out { background:url('icons/television_out.png') no-repeat center center;}
  1366. .icon-television-star { background:url('icons/television_star.png') no-repeat center center;}
  1367. .icon-textfield { background:url('icons/textfield.png') no-repeat center center;}
  1368. .icon-textfield-add { background:url('icons/textfield_add.png') no-repeat center center;}
  1369. .icon-textfield-delete { background:url('icons/textfield_delete.png') no-repeat center center;}
  1370. .icon-textfield-key { background:url('icons/textfield_key.png') no-repeat center center;}
  1371. .icon-textfield-rename { background:url('icons/textfield_rename.png') no-repeat center center;}
  1372. .icon-text-ab { background:url('icons/text_ab.png') no-repeat center center;}
  1373. .icon-text-align-center { background:url('icons/text_align_center.png') no-repeat center center;}
  1374. .icon-text-align-justify { background:url('icons/text_align_justify.png') no-repeat center center;}
  1375. .icon-text-align-left { background:url('icons/text_align_left.png') no-repeat center center;}
  1376. .icon-text-align-right { background:url('icons/text_align_right.png') no-repeat center center;}
  1377. .icon-text-allcaps { background:url('icons/text_allcaps.png') no-repeat center center;}
  1378. .icon-text-bold { background:url('icons/text_bold.png') no-repeat center center;}
  1379. .icon-text-columns { background:url('icons/text_columns.png') no-repeat center center;}
  1380. .icon-text-complete { background:url('icons/text_complete.png') no-repeat center center;}
  1381. .icon-text-direction { background:url('icons/text_direction.png') no-repeat center center;}
  1382. .icon-text-double-underline { background:url('icons/text_double_underline.png') no-repeat center center;}
  1383. .icon-text-dropcaps { background:url('icons/text_dropcaps.png') no-repeat center center;}
  1384. .icon-text-fit { background:url('icons/text_fit.png') no-repeat center center;}
  1385. .icon-text-flip { background:url('icons/text_flip.png') no-repeat center center;}
  1386. .icon-text-font-default { background:url('icons/text_font_default.png') no-repeat center center;}
  1387. .icon-text-heading-1 { background:url('icons/text_heading_1.png') no-repeat center center;}
  1388. .icon-text-heading-2 { background:url('icons/text_heading_2.png') no-repeat center center;}
  1389. .icon-text-heading-3 { background:url('icons/text_heading_3.png') no-repeat center center;}
  1390. .icon-text-heading-4 { background:url('icons/text_heading_4.png') no-repeat center center;}
  1391. .icon-text-heading-5 { background:url('icons/text_heading_5.png') no-repeat center center;}
  1392. .icon-text-heading-6 { background:url('icons/text_heading_6.png') no-repeat center center;}
  1393. .icon-text-horizontalrule { background:url('icons/text_horizontalrule.png') no-repeat center center;}
  1394. .icon-text-indent { background:url('icons/text_indent.png') no-repeat center center;}
  1395. .icon-text-indent-remove { background:url('icons/text_indent_remove.png') no-repeat center center;}
  1396. .icon-text-inverse { background:url('icons/text_inverse.png') no-repeat center center;}
  1397. .icon-text-italic { background:url('icons/text_italic.png') no-repeat center center;}
  1398. .icon-text-kerning { background:url('icons/text_kerning.png') no-repeat center center;}
  1399. .icon-text-left-to-right { background:url('icons/text_left_to_right.png') no-repeat center center;}
  1400. .icon-text-letterspacing { background:url('icons/text_letterspacing.png') no-repeat center center;}
  1401. .icon-text-letter-omega { background:url('icons/text_letter_omega.png') no-repeat center center;}
  1402. .icon-text-linespacing { background:url('icons/text_linespacing.png') no-repeat center center;}
  1403. .icon-text-list-bullets { background:url('icons/text_list_bullets.png') no-repeat center center;}
  1404. .icon-text-list-numbers { background:url('icons/text_list_numbers.png') no-repeat center center;}
  1405. .icon-text-lowercase { background:url('icons/text_lowercase.png') no-repeat center center;}
  1406. .icon-text-lowercase-a { background:url('icons/text_lowercase_a.png') no-repeat center center;}
  1407. .icon-text-mirror { background:url('icons/text_mirror.png') no-repeat center center;}
  1408. .icon-text-padding-bottom { background:url('icons/text_padding_bottom.png') no-repeat center center;}
  1409. .icon-text-padding-left { background:url('icons/text_padding_left.png') no-repeat center center;}
  1410. .icon-text-padding-right { background:url('icons/text_padding_right.png') no-repeat center center;}
  1411. .icon-text-padding-top { background:url('icons/text_padding_top.png') no-repeat center center;}
  1412. .icon-text-replace { background:url('icons/text_replace.png') no-repeat center center;}
  1413. .icon-text-right-to-left { background:url('icons/text_right_to_left.png') no-repeat center center;}
  1414. .icon-text-rotate-0 { background:url('icons/text_rotate_0.png') no-repeat center center;}
  1415. .icon-text-rotate-180 { background:url('icons/text_rotate_180.png') no-repeat center center;}
  1416. .icon-text-rotate-270 { background:url('icons/text_rotate_270.png') no-repeat center center;}
  1417. .icon-text-rotate-90 { background:url('icons/text_rotate_90.png') no-repeat center center;}
  1418. .icon-text-ruler { background:url('icons/text_ruler.png') no-repeat center center;}
  1419. .icon-text-shading { background:url('icons/text_shading.png') no-repeat center center;}
  1420. .icon-text-signature { background:url('icons/text_signature.png') no-repeat center center;}
  1421. .icon-text-smallcaps { background:url('icons/text_smallcaps.png') no-repeat center center;}
  1422. .icon-text-spelling { background:url('icons/text_spelling.png') no-repeat center center;}
  1423. .icon-text-strikethrough { background:url('icons/text_strikethrough.png') no-repeat center center;}
  1424. .icon-text-subscript { background:url('icons/text_subscript.png') no-repeat center center;}
  1425. .icon-text-superscript { background:url('icons/text_superscript.png') no-repeat center center;}
  1426. .icon-text-tab { background:url('icons/text_tab.png') no-repeat center center;}
  1427. .icon-text-underline { background:url('icons/text_underline.png') no-repeat center center;}
  1428. .icon-text-uppercase { background:url('icons/text_uppercase.png') no-repeat center center;}
  1429. .icon-theme { background:url('icons/theme.png') no-repeat center center;}
  1430. .icon-thumb-down { background:url('icons/thumb_down.png') no-repeat center center;}
  1431. .icon-thumb-up { background:url('icons/thumb_up.png') no-repeat center center;}
  1432. .icon-tick { background:url('icons/tick.png') no-repeat center center;}
  1433. .icon-tick-shield { background:url('icons/tick_shield.png') no-repeat center center;}
  1434. .icon-time { background:url('icons/time.png') no-repeat center center;}
  1435. .icon-timeline-marker { background:url('icons/timeline_marker.png') no-repeat center center;}
  1436. .icon-time-add { background:url('icons/time_add.png') no-repeat center center;}
  1437. .icon-time-delete { background:url('icons/time_delete.png') no-repeat center center;}
  1438. .icon-time-go { background:url('icons/time_go.png') no-repeat center center;}
  1439. .icon-time-green { background:url('icons/time_green.png') no-repeat center center;}
  1440. .icon-time-red { background:url('icons/time_red.png') no-repeat center center;}
  1441. .icon-transmit { background:url('icons/transmit.png') no-repeat center center;}
  1442. .icon-transmit-add { background:url('icons/transmit_add.png') no-repeat center center;}
  1443. .icon-transmit-blue { background:url('icons/transmit_blue.png') no-repeat center center;}
  1444. .icon-transmit-delete { background:url('icons/transmit_delete.png') no-repeat center center;}
  1445. .icon-transmit-edit { background:url('icons/transmit_edit.png') no-repeat center center;}
  1446. .icon-transmit-error { background:url('icons/transmit_error.png') no-repeat center center;}
  1447. .icon-transmit-go { background:url('icons/transmit_go.png') no-repeat center center;}
  1448. .icon-transmit-red { background:url('icons/transmit_red.png') no-repeat center center;}
  1449. .icon-tree16 { background:url('icons/tree16.png') no-repeat center center;}
  1450. .icon-tree32 { background:url('icons/tree32.png') no-repeat center center;}
  1451. .icon-tux { background:url('icons/tux.png') no-repeat center center;}
  1452. .icon-undo { background:url('icons/undo.png') no-repeat center center;}
  1453. .icon-upload { background:url('icons/upload.png') no-repeat center center;}
  1454. .icon-user { background:url('icons/user.png') no-repeat center center;}
  1455. .icon-users { background:url('icons/users.png') no-repeat center center;}
  1456. .icon-user-accept16 { background:url('icons/user_accept16.png') no-repeat center center;}
  1457. .icon-user-accept32 { background:url('icons/user_accept32.png') no-repeat center center;}
  1458. .icon-user-add { background:url('icons/user_add.png') no-repeat center center;}
  1459. .icon-user-alert { background:url('icons/user_alert.png') no-repeat center center;}
  1460. .icon-user-b { background:url('icons/user_b.png') no-repeat center center;}
  1461. .icon-user-brown { background:url('icons/user_brown.png') no-repeat center center;}
  1462. .icon-user-business-boss { background:url('icons/user_business_boss.png') no-repeat center center;}
  1463. .icon-user-comment { background:url('icons/user_comment.png') no-repeat center center;}
  1464. .icon-user-cross { background:url('icons/user_cross.png') no-repeat center center;}
  1465. .icon-user-delete { background:url('icons/user_delete.png') no-repeat center center;}
  1466. .icon-user-earth { background:url('icons/user_earth.png') no-repeat center center;}
  1467. .icon-user-edit { background:url('icons/user_edit.png') no-repeat center center;}
  1468. .icon-user-edit32 { background:url('icons/user_edit32.png') no-repeat center center;}
  1469. .icon-user-female { background:url('icons/user_female.png') no-repeat center center;}
  1470. .icon-user-go { background:url('icons/user_go.png') no-repeat center center;}
  1471. .icon-user-gray { background:url('icons/user_gray.png') no-repeat center center;}
  1472. .icon-user-gray-cool { background:url('icons/user_gray_cool.png') no-repeat center center;}
  1473. .icon-user-green { background:url('icons/user_green.png') no-repeat center center;}
  1474. .icon-user-group { background:url('icons/user_group.png') no-repeat center center;}
  1475. .icon-user-home { background:url('icons/user_home.png') no-repeat center center;}
  1476. .icon-user-key { background:url('icons/user_key.png') no-repeat center center;}
  1477. .icon-user-magnify { background:url('icons/user_magnify.png') no-repeat center center;}
  1478. .icon-user-mature { background:url('icons/user_mature.png') no-repeat center center;}
  1479. .icon-user-orange { background:url('icons/user_orange.png') no-repeat center center;}
  1480. .icon-user-red { background:url('icons/user_red.png') no-repeat center center;}
  1481. .icon-user-reject16 { background:url('icons/user_reject16.png') no-repeat center center;}
  1482. .icon-user-reject32 { background:url('icons/user_reject32.png') no-repeat center center;}
  1483. .icon-user-star { background:url('icons/user_star.png') no-repeat center center;}
  1484. .icon-user-suit { background:url('icons/user_suit.png') no-repeat center center;}
  1485. .icon-user-suit-black { background:url('icons/user_suit_black.png') no-repeat center center;}
  1486. .icon-user-tick { background:url('icons/user_tick.png') no-repeat center center;}
  1487. .icon-vcard { background:url('icons/vcard.png') no-repeat center center;}
  1488. .icon-vcard-add { background:url('icons/vcard_add.png') no-repeat center center;}
  1489. .icon-vcard-delete { background:url('icons/vcard_delete.png') no-repeat center center;}
  1490. .icon-vcard-edit { background:url('icons/vcard_edit.png') no-repeat center center;}
  1491. .icon-vcard-key { background:url('icons/vcard_key.png') no-repeat center center;}
  1492. .icon-vector { background:url('icons/vector.png') no-repeat center center;}
  1493. .icon-vector-add { background:url('icons/vector_add.png') no-repeat center center;}
  1494. .icon-vector-delete { background:url('icons/vector_delete.png') no-repeat center center;}
  1495. .icon-vector-key { background:url('icons/vector_key.png') no-repeat center center;}
  1496. .icon-wand { background:url('icons/wand.png') no-repeat center center;}
  1497. .icon-weather-cloud { background:url('icons/weather_cloud.png') no-repeat center center;}
  1498. .icon-weather-clouds { background:url('icons/weather_clouds.png') no-repeat center center;}
  1499. .icon-weather-cloudy { background:url('icons/weather_cloudy.png') no-repeat center center;}
  1500. .icon-weather-cloudy-rain { background:url('icons/weather_cloudy_rain.png') no-repeat center center;}
  1501. .icon-weather-lightning { background:url('icons/weather_lightning.png') no-repeat center center;}
  1502. .icon-weather-rain { background:url('icons/weather_rain.png') no-repeat center center;}
  1503. .icon-weather-snow { background:url('icons/weather_snow.png') no-repeat center center;}
  1504. .icon-weather-sun { background:url('icons/weather_sun.png') no-repeat center center;}
  1505. .icon-webcam { background:url('icons/webcam.png') no-repeat center center;}
  1506. .icon-webcam-add { background:url('icons/webcam_add.png') no-repeat center center;}
  1507. .icon-webcam-connect { background:url('icons/webcam_connect.png') no-repeat center center;}
  1508. .icon-webcam-delete { background:url('icons/webcam_delete.png') no-repeat center center;}
  1509. .icon-webcam-error { background:url('icons/webcam_error.png') no-repeat center center;}
  1510. .icon-webcam-start { background:url('icons/webcam_start.png') no-repeat center center;}
  1511. .icon-webcam-stop { background:url('icons/webcam_stop.png') no-repeat center center;}
  1512. .icon-world { background:url('icons/world.png') no-repeat center center;}
  1513. .icon-world-add { background:url('icons/world_add.png') no-repeat center center;}
  1514. .icon-world-connect { background:url('icons/world_connect.png') no-repeat center center;}
  1515. .icon-world-dawn { background:url('icons/world_dawn.png') no-repeat center center;}
  1516. .icon-world-delete { background:url('icons/world_delete.png') no-repeat center center;}
  1517. .icon-world-edit { background:url('icons/world_edit.png') no-repeat center center;}
  1518. .icon-world-go { background:url('icons/world_go.png') no-repeat center center;}
  1519. .icon-world-key { background:url('icons/world_key.png') no-repeat center center;}
  1520. .icon-world-link { background:url('icons/world_link.png') no-repeat center center;}
  1521. .icon-world-night { background:url('icons/world_night.png') no-repeat center center;}
  1522. .icon-world-orbit { background:url('icons/world_orbit.png') no-repeat center center;}
  1523. .icon-wrench { background:url('icons/wrench.png') no-repeat center center;}
  1524. .icon-wrench-orange { background:url('icons/wrench_orange.png') no-repeat center center;}
  1525. .icon-writing32 { background:url('icons/writing32.png') no-repeat center center;}
  1526. .icon-xhtml { background:url('icons/xhtml.png') no-repeat center center;}
  1527. .icon-xhtml-add { background:url('icons/xhtml_add.png') no-repeat center center;}
  1528. .icon-xhtml-delete { background:url('icons/xhtml_delete.png') no-repeat center center;}
  1529. .icon-xhtml-error { background:url('icons/xhtml_error.png') no-repeat center center;}
  1530. .icon-xhtml-go { background:url('icons/xhtml_go.png') no-repeat center center;}
  1531. .icon-xhtml-valid { background:url('icons/xhtml_valid.png') no-repeat center center;}
  1532. .icon-zoom { background:url('icons/zoom.png') no-repeat center center;}
  1533. .icon-zoom-in { background:url('icons/zoom_in.png') no-repeat center center;}
  1534. .icon-zoom-out { background:url('icons/zoom_out.png') no-repeat center center;}