smart_editor 0.0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (145) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/javascripts/smart_editor/application.js +15 -0
  5. data/app/assets/javascripts/smart_editor/editor_images.js +1 -0
  6. data/app/assets/stylesheets/smart_editor/application.css +13 -0
  7. data/app/assets/stylesheets/smart_editor/editor_images.css +4 -0
  8. data/app/controllers/smart_editor/application_controller.rb +4 -0
  9. data/app/controllers/smart_editor/editor_images_controller.rb +41 -0
  10. data/app/helpers/smart_editor/application_helper.rb +4 -0
  11. data/app/helpers/smart_editor/editor_images_helper.rb +4 -0
  12. data/app/models/smart_editor/editor_image.rb +7 -0
  13. data/app/uploaders/file_uploader.rb +55 -0
  14. data/app/views/layouts/smart_editor/application.html.erb +14 -0
  15. data/app/views/smart_editor/editor_images/index.html.erb +4 -0
  16. data/config/routes.rb +7 -0
  17. data/db/migrate/20130101074444_create_smart_editor_editor_images.rb +10 -0
  18. data/lib/generators/smart_editor/smart_editor_generator.rb +18 -0
  19. data/lib/generators/smart_editor/templates/public/smart_editor/SmartEditor2Skin.html +635 -0
  20. data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/FileUploader.php +22 -0
  21. data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/FileUploader_html5.php +25 -0
  22. data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/Photo_Quick_UploadPopup.html +100 -0
  23. data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/QuickPhotoPopup.js +675 -0
  24. data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/callback.html +32 -0
  25. data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/jindo.min.js +12686 -0
  26. data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/jindo_fileUpload.js +390 -0
  27. data/lib/generators/smart_editor/templates/public/smart_editor/smart_editor2_inputarea.html +9 -0
  28. data/lib/generators/smart_editor/templates/public/smart_editor/smart_editor2_inputarea_ie8.html +10 -0
  29. data/lib/smart_editor/class_methods.rb +10 -0
  30. data/lib/smart_editor/engine.rb +5 -0
  31. data/lib/smart_editor/form_builder.rb +11 -0
  32. data/lib/smart_editor/version.rb +3 -0
  33. data/lib/smart_editor.rb +18 -0
  34. data/lib/tasks/smart_editor_tasks.rake +4 -0
  35. data/test/dummy/README.rdoc +261 -0
  36. data/test/dummy/Rakefile +7 -0
  37. data/test/dummy/app/assets/javascripts/application.js +16 -0
  38. data/test/dummy/app/assets/javascripts/posts.js +2 -0
  39. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  40. data/test/dummy/app/assets/stylesheets/posts.css +4 -0
  41. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  42. data/test/dummy/app/controllers/application_controller.rb +3 -0
  43. data/test/dummy/app/controllers/posts_controller.rb +85 -0
  44. data/test/dummy/app/helpers/application_helper.rb +2 -0
  45. data/test/dummy/app/helpers/posts_helper.rb +2 -0
  46. data/test/dummy/app/models/post.rb +4 -0
  47. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  48. data/test/dummy/app/views/posts/_form.html.erb +30 -0
  49. data/test/dummy/app/views/posts/edit.html.erb +6 -0
  50. data/test/dummy/app/views/posts/index.html.erb +27 -0
  51. data/test/dummy/app/views/posts/new.html.erb +5 -0
  52. data/test/dummy/app/views/posts/show.html.erb +20 -0
  53. data/test/dummy/config/application.rb +59 -0
  54. data/test/dummy/config/boot.rb +10 -0
  55. data/test/dummy/config/database.yml +25 -0
  56. data/test/dummy/config/environment.rb +5 -0
  57. data/test/dummy/config/environments/development.rb +37 -0
  58. data/test/dummy/config/environments/production.rb +67 -0
  59. data/test/dummy/config/environments/test.rb +37 -0
  60. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  61. data/test/dummy/config/initializers/inflections.rb +15 -0
  62. data/test/dummy/config/initializers/mime_types.rb +5 -0
  63. data/test/dummy/config/initializers/secret_token.rb +7 -0
  64. data/test/dummy/config/initializers/session_store.rb +8 -0
  65. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  66. data/test/dummy/config/locales/en.yml +5 -0
  67. data/test/dummy/config/routes.rb +7 -0
  68. data/test/dummy/config.ru +4 -0
  69. data/test/dummy/db/development.sqlite3 +0 -0
  70. data/test/dummy/db/migrate/20130103085542_create_posts.rb +11 -0
  71. data/test/dummy/db/migrate/20130103090021_create_smart_editor_editor_images.smart_editor.rb +11 -0
  72. data/test/dummy/db/schema.rb +32 -0
  73. data/test/dummy/log/development.log +713 -0
  74. data/test/dummy/public/404.html +26 -0
  75. data/test/dummy/public/422.html +26 -0
  76. data/test/dummy/public/500.html +25 -0
  77. data/test/dummy/public/favicon.ico +0 -0
  78. data/test/dummy/public/smart_editor/SmartEditor2Skin.html +635 -0
  79. data/test/dummy/public/smart_editor/popup/quick_photo/FileUploader.php +22 -0
  80. data/test/dummy/public/smart_editor/popup/quick_photo/FileUploader_html5.php +25 -0
  81. data/test/dummy/public/smart_editor/popup/quick_photo/Photo_Quick_UploadPopup.html +100 -0
  82. data/test/dummy/public/smart_editor/popup/quick_photo/QuickPhotoPopup.js +675 -0
  83. data/test/dummy/public/smart_editor/popup/quick_photo/callback.html +32 -0
  84. data/test/dummy/public/smart_editor/popup/quick_photo/jindo.min.js +12686 -0
  85. data/test/dummy/public/smart_editor/popup/quick_photo/jindo_fileUpload.js +390 -0
  86. data/test/dummy/public/smart_editor/smart_editor2_inputarea.html +9 -0
  87. data/test/dummy/public/smart_editor/smart_editor2_inputarea_ie8.html +10 -0
  88. data/test/dummy/script/rails +6 -0
  89. data/test/dummy/test/fixtures/posts.yml +11 -0
  90. data/test/dummy/test/functional/posts_controller_test.rb +49 -0
  91. data/test/dummy/test/unit/helpers/posts_helper_test.rb +4 -0
  92. data/test/dummy/test/unit/post_test.rb +7 -0
  93. data/test/dummy/tmp/cache/assets/C39/A20/sprockets%2Fd75302feb7958c52568020a888775667 +0 -0
  94. data/test/dummy/tmp/cache/assets/C8B/9F0/sprockets%2F42090f88c5061f72460d7c83a9bc8990 +0 -0
  95. data/test/dummy/tmp/cache/assets/C8E/A60/sprockets%2F74b1945f4d4a322ab567f73798c32838 +0 -0
  96. data/test/dummy/tmp/cache/assets/CD4/040/sprockets%2F7c241e3470f7210ab843c109c9d68a4b +0 -0
  97. data/test/dummy/tmp/cache/assets/CE3/740/sprockets%2F200278c67b4dde839345d7b018fed561 +0 -0
  98. data/test/dummy/tmp/cache/assets/CEE/680/sprockets%2F6d653ad72aed952816dd79e63c761417 +0 -0
  99. data/test/dummy/tmp/cache/assets/D12/CA0/sprockets%2Fcd507925f6bb1f62170d028ca668ad98 +0 -0
  100. data/test/dummy/tmp/cache/assets/D13/8A0/sprockets%2Fec89fa303e9609b18f50b6de2831433e +0 -0
  101. data/test/dummy/tmp/cache/assets/D6F/A80/sprockets%2F8893ca0d5d16eb3d85c0964bdbbe3381 +0 -0
  102. data/test/dummy/tmp/cache/assets/D86/AF0/sprockets%2Fcfa5f1244012fcd263cee551afe412b2 +0 -0
  103. data/test/dummy/tmp/cache/assets/D92/5A0/sprockets%2Fb0e45a13b900ecbf7011b78bdff2595e +0 -0
  104. data/test/dummy/tmp/cache/assets/D9D/950/sprockets%2F65093fff17b1aa3bed7e0dda53563b79 +0 -0
  105. data/test/dummy/tmp/cache/assets/DF9/8C0/sprockets%2Fc27a71cbee6a5dffdc2534b267b2fa66 +0 -0
  106. data/test/dummy/tmp/cache/assets/E54/F60/sprockets%2Ff1bba5cc065ebbb83addfbba59f82059 +0 -0
  107. data/test/fixtures/smart_editor/editor_images.yml +11 -0
  108. data/test/functional/smart_editor/editor_images_controller_test.rb +9 -0
  109. data/test/integration/navigation_test.rb +10 -0
  110. data/test/smart_editor_test.rb +7 -0
  111. data/test/test_helper.rb +15 -0
  112. data/test/unit/helpers/smart_editor/editor_images_helper_test.rb +6 -0
  113. data/test/unit/smart_editor/editor_image_test.rb +9 -0
  114. data/vendor/assets/images/smart_editor/bg_b1.png +0 -0
  115. data/vendor/assets/images/smart_editor/bg_find_h3.gif +0 -0
  116. data/vendor/assets/images/smart_editor/bg_line1.gif +0 -0
  117. data/vendor/assets/images/smart_editor/bg_quote2.gif +0 -0
  118. data/vendor/assets/images/smart_editor/bg_set.gif +0 -0
  119. data/vendor/assets/images/smart_editor/bg_tool2.gif +0 -0
  120. data/vendor/assets/images/smart_editor/btn_set.png +0 -0
  121. data/vendor/assets/images/smart_editor/bx_set_110302.gif +0 -0
  122. data/vendor/assets/images/smart_editor/editor_guideline_698.gif +0 -0
  123. data/vendor/assets/images/smart_editor/editor_guideline_890.gif +0 -0
  124. data/vendor/assets/images/smart_editor/icon_set.gif +0 -0
  125. data/vendor/assets/images/smart_editor/photoQuickPopup/bg_drag_image.png +0 -0
  126. data/vendor/assets/images/smart_editor/photoQuickPopup/btn_cancel.png +0 -0
  127. data/vendor/assets/images/smart_editor/photoQuickPopup/btn_confirm.png +0 -0
  128. data/vendor/assets/images/smart_editor/photoQuickPopup/btn_confirm2.png +0 -0
  129. data/vendor/assets/images/smart_editor/photoQuickPopup/btn_del.png +0 -0
  130. data/vendor/assets/images/smart_editor/photoQuickPopup/btn_find.png +0 -0
  131. data/vendor/assets/images/smart_editor/text_tool_set.png +0 -0
  132. data/vendor/assets/images/smart_editor/text_tool_set2.png +0 -0
  133. data/vendor/assets/javascripts/smart_editor/HuskyEZCreator.js +133 -0
  134. data/vendor/assets/javascripts/smart_editor/SE2B_Configuration.js +77 -0
  135. data/vendor/assets/javascripts/smart_editor/SE2BasicCreator.js +85 -0
  136. data/vendor/assets/javascripts/smart_editor/hp_SE2M_AttachQuickPhoto.js +106 -0
  137. data/vendor/assets/javascripts/smart_editor/jindo.min.js +12699 -0
  138. data/vendor/assets/javascripts/smart_editor/jindo_component.js +279 -0
  139. data/vendor/assets/javascripts/smart_editor/loader-min.js +120 -0
  140. data/vendor/assets/javascripts/smart_editor.js +21 -0
  141. data/vendor/assets/stylesheets/smart_editor/smart_editor2.css +262 -0
  142. data/vendor/assets/stylesheets/smart_editor/smart_editor2_in.css +20 -0
  143. data/vendor/assets/stylesheets/smart_editor/smart_editor2_items.css +454 -0
  144. data/vendor/assets/stylesheets/smart_editor/smart_editor2_out.css +24 -0
  145. metadata +331 -0
@@ -0,0 +1,454 @@
1
+ @charset "utf-8";
2
+
3
+ /* layer : font-family */
4
+ #smart_editor2 .se2_tool .se2_l_font_fam{width:162px;margin:0;padding:0}
5
+ #smart_editor2 .se2_tool .se2_l_font_fam li{display:block;float:none;width:162px;height:21px;margin:0;padding:0;color:#333;cursor:pointer}
6
+ #smart_editor2 .se2_l_font_fam .hover,#smart_editor2 .se2_l_font_fam .active{background:#ebebeb}
7
+ #smart_editor2 .se2_l_font_fam button{width:160px;height:21px;margin:0;padding:2px 0 2px 0px;background:none;text-align:left}
8
+ #smart_editor2 .se2_l_font_fam button span{display:block;visibility:visible;overflow:visible;position:relative;top:auto;left:auto;width:auto;height:auto;margin:0 0 0 4px;padding:0;font-size:12px;line-height:normal;color:#333}
9
+ #smart_editor2 .se2_l_font_fam button span span{display:inline;visibility:visible;overflow:visible;width:auto;height:auto;margin:0 0 0 4px;font-family:Verdana;font-size:12px;line-height:14px;color:#888}
10
+ #smart_editor2 .se2_l_font_fam button span em{visibility:visible;overflow:auto;position:static;width:auto;height:auto;margin-right:-4px;font-size:12px;color:#888}
11
+ #smart_editor2 .se2_l_font_fam .se2_division{width:162px;height:2px !important;margin:1px 0 1px 0px;border:0;background:url(/assets/smart_editor/bg_line1.gif) 0 0 repeat-x;font-size:0;cursor:default}
12
+ /* layer : font-size */
13
+ #smart_editor2 .se2_tool .se2_l_font_size{width:302px;margin:0;padding:0}
14
+ #smart_editor2 .se2_tool .se2_l_font_size li{width:302px;margin:0;padding:0;color:#333;cursor:pointer}
15
+ #smart_editor2 .se2_l_font_size .hover,#smart_editor2 .se2_l_font_size .active{background:#ebebeb}
16
+ #smart_editor2 .se2_l_font_size button{width:300px;margin:0;padding:2px 0 1px 0px;*padding:4px 0 1px 0px;background:none;text-align:left}
17
+ #smart_editor2 .se2_l_font_size button span{display:block;visibility:visible;overflow:visible;position:relative;top:auto;left:auto;width:auto;height:auto;margin:0 0 0 4px;padding:0;line-height:normal;color:#373737;letter-spacing:0px}
18
+ #smart_editor2 .se2_l_font_size button span span{display:inline;margin:0 0 0 5px;padding:0}
19
+ #smart_editor2 .se2_l_font_size span em{visibility:visible;overflow:auto;position:static;width:auto;height:auto;color:#888}
20
+ /* layer : line-height */
21
+ #smart_editor2 .se2_l_line_height{width:107px;margin:0;padding:0}
22
+ #smart_editor2 .se2_l_line_height li{width:107px;margin:0;padding:0;border-top:0;border-bottom:0;color:#333;cursor:pointer}
23
+ #smart_editor2 .se2_l_line_height .hover{background:#ebebeb}
24
+ #smart_editor2 .se2_l_line_height button{width:105px;height:19px;margin:0;padding:3px 0 2px 0px;background:none;text-align:left}
25
+ #smart_editor2 .se2_l_line_height button span{visibility:visible;overflow:visible;position:relative;width:auto;height:auto;margin:0;padding:0 0 0 15px;font-size:12px;line-height:normal;color:#373737}
26
+ #smart_editor2 .se2_l_line_height li button.active span{background:url(/assets/smart_editor/icon_set.gif) 5px -30px no-repeat}
27
+ #smart_editor2 .se2_l_line_height_user{clear:both;width:83px;margin:5px 0 0 12px;padding:10px 0 0 0;_padding:11px 0 0 0;background:url(/assets/smart_editor/bg_line1.gif) repeat-x}
28
+ #smart_editor2 .se2_l_line_height_user h3{margin:0 0 4px 0;_margin:0 0 2px -1px;padding:0;line-height:14px;color:#000;letter-spacing:-1px}
29
+ #smart_editor2 .se2_l_line_height_user .bx_input{display:block;position:relative;width:83px}
30
+ #smart_editor2 .se2_l_line_height_user .btn_up{position:absolute;top:2px;*top:3px;left:68px;width:13px;height:8px;background:url(/assets/smart_editor/btn_set.png) -86px -54px no-repeat}
31
+ #smart_editor2 .se2_l_line_height_user .btn_down{position:absolute;top:10px;*top:11px;left:68px;width:13px;height:8px;background:url(/assets/smart_editor/btn_set.png) -86px -62px no-repeat}
32
+ #smart_editor2 .se2_l_line_height_user .btn_area{margin:5px 0 10px 0}
33
+ #smart_editor2 .se2_tool .btn_area .se2_btn_apply3{width:41px;height:24px;background:url(/assets/smart_editor/btn_set.png) no-repeat}
34
+ #smart_editor2 .se2_tool .btn_area .se2_btn_cancel3{width:39px;height:24px;margin-left:3px;background:url(/assets/smart_editor/btn_set.png) -41px 0 no-repeat}
35
+ /* layer : 인용구 */
36
+ #smart_editor2 .se2_quote{width:425px;height:56px}
37
+ #smart_editor2 .se2_quote ul{_display:inline;float:left;margin:11px 0 0 9px;padding:0}
38
+ #smart_editor2 .se2_quote li{_display:inline;float:left;margin:0 0 0 2px;padding:0}
39
+ #smart_editor2 .se2_quote button{width:34px;height:34px;margin:0;padding:0;background:url(/assets/smart_editor/btn_set.png) no-repeat;cursor:pointer}
40
+ #smart_editor2 .se2_quote button span{display:block;visibility:visible;overflow:visible;width:32px;height:32px;margin:0;padding:0;border:1px solid #c7c7c7}
41
+ #smart_editor2 .se2_quote button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0}
42
+ #smart_editor2 .se2_quote .se2_quote1{background-position:1px -375px}
43
+ #smart_editor2 .se2_quote .se2_quote2{background-position:-32px -375px}
44
+ #smart_editor2 .se2_quote .se2_quote3{background-position:-65px -375px}
45
+ #smart_editor2 .se2_quote .se2_quote4{background-position:-98px -375px}
46
+ #smart_editor2 .se2_quote .se2_quote5{background-position:-131px -375px}
47
+ #smart_editor2 .se2_quote .se2_quote6{background-position:-164px -375px}
48
+ #smart_editor2 .se2_quote .se2_quote7{background-position:-197px -375px}
49
+ #smart_editor2 .se2_quote .se2_quote8{background-position:-230px -375px}
50
+ #smart_editor2 .se2_quote .se2_quote9{background-position:-263px -375px}
51
+ #smart_editor2 .se2_quote .se2_quote10{background-position:-296px -375px}
52
+ #smart_editor2 .se2_quote .hover button span,#smart_editor2 .se2_quote .active button span{width:30px;height:30px;margin:0;padding:0;border:2px solid #44b525}
53
+ #smart_editor2 .se2_quote .hover button span span,#smart_editor2 .se2_quote .active button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0}
54
+ #smart_editor2 .se2_quote .se2_cancel2{float:left;width:40px;height:35px;margin:11px 0 0 5px;background:url(/assets/smart_editor/btn_set.png) -46px -24px no-repeat}
55
+ #smart_editor2 .se2_quote .se2_cancel2 span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0}
56
+ /* layer : 특수기호 */
57
+ #smart_editor2 .se2_bx_character{width:469px;height:272px;margin:0;padding:0;background:url(/assets/smart_editor/bx_set_110302.gif) 9px -1230px no-repeat}
58
+ #smart_editor2 .se2_bx_character .se2_char_tab{_display:inline;float:left;position:relative;width:443px;margin:11px 10px 200px 11px;padding:0 0 0 1px}
59
+ #smart_editor2 .se2_bx_character .se2_char_tab li{position:static;margin:0 0 0 -1px;padding:0}
60
+ #smart_editor2 .se2_bx_character .se2_char1{width:76px;height:26px;background:url(/assets/smart_editor/btn_set.png) 0 -204px no-repeat}
61
+ #smart_editor2 .se2_bx_character .se2_char2{width:86px;height:26px;background:url(/assets/smart_editor/btn_set.png) -75px -204px no-repeat}
62
+ #smart_editor2 .se2_bx_character .se2_char3{width:68px;height:26px;background:url(/assets/smart_editor/btn_set.png) -160px -204px no-repeat}
63
+ #smart_editor2 .se2_bx_character .se2_char4{width:55px;height:26px;background:url(/assets/smart_editor/btn_set.png) -227px -204px no-repeat}
64
+ #smart_editor2 .se2_bx_character .se2_char5{width:97px;height:26px;background:url(/assets/smart_editor/btn_set.png) -281px -204px no-repeat}
65
+ #smart_editor2 .se2_bx_character .se2_char6{width:66px;height:26px;background:url(/assets/smart_editor/btn_set.png) -377px -204px no-repeat}
66
+ #smart_editor2 .se2_bx_character .active .se2_char1{width:76px;height:26px;background:url(/assets/smart_editor/btn_set.png) 0 -230px no-repeat}
67
+ #smart_editor2 .se2_bx_character .active .se2_char2{width:86px;height:26px;background:url(/assets/smart_editor/btn_set.png) -75px -230px no-repeat}
68
+ #smart_editor2 .se2_bx_character .active .se2_char3{width:68px;height:26px;background:url(/assets/smart_editor/btn_set.png) -160px -230px no-repeat}
69
+ #smart_editor2 .se2_bx_character .active .se2_char4{width:55px;height:26px;background:url(/assets/smart_editor/btn_set.png) -227px -230px no-repeat}
70
+ #smart_editor2 .se2_bx_character .active .se2_char5{width:97px;height:26px;background:url(/assets/smart_editor/btn_set.png) -281px -230px no-repeat}
71
+ #smart_editor2 .se2_bx_character .active .se2_char6{width:66px;height:26px;background:url(/assets/smart_editor/btn_set.png) -377px -230px no-repeat}
72
+ #smart_editor2 .se2_bx_character .se2_s_character{display:none;position:absolute;top:26px;left:0;width:448px;height:194px;margin:0;padding:0}
73
+ #smart_editor2 .se2_bx_character .active .se2_s_character{display:block}
74
+ #smart_editor2 .se2_bx_character .se2_s_character ul{float:left;width:422px;height:172px;margin:0;padding:9px 0 0 11px}
75
+ #smart_editor2 .se2_bx_character .se2_s_character li{_display:inline;float:left;position:relative;width:20px;height:18px;margin:0 0 1px 1px;background:#fff}
76
+ #smart_editor2 .se2_bx_character .se2_s_character button{width:20px;height:18px;margin:0;padding:2px;background:none}
77
+ #smart_editor2 .se2_bx_character .se2_s_character .hover,#smart_editor2 .se2_bx_character .se2_s_character .active{background:url(/assets/smart_editor/btn_set.png) -446px -274px no-repeat}
78
+ #smart_editor2 .se2_bx_character .se2_s_character button span{display:block;visibility:visible;overflow:visible;width:14px;height:16px;margin:3px 0 0 3px;border:0;background:none;font-size:12px;line-height:normal}
79
+ #smart_editor2 .se2_apply_character{clear:both;position:relative;padding:0 0 0 11px}
80
+ #smart_editor2 .se2_apply_character label{margin:0 3px 0 0;font-size:12px;color:#666;letter-spacing:-1px}
81
+ #smart_editor2 .se2_apply_character .input_ty1{width:283px;height:17px;margin:-1px 5px 1px 0;padding:4px 0 0 5px;font-size:12px;color:#666;letter-spacing:0;vertical-align:middle}
82
+ #smart_editor2 .se2_apply_character .se2_confirm{width:41px;height:24px;margin-right:3px;background:url(/assets/smart_editor/btn_set.png) no-repeat;vertical-align:middle}
83
+ #smart_editor2 .se2_apply_character .se2_cancel{width:39px;height:24px;background:url(/assets/smart_editor/btn_set.png) -41px 0 no-repeat;vertical-align:middle}
84
+ /* layer : 찾기,바꾸기 */
85
+ #smart_editor2 .se2_bx_find_revise{position:relative;width:255px;margin:0;padding:0}
86
+ #smart_editor2 .se2_bx_find_revise .se2_close{position:absolute;top:5px;right:8px;width:20px;height:20px;background:url(/assets/smart_editor/btn_set.png) -151px -1px no-repeat}
87
+ #smart_editor2 .se2_bx_find_revise h3{margin:0;padding:10px 0 13px 10px;background:url(/assets/smart_editor/bg_find_h3.gif) 0 -1px repeat-x;font-size:12px;line-height:14px;letter-spacing:-1px}
88
+ #smart_editor2 .se2_bx_find_revise ul{position:relative;margin:8px 0 0 0;padding:0 0 0 12px}
89
+ #smart_editor2 .se2_bx_find_revise ul li{_display:inline;float:left;position:static;margin:0 0 0 -1px;padding:0}
90
+ #smart_editor2 .se2_bx_find_revise .se2_tabfind{width:117px;height:26px;background:url(/assets/smart_editor/btn_set.png) 0 -100px no-repeat}
91
+ #smart_editor2 .se2_bx_find_revise .se2_tabrevise{width:117px;height:26px;background:url(/assets/smart_editor/btn_set.png) -116px -100px no-repeat}
92
+ #smart_editor2 .se2_bx_find_revise .active .se2_tabfind{width:117px;height:26px;background:url(/assets/smart_editor/btn_set.png) 0 -126px no-repeat}
93
+ #smart_editor2 .se2_bx_find_revise .active .se2_tabrevise{width:117px;height:26px;background:url(/assets/smart_editor/btn_set.png) -116px -126px no-repeat}
94
+ #smart_editor2 .se2_bx_find_revise .se2_in_bx_find dl{_display:inline;float:left;width:223px;margin:0 0 0 9px;padding:7px 0 13px 14px;background:url(/assets/smart_editor/bx_set_110302.gif) -289px -1518px no-repeat}
95
+ #smart_editor2 .se2_bx_find_revise .se2_in_bx_revise dl{_display:inline;float:left;width:223px;margin:0 0 0 9px;padding:7px 0 13px 14px;background:url(/assets/smart_editor/bx_set_110302.gif) -289px -1619px no-repeat}
96
+ #smart_editor2 .se2_bx_find_revise dt{_display:inline;float:left;clear:both;width:47px;margin:1px 0 2px 0}
97
+ #smart_editor2 .se2_bx_find_revise dd{float:left;margin:0 0 2px 0}
98
+ #smart_editor2 .se2_bx_find_revise label{float:left;padding:5px 0 0 0;font-size:11px;color:#666;letter-spacing:-2px}
99
+ #smart_editor2 .se2_bx_find_revise input{float:left;width:155px;height:12px;margin:1px 0 0 0;padding:3px 2px 3px 4px;font-size:12px;color:#666}
100
+ #smart_editor2 .se2_bx_find_revise .se2_find_btns{float:left;clear:both;width:255px;padding:8px 0 10px 0;text-align:center}
101
+ #smart_editor2 .se2_bx_find_revise .se2_find_next{width:65px;height:24px;margin:0 3px 0 0;background:url(/assets/smart_editor/btn_set.png) -180px -48px no-repeat}
102
+ #smart_editor2 .se2_bx_find_revise .se2_find_next2{width:61px;height:24px;margin:0 3px 0 0;background:url(/assets/smart_editor/btn_set.png) -180px -24px no-repeat}
103
+ #smart_editor2 .se2_bx_find_revise .se2_revise1{width:54px;height:24px;margin:0 3px 0 0;background:url(/assets/smart_editor/btn_set.png) -245px -48px no-repeat}
104
+ #smart_editor2 .se2_bx_find_revise .se2_revise2{width:70px;height:24px;margin:0 3px 0 0;background:url(/assets/smart_editor/btn_set.png) -245px -24px no-repeat}
105
+ #smart_editor2 .se2_bx_find_revise .se2_cancel{width:39px;height:24px;background:url(/assets/smart_editor/btn_set.png) -41px 0 no-repeat}
106
+ /* 레이어 팝업 : 링크 */
107
+ #smart_editor2 .se2_url2{width:281px;padding:11px 11px 6px 11px;color:#666}
108
+ #smart_editor2 .se2_url2 .input_ty1{display:block;width:185px;height:16px;margin:0 5px 5px 0;*margin:-1px 5px 5px 0;padding:5px 2px 0 4px}
109
+ #smart_editor2 .se2_url2 .se2_url_new{width:15px;height:15px;margin:-1px 3px 1px -1px;*margin:-2px 3px 2px -1px;vertical-align:middle}
110
+ #smart_editor2 .se2_url2 label{font-size:11px;line-height:14px;vertical-align:middle}
111
+ #smart_editor2 .se2_url2 .se2_apply{position:absolute;top:13px;right:51px;width:41px;height:24px;margin:-1px 3px 1px 0;background:url(/assets/smart_editor/btn_set.png) no-repeat}
112
+ #smart_editor2 .se2_url2 .se2_cancel{position:absolute;top:13px;right:9px;width:39px;height:24px;margin:-1px 3px 1px 0;background:url(/assets/smart_editor/btn_set.png) -41px 0 no-repeat}
113
+ /* 레이어 팝업 : 글자색 */
114
+ #smart_editor2 .se2_palette{float:left;position:relative;width:225px;margin:0;padding:11px 0 10px 0}
115
+ #smart_editor2 .se2_palette .se2_pick_color{_display:inline;float:left;clear:both;width:205px;margin:0 0 0 11px;padding:0}
116
+ #smart_editor2 .se2_palette .se2_pick_color li{float:left;width:12px;height:12px;margin:0;padding:0}
117
+ #smart_editor2 .se2_palette .se2_pick_color li button{width:11px;height:11px;border:0}
118
+ #smart_editor2 .se2_palette .se2_pick_color li button span{display:block;visibility:visible;overflow:visible;position:absolute;top:1px;left:1px;width:11px;height:11px}
119
+ #smart_editor2 .se2_palette .se2_pick_color li button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0}
120
+ #smart_editor2 .se2_palette .se2_pick_color .hover button,#smart_editor2 .se2_palette .se2_pick_color .active button{width:11px;height:11px;border:1px solid #666}
121
+ #smart_editor2 .se2_palette .se2_pick_color .hover span,#smart_editor2 .se2_palette .se2_pick_color .active span{width:7px;height:7px;border:1px solid #fff}
122
+ #smart_editor2 .se2_palette .se2_view_more{_display:inline;float:left;width:46px;height:23px;margin:1px 0 0 1px;background:url(/assets/smart_editor/btn_set.png) 0 -47px no-repeat}
123
+ #smart_editor2 .se2_palette .se2_view_more2{_display:inline;float:left;width:46px;height:23px;margin:1px 0 0 1px;background:url(/assets/smart_editor/btn_set.png) 0 -24px no-repeat}
124
+ #smart_editor2 .se2_palette h4{_display:inline;float:left;width:203px;margin:9px 0 0 11px;padding:10px 0 4px 0;background:url(/assets/smart_editor/bg_line1.gif) repeat-x;font-weight:normal;font-size:12px;line-height:14px;color:#333;letter-spacing:-1px}
125
+ #smart_editor2 .se2_palette2{float:left;_float:none;width:214px;margin:9px 0 0 0;padding:11px 0 0 11px;background:url(/assets/smart_editor/bg_line1.gif) repeat-x}
126
+ #smart_editor2 .se2_palette2 .se2_color_set{float:left}
127
+ #smart_editor2 .se2_palette2 .se2_selected_color{_display:inline;float:left;width:83px;height:18px;margin:0;border:1px solid #c7c7c7;background:#fff}
128
+ #smart_editor2 .se2_palette2 .se2_selected_color span{_display:inline;float:left;width:79px;height:14px;margin:2px}
129
+ #smart_editor2 .se2_palette2 .input_ty1{_display:inline;float:left;width:67px;height:16px;margin:0 3px 0 3px;padding:2px 2px 0 4px;font-family:tahoma;font-size:11px}
130
+ #smart_editor2 .se2_palette2 button.se2_btn_insert{float:left;width:35px;height:21px;margin-left:2px;padding:0;background:url(/assets/smart_editor/btn_set.png) -80px 0 no-repeat}
131
+ #smart_editor2 .se2_gradation1{float:left;_float:none;width:201px;height:128px;margin:4px 0 0 0;border:1px solid #c7c7c7;cursor:crosshair}
132
+ #smart_editor2 .se2_gradation2{float:left;_float:none;width:201px;height:10px;margin:4px 0 1px 0;border:1px solid #c7c7c7;cursor:crosshair}
133
+ /* 레이어 팝업 : 배경색 */
134
+ #smart_editor2 .se2_palette_bgcolor{width:225px;margin:11px 0 0;padding:0}
135
+ #smart_editor2 .se2_palette_bgcolor .se2_background{width:205px;margin:0 11px 0 11px}
136
+ #smart_editor2 .se2_palette_bgcolor .se2_background li{width:68px;height:20px}
137
+ #smart_editor2 .se2_palette_bgcolor .se2_background button{width:67px;height:19px;border:0}
138
+ #smart_editor2 .se2_palette_bgcolor .se2_background span{display:block;visibility:visible;overflow:visible;width:65px;height:17px;padding:0}
139
+ #smart_editor2 .se2_palette_bgcolor .se2_background span span{display:block;visibility:visible;overflow:visible;width:64px;height:16px;padding:3px 0 0 3px;font-size:11px;line-height:14px;text-align:left}
140
+ #smart_editor2 .se2_palette_bgcolor .se2_background .hover span{width:65px;height:17px;border:1px solid #666}
141
+ #smart_editor2 .se2_palette_bgcolor .se2_background .hover span span{width:62px;height:14px;padding:1px 0 0 1px;border:1px solid #fff}
142
+ /* layer : 표생성 */
143
+ #smart_editor2 .se2_table_set{position:relative;width:166px;margin:3px 11px 0 11px;padding:8px 0 0 0}
144
+ #smart_editor2 .se2_table_set .se2_cell_num{float:left;width:73px}
145
+ #smart_editor2 .se2_table_set .se2_cell_num dt{float:left;clear:both;width:17px;height:23px;margin:0;padding:0}
146
+ #smart_editor2 .se2_table_set .se2_cell_num dt label{display:block;margin:5px 0 0 0;font-size:11px;color:#666}
147
+ #smart_editor2 .se2_table_set .se2_cell_num dd{float:left;position:relative;width:54px;height:23px;margin:0;padding:0}
148
+ #smart_editor2 .se2_table_set .se2_cell_num .input_ty2{display:block;width:32px;height:16px;*margin:-1px 0 0 0;padding:2px 19px 0 0px;border:1px solid #c7c7c7;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666;text-align:right}
149
+ #smart_editor2 .se2_table_set .se2_pre_table{float:right;width:91px;height:43px;background:#c7c7c7}
150
+ #smart_editor2 .se2_table_set .se2_pre_table tr{background:#fff}
151
+ #smart_editor2 .se2_table_set .se2_pre_table td{font-size:0;line-height:0}
152
+ #smart_editor2 .se2_table_set .se2_add{position:absolute;top:2px;right:3px;width:13px;height:8px;background:url(/assets/smart_editor/btn_set.png) -86px -54px no-repeat}
153
+ #smart_editor2 .se2_table_set .se2_del{position:absolute;top:10px;right:3px;width:13px;height:8px;background:url(/assets/smart_editor/btn_set.png) -86px -62px no-repeat}
154
+ /* 속성직접입력 */
155
+ #smart_editor2 .se2_table_set .se2_t_proper1{float:left;width:166px;margin:7px 0 0 0;padding:10px 0 5px;background:url(/assets/smart_editor/bg_line1.gif) repeat-x}
156
+ #smart_editor2 .se2_table_set .se2_t_proper1 dt{width:166px;margin:0 0 6px 0}
157
+ #smart_editor2 .se2_table_set .se2_t_proper1 dd{width:166px}
158
+ #smart_editor2 .se2_table_set .se2_t_proper1 dt input{width:15px;height:15px;margin:-1px 3px 1px 0;_margin:-2px 3px 2px 0;vertical-align:middle}
159
+ #smart_editor2 .se2_table_set .se2_t_proper1 dt label{font-weight:bold;font-size:11px;color:#666;letter-spacing:-1px;vertical-align:middle}
160
+ #smart_editor2 .se2_table_set .se2_t_proper1_1{float:left;position:relative;z-index:59;width:166px;margin:1px 0 0 0}
161
+ #smart_editor2 .se2_table_set .se2_t_proper1_2{z-index:54;margin:0}
162
+ #smart_editor2 .se2_table_set .se2_t_proper1_3{z-index:53;margin:0}
163
+ #smart_editor2 .se2_table_set .se2_t_proper1_4{z-index:52;margin:0}
164
+ #smart_editor2 .se2_table_set .se2_t_proper1_1 dt{_display:inline;float:left;clear:both;width:66px;height:22px;margin:1px 0 0 18px}
165
+ #smart_editor2 .se2_table_set .se2_t_proper1_1 dt label{display:block;margin:4px 0 0 0;font-weight:normal;font-size:11px;color:#666;letter-spacing:-1px}
166
+ #smart_editor2 .se2_table_set .se2_t_proper1_1 dd{float:left;position:relative;width:82px;height:23px}
167
+ #smart_editor2 .se2_table_set .se2_t_proper1_1 .input_ty1{width:72px;height:16px;*margin:-1px 0 0 0;padding:2px 2px 0 6px;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666}
168
+ #smart_editor2 .se2_table_set .se2_t_proper1_1 .input_ty3{float:left;width:49px;height:16px;margin:0 3px 0 0;padding:2px 4px 0 4px;border:1px solid #c7c7c7;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666}
169
+ #smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_add{top:2px;right:2px}
170
+ #smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_del{top:10px;right:2px}
171
+ #smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_color_set .input_ty1{_display:inline;float:left;width:67px;height:16px;margin:0 3px 0 3px;padding:2px 2px 0 4px;font-family:tahoma,verdana,times New Roman;font-size:11px}
172
+ #smart_editor2 .se2_select_ty1{position:relative;width:80px;height:18px;border:1px solid #c7c7c7;background:#fff;font-size:11px;line-height:14px;text-align:left}
173
+ #smart_editor2 .se2_select_ty1 span{float:left;width:54px;height:18px;margin:0 0 0 5px;font-size:11px;line-height:14px;color:#666}
174
+ #smart_editor2 .se2_select_ty1 .se2_b_style1{height:15px;margin:3px 0 0 4px;font-size:11px;line-height:14px;color:#666;letter-spacing:-1px}
175
+ #smart_editor2 .se2_select_ty1 .se2_b_style2{background:url(/assets/smart_editor/bg_set.gif) 0 -50px repeat-x}
176
+ #smart_editor2 .se2_select_ty1 .se2_b_style3{background:url(/assets/smart_editor/bg_set.gif) 0 -68px repeat-x}
177
+ #smart_editor2 .se2_select_ty1 .se2_b_style4{background:url(/assets/smart_editor/bg_set.gif) 0 -85px repeat-x}
178
+ #smart_editor2 .se2_select_ty1 .se2_b_style5{background:url(/assets/smart_editor/bg_set.gif) 0 -103px repeat-x}
179
+ #smart_editor2 .se2_select_ty1 .se2_b_style6{background:url(/assets/smart_editor/bg_set.gif) 0 -121px repeat-x}
180
+ #smart_editor2 .se2_select_ty1 .se2_b_style7{background:url(/assets/smart_editor/bg_set.gif) 0 -139px repeat-x}
181
+ #smart_editor2 .se2_select_ty1 .se2_view_more{position:absolute;top:1px;right:1px;width:13px;height:16px;background:url(/assets/smart_editor/btn_set.png) -112px -54px no-repeat}
182
+ #smart_editor2 .se2_select_ty1 .se2_view_more2{position:absolute;top:1px;right:1px;width:13px;height:16px;background:url(/assets/smart_editor/btn_set.png) -99px -54px no-repeat}
183
+ /* 테두리 스타일 */
184
+ #smart_editor2 .se2_table_set .se2_b_t_b1{border-top:1px solid #b1b1b1}
185
+ #smart_editor2 .se2_layer_b_style{position:absolute;top:20px;right:0px;width:80px;padding-bottom:1px;border:1px solid #c7c7c7;border-top:1px solid #a8a8a8;background:#fff}
186
+ #smart_editor2 .se2_layer_b_style ul{width:80px;margin:0;padding:1px 0 0 0}
187
+ #smart_editor2 .se2_layer_b_style li{width:80px;height:18px;margin:0;padding:0}
188
+ #smart_editor2 .se2_layer_b_style .hover,#smart_editor2 .se2_layer_b_style .active{background:#ebebeb}
189
+ #smart_editor2 .se2_layer_b_style button{width:80px;height:18px;background:none}
190
+ #smart_editor2 .se2_layer_b_style button span{display:block;visibility:visible;overflow:visible;width:71px;height:18px;margin:0 0 0 5px;font-size:11px;line-height:15px;text-align:left}
191
+ #smart_editor2 .se2_layer_b_style button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0}
192
+ #smart_editor2 .se2_layer_b_style .se2_b_style1 span{margin:3px 0 0 4px;font-size:11px;line-height:14px;color:#666;letter-spacing:-1px}
193
+ #smart_editor2 .se2_layer_b_style .se2_b_style2 span{background:url(/assets/smart_editor/bg_set.gif) 0 -50px repeat-x}
194
+ #smart_editor2 .se2_layer_b_style .se2_b_style3 span{background:url(/assets/smart_editor/bg_set.gif) 0 -68px repeat-x}
195
+ #smart_editor2 .se2_layer_b_style .se2_b_style4 span{background:url(/assets/smart_editor/bg_set.gif) 0 -86px repeat-x}
196
+ #smart_editor2 .se2_layer_b_style .se2_b_style5 span{background:url(/assets/smart_editor/bg_set.gif) 0 -103px repeat-x}
197
+ #smart_editor2 .se2_layer_b_style .se2_b_style6 span{background:url(/assets/smart_editor/bg_set.gif) 0 -121px repeat-x}
198
+ #smart_editor2 .se2_layer_b_style .se2_b_style7 span{background:url(/assets/smart_editor/bg_set.gif) 0 -139px repeat-x}
199
+ /* 테두리색,셀배경색 */
200
+ #smart_editor2 .se2_pre_color{float:left;width:18px;height:18px;border:1px solid #c7c7c7}
201
+ #smart_editor2 .se2_pre_color button{float:left;width:14px;height:14px;margin:2px 0 0 2px;padding:0}
202
+ #smart_editor2 .se2_pre_color button span{overflow:hidden;position:absolute;top:-10000px;left:-10000px;z-index:-100;width:0;height:0}
203
+ /* 표딤드 */
204
+ #smart_editor2 .se2_table_set .se2_t_dim1{clear:both;position:absolute;top:71px;left:16px;z-index:60;width:157px;height:118px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
205
+ #smart_editor2 .se2_table_set .se2_t_dim2{position:absolute;top:116px;left:16px;z-index:55;width:157px;height:45px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
206
+ #smart_editor2 .se2_table_set .se2_t_dim3{clear:both;position:absolute;top:192px;left:16px;z-index:51;width:157px;height:39px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
207
+ /* 표스타일preview */
208
+ #smart_editor2 .se2_table_set .se2_t_proper2{float:left;position:relative;z-index:50;width:166px;margin:2px 0 0 0}
209
+ #smart_editor2 .se2_table_set .se2_t_proper2 dt{float:left;width:84px;height:33px;margin:4px 0 0 0}
210
+ #smart_editor2 .se2_table_set .se2_t_proper2 dt input{width:15px;height:15px;margin:-1px 3px 1px 0;_margin:-2px 3px 2px 0;vertical-align:middle}
211
+ #smart_editor2 .se2_table_set .se2_t_proper2 dt label{font-weight:bold;font-size:11px;color:#666;letter-spacing:-1px;vertical-align:middle}
212
+ #smart_editor2 .se2_table_set .se2_t_proper2 dd{float:left;width:66px;height:33px}
213
+ #smart_editor2 .se2_select_ty2{position:relative;width:65px;height:31px;border:1px solid #c7c7c7;background:#fff;font-size:11px;line-height:14px;text-align:left}
214
+ #smart_editor2 .se2_select_ty2 span{float:left;width:45px;height:25px;margin:3px 0 0 3px;background:url(/assets/smart_editor/btn_set.png) repeat-x}
215
+ #smart_editor2 .se2_select_ty2 .se2_t_style1{background-position:0 -410px}
216
+ #smart_editor2 .se2_select_ty2 .se2_t_style2{background-position:-46px -410px}
217
+ #smart_editor2 .se2_select_ty2 .se2_t_style3{background-position:-92px -410px}
218
+ #smart_editor2 .se2_select_ty2 .se2_t_style4{background-position:-138px -410px}
219
+ #smart_editor2 .se2_select_ty2 .se2_t_style5{background-position:-184px -410px}
220
+ #smart_editor2 .se2_select_ty2 .se2_t_style6{background-position:-230px -410px}
221
+ #smart_editor2 .se2_select_ty2 .se2_t_style7{background-position:-276px -410px}
222
+ #smart_editor2 .se2_select_ty2 .se2_t_style8{background-position:-322px -410px}
223
+ #smart_editor2 .se2_select_ty2 .se2_t_style9{background-position:0 -436px}
224
+ #smart_editor2 .se2_select_ty2 .se2_t_style10{background-position:-46px -436px}
225
+ #smart_editor2 .se2_select_ty2 .se2_t_style11{background-position:-92px -436px}
226
+ #smart_editor2 .se2_select_ty2 .se2_t_style12{background-position:-138px -436px}
227
+ #smart_editor2 .se2_select_ty2 .se2_t_style13{background-position:-184px -436px}
228
+ #smart_editor2 .se2_select_ty2 .se2_t_style14{background-position:-230px -436px}
229
+ #smart_editor2 .se2_select_ty2 .se2_t_style15{background-position:-276px -436px}
230
+ #smart_editor2 .se2_select_ty2 .se2_t_style16{background-position:-322px -436px}
231
+ #smart_editor2 .se2_select_ty2 .se2_view_more{position:absolute;top:1px;right:1px;_right:0px;width:13px !important;height:29px !important;background:url(/assets/smart_editor/btn_set.png) -353px -48px no-repeat !important}
232
+ #smart_editor2 .se2_select_ty2 .se2_view_more2{position:absolute;top:1px;right:1px;_right:0px;width:13px !important;height:29px !important;background:url(/assets/smart_editor/btn_set.png) -340px -48px no-repeat !important}
233
+ #smart_editor2 .se2_select_ty2 .se2_view_more span{display:none}
234
+ /* 표스타일 */
235
+ #smart_editor2 .se2_layer_t_style{position:absolute;top:33px;right:15px;width:208px;border:1px solid #c7c7c7;border-top:1px solid #a8a8a8;background:#fff}
236
+ #smart_editor2 .se2_layer_t_style ul{width:204px;height:126px;margin:1px 2px;padding:1px 0 0 0;background:#fff}
237
+ #smart_editor2 .se2_layer_t_style li{_display:inline;float:left;width:45px;height:25px;margin:1px;padding:1px;border:1px solid #fff}
238
+ #smart_editor2 .se2_layer_t_style .hover,#smart_editor2 .se2_layer_t_style .active{border:1px solid #666;background:#fff}
239
+ #smart_editor2 .se2_layer_t_style button{width:45px;height:25px;background:url(/assets/smart_editor/btn_set.png) repeat-x !important}
240
+ #smart_editor2 .se2_layer_t_style .se2_t_style1{background-position:0 -410px !important}
241
+ #smart_editor2 .se2_layer_t_style .se2_t_style2{background-position:-46px -410px !important}
242
+ #smart_editor2 .se2_layer_t_style .se2_t_style3{background-position:-92px -410px !important}
243
+ #smart_editor2 .se2_layer_t_style .se2_t_style4{background-position:-138px -410px !important}
244
+ #smart_editor2 .se2_layer_t_style .se2_t_style5{background-position:-184px -410px !important}
245
+ #smart_editor2 .se2_layer_t_style .se2_t_style6{background-position:-230px -410px !important}
246
+ #smart_editor2 .se2_layer_t_style .se2_t_style7{background-position:-276px -410px !important}
247
+ #smart_editor2 .se2_layer_t_style .se2_t_style8{background-position:-322px -410px !important}
248
+ #smart_editor2 .se2_layer_t_style .se2_t_style9{background-position:0 -436px !important}
249
+ #smart_editor2 .se2_layer_t_style .se2_t_style10{background-position:-46px -436px !important}
250
+ #smart_editor2 .se2_layer_t_style .se2_t_style11{background-position:-92px -436px !important}
251
+ #smart_editor2 .se2_layer_t_style .se2_t_style12{background-position:-138px -436px !important}
252
+ #smart_editor2 .se2_layer_t_style .se2_t_style13{background-position:-184px -436px !important}
253
+ #smart_editor2 .se2_layer_t_style .se2_t_style14{background-position:-230px -436px !important}
254
+ #smart_editor2 .se2_layer_t_style .se2_t_style15{background-position:-276px -436px !important}
255
+ #smart_editor2 .se2_layer_t_style .se2_t_style16{background-position:-322px -436px !important}
256
+ #smart_editor2 .se2_table_set .se2_btn_area{float:left;width:166px;margin:6px 0 0 0;padding:12px 0 8px 0;background:url(/assets/smart_editor/bg_line1.gif) repeat-x;text-align:center}
257
+ #smart_editor2 .se2_table_set button.se2_apply{width:41px;height:24px;margin-right:3px;background:url(/assets/smart_editor/btn_set.png) no-repeat}
258
+ #smart_editor2 .se2_table_set button.se2_cancel{width:39px;height:24px;background:url(/assets/smart_editor/btn_set.png) -41px 0 no-repeat}
259
+ #smart_editor2 .se2_table_set .se2_rd{width:14px;height:14px;vertical-align:middle}
260
+ #smart_editor2 .se2_table_set .se2_celltit{font-size:11px;font-size:11px;color:#666;letter-spacing:-1px}
261
+ #smart_editor2 .se2_table_set dt label.se2_celltit{display:inline}
262
+ /* 맞춤법검사 */
263
+ #smart_editor2 .se2_spell_check{position:relative;margin:15px 175px 15px 15px !important;padding:8px 11px;border:1px solid #c7c7c7;background:#fbfbfb;line-height:19px;color:#333;_zoom:1}
264
+ #smart_editor2 .se2_spell_check strong{color:#fa0505}
265
+ #smart_editor2 .se2_spell_check .p2{color:#777;letter-spacing:-1px}
266
+ #smart_editor2 .se2_spell_check .p2 span{padding-bottom:2px;background:url(/assets/smart_editor/bg_spell.gif) 0 bottom repeat-x}
267
+ #smart_editor2 .se2_reck{position:absolute;top:19px;right:76px;width:112px;height:24px;background:url(/assets/smart_editor/btn_set.png) -241px 0 no-repeat}
268
+ #smart_editor2 .se2_ckfin{position:absolute;top:19px;right:12px;width:61px;height:24px;background:url(/assets/smart_editor/btn_set.png) -180px 0 no-repeat}
269
+ #smart_editor2 .se2_spell_auto{position:absolute;top:0;left:0;border-width:1px;border-style:solid;border-color:#c7c7c7 #ababab #ababab #c7c7c7;background:#fff}
270
+ #smart_editor2 .se2_spell_auto ul{margin:1px 1px 0 1px;background:#fafafa}
271
+ #smart_editor2 .se2_spell_auto li{padding:2px 3px 0 3px;font-size:12px;line-height:15px;color:#333;cursor:pointer}
272
+ #smart_editor2 .se2_spell_auto .hover{background:#ebebeb}
273
+ #smart_editor2 .se2_spell_auto .loading,#smart_editor2 .se2_spell_auto .nodata{padding:1px 3px 2px 3px;cursor:default}
274
+ #smart_editor2 .se2_spell_auto p{margin:0 0 1px;padding:3px 5px 3px;_padding:0 5px 3px;background:#fafafa}
275
+ #smart_editor2 .se2_spell_auto input{width:68px;height:13px;margin:0 0 1px;padding:3px 1px 2px 4px;border:1px solid #c8c8c8;color:#666;vertical-align:middle}
276
+ #smart_editor2 .se2_spell_auto .se2_replace{width:33px;height:21px;margin:0 0 0 3px;background:url(/assets/smart_editor/btn_set.png) -115px 0 no-repeat;vertical-align:middle}
277
+ /* 퀵에디터 */
278
+ #smart_editor2 .se2_qmax{position:absolute;width:18px;height:18px;background:url(/assets/smart_editor/btn_set.png) -339px -169px no-repeat}
279
+ #smart_editor2 .se2_qeditor{position:absolute;top:0;left:0;width:183px;margin:0;padding:0;border:1px solid #c7c7c7;border-right:1px solid #ababab;border-bottom:1px solid #ababab;background:#fafafa}
280
+ #smart_editor2 .se2_qeditor label,#smart_editor2 .se2_qeditor span,#smart_editor2 .se2_qeditor dt{font-size:11px;color:#666;letter-spacing:-1px}
281
+ #smart_editor2 .se2_qbar{position:relative;width:183px;height:11px;background:url(/assets/smart_editor/bx_set_110302.gif) 0 -731px no-repeat}
282
+ #smart_editor2 .se2_qbar .se2_qmini{position:absolute;top:-1px;right:0;*right:-1px;_right:-3px;width:18px;height:14px;background:url(/assets/smart_editor/btn_set.png) -315px -170px no-repeat}
283
+ #smart_editor2 .se2_qbar .se2_qmini button{width:20px;height:14px;margin-top:-1px}
284
+ #smart_editor2 .se2_qeditor .se2_qbody0{float:left;border:1px solid #fefefe}
285
+ #smart_editor2 .se2_qeditor .se2_qbody{position:relative;z-index:90;width:174px;padding:4px 0 0 7px}
286
+ #smart_editor2 .se2_qeditor .se2_qe1{overflow:hidden;width:174px}
287
+ #smart_editor2 .se2_qeditor .se2_qe1 dt{float:left;width:22px;height:18px;padding:4px 0 0 0}
288
+ #smart_editor2 .se2_qeditor .se2_qe1 dd{float:left;width:65px;height:22px}
289
+ #smart_editor2 .se2_qeditor .se2_addrow{width:28px;height:19px;background:url(/assets/smart_editor/btn_set.png) no-repeat -385px -49px}
290
+ #smart_editor2 .se2_qeditor .se2_addcol{width:29px;height:19px;background:url(/assets/smart_editor/btn_set.png) no-repeat -413px -49px}
291
+ #smart_editor2 .se2_qeditor .se2_seprow{width:28px;height:19px;background:url(/assets/smart_editor/btn_set.png) no-repeat -385px -68px}
292
+ #smart_editor2 .se2_qeditor .se2_sepcol{width:29px;height:19px;background:url(/assets/smart_editor/btn_set.png) no-repeat -413px -68px}
293
+ #smart_editor2 .se2_qeditor .se2_delrow{width:28px;height:19px;background:url(/assets/smart_editor/btn_set.png) no-repeat -385px -106px}
294
+ #smart_editor2 .se2_qeditor .se2_delcol{width:29px;height:19px;background:url(/assets/smart_editor/btn_set.png) no-repeat -413px -106px}
295
+ #smart_editor2 .se2_qeditor .se2_merrow{width:57px;height:19px;background:url(/assets/smart_editor/btn_set.png) no-repeat -385px -125px}
296
+ #smart_editor2 .se2_qeditor .se2_mercol{width:57px;height:19px;background:url(/assets/smart_editor/btn_set.png) no-repeat -413px -125px}
297
+ #smart_editor2 .se2_qeditor .se2_seprow_off{width:28px;height:19px;background:url(/assets/smart_editor/btn_set.png) no-repeat -385px -87px}
298
+ #smart_editor2 .se2_qeditor .se2_sepcol_off{width:29px;height:19px;background:url(/assets/smart_editor/btn_set.png) no-repeat -413px -87px}
299
+ #smart_editor2 .se2_qeditor .se2_merrow_off{width:57px;height:19px;background:url(/assets/smart_editor/btn_set.png) no-repeat -385px -144px}
300
+ #smart_editor2 .se2_qeditor .se2_mercol_off{width:57px;height:19px;background:url(/assets/smart_editor/btn_set.png) no-repeat -413px -144px}
301
+ /* 퀵 > 셀배경색 */
302
+ #smart_editor2 .se2_qeditor .se2_qe2{_display:inline;float:left;position:relative;z-index:100;width:165px;margin:2px 0 0 1px;padding:7px 0 0 0;background:url(/assets/smart_editor/bg_line1.gif) repeat-x;zoom:1}
303
+ #smart_editor2 .se2_qeditor .se2_qe2_1 dt{float:left;width:62px;padding:3px 0 0 0}
304
+ #smart_editor2 .se2_qeditor .se2_qe2_1 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle}
305
+ #smart_editor2 .se2_qeditor .se2_qe2_1 dd{float:left;position:relative;zoom:1}
306
+ #smart_editor2 .se2_qeditor .se2_qe2_3{padding:7px 0 6px 0}/* My글양식 없을때 */
307
+ #smart_editor2 .se2_qeditor .se2_qe2_2 {position:relative;_position:absolute}
308
+ #smart_editor2 .se2_qeditor .se2_qe2_2 dt{float:left;width:50px;padding:3px 0 0 13px}
309
+ #smart_editor2 .se2_qeditor .se2_qe2_2 dt input{width:15px;height:15px;margin:-1px 2px 1px -1px;vertical-align:middle}
310
+ #smart_editor2 .se2_qeditor .se2_qe2_2 dd{float:left}
311
+ /* 퀵 > 표스타일 */
312
+ #smart_editor2 .se2_table_set .se2_qbody .se2_t_proper2{float:left;*float:none;position:static;width:166px;margin:5px 0 0 1px}
313
+ #smart_editor2 .se2_qeditor .se2_qe3 dt{float:left;width:62px;padding:0}
314
+ #smart_editor2 .se2_qeditor .se2_qe3 dt label{font-weight:normal}
315
+ #smart_editor2 .se2_qeditor .se2_qe3 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle}
316
+ #smart_editor2 .se2_qeditor .se2_qe3 dd .se2_qe3_table {position:relative}
317
+ /* 퀵 > 셀배경색 미리보기 */
318
+ #smart_editor2 .se2_qeditor .se2_pre_color{float:left;width:18px;height:18px;border:1px solid #c7c7c7}
319
+ #smart_editor2 .se2_qeditor .se2_pre_color button{float:left;width:14px;height:14px;margin:2px 0 0 2px;padding:0}
320
+ #smart_editor2 .se2_qeditor .se2_pre_color button span{overflow:hidden;position:absolute;top:-10000px;left:-10000px;z-index:-100;width:0;height:0}
321
+ /* 퀵 > 셀배경색선택 레이어 */
322
+ #smart_editor2 .se2_qeditor .se2_layer{float:left;clear:both;position:absolute;top:20px;left:0;margin:0;padding:0;border:1px solid #c7c7c7;border-top:1px solid #9a9a9a;background:#fafafa}
323
+ #smart_editor2 .se2_qeditor .se2_layer .se2_in_layer{float:left;margin:0;padding:0;border:1px solid #fff;background:#fafafa}
324
+ #smart_editor2 .se2_qeditor .se2_layer button{vertical-align:top}
325
+ #smart_editor2 .se2_qeditor .se2_layer .se2_pick_color li{position:relative}
326
+ /* 퀵 > 셀배경이미지 미리보기 */
327
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg{float:left;width:14px;height:14px;padding:2px;border:1px solid #c7c7c7}
328
+ #smart_editor2 .se2_qeditor .se2_qe2_2 button{width:16px;height:16px;background:url(/assets/smart_editor/btn_set.png) 0 -261px no-repeat}
329
+ /* 퀵 > 셀배경이미지 선택레이어 */
330
+ #smart_editor2 .se2_cellimg_set{_display:inline;float:left;width:136px;margin:4px 3px 0 4px;padding-bottom:4px}
331
+ #smart_editor2 .se2_cellimg_set li{_display:inline;float:left;width:16px;height:16px;margin:0 1px 1px 0}
332
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg0{background-position:-255px -278px}
333
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg1{background-position:0 -261px}
334
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg2{background-position:-17px -261px}
335
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg3{background-position:-34px -261px}
336
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg4{background-position:-51px -261px}
337
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg5{background-position:-68px -261px}
338
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg6{background-position:-85px -261px}
339
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg7{background-position:-102px -261px}
340
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg8{background-position:-119px -261px}
341
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg9{background-position:-136px -261px}
342
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg10{background-position:-153px -261px}
343
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg11{background-position:-170px -261px}
344
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg12{background-position:-187px -261px}
345
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg13{background-position:-204px -261px}
346
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg14{background-position:-221px -261px}
347
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg15{background-position:-238px -261px}
348
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg16{background-position:-255px -261px}
349
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg17{background-position:0 -278px}
350
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg18{background-position:-17px -278px}
351
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg19{background-position:-34px -278px}
352
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg20{background-position:-51px -278px}
353
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg21{background-position:-68px -278px}
354
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg22{background-position:-85px -278px}
355
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg23{background-position:-102px -278px}
356
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg24{background-position:-119px -278px}
357
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg25{background-position:-136px -278px}
358
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg26{background-position:-153px -278px}
359
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg27{background-position:-170px -278px}
360
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg28{background-position:-187px -278px}
361
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg29{background-position:-204px -278px}
362
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg30{background-position:-221px -278px}
363
+ #smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg31{background-position:-238px -278px}
364
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg button{width:14px;height:14px}
365
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg1{background-position:-1px -262px}
366
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg2{background-position:-18px -262px}
367
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg3{background-position:-35px -262px}
368
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg4{background-position:-52px -262px}
369
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg5{background-position:-69px -262px}
370
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg6{background-position:-86px -262px}
371
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg7{background-position:-103px -262px}
372
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg8{background-position:-120px -262px}
373
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg9{background-position:-137px -262px}
374
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg10{background-position:-154px -262px}
375
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg11{background-position:-171px -262px}
376
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg12{background-position:-188px -262px}
377
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg13{background-position:-205px -262px}
378
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg14{background-position:-222px -262px}
379
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg15{background-position:-239px -262px}
380
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg16{background-position:-256px -262px}
381
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg17{background-position:-1px -279px}
382
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg18{background-position:-18px -279px}
383
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg19{background-position:-35px -279px}
384
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg20{background-position:-52px -279px}
385
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg21{background-position:-69px -279px}
386
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg22{background-position:-86px -279px}
387
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg23{background-position:-103px -279px}
388
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg24{background-position:-120px -279px}
389
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg25{background-position:-137px -279px}
390
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg26{background-position:-154px -279px}
391
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg27{background-position:-171px -279px}
392
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg28{background-position:-188px -279px}
393
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg29{background-position:-205px -279px}
394
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg30{background-position:-222px -279px}
395
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg31{background-position:-239px -279px}
396
+ #smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg32{background-position:-256px -279px}
397
+ /* 이미지퀵에디터 */
398
+ #smart_editor2 .se2_qe10{width:166px;margin:0;*margin:-2px 0 0 0}
399
+ #smart_editor2 .se2_qe10 label{margin:0 1px 0 0;vertical-align:middle}
400
+ #smart_editor2 .se2_qe10 .se2_sheight{margin-left:4px}
401
+ #smart_editor2 .se2_qe10 .input_ty1{width:30px;height:13px;margin:0 0 1px 1px;padding:3px 4px 0 1px;font-size:11px;letter-spacing:0;text-align:right;vertical-align:middle}
402
+ #smart_editor2 .se2_qe10 .se2_sreset{width:41px;height:19px;margin-left:3px;background:url(/assets/smart_editor/btn_set.png) -401px -184px no-repeat;vertical-align:middle}
403
+ #smart_editor2 .se2_qe11{float:left;width:166px;margin:4px 0 0 0;padding:7px 0 2px 0;background:url(/assets/smart_editor/bg_line1.gif) repeat-x}
404
+ #smart_editor2 .se2_qe11_1{float:left;width:99px}
405
+ #smart_editor2 .se2_qe11_1 dt{float:left;width:56px;height:15px;padding:5px 0 0 0}
406
+ #smart_editor2 .se2_qe11_1 dd{float:left;position:relative;width:38px;height:20px}
407
+ #smart_editor2 .se2_qe11_1 .input_ty1{display:block;width:29px;height:15px;margin:0;*margin:-1px 0 1px 0;padding:3px 1px 0 5px;font-size:11px;letter-spacing:0;text-align:left}
408
+ #smart_editor2 .se2_qe11_1 .se2_add{position:absolute;top:2px;right:3px;width:13px;height:8px;background:url(/assets/smart_editor/btn_set.png) -86px -54px no-repeat}
409
+ #smart_editor2 .se2_qe11_1 .se2_del{position:absolute;top:10px;right:3px;width:13px;height:8px;background:url(/assets/smart_editor/btn_set.png) -86px -62px no-repeat}
410
+ #smart_editor2 .se2_qe11_2{float:left;width:67px}
411
+ #smart_editor2 .se2_qe11_2 dt{float:left;width:47px;margin:5px 0 0 0}
412
+ #smart_editor2 .se2_qe11_2 dd{float:left;position:relative;width:20px}
413
+ #smart_editor2 .se2_qe12{float:left;width:166px;margin:3px 0 0 0;padding:7px 0 0 0;background:url(/assets/smart_editor/bg_line1.gif) repeat-x}
414
+ #smart_editor2 .se2_qe12 dt{float:left;margin:5px 4px 0 0}
415
+ #smart_editor2 .se2_qe12 dd{float:left;padding:0 0 6px 0}
416
+ #smart_editor2 .se2_qe12 .se2_align0{float:left;width:19px;height:21px;background:url(/assets/smart_editor/btn_set.png) -276px -121px no-repeat}
417
+ #smart_editor2 .se2_qe12 .se2_align1{float:left;width:19px;height:21px;background:url(/assets/smart_editor/btn_set.png) -295px -121px no-repeat}
418
+ #smart_editor2 .se2_qe12 .se2_align2{float:left;width:20px;height:21px;background:url(/assets/smart_editor/btn_set.png) -314px -121px no-repeat}
419
+ #smart_editor2 .se2_qe13{position:relative;z-index:10;zoom:1}
420
+ #smart_editor2 .se2_qe13 dt{float:left;width:62px;padding:3px 0 0}
421
+ #smart_editor2 .se2_qe13 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle;zoom:1}
422
+ #smart_editor2 .se2_qe13 dt .se2_qdim2{width:32px}
423
+ #smart_editor2 .se2_qe13 dd .se2_select_ty1{width:38px}
424
+ #smart_editor2 .se2_qe13 dd .se2_select_ty1 span{width:15px}
425
+ #smart_editor2 .se2_qe13 dd .input_ty1{width:20px}
426
+ #smart_editor2 .se2_qe13 dd .se2_palette2 .input_ty1{width:67px}
427
+ #smart_editor2 .se2_qe13 .se2_add{*top:3px}
428
+ #smart_editor2 .se2_qe13 .se2_del{*top:11px}
429
+ #smart_editor2 .se2_qe13 .se2_layer_b_style{right:-2px;_right:0}
430
+ #smart_editor2 .se2_qe13 .se2_layer_b_style li span{width:auto;margin:0 4px 0 5px;padding-top:2px}
431
+ #smart_editor2 .se2_qe13 dd{_display:inline;float:left;position:relative;width:29px;margin-right:5px;_margin-right:3px;zoom:1}
432
+ #smart_editor2 .se2_qe13 dd .se2_palette h4{margin-top:9px;font-family:dotum;font-size:12px}
433
+ #smart_editor2 .se2_qe13 dd.dd_type{width:38px}
434
+ #smart_editor2 .se2_qe13 dd.dd_type2{width:37px;margin-right:3px}
435
+ #smart_editor2 .se2_qe13 dd.dd_type2 .input_ty1{width:29px}
436
+ #smart_editor2 .se2_qe13 dd.dd_type2 button{right:2px;_right:1px}
437
+ #smart_editor2 .se2_qe13 dd.dd_type3{width:20px;margin:0}
438
+ #smart_editor2 .se2_qe13_v1{_display:inline;float:left;margin:2px 0 1px}
439
+ #smart_editor2 .se2_qe13_v1 dt{padding:4px 0 0 1px}
440
+ #smart_editor2 .se2_qe13_v2{_display:inline;float:left;position:relative;z-index:9;width:165px;margin:4px 0 0 1px;zoom:1}
441
+ #smart_editor2 .se2_qe13_v2 dd{width:18px;margin:0}
442
+ #smart_editor2 .se2_qeditor .se2_qdim1{clear:both;position:absolute;top:25px;left:115px;width:60px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
443
+ #smart_editor2 .se2_qeditor .se2_qdim2{clear:both;position:absolute;top:55px;left:24px;z-index:110;width:70px;height:22px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
444
+ #smart_editor2 .se2_qeditor .se2_qdim3{clear:both;position:absolute;top:55px;left:118px;z-index:110;width:56px;height:22px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
445
+ #smart_editor2 .se2_qeditor .se2_qdim4{clear:both;position:absolute;top:81px;left:23px;z-index:35;width:116px;height:35px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
446
+ #smart_editor2 .se2_qeditor .se2_qdim5{clear:both;position:absolute;top:31px;left:106px;width:68px;height:26px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
447
+ #smart_editor2 .se2_qeditor .se2_qdim6c{clear:both;position:absolute;top:25px;left:28px;width:29px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
448
+ #smart_editor2 .se2_qeditor .se2_qdim6r{clear:both;position:absolute;top:25px;left:57px;width:29px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
449
+ #smart_editor2 .se2_highedit{float:right;width:56px;height:21px;margin:-27px 8px 0 0;background:url(/assets/smart_editor/btn_set.png) -329px -142px no-repeat}
450
+ #smart_editor2 .se2_qeditor .se2_qdim7{clear:both;position:absolute;top:55px;left:24px;z-index:110;width:150px;height:48px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
451
+ #smart_editor2 .se2_qeditor .se2_qdim8{clear:both;position:absolute;top:105px;left:24px;z-index:5;width:150px;height:37px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
452
+ #smart_editor2 .se2_qeditor .se2_qdim9{clear:both;position:absolute;top:55px;left:111px;z-index:110;width:65px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
453
+ #smart_editor2 .se2_qeditor .se2_qdim10{clear:both;position:absolute;top:55px;left:100px;z-index:110;width:77px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
454
+ #smart_editor2 .se2_qeditor .se2_qdim11{clear:both;position:absolute;top:55px;left:65px;z-index:110;width:115px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)}
@@ -0,0 +1,24 @@
1
+ @charset "utf-8";
2
+ /* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */
3
+
4
+ .se2_outputarea ,
5
+ .se2_outputarea th,
6
+ .se2_outputarea td{margin:0;padding:0;color:#666;font-size:12px;font-family:'돋움',Dotum,'굴림',Gulim,Helvetica,Sans-serif;line-height:1.5;}
7
+ .se2_outputarea p {margin:0;padding:0;}
8
+ .se2_outputarea a:hover{text-decoration:underline;}
9
+ .se2_outputarea a:link{color:#0000ff;}
10
+ .se2_outputarea ul{margin:0 0 0 40px;padding:0;}
11
+ .se2_outputarea ul li {margin:0;list-style-type:disc;padding:0;}
12
+ .se2_outputarea ul ul li {list-style-type:circle;}
13
+ .se2_outputarea ul ul ul li {list-style-type:square;}
14
+ .se2_outputarea img,
15
+ .se2_outputarea fieldset{border:0;}
16
+ /* Nboard */
17
+ #n2_nboard .se2_outputarea {color:#666;font-size:12px;font-family:'돋움',Dotum,'굴림',Gulim, Helvetica,Sans-serif;line-height:1.5;}
18
+ #n2_nboard .se2_outputarea th,
19
+ #n2_nboard .se2_outputarea td{margin:0;padding:0;color:#666;font-size:12px;font-family:'돋움',Dotum,'굴림',Gulim,Helvetica,Sans-serif;line-height:1.5;}
20
+ #n2_nboard .se2_outputarea p {margin:0;padding:0;}
21
+ #n2_nboard .conts ul li {list-style-type:disc;}
22
+ #n2_nboard .conts ul li li {list-style-type:circle;}
23
+ #n2_nboard .conts ul li li li {list-style-type:square;}
24
+ #n2_nboard .se2_summary_td ul{color:#0482d6}