sunrise-widgets 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile +34 -0
 - data/MIT-LICENSE +20 -0
 - data/README.rdoc +21 -0
 - data/Rakefile +27 -0
 - data/app/controllers/manage/widgets_controller.rb +33 -0
 - data/app/views/manage/widgets/_form.html.erb +21 -0
 - data/app/views/manage/widgets/_model_filter.html.erb +40 -0
 - data/app/views/manage/widgets/_widget.html.erb +41 -0
 - data/app/views/manage/widgets/edit.html.erb +6 -0
 - data/app/views/manage/widgets/index.html.erb +30 -0
 - data/app/views/manage/widgets/new.html.erb +6 -0
 - data/app/views/manage/widgets/show.html.erb +29 -0
 - data/config/locales/ru.yml +18 -0
 - data/config/locales/uk.yml +18 -0
 - data/config/routes.rb +5 -0
 - data/lib/generators/sunrise/widgets/USAGE +12 -0
 - data/lib/generators/sunrise/widgets/install_generator.rb +40 -0
 - data/lib/generators/sunrise/widgets/templates/create_widgets.rb +24 -0
 - data/lib/generators/sunrise/widgets/templates/widget.rb +6 -0
 - data/lib/generators/sunrise/widgets/templates/widget_position.rb +14 -0
 - data/lib/generators/sunrise/widgets/templates/widget_sweeper.rb +21 -0
 - data/lib/generators/sunrise/widgets/templates/widget_type.rb +15 -0
 - data/lib/sunrise/models/widget.rb +39 -0
 - data/lib/sunrise/widgets/engine.rb +18 -0
 - data/lib/sunrise/widgets/version.rb +5 -0
 - data/lib/sunrise/widgets.rb +12 -0
 - data/lib/sunrise-widgets.rb +1 -0
 - data/spec/controllers/manage/widgets_controller_spec.rb +95 -0
 - data/spec/dummy/Rakefile +7 -0
 - data/spec/dummy/app/controllers/application_controller.rb +3 -0
 - data/spec/dummy/app/helpers/application_helper.rb +2 -0
 - data/spec/dummy/app/helpers/manage/assets_helper.rb +2 -0
 - data/spec/dummy/app/helpers/manage/base_helper.rb +81 -0
 - data/spec/dummy/app/helpers/manage/pages_helper.rb +2 -0
 - data/spec/dummy/app/helpers/manage/settings_helper.rb +2 -0
 - data/spec/dummy/app/helpers/manage/structures_helper.rb +12 -0
 - data/spec/dummy/app/helpers/manage/users_helper.rb +6 -0
 - data/spec/dummy/app/models/defaults/ability.rb +39 -0
 - data/spec/dummy/app/models/defaults/asset.rb +7 -0
 - data/spec/dummy/app/models/defaults/attachment_file.rb +33 -0
 - data/spec/dummy/app/models/defaults/avatar.rb +37 -0
 - data/spec/dummy/app/models/defaults/header.rb +5 -0
 - data/spec/dummy/app/models/defaults/page.rb +5 -0
 - data/spec/dummy/app/models/defaults/picture.rb +35 -0
 - data/spec/dummy/app/models/defaults/position_type.rb +7 -0
 - data/spec/dummy/app/models/defaults/role.rb +20 -0
 - data/spec/dummy/app/models/defaults/role_type.rb +8 -0
 - data/spec/dummy/app/models/defaults/structure.rb +16 -0
 - data/spec/dummy/app/models/defaults/structure_type.rb +9 -0
 - data/spec/dummy/app/models/defaults/user.rb +47 -0
 - data/spec/dummy/app/views/layouts/application.html.erb +37 -0
 - data/spec/dummy/app/views/pages/show.html.erb +2 -0
 - data/spec/dummy/app/views/shared/_notice.html.erb +17 -0
 - data/spec/dummy/config/application.rb +47 -0
 - data/spec/dummy/config/application.yml.sample +4 -0
 - data/spec/dummy/config/boot.rb +10 -0
 - data/spec/dummy/config/database.yml +22 -0
 - data/spec/dummy/config/database.yml.sample +34 -0
 - data/spec/dummy/config/environment.rb +5 -0
 - data/spec/dummy/config/environments/development.rb +26 -0
 - data/spec/dummy/config/environments/production.rb +49 -0
 - data/spec/dummy/config/environments/test.rb +35 -0
 - data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
 - data/spec/dummy/config/initializers/devise.rb +204 -0
 - data/spec/dummy/config/initializers/inflections.rb +10 -0
 - data/spec/dummy/config/initializers/mime_types.rb +5 -0
 - data/spec/dummy/config/initializers/secret_token.rb +7 -0
 - data/spec/dummy/config/initializers/session_store.rb +8 -0
 - data/spec/dummy/config/initializers/simple_form.rb +93 -0
 - data/spec/dummy/config/initializers/sunrise.rb +7 -0
 - data/spec/dummy/config/locales/devise.en.yml +53 -0
 - data/spec/dummy/config/locales/en.yml +5 -0
 - data/spec/dummy/config/locales/simple_form.en.yml +24 -0
 - data/spec/dummy/config/logrotate-config.sample +9 -0
 - data/spec/dummy/config/nginx-config-passenger.sample +51 -0
 - data/spec/dummy/config/routes.rb +64 -0
 - data/spec/dummy/config.ru +4 -0
 - data/spec/dummy/db/migrate/20110801124809_sunrise_create_users.rb +29 -0
 - data/spec/dummy/db/migrate/20110801124909_sunrise_create_roles.rb +16 -0
 - data/spec/dummy/db/migrate/20110801125009_sunrise_create_structures.rb +27 -0
 - data/spec/dummy/db/migrate/20110801125109_sunrise_create_pages.rb +17 -0
 - data/spec/dummy/db/migrate/20110801125209_sunrise_create_assets.rb +28 -0
 - data/spec/dummy/db/migrate/20110801125309_sunrise_create_headers.rb +20 -0
 - data/spec/dummy/db/migrate/20110801161138_sunrise_create_widgets.rb +24 -0
 - data/spec/dummy/db/seeds.rb +25 -0
 - data/spec/dummy/db/test.sqlite3 +0 -0
 - data/spec/dummy/lib/templates/erb/scaffold/_form.html.erb +13 -0
 - data/spec/dummy/log/development.log +5 -0
 - data/spec/dummy/log/production.log +0 -0
 - data/spec/dummy/log/server.log +0 -0
 - data/spec/dummy/log/test.log +2324 -0
 - data/spec/dummy/public/404.html +26 -0
 - data/spec/dummy/public/422.html +26 -0
 - data/spec/dummy/public/500.html +26 -0
 - data/spec/dummy/public/favicon.ico +0 -0
 - data/spec/dummy/public/images/manage/add_post_bot.gif +0 -0
 - data/spec/dummy/public/images/manage/add_post_top.gif +0 -0
 - data/spec/dummy/public/images/manage/add_white_bot.gif +0 -0
 - data/spec/dummy/public/images/manage/add_white_top.gif +0 -0
 - data/spec/dummy/public/images/manage/arrow.png +0 -0
 - data/spec/dummy/public/images/manage/back_but_lc.gif +0 -0
 - data/spec/dummy/public/images/manage/back_but_rc.gif +0 -0
 - data/spec/dummy/public/images/manage/bot_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/bot_duo_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/but_bg.png +0 -0
 - data/spec/dummy/public/images/manage/but_block_lc.gif +0 -0
 - data/spec/dummy/public/images/manage/but_block_rc.gif +0 -0
 - data/spec/dummy/public/images/manage/but_freze_lc.gif +0 -0
 - data/spec/dummy/public/images/manage/but_freze_rc.gif +0 -0
 - data/spec/dummy/public/images/manage/but_gr.gif +0 -0
 - data/spec/dummy/public/images/manage/but_gr_l.gif +0 -0
 - data/spec/dummy/public/images/manage/but_gr_r.gif +0 -0
 - data/spec/dummy/public/images/manage/but_search.gif +0 -0
 - data/spec/dummy/public/images/manage/but_unfreze_lc.gif +0 -0
 - data/spec/dummy/public/images/manage/but_unfreze_rc.gif +0 -0
 - data/spec/dummy/public/images/manage/button_add_foto.gif +0 -0
 - data/spec/dummy/public/images/manage/button_add_foto_ru.gif +0 -0
 - data/spec/dummy/public/images/manage/button_add_foto_ua.gif +0 -0
 - data/spec/dummy/public/images/manage/button_add_foto_uk.gif +0 -0
 - data/spec/dummy/public/images/manage/cancelbutton.gif +0 -0
 - data/spec/dummy/public/images/manage/dark_arr.gif +0 -0
 - data/spec/dummy/public/images/manage/dark_arr_left.gif +0 -0
 - data/spec/dummy/public/images/manage/dark_cross_ico.gif +0 -0
 - data/spec/dummy/public/images/manage/dot.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bg.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bg_small.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bg_small_blocked.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bg_small_frozed.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bg_small_notact.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bot_small.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bot_small_blocked.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bot_small_frozed.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bot_small_notact.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_top_small.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_top_small_blocked.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_top_small_frozed.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_top_small_notact.gif +0 -0
 - data/spec/dummy/public/images/manage/edit_white_top.gif +0 -0
 - data/spec/dummy/public/images/manage/empty.gif +0 -0
 - data/spec/dummy/public/images/manage/filter_bot_bg.gif +0 -0
 - data/spec/dummy/public/images/manage/filter_top_bg.gif +0 -0
 - data/spec/dummy/public/images/manage/flag_en.gif +0 -0
 - data/spec/dummy/public/images/manage/flag_en_nonact.gif +0 -0
 - data/spec/dummy/public/images/manage/flag_ru.gif +0 -0
 - data/spec/dummy/public/images/manage/flag_ru_nonact.gif +0 -0
 - data/spec/dummy/public/images/manage/flag_ua.gif +0 -0
 - data/spec/dummy/public/images/manage/flag_ua_nonact.gif +0 -0
 - data/spec/dummy/public/images/manage/foto.jpg +0 -0
 - data/spec/dummy/public/images/manage/ico_add.gif +0 -0
 - data/spec/dummy/public/images/manage/ico_del.gif +0 -0
 - data/spec/dummy/public/images/manage/ico_down.gif +0 -0
 - data/spec/dummy/public/images/manage/ico_edit.gif +0 -0
 - data/spec/dummy/public/images/manage/ico_settings.gif +0 -0
 - data/spec/dummy/public/images/manage/ico_up.gif +0 -0
 - data/spec/dummy/public/images/manage/input_bg.gif +0 -0
 - data/spec/dummy/public/images/manage/l_but_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/minimise_but.gif +0 -0
 - data/spec/dummy/public/images/manage/mp3.png +0 -0
 - data/spec/dummy/public/images/manage/page_arr_hover.png +0 -0
 - data/spec/dummy/public/images/manage/page_next_arr.gif +0 -0
 - data/spec/dummy/public/images/manage/page_num_hover.gif +0 -0
 - data/spec/dummy/public/images/manage/page_prev_arr.gif +0 -0
 - data/spec/dummy/public/images/manage/panel/l_but_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/panel/maximise_but.gif +0 -0
 - data/spec/dummy/public/images/manage/panel/r_but_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/panel/top_menu_arr.gif +0 -0
 - data/spec/dummy/public/images/manage/panel/user_pic.gif +0 -0
 - data/spec/dummy/public/images/manage/preloader.gif +0 -0
 - data/spec/dummy/public/images/manage/r_but_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/select_bg.gif +0 -0
 - data/spec/dummy/public/images/manage/select_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/struct_corn_lg.gif +0 -0
 - data/spec/dummy/public/images/manage/struct_corn_llg.gif +0 -0
 - data/spec/dummy/public/images/manage/struct_corn_lw.gif +0 -0
 - data/spec/dummy/public/images/manage/struct_corn_rg.gif +0 -0
 - data/spec/dummy/public/images/manage/struct_corn_rlg.gif +0 -0
 - data/spec/dummy/public/images/manage/struct_corn_rw.gif +0 -0
 - data/spec/dummy/public/images/manage/tab_gl.gif +0 -0
 - data/spec/dummy/public/images/manage/tab_gr.gif +0 -0
 - data/spec/dummy/public/images/manage/tab_wl.gif +0 -0
 - data/spec/dummy/public/images/manage/tab_wr.gif +0 -0
 - data/spec/dummy/public/images/manage/top_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/top_duo_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/top_menu_arr.gif +0 -0
 - data/spec/dummy/public/images/manage/transp_cross.png +0 -0
 - data/spec/dummy/public/images/manage/upload_progress.gif +0 -0
 - data/spec/dummy/public/images/manage/user_act_lc.gif +0 -0
 - data/spec/dummy/public/images/manage/user_act_rc.gif +0 -0
 - data/spec/dummy/public/images/manage/user_ico.gif +0 -0
 - data/spec/dummy/public/images/manage/user_pic.gif +0 -0
 - data/spec/dummy/public/images/manage/user_pic_small.gif +0 -0
 - data/spec/dummy/public/images/manage/user_pic_thumb.gif +0 -0
 - data/spec/dummy/public/javascripts/application.js +2 -0
 - data/spec/dummy/public/javascripts/controls.js +965 -0
 - data/spec/dummy/public/javascripts/datepicker/jquery-ui-i18n.js +1176 -0
 - data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-ru.js +37 -0
 - data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-uk.js +37 -0
 - data/spec/dummy/public/javascripts/dragdrop.js +974 -0
 - data/spec/dummy/public/javascripts/effects.js +1123 -0
 - data/spec/dummy/public/javascripts/fileupload/fileuploader-input.js +217 -0
 - data/spec/dummy/public/javascripts/fileupload/fileuploader.css +31 -0
 - data/spec/dummy/public/javascripts/fileupload/fileuploader.js +1288 -0
 - data/spec/dummy/public/javascripts/jquery-ui-timepicker-addon.js +911 -0
 - data/spec/dummy/public/javascripts/jquery.cookie.js +97 -0
 - data/spec/dummy/public/javascripts/jquery.fancybox-1.3.4.pack.js +46 -0
 - data/spec/dummy/public/javascripts/jquery.tmpl.min.js +10 -0
 - data/spec/dummy/public/javascripts/manage-fileuploader.js +182 -0
 - data/spec/dummy/public/javascripts/manage.js +294 -0
 - data/spec/dummy/public/javascripts/preloader.js +47 -0
 - data/spec/dummy/public/javascripts/prototype.js +6001 -0
 - data/spec/dummy/public/javascripts/rails.js +331 -0
 - data/spec/dummy/public/stylesheets/application.css +1 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/blank.gif +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_close.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_loading.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_left.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_right.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_e.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_n.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_ne.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_nw.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_s.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_se.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_sw.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_w.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_left.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_main.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_over.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_right.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancybox-x.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancybox-y.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancybox.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/jquery.fancybox-1.3.4.css +359 -0
 - data/spec/dummy/public/stylesheets/manage/buttons.css +42 -0
 - data/spec/dummy/public/stylesheets/manage/ie.css +16 -0
 - data/spec/dummy/public/stylesheets/manage/main.css +1108 -0
 - data/spec/dummy/public/stylesheets/manage/panel.css +126 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_222222_256x240.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_454545_256x240.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_888888_256x240.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/jquery-ui-1.8.13.custom.css +578 -0
 - data/spec/dummy/script/rails +6 -0
 - data/spec/factories/structure_factory.rb +22 -0
 - data/spec/factories/user_factory.rb +48 -0
 - data/spec/factories/widget_factory.rb +12 -0
 - data/spec/generators/install_generator_spec.rb +27 -0
 - data/spec/integration/navigation_spec.rb +9 -0
 - data/spec/models/widget_spec.rb +30 -0
 - data/spec/spec.opts +2 -0
 - data/spec/spec_helper.rb +57 -0
 - data/spec/sunrise_widgets_spec.rb +7 -0
 - data/spec/support/helpers/controller_macros.rb +40 -0
 - data/spec/tmp/app/models/widget.rb +6 -0
 - data/spec/tmp/app/models/widget_position.rb +14 -0
 - data/spec/tmp/app/models/widget_type.rb +15 -0
 - data/spec/tmp/app/sweepers/widget_sweeper.rb +21 -0
 - data/spec/tmp/db/migrate/20110818113026_sunrise_create_widgets.rb +24 -0
 - metadata +587 -0
 
| 
         @@ -0,0 +1,1108 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            @charset "utf-8";
         
     | 
| 
      
 2 
     | 
    
         
            +
            body {
         
     | 
| 
      
 3 
     | 
    
         
            +
            	margin: 0px;
         
     | 
| 
      
 4 
     | 
    
         
            +
            	padding: 0px;
         
     | 
| 
      
 5 
     | 
    
         
            +
            	text-align: center;
         
     | 
| 
      
 6 
     | 
    
         
            +
            	background: #02313f;
         
     | 
| 
      
 7 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 8 
     | 
    
         
            +
            	font-size: 90%;
         
     | 
| 
      
 9 
     | 
    
         
            +
            	font-family: Arial, Helvetica, sans-serif;
         
     | 
| 
      
 10 
     | 
    
         
            +
            }
         
     | 
| 
      
 11 
     | 
    
         
            +
            a {
         
     | 
| 
      
 12 
     | 
    
         
            +
            	text-decoration: none;	
         
     | 
| 
      
 13 
     | 
    
         
            +
            	outline: none;
         
     | 
| 
      
 14 
     | 
    
         
            +
            	color: #048db6;
         
     | 
| 
      
 15 
     | 
    
         
            +
            }
         
     | 
| 
      
 16 
     | 
    
         
            +
            a img {
         
     | 
| 
      
 17 
     | 
    
         
            +
            	border: none;	
         
     | 
| 
      
 18 
     | 
    
         
            +
            }
         
     | 
| 
      
 19 
     | 
    
         
            +
            form {
         
     | 
| 
      
 20 
     | 
    
         
            +
            	margin: 0px;
         
     | 
| 
      
 21 
     | 
    
         
            +
            	padding: 0px;
         
     | 
| 
      
 22 
     | 
    
         
            +
            }
         
     | 
| 
      
 23 
     | 
    
         
            +
            textarea {
         
     | 
| 
      
 24 
     | 
    
         
            +
            	padding: 5px;
         
     | 
| 
      
 25 
     | 
    
         
            +
            	font-family: Arial, Helvetica, sans-serif;
         
     | 
| 
      
 26 
     | 
    
         
            +
            	color: #5B6569;
         
     | 
| 
      
 27 
     | 
    
         
            +
            	margin: 0px;
         
     | 
| 
      
 28 
     | 
    
         
            +
            	border: 1px solid #BBC4C0;
         
     | 
| 
      
 29 
     | 
    
         
            +
            }
         
     | 
| 
      
 30 
     | 
    
         
            +
            .main {
         
     | 
| 
      
 31 
     | 
    
         
            +
            	width: 990px;
         
     | 
| 
      
 32 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 33 
     | 
    
         
            +
            	margin: 0 auto;
         
     | 
| 
      
 34 
     | 
    
         
            +
            	text-align: left;
         
     | 
| 
      
 35 
     | 
    
         
            +
            }
         
     | 
| 
      
 36 
     | 
    
         
            +
            .head {
         
     | 
| 
      
 37 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 38 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 39 
     | 
    
         
            +
            	position: relative;
         
     | 
| 
      
 40 
     | 
    
         
            +
            }
         
     | 
| 
      
 41 
     | 
    
         
            +
            .head .logo {
         
     | 
| 
      
 42 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 43 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 44 
     | 
    
         
            +
            	font-size: 1.1em;
         
     | 
| 
      
 45 
     | 
    
         
            +
            	font-weight: bold;
         
     | 
| 
      
 46 
     | 
    
         
            +
            	padding: 25px 0px 25px 40px;
         
     | 
| 
      
 47 
     | 
    
         
            +
            }
         
     | 
| 
      
 48 
     | 
    
         
            +
            .main-menu {
         
     | 
| 
      
 49 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 50 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 51 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 52 
     | 
    
         
            +
            	left: 200px;
         
     | 
| 
      
 53 
     | 
    
         
            +
            	top: 27px;
         
     | 
| 
      
 54 
     | 
    
         
            +
            }
         
     | 
| 
      
 55 
     | 
    
         
            +
            .main-menu ul {
         
     | 
| 
      
 56 
     | 
    
         
            +
            	list-style: none;
         
     | 
| 
      
 57 
     | 
    
         
            +
            	margin: 0px;
         
     | 
| 
      
 58 
     | 
    
         
            +
            	padding: 0px;
         
     | 
| 
      
 59 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 60 
     | 
    
         
            +
            }
         
     | 
| 
      
 61 
     | 
    
         
            +
            .main-menu ul li {
         
     | 
| 
      
 62 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 63 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 64 
     | 
    
         
            +
            	height: 27px;
         
     | 
| 
      
 65 
     | 
    
         
            +
            	line-height: 27px;
         
     | 
| 
      
 66 
     | 
    
         
            +
            	font-size: 1em;
         
     | 
| 
      
 67 
     | 
    
         
            +
            }
         
     | 
| 
      
 68 
     | 
    
         
            +
            .main-menu ul li a {
         
     | 
| 
      
 69 
     | 
    
         
            +
            	color: #e7faed;
         
     | 
| 
      
 70 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 71 
     | 
    
         
            +
            	padding: 0px 15px;
         
     | 
| 
      
 72 
     | 
    
         
            +
            	background: none;
         
     | 
| 
      
 73 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 74 
     | 
    
         
            +
            	height: 27px;
         
     | 
| 
      
 75 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 76 
     | 
    
         
            +
            }	
         
     | 
| 
      
 77 
     | 
    
         
            +
            .main-menu ul li a.arr {
         
     | 
| 
      
 78 
     | 
    
         
            +
            	background: url(/images/manage/top_menu_arr.gif) no-repeat right center;
         
     | 
| 
      
 79 
     | 
    
         
            +
            	padding-right: 15px;
         
     | 
| 
      
 80 
     | 
    
         
            +
            }
         
     | 
| 
      
 81 
     | 
    
         
            +
            .main-menu ul li span {
         
     | 
| 
      
 82 
     | 
    
         
            +
            	background: #bee5a2 url(/images/manage/l_but_corn.gif) no-repeat left top;	
         
     | 
| 
      
 83 
     | 
    
         
            +
            	color: #011f2b;
         
     | 
| 
      
 84 
     | 
    
         
            +
            	padding: 0px 0px 0px 15px;
         
     | 
| 
      
 85 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 86 
     | 
    
         
            +
            	height: 27px;
         
     | 
| 
      
 87 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 88 
     | 
    
         
            +
            }
         
     | 
| 
      
 89 
     | 
    
         
            +
            .main-menu ul li span span {
         
     | 
| 
      
 90 
     | 
    
         
            +
            	background: url(/images/manage/r_but_corn.gif) no-repeat right top;
         
     | 
| 
      
 91 
     | 
    
         
            +
            	padding: 0px 15px 0px 0px;
         
     | 
| 
      
 92 
     | 
    
         
            +
            }
         
     | 
| 
      
 93 
     | 
    
         
            +
            .head .minimaze {
         
     | 
| 
      
 94 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 95 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 96 
     | 
    
         
            +
            	top: 0px;
         
     | 
| 
      
 97 
     | 
    
         
            +
            	right: 40px;
         
     | 
| 
      
 98 
     | 
    
         
            +
            	width: 23px;
         
     | 
| 
      
 99 
     | 
    
         
            +
            	height: 18px;
         
     | 
| 
      
 100 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 101 
     | 
    
         
            +
            }
         
     | 
| 
      
 102 
     | 
    
         
            +
            .head .user {
         
     | 
| 
      
 103 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 104 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 105 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 106 
     | 
    
         
            +
            	left: 800px;
         
     | 
| 
      
 107 
     | 
    
         
            +
            	top: 25px;
         
     | 
| 
      
 108 
     | 
    
         
            +
            	width: 170px;
         
     | 
| 
      
 109 
     | 
    
         
            +
            }
         
     | 
| 
      
 110 
     | 
    
         
            +
            .head .user .user-info {
         
     | 
| 
      
 111 
     | 
    
         
            +
            	margin-left: -40px;
         
     | 
| 
      
 112 
     | 
    
         
            +
            	float: right;
         
     | 
| 
      
 113 
     | 
    
         
            +
            	width: 100%;
         
     | 
| 
      
 114 
     | 
    
         
            +
            }
         
     | 
| 
      
 115 
     | 
    
         
            +
            .head .user .user-info .info {
         
     | 
| 
      
 116 
     | 
    
         
            +
            	margin-left: 40px;	
         
     | 
| 
      
 117 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 118 
     | 
    
         
            +
            }
         
     | 
| 
      
 119 
     | 
    
         
            +
            .head .user .user-info .info .name {
         
     | 
| 
      
 120 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 121 
     | 
    
         
            +
            	font-size: 0.85em;
         
     | 
| 
      
 122 
     | 
    
         
            +
            	font-weight: bold;
         
     | 
| 
      
 123 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 124 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 125 
     | 
    
         
            +
            }
         
     | 
| 
      
 126 
     | 
    
         
            +
            .head .user .user-info .info a.exit {
         
     | 
| 
      
 127 
     | 
    
         
            +
            	text-decoration: underline;
         
     | 
| 
      
 128 
     | 
    
         
            +
            	font-size: 0.8em;
         
     | 
| 
      
 129 
     | 
    
         
            +
            	color: #81989f;
         
     | 
| 
      
 130 
     | 
    
         
            +
            }
         
     | 
| 
      
 131 
     | 
    
         
            +
            .head .user .user-foto {
         
     | 
| 
      
 132 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 133 
     | 
    
         
            +
            	width: 32px;
         
     | 
| 
      
 134 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 135 
     | 
    
         
            +
            }
         
     | 
| 
      
 136 
     | 
    
         
            +
            .main-frame {
         
     | 
| 
      
 137 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 138 
     | 
    
         
            +
            	padding: 0px 15px;
         
     | 
| 
      
 139 
     | 
    
         
            +
            }
         
     | 
| 
      
 140 
     | 
    
         
            +
            .struct-bl {
         
     | 
| 
      
 141 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 142 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 143 
     | 
    
         
            +
            	background: #d1e6dc url(/images/manage/top_corn.gif) no-repeat left top;
         
     | 
| 
      
 144 
     | 
    
         
            +
            	padding: 20px 0 0 0;
         
     | 
| 
      
 145 
     | 
    
         
            +
            	width: 960px;
         
     | 
| 
      
 146 
     | 
    
         
            +
            }
         
     | 
| 
      
 147 
     | 
    
         
            +
            .struct-bl .bot-bg {
         
     | 
| 
      
 148 
     | 
    
         
            +
            	background: url(/images/manage/bot_corn.gif) no-repeat left bottom;
         
     | 
| 
      
 149 
     | 
    
         
            +
            	padding: 0px 20px 20px 20px;
         
     | 
| 
      
 150 
     | 
    
         
            +
            }
         
     | 
| 
      
 151 
     | 
    
         
            +
            .white-row {
         
     | 
| 
      
 152 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 153 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 154 
     | 
    
         
            +
            	margin-bottom: 10px;
         
     | 
| 
      
 155 
     | 
    
         
            +
            	background: url(/images/manage/struct_corn_lw.gif) no-repeat left top;
         
     | 
| 
      
 156 
     | 
    
         
            +
            	padding-left: 10px;
         
     | 
| 
      
 157 
     | 
    
         
            +
            	height: 50px;
         
     | 
| 
      
 158 
     | 
    
         
            +
            	line-height: 50px;
         
     | 
| 
      
 159 
     | 
    
         
            +
            }
         
     | 
| 
      
 160 
     | 
    
         
            +
            .white-row .r-corn {
         
     | 
| 
      
 161 
     | 
    
         
            +
            	background: #fff url(/images/manage/struct_corn_rw.gif) no-repeat right top;	
         
     | 
| 
      
 162 
     | 
    
         
            +
            	padding-right: 15px;
         
     | 
| 
      
 163 
     | 
    
         
            +
            	padding-left: 10px;
         
     | 
| 
      
 164 
     | 
    
         
            +
            	height: 50px;
         
     | 
| 
      
 165 
     | 
    
         
            +
            }
         
     | 
| 
      
 166 
     | 
    
         
            +
            a.dark-arr {
         
     | 
| 
      
 167 
     | 
    
         
            +
            	background: url(/images/manage/dark_arr.gif) no-repeat left center;
         
     | 
| 
      
 168 
     | 
    
         
            +
            	padding-left: 25px;
         
     | 
| 
      
 169 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 170 
     | 
    
         
            +
            	font-size: 1.2em;
         
     | 
| 
      
 171 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 172 
     | 
    
         
            +
            }
         
     | 
| 
      
 173 
     | 
    
         
            +
            a.dark-arr-left {
         
     | 
| 
      
 174 
     | 
    
         
            +
            	background: url(/images/manage/dark_arr_left.gif) no-repeat left center;
         
     | 
| 
      
 175 
     | 
    
         
            +
            	padding-left: 25px;
         
     | 
| 
      
 176 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 177 
     | 
    
         
            +
            	font-size: 1.2em;
         
     | 
| 
      
 178 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 179 
     | 
    
         
            +
            }
         
     | 
| 
      
 180 
     | 
    
         
            +
            a.dark-text {
         
     | 
| 
      
 181 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 182 
     | 
    
         
            +
            	font-size: 1.2em;
         
     | 
| 
      
 183 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 184 
     | 
    
         
            +
            }
         
     | 
| 
      
 185 
     | 
    
         
            +
            .act-bl {
         
     | 
| 
      
 186 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 187 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 188 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 189 
     | 
    
         
            +
            	right: 15px;
         
     | 
| 
      
 190 
     | 
    
         
            +
            	top: 9px;
         
     | 
| 
      
 191 
     | 
    
         
            +
            	height: 33px;
         
     | 
| 
      
 192 
     | 
    
         
            +
            	line-height: 33px;
         
     | 
| 
      
 193 
     | 
    
         
            +
            }
         
     | 
| 
      
 194 
     | 
    
         
            +
            .act-bl a.icons {
         
     | 
| 
      
 195 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 196 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 197 
     | 
    
         
            +
            	width: 33px;
         
     | 
| 
      
 198 
     | 
    
         
            +
            	height: 33px;
         
     | 
| 
      
 199 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 200 
     | 
    
         
            +
            }
         
     | 
| 
      
 201 
     | 
    
         
            +
            .act-bl a.icons:hover {
         
     | 
| 
      
 202 
     | 
    
         
            +
            	background: url(/images/manage/but_bg.png) no-repeat left top;
         
     | 
| 
      
 203 
     | 
    
         
            +
            	cursor: pointer;
         
     | 
| 
      
 204 
     | 
    
         
            +
            }
         
     | 
| 
      
 205 
     | 
    
         
            +
            .act-bl a.create {
         
     | 
| 
      
 206 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 207 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 208 
     | 
    
         
            +
            	background: url(/images/manage/ico_add.gif) no-repeat left center;
         
     | 
| 
      
 209 
     | 
    
         
            +
            	padding-left: 17px;
         
     | 
| 
      
 210 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 211 
     | 
    
         
            +
            	color: #acbdc2;
         
     | 
| 
      
 212 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 213 
     | 
    
         
            +
            	padding-right: 10px;
         
     | 
| 
      
 214 
     | 
    
         
            +
            }
         
     | 
| 
      
 215 
     | 
    
         
            +
            .gray-row {
         
     | 
| 
      
 216 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 217 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 218 
     | 
    
         
            +
            	margin-bottom: 10px;
         
     | 
| 
      
 219 
     | 
    
         
            +
            	background: url(/images/manage/struct_corn_lg.gif) no-repeat left top;
         
     | 
| 
      
 220 
     | 
    
         
            +
            	padding-left: 10px;
         
     | 
| 
      
 221 
     | 
    
         
            +
            	height: 50px;
         
     | 
| 
      
 222 
     | 
    
         
            +
            	line-height: 50px;
         
     | 
| 
      
 223 
     | 
    
         
            +
            }
         
     | 
| 
      
 224 
     | 
    
         
            +
            .gray-row .r-corn {
         
     | 
| 
      
 225 
     | 
    
         
            +
            	background: #e7faed url(/images/manage/struct_corn_rg.gif) no-repeat right top;	
         
     | 
| 
      
 226 
     | 
    
         
            +
            	padding-right: 15px;
         
     | 
| 
      
 227 
     | 
    
         
            +
            	padding-left: 10px;
         
     | 
| 
      
 228 
     | 
    
         
            +
            	height: 50px;
         
     | 
| 
      
 229 
     | 
    
         
            +
            }
         
     | 
| 
      
 230 
     | 
    
         
            +
            .light-gray-row {
         
     | 
| 
      
 231 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 232 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 233 
     | 
    
         
            +
            	margin-bottom: 10px;
         
     | 
| 
      
 234 
     | 
    
         
            +
            	background: url(/images/manage/struct_corn_llg.gif) no-repeat left top;
         
     | 
| 
      
 235 
     | 
    
         
            +
            	padding-left: 10px;
         
     | 
| 
      
 236 
     | 
    
         
            +
            	height: 50px;
         
     | 
| 
      
 237 
     | 
    
         
            +
            	line-height: 50px;
         
     | 
| 
      
 238 
     | 
    
         
            +
            }
         
     | 
| 
      
 239 
     | 
    
         
            +
            .light-gray-row .r-corn {
         
     | 
| 
      
 240 
     | 
    
         
            +
            	background: #f1fdf5 url(/images/manage/struct_corn_rlg.gif) no-repeat right top;	
         
     | 
| 
      
 241 
     | 
    
         
            +
            	padding-right: 15px;
         
     | 
| 
      
 242 
     | 
    
         
            +
            	padding-left: 10px;
         
     | 
| 
      
 243 
     | 
    
         
            +
            	height: 50px;
         
     | 
| 
      
 244 
     | 
    
         
            +
            }
         
     | 
| 
      
 245 
     | 
    
         
            +
            .stage {
         
     | 
| 
      
 246 
     | 
    
         
            +
            	margin-left: 51px;	
         
     | 
| 
      
 247 
     | 
    
         
            +
            }
         
     | 
| 
      
 248 
     | 
    
         
            +
            .row-container {
         
     | 
| 
      
 249 
     | 
    
         
            +
            	position: relative;
         
     | 
| 
      
 250 
     | 
    
         
            +
            	width: 100%;
         
     | 
| 
      
 251 
     | 
    
         
            +
            }
         
     | 
| 
      
 252 
     | 
    
         
            +
            .duo-bl {
         
     | 
| 
      
 253 
     | 
    
         
            +
            	overflow: hidden;	
         
     | 
| 
      
 254 
     | 
    
         
            +
            }
         
     | 
| 
      
 255 
     | 
    
         
            +
            .duo-bl .left-part {
         
     | 
| 
      
 256 
     | 
    
         
            +
            	margin-right: -311px;
         
     | 
| 
      
 257 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 258 
     | 
    
         
            +
            	width: 100%;
         
     | 
| 
      
 259 
     | 
    
         
            +
            }
         
     | 
| 
      
 260 
     | 
    
         
            +
            .duo-bl .left-part .content {
         
     | 
| 
      
 261 
     | 
    
         
            +
            	margin-right: 311px;	
         
     | 
| 
      
 262 
     | 
    
         
            +
            }
         
     | 
| 
      
 263 
     | 
    
         
            +
            .duo-bl .left-part .content .stage {
         
     | 
| 
      
 264 
     | 
    
         
            +
            	margin-left: 49px;	
         
     | 
| 
      
 265 
     | 
    
         
            +
            }
         
     | 
| 
      
 266 
     | 
    
         
            +
            .duo-bl .right-part {
         
     | 
| 
      
 267 
     | 
    
         
            +
            	width: 290px;
         
     | 
| 
      
 268 
     | 
    
         
            +
            	float: right;
         
     | 
| 
      
 269 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 270 
     | 
    
         
            +
            }
         
     | 
| 
      
 271 
     | 
    
         
            +
            .filter-right {
         
     | 
| 
      
 272 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 273 
     | 
    
         
            +
            	width: 290px;
         
     | 
| 
      
 274 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 275 
     | 
    
         
            +
            	background: url(/images/manage/filter_top_bg.gif) no-repeat left top;
         
     | 
| 
      
 276 
     | 
    
         
            +
            	padding-top: 11px;
         
     | 
| 
      
 277 
     | 
    
         
            +
            }
         
     | 
| 
      
 278 
     | 
    
         
            +
            .filter-right .bot-bg {
         
     | 
| 
      
 279 
     | 
    
         
            +
            	background: #f0fcf3 url(/images/manage/filter_bot_bg.gif) no-repeat left bottom;	
         
     | 
| 
      
 280 
     | 
    
         
            +
            	padding: 5px 0px 20px 00px;
         
     | 
| 
      
 281 
     | 
    
         
            +
            }
         
     | 
| 
      
 282 
     | 
    
         
            +
            .filter-right .bot-bg a.dark-arr, .filter-right .bot-bg a.dark-arr-left {
         
     | 
| 
      
 283 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 284 
     | 
    
         
            +
            	margin-bottom: 20px;
         
     | 
| 
      
 285 
     | 
    
         
            +
            	background-position: right center;
         
     | 
| 
      
 286 
     | 
    
         
            +
            	padding: 0px 20px 0px 0px;
         
     | 
| 
      
 287 
     | 
    
         
            +
            }
         
     | 
| 
      
 288 
     | 
    
         
            +
            .dinamic-bl {
         
     | 
| 
      
 289 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 290 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 291 
     | 
    
         
            +
            	background: url(/images/manage/duo_top_small.gif) no-repeat left top;
         
     | 
| 
      
 292 
     | 
    
         
            +
            	padding-top: 10px;
         
     | 
| 
      
 293 
     | 
    
         
            +
            	position: relative;
         
     | 
| 
      
 294 
     | 
    
         
            +
            	width: 560px;
         
     | 
| 
      
 295 
     | 
    
         
            +
            	margin-bottom: 10px;
         
     | 
| 
      
 296 
     | 
    
         
            +
            }
         
     | 
| 
      
 297 
     | 
    
         
            +
            .dinamic-bl .bot-bg {
         
     | 
| 
      
 298 
     | 
    
         
            +
            	background: url(/images/manage/duo_bot_small.gif) no-repeat left bottom;
         
     | 
| 
      
 299 
     | 
    
         
            +
            	padding: 0px 0px 10px 0px;
         
     | 
| 
      
 300 
     | 
    
         
            +
            }
         
     | 
| 
      
 301 
     | 
    
         
            +
            .dinamic-container {
         
     | 
| 
      
 302 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 303 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 304 
     | 
    
         
            +
            	background: url(/images/manage/duo_bg_small.gif) repeat-y left top;
         
     | 
| 
      
 305 
     | 
    
         
            +
            }
         
     | 
| 
      
 306 
     | 
    
         
            +
            .dinamic-container .right-data {
         
     | 
| 
      
 307 
     | 
    
         
            +
            	margin-left: -81px;
         
     | 
| 
      
 308 
     | 
    
         
            +
            	float: right;
         
     | 
| 
      
 309 
     | 
    
         
            +
            	width: 100%;
         
     | 
| 
      
 310 
     | 
    
         
            +
            }
         
     | 
| 
      
 311 
     | 
    
         
            +
            .dinamic-container .right-data .right-data-cont {
         
     | 
| 
      
 312 
     | 
    
         
            +
            	margin-left: 81px;	
         
     | 
| 
      
 313 
     | 
    
         
            +
            }
         
     | 
| 
      
 314 
     | 
    
         
            +
            .dinamic-container .left-data {
         
     | 
| 
      
 315 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 316 
     | 
    
         
            +
            	width: 80px;
         
     | 
| 
      
 317 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 318 
     | 
    
         
            +
            	text-align: center;
         
     | 
| 
      
 319 
     | 
    
         
            +
            }
         
     | 
| 
      
 320 
     | 
    
         
            +
            .data {
         
     | 
| 
      
 321 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 322 
     | 
    
         
            +
            	font-size: 1.2em;
         
     | 
| 
      
 323 
     | 
    
         
            +
            	padding-top: 5px;
         
     | 
| 
      
 324 
     | 
    
         
            +
            }
         
     | 
| 
      
 325 
     | 
    
         
            +
            .data span {
         
     | 
| 
      
 326 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 327 
     | 
    
         
            +
            	font-size: 0.85em;
         
     | 
| 
      
 328 
     | 
    
         
            +
            }
         
     | 
| 
      
 329 
     | 
    
         
            +
            .dinamic-inner {
         
     | 
| 
      
 330 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 331 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 332 
     | 
    
         
            +
            	margin: 10px 20px;
         
     | 
| 
      
 333 
     | 
    
         
            +
            }
         
     | 
| 
      
 334 
     | 
    
         
            +
            .dinamic-inner .r-block {
         
     | 
| 
      
 335 
     | 
    
         
            +
            	margin-left: -90px;
         
     | 
| 
      
 336 
     | 
    
         
            +
            	width: 100%;
         
     | 
| 
      
 337 
     | 
    
         
            +
            	float: right;
         
     | 
| 
      
 338 
     | 
    
         
            +
            }
         
     | 
| 
      
 339 
     | 
    
         
            +
            .dinamic-inner .r-block .r-block-cont {
         
     | 
| 
      
 340 
     | 
    
         
            +
            	margin:0px 80px 0px 90px;
         
     | 
| 
      
 341 
     | 
    
         
            +
            }
         
     | 
| 
      
 342 
     | 
    
         
            +
            .dinamic-inner .l-block {
         
     | 
| 
      
 343 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 344 
     | 
    
         
            +
            	width: 80px;
         
     | 
| 
      
 345 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 346 
     | 
    
         
            +
            	text-align: center;
         
     | 
| 
      
 347 
     | 
    
         
            +
            }
         
     | 
| 
      
 348 
     | 
    
         
            +
            .dinamic-inner .r-block .r-block-cont .title {
         
     | 
| 
      
 349 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 350 
     | 
    
         
            +
            	font-size: 1.2em;
         
     | 
| 
      
 351 
     | 
    
         
            +
            	color: #5B6569;
         
     | 
| 
      
 352 
     | 
    
         
            +
            	padding-bottom: 10px;
         
     | 
| 
      
 353 
     | 
    
         
            +
            	/*margin-right: 130px;*/
         
     | 
| 
      
 354 
     | 
    
         
            +
            }
         
     | 
| 
      
 355 
     | 
    
         
            +
            .dinamic-inner .r-block .block-cont .title {
         
     | 
| 
      
 356 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 357 
     | 
    
         
            +
            	font-size: 1.2em;
         
     | 
| 
      
 358 
     | 
    
         
            +
            	color: #5B6569;
         
     | 
| 
      
 359 
     | 
    
         
            +
            	padding-bottom: 10px;
         
     | 
| 
      
 360 
     | 
    
         
            +
            }
         
     | 
| 
      
 361 
     | 
    
         
            +
            table.inf {
         
     | 
| 
      
 362 
     | 
    
         
            +
            	font-size: 0.9em;	
         
     | 
| 
      
 363 
     | 
    
         
            +
            }
         
     | 
| 
      
 364 
     | 
    
         
            +
            table.inf td {
         
     | 
| 
      
 365 
     | 
    
         
            +
            	padding-bottom: 5px;	
         
     | 
| 
      
 366 
     | 
    
         
            +
            }
         
     | 
| 
      
 367 
     | 
    
         
            +
            table.inf td.left {
         
     | 
| 
      
 368 
     | 
    
         
            +
            	text-align: left;
         
     | 
| 
      
 369 
     | 
    
         
            +
            	color: #adb2b4;
         
     | 
| 
      
 370 
     | 
    
         
            +
            	padding-right: 5px;
         
     | 
| 
      
 371 
     | 
    
         
            +
            	width: 25%;
         
     | 
| 
      
 372 
     | 
    
         
            +
            }
         
     | 
| 
      
 373 
     | 
    
         
            +
            .pagination {
         
     | 
| 
      
 374 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 375 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 376 
     | 
    
         
            +
            	margin: 20px 0px 10px;
         
     | 
| 
      
 377 
     | 
    
         
            +
            }
         
     | 
| 
      
 378 
     | 
    
         
            +
            .pagination a, .pagination span, .pagination em {
         
     | 
| 
      
 379 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 380 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 381 
     | 
    
         
            +
            	height: 32px;
         
     | 
| 
      
 382 
     | 
    
         
            +
            	width: 33px;
         
     | 
| 
      
 383 
     | 
    
         
            +
            	line-height: 32px;
         
     | 
| 
      
 384 
     | 
    
         
            +
            	text-align: center;
         
     | 
| 
      
 385 
     | 
    
         
            +
            	margin-left: 3px;
         
     | 
| 
      
 386 
     | 
    
         
            +
            	font-size: 1.1em;
         
     | 
| 
      
 387 
     | 
    
         
            +
            }
         
     | 
| 
      
 388 
     | 
    
         
            +
            .pagination a {
         
     | 
| 
      
 389 
     | 
    
         
            +
            	color: #476e74;
         
     | 
| 
      
 390 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 391 
     | 
    
         
            +
            }
         
     | 
| 
      
 392 
     | 
    
         
            +
            .pagination span, .pagination em {
         
     | 
| 
      
 393 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 394 
     | 
    
         
            +
            	background: url(/images/manage/page_num_hover.gif) no-repeat left top;
         
     | 
| 
      
 395 
     | 
    
         
            +
            }
         
     | 
| 
      
 396 
     | 
    
         
            +
            .pagination .noact {
         
     | 
| 
      
 397 
     | 
    
         
            +
            	background: none;	
         
     | 
| 
      
 398 
     | 
    
         
            +
            	color: #476e74;
         
     | 
| 
      
 399 
     | 
    
         
            +
            }
         
     | 
| 
      
 400 
     | 
    
         
            +
            .pagination a:hover {
         
     | 
| 
      
 401 
     | 
    
         
            +
            	background: url(/images/manage/page_arr_hover.png) no-repeat left top;
         
     | 
| 
      
 402 
     | 
    
         
            +
            	cursor: pointer;
         
     | 
| 
      
 403 
     | 
    
         
            +
            }
         
     | 
| 
      
 404 
     | 
    
         
            +
            .filt label {
         
     | 
| 
      
 405 
     | 
    
         
            +
            	color: #677276;	
         
     | 
| 
      
 406 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 407 
     | 
    
         
            +
            	padding-bottom: 3px;
         
     | 
| 
      
 408 
     | 
    
         
            +
            	padding-top: 10px;
         
     | 
| 
      
 409 
     | 
    
         
            +
            }
         
     | 
| 
      
 410 
     | 
    
         
            +
            input.text {
         
     | 
| 
      
 411 
     | 
    
         
            +
            	background: url(/images/manage/input_bg.gif) no-repeat left top;
         
     | 
| 
      
 412 
     | 
    
         
            +
            	border: solid 1px #bbc4c0;
         
     | 
| 
      
 413 
     | 
    
         
            +
            	font-size: 1.1em;
         
     | 
| 
      
 414 
     | 
    
         
            +
            	padding: 3px 4px;
         
     | 
| 
      
 415 
     | 
    
         
            +
            	margin: 0px;
         
     | 
| 
      
 416 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 417 
     | 
    
         
            +
            }
         
     | 
| 
      
 418 
     | 
    
         
            +
            .filt input.text {
         
     | 
| 
      
 419 
     | 
    
         
            +
            	width: 240px;	
         
     | 
| 
      
 420 
     | 
    
         
            +
            }
         
     | 
| 
      
 421 
     | 
    
         
            +
            .select-input {
         
     | 
| 
      
 422 
     | 
    
         
            +
            	background: url(/images/manage/select_bg.gif) no-repeat right top;	
         
     | 
| 
      
 423 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 424 
     | 
    
         
            +
            	height: 28px;
         
     | 
| 
      
 425 
     | 
    
         
            +
            	line-height: 28px;
         
     | 
| 
      
 426 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 427 
     | 
    
         
            +
            }
         
     | 
| 
      
 428 
     | 
    
         
            +
            .select-input .corn {
         
     | 
| 
      
 429 
     | 
    
         
            +
            	background:url(/images/manage/select_corn.gif) no-repeat left top;
         
     | 
| 
      
 430 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 431 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 432 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 433 
     | 
    
         
            +
            	height: 28px;
         
     | 
| 
      
 434 
     | 
    
         
            +
            	padding-left: 10px;
         
     | 
| 
      
 435 
     | 
    
         
            +
            	padding-right: 30px;
         
     | 
| 
      
 436 
     | 
    
         
            +
            }
         
     | 
| 
      
 437 
     | 
    
         
            +
            .buts a.erase {
         
     | 
| 
      
 438 
     | 
    
         
            +
            	font-size: 0.8em;
         
     | 
| 
      
 439 
     | 
    
         
            +
            	color: #acbdc2;
         
     | 
| 
      
 440 
     | 
    
         
            +
            	border-bottom: dashed 1px #acbdc2;
         
     | 
| 
      
 441 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 442 
     | 
    
         
            +
            	margin-left: 10px;
         
     | 
| 
      
 443 
     | 
    
         
            +
            	padding-top: 10px;
         
     | 
| 
      
 444 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 445 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 446 
     | 
    
         
            +
            }
         
     | 
| 
      
 447 
     | 
    
         
            +
            .buts {
         
     | 
| 
      
 448 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 449 
     | 
    
         
            +
            	padding-top: 10px;
         
     | 
| 
      
 450 
     | 
    
         
            +
            	padding-bottom: 10px;
         
     | 
| 
      
 451 
     | 
    
         
            +
            }
         
     | 
| 
      
 452 
     | 
    
         
            +
            .buts a.gr {
         
     | 
| 
      
 453 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 454 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 455 
     | 
    
         
            +
            	background: url(/images/manage/but_gr_l.gif) no-repeat left top;
         
     | 
| 
      
 456 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 457 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 458 
     | 
    
         
            +
            	line-height: 37px;
         
     | 
| 
      
 459 
     | 
    
         
            +
            	font-size: 1.1em;
         
     | 
| 
      
 460 
     | 
    
         
            +
            }
         
     | 
| 
      
 461 
     | 
    
         
            +
            .buts a.gr span {
         
     | 
| 
      
 462 
     | 
    
         
            +
            	background: url(/images/manage/but_gr_r.gif) no-repeat right top;
         
     | 
| 
      
 463 
     | 
    
         
            +
            	padding: 0px 20px;
         
     | 
| 
      
 464 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 465 
     | 
    
         
            +
            	line-height: 37px;
         
     | 
| 
      
 466 
     | 
    
         
            +
            }
         
     | 
| 
      
 467 
     | 
    
         
            +
            .buts button.gr {
         
     | 
| 
      
 468 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 469 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 470 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 471 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 472 
     | 
    
         
            +
            	line-height: 37px;
         
     | 
| 
      
 473 
     | 
    
         
            +
            	font-size: 1.1em;
         
     | 
| 
      
 474 
     | 
    
         
            +
            }
         
     | 
| 
      
 475 
     | 
    
         
            +
            .controls {
         
     | 
| 
      
 476 
     | 
    
         
            +
              padding: 0px 0px 10px 20px;
         
     | 
| 
      
 477 
     | 
    
         
            +
            }
         
     | 
| 
      
 478 
     | 
    
         
            +
            .sort {
         
     | 
| 
      
 479 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 480 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 481 
     | 
    
         
            +
            	border-top: solid 1px #d1e6dc;
         
     | 
| 
      
 482 
     | 
    
         
            +
            	padding: 20px 20px 10px;
         
     | 
| 
      
 483 
     | 
    
         
            +
            }
         
     | 
| 
      
 484 
     | 
    
         
            +
            .sort label {
         
     | 
| 
      
 485 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 486 
     | 
    
         
            +
            	color: #677276;
         
     | 
| 
      
 487 
     | 
    
         
            +
            	padding-bottom: 10px;
         
     | 
| 
      
 488 
     | 
    
         
            +
            }
         
     | 
| 
      
 489 
     | 
    
         
            +
            .filt-bl {
         
     | 
| 
      
 490 
     | 
    
         
            +
            	padding: 0px 20px;
         
     | 
| 
      
 491 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 492 
     | 
    
         
            +
            }
         
     | 
| 
      
 493 
     | 
    
         
            +
            .edit-bl {
         
     | 
| 
      
 494 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 495 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 496 
     | 
    
         
            +
            	background: url(/images/manage/add_post_top.gif) no-repeat left top;
         
     | 
| 
      
 497 
     | 
    
         
            +
            	padding-top: 10px;
         
     | 
| 
      
 498 
     | 
    
         
            +
            }
         
     | 
| 
      
 499 
     | 
    
         
            +
            .edit-bl .bot-bg {
         
     | 
| 
      
 500 
     | 
    
         
            +
            	background: #e7faed url(/images/manage/add_post_bot.gif) no-repeat left bottom;
         
     | 
| 
      
 501 
     | 
    
         
            +
            	padding: 0px 10px 10px 10px;
         
     | 
| 
      
 502 
     | 
    
         
            +
            }
         
     | 
| 
      
 503 
     | 
    
         
            +
            .edit-bl .block-title {
         
     | 
| 
      
 504 
     | 
    
         
            +
            	color: #5B6569;
         
     | 
| 
      
 505 
     | 
    
         
            +
            	font-size: 1.3em;
         
     | 
| 
      
 506 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 507 
     | 
    
         
            +
            	padding: 10px;
         
     | 
| 
      
 508 
     | 
    
         
            +
            }
         
     | 
| 
      
 509 
     | 
    
         
            +
            .edit-bl .edit-cont {
         
     | 
| 
      
 510 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 511 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 512 
     | 
    
         
            +
            	padding: 5px 20px 20px 20px;	
         
     | 
| 
      
 513 
     | 
    
         
            +
            }
         
     | 
| 
      
 514 
     | 
    
         
            +
            .inputs-bl label {
         
     | 
| 
      
 515 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 516 
     | 
    
         
            +
            	font-size: 1.1em;
         
     | 
| 
      
 517 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 518 
     | 
    
         
            +
            	padding-bottom: 5px;
         
     | 
| 
      
 519 
     | 
    
         
            +
            	padding-top: 15px;
         
     | 
| 
      
 520 
     | 
    
         
            +
            }
         
     | 
| 
      
 521 
     | 
    
         
            +
            .inputs-bl label span {
         
     | 
| 
      
 522 
     | 
    
         
            +
            	color: #a0aca6;
         
     | 
| 
      
 523 
     | 
    
         
            +
            	font-style: italic;
         
     | 
| 
      
 524 
     | 
    
         
            +
            	font-size: 0.85em;
         
     | 
| 
      
 525 
     | 
    
         
            +
            	padding-left: 10px;
         
     | 
| 
      
 526 
     | 
    
         
            +
            }
         
     | 
| 
      
 527 
     | 
    
         
            +
            .inputs-bl input, .inputs-bl textarea {
         
     | 
| 
      
 528 
     | 
    
         
            +
            	display: block;	
         
     | 
| 
      
 529 
     | 
    
         
            +
            	font-family: Arial, Helvetica, sans-serif;
         
     | 
| 
      
 530 
     | 
    
         
            +
            	color: #5B6569;
         
     | 
| 
      
 531 
     | 
    
         
            +
            }
         
     | 
| 
      
 532 
     | 
    
         
            +
            .inputs-bl input.text {
         
     | 
| 
      
 533 
     | 
    
         
            +
            	width: 330px;	
         
     | 
| 
      
 534 
     | 
    
         
            +
            }
         
     | 
| 
      
 535 
     | 
    
         
            +
            .inputs-bl textarea {
         
     | 
| 
      
 536 
     | 
    
         
            +
            	border: solid 1px #bbc4c0;
         
     | 
| 
      
 537 
     | 
    
         
            +
            	width: 600px;
         
     | 
| 
      
 538 
     | 
    
         
            +
            }
         
     | 
| 
      
 539 
     | 
    
         
            +
            .inputs-bl input.name {
         
     | 
| 
      
 540 
     | 
    
         
            +
            	font-size: 1.4em;
         
     | 
| 
      
 541 
     | 
    
         
            +
            	width: 600px;
         
     | 
| 
      
 542 
     | 
    
         
            +
            }
         
     | 
| 
      
 543 
     | 
    
         
            +
            .inputs-bl select {
         
     | 
| 
      
 544 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 545 
     | 
    
         
            +
            	background: #afc4b9;
         
     | 
| 
      
 546 
     | 
    
         
            +
            	font-size: 1em;
         
     | 
| 
      
 547 
     | 
    
         
            +
            	padding: 0px 0px 0px 5px;
         
     | 
| 
      
 548 
     | 
    
         
            +
            	margin: 0px 10px 0px 0px;
         
     | 
| 
      
 549 
     | 
    
         
            +
            }
         
     | 
| 
      
 550 
     | 
    
         
            +
            .gray-blocks {
         
     | 
| 
      
 551 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 552 
     | 
    
         
            +
            	margin-top: 20px;
         
     | 
| 
      
 553 
     | 
    
         
            +
            }
         
     | 
| 
      
 554 
     | 
    
         
            +
            .gray-blocks .bg-bl {
         
     | 
| 
      
 555 
     | 
    
         
            +
            	background: #d1e6dc;
         
     | 
| 
      
 556 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 557 
     | 
    
         
            +
            }
         
     | 
| 
      
 558 
     | 
    
         
            +
            .gray-blocks .gr-title {
         
     | 
| 
      
 559 
     | 
    
         
            +
            	display: block;	
         
     | 
| 
      
 560 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 561 
     | 
    
         
            +
            	font-size: 1.1em;
         
     | 
| 
      
 562 
     | 
    
         
            +
            	padding: 20px 20px 15px 20px;
         
     | 
| 
      
 563 
     | 
    
         
            +
            }
         
     | 
| 
      
 564 
     | 
    
         
            +
            .gray-blocks .galery {
         
     | 
| 
      
 565 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 566 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 567 
     | 
    
         
            +
            }
         
     | 
| 
      
 568 
     | 
    
         
            +
            .gray-blocks .galery .ill {
         
     | 
| 
      
 569 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 570 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 571 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 572 
     | 
    
         
            +
            	width: 80px;
         
     | 
| 
      
 573 
     | 
    
         
            +
            	height: 80px;
         
     | 
| 
      
 574 
     | 
    
         
            +
            	margin-right: 1px;
         
     | 
| 
      
 575 
     | 
    
         
            +
            	margin-bottom: 1px;
         
     | 
| 
      
 576 
     | 
    
         
            +
            	position: relative;
         
     | 
| 
      
 577 
     | 
    
         
            +
            }
         
     | 
| 
      
 578 
     | 
    
         
            +
            .gray-blocks .galery .ill .del {
         
     | 
| 
      
 579 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 580 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 581 
     | 
    
         
            +
            	right: 0px;
         
     | 
| 
      
 582 
     | 
    
         
            +
            	top: 0px;
         
     | 
| 
      
 583 
     | 
    
         
            +
            	background:url(/images/manage/transp_cross.png) no-repeat left top;
         
     | 
| 
      
 584 
     | 
    
         
            +
            	width: 17px;
         
     | 
| 
      
 585 
     | 
    
         
            +
            	height: 17px;
         
     | 
| 
      
 586 
     | 
    
         
            +
            	cursor: pointer;
         
     | 
| 
      
 587 
     | 
    
         
            +
            }
         
     | 
| 
      
 588 
     | 
    
         
            +
            .gray-blocks .galery .ill .del img {
         
     | 
| 
      
 589 
     | 
    
         
            +
            	width: 17px;
         
     | 
| 
      
 590 
     | 
    
         
            +
            	height: 17px;
         
     | 
| 
      
 591 
     | 
    
         
            +
            }
         
     | 
| 
      
 592 
     | 
    
         
            +
            .white-but {
         
     | 
| 
      
 593 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 594 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 595 
     | 
    
         
            +
            	background: #fff url(/images/manage/ico_add.gif) no-repeat 10px center;
         
     | 
| 
      
 596 
     | 
    
         
            +
            	padding: 10px 20px 10px 30px;
         
     | 
| 
      
 597 
     | 
    
         
            +
            	color: #acbdc2;
         
     | 
| 
      
 598 
     | 
    
         
            +
            	font-size: 0.85em;
         
     | 
| 
      
 599 
     | 
    
         
            +
            	margin-top: 10px;
         
     | 
| 
      
 600 
     | 
    
         
            +
            }
         
     | 
| 
      
 601 
     | 
    
         
            +
            .gray-blocks .ill-bl {
         
     | 
| 
      
 602 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 603 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 604 
     | 
    
         
            +
            	padding: 0px 20px 20px 20px;
         
     | 
| 
      
 605 
     | 
    
         
            +
            	border-bottom: solid 1px #e7faed;
         
     | 
| 
      
 606 
     | 
    
         
            +
            	position: relative;
         
     | 
| 
      
 607 
     | 
    
         
            +
            }
         
     | 
| 
      
 608 
     | 
    
         
            +
            .gray-blocks .ill-bl .r-ill {
         
     | 
| 
      
 609 
     | 
    
         
            +
            	margin-left: -90px;
         
     | 
| 
      
 610 
     | 
    
         
            +
            	width: 100%;
         
     | 
| 
      
 611 
     | 
    
         
            +
            	float: right;
         
     | 
| 
      
 612 
     | 
    
         
            +
            }
         
     | 
| 
      
 613 
     | 
    
         
            +
            .gray-blocks .ill-bl .r-ill .r-ill-data {
         
     | 
| 
      
 614 
     | 
    
         
            +
            	margin-left: 90px;	
         
     | 
| 
      
 615 
     | 
    
         
            +
            }
         
     | 
| 
      
 616 
     | 
    
         
            +
            .gray-blocks .ill-bl .l-ill {
         
     | 
| 
      
 617 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 618 
     | 
    
         
            +
            	width: 80px;
         
     | 
| 
      
 619 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 620 
     | 
    
         
            +
            }
         
     | 
| 
      
 621 
     | 
    
         
            +
            .gray-blocks .ill-bl .file-name {
         
     | 
| 
      
 622 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 623 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 624 
     | 
    
         
            +
            	font-weight: bold;
         
     | 
| 
      
 625 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 626 
     | 
    
         
            +
            }
         
     | 
| 
      
 627 
     | 
    
         
            +
            .gray-blocks .ill-bl .del {
         
     | 
| 
      
 628 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 629 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 630 
     | 
    
         
            +
            	right: 20px;
         
     | 
| 
      
 631 
     | 
    
         
            +
            	top: 0px;
         
     | 
| 
      
 632 
     | 
    
         
            +
            	width: 13px;
         
     | 
| 
      
 633 
     | 
    
         
            +
            	height: 13px;
         
     | 
| 
      
 634 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 635 
     | 
    
         
            +
            }
         
     | 
| 
      
 636 
     | 
    
         
            +
            .file-types {
         
     | 
| 
      
 637 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 638 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 639 
     | 
    
         
            +
            	padding: 20px;
         
     | 
| 
      
 640 
     | 
    
         
            +
            }
         
     | 
| 
      
 641 
     | 
    
         
            +
            .file-types .type-info {
         
     | 
| 
      
 642 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 643 
     | 
    
         
            +
            	float: right;
         
     | 
| 
      
 644 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 645 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 646 
     | 
    
         
            +
            }
         
     | 
| 
      
 647 
     | 
    
         
            +
            a.external {
         
     | 
| 
      
 648 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 649 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 650 
     | 
    
         
            +
            	color: #acbdc2;
         
     | 
| 
      
 651 
     | 
    
         
            +
            	text-decoration: underline;
         
     | 
| 
      
 652 
     | 
    
         
            +
            	font-size: 0.85em;
         
     | 
| 
      
 653 
     | 
    
         
            +
            	padding-top: 20px;
         
     | 
| 
      
 654 
     | 
    
         
            +
            	padding-left: 20px;
         
     | 
| 
      
 655 
     | 
    
         
            +
            }
         
     | 
| 
      
 656 
     | 
    
         
            +
            .edit-white-bl {
         
     | 
| 
      
 657 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 658 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 659 
     | 
    
         
            +
            	background: url(/images/manage/add_white_top.gif) no-repeat left top;
         
     | 
| 
      
 660 
     | 
    
         
            +
            	padding-top: 10px;
         
     | 
| 
      
 661 
     | 
    
         
            +
            }
         
     | 
| 
      
 662 
     | 
    
         
            +
            .edit-white-bl .bot-bg {
         
     | 
| 
      
 663 
     | 
    
         
            +
            	background: #fff url(/images/manage/add_white_bot.gif) no-repeat left bottom;
         
     | 
| 
      
 664 
     | 
    
         
            +
            	padding: 0px 0px 10px 0px; 
         
     | 
| 
      
 665 
     | 
    
         
            +
            }
         
     | 
| 
      
 666 
     | 
    
         
            +
            .edit-white-bl .wh-title {
         
     | 
| 
      
 667 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 668 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 669 
     | 
    
         
            +
            	padding: 10px 30px 20px 30px;
         
     | 
| 
      
 670 
     | 
    
         
            +
            	border-bottom: solid 1px #e7faed;
         
     | 
| 
      
 671 
     | 
    
         
            +
            }
         
     | 
| 
      
 672 
     | 
    
         
            +
            .edit-white-bl .elem-bl {
         
     | 
| 
      
 673 
     | 
    
         
            +
            	background: #fbfdfe;	
         
     | 
| 
      
 674 
     | 
    
         
            +
            	border-bottom: solid 1px #e7faed;
         
     | 
| 
      
 675 
     | 
    
         
            +
            	padding: 20px 40px 25px 40px;
         
     | 
| 
      
 676 
     | 
    
         
            +
            }
         
     | 
| 
      
 677 
     | 
    
         
            +
            .edit-white-bl .elem-bl table th {
         
     | 
| 
      
 678 
     | 
    
         
            +
            	font-weight: normal;
         
     | 
| 
      
 679 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 680 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 681 
     | 
    
         
            +
            	padding-bottom: 5px;
         
     | 
| 
      
 682 
     | 
    
         
            +
            }
         
     | 
| 
      
 683 
     | 
    
         
            +
            .edit-white-bl .elem-bl table th, .edit-white-bl .elem-bl table td {
         
     | 
| 
      
 684 
     | 
    
         
            +
            	vertical-align: top;
         
     | 
| 
      
 685 
     | 
    
         
            +
            	text-align: left;
         
     | 
| 
      
 686 
     | 
    
         
            +
            	padding-right: 10px;
         
     | 
| 
      
 687 
     | 
    
         
            +
            }
         
     | 
| 
      
 688 
     | 
    
         
            +
            .edit-white-bl .elem-bl table td input {
         
     | 
| 
      
 689 
     | 
    
         
            +
            	width: 60px;	
         
     | 
| 
      
 690 
     | 
    
         
            +
            }
         
     | 
| 
      
 691 
     | 
    
         
            +
            .edit-white-bl .add-elem {
         
     | 
| 
      
 692 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 693 
     | 
    
         
            +
            	background: url(/images/manage/ico_add.gif) no-repeat left center;
         
     | 
| 
      
 694 
     | 
    
         
            +
            	padding-left: 20px;
         
     | 
| 
      
 695 
     | 
    
         
            +
            	margin: 15px 0px 10px 30px;
         
     | 
| 
      
 696 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 697 
     | 
    
         
            +
            	font-size: 0.85em;
         
     | 
| 
      
 698 
     | 
    
         
            +
            	color: #acbdc2;
         
     | 
| 
      
 699 
     | 
    
         
            +
            }
         
     | 
| 
      
 700 
     | 
    
         
            +
            .select-file-but {
         
     | 
| 
      
 701 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 702 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 703 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 704 
     | 
    
         
            +
            	width: 92px;
         
     | 
| 
      
 705 
     | 
    
         
            +
            	height: 18px;
         
     | 
| 
      
 706 
     | 
    
         
            +
            	margin-right: 10px;
         
     | 
| 
      
 707 
     | 
    
         
            +
            }
         
     | 
| 
      
 708 
     | 
    
         
            +
            .ch-file {
         
     | 
| 
      
 709 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 710 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 711 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 712 
     | 
    
         
            +
            	font-weight: bold;
         
     | 
| 
      
 713 
     | 
    
         
            +
            }
         
     | 
| 
      
 714 
     | 
    
         
            +
            .lang-tabs {
         
     | 
| 
      
 715 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 716 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 717 
     | 
    
         
            +
            	height: 40px;
         
     | 
| 
      
 718 
     | 
    
         
            +
            	list-style: none;
         
     | 
| 
      
 719 
     | 
    
         
            +
            	margin: 0px;
         
     | 
| 
      
 720 
     | 
    
         
            +
            	padding: 0px;
         
     | 
| 
      
 721 
     | 
    
         
            +
            	line-height: 40px;
         
     | 
| 
      
 722 
     | 
    
         
            +
            }
         
     | 
| 
      
 723 
     | 
    
         
            +
            .lang-tabs li {
         
     | 
| 
      
 724 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 725 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 726 
     | 
    
         
            +
            	margin-right: 1px;
         
     | 
| 
      
 727 
     | 
    
         
            +
            }
         
     | 
| 
      
 728 
     | 
    
         
            +
            .lang-tabs li.active {
         
     | 
| 
      
 729 
     | 
    
         
            +
            	background: url(/images/manage/tab_wl.gif) no-repeat left top;
         
     | 
| 
      
 730 
     | 
    
         
            +
            	padding-left: 3px;
         
     | 
| 
      
 731 
     | 
    
         
            +
            }
         
     | 
| 
      
 732 
     | 
    
         
            +
            .lang-tabs li.active span {
         
     | 
| 
      
 733 
     | 
    
         
            +
            	background: #fff url(/images/manage/tab_wr.gif) no-repeat right top;	
         
     | 
| 
      
 734 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 735 
     | 
    
         
            +
            	padding: 0px 10px 0px 7px;
         
     | 
| 
      
 736 
     | 
    
         
            +
            }
         
     | 
| 
      
 737 
     | 
    
         
            +
            .lang-tabs li.active a.ua {
         
     | 
| 
      
 738 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 739 
     | 
    
         
            +
            	line-height: 40px;
         
     | 
| 
      
 740 
     | 
    
         
            +
            	text-align: center;
         
     | 
| 
      
 741 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 742 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 743 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 744 
     | 
    
         
            +
            	background: url(/images/manage/flag_ua.gif) no-repeat left center;
         
     | 
| 
      
 745 
     | 
    
         
            +
            	padding-left: 20px;
         
     | 
| 
      
 746 
     | 
    
         
            +
            }
         
     | 
| 
      
 747 
     | 
    
         
            +
            .lang-tabs li.active a.uk {
         
     | 
| 
      
 748 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 749 
     | 
    
         
            +
            	line-height: 40px;
         
     | 
| 
      
 750 
     | 
    
         
            +
            	text-align: center;
         
     | 
| 
      
 751 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 752 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 753 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 754 
     | 
    
         
            +
            	background: url(/images/manage/flag_ua.gif) no-repeat left center;
         
     | 
| 
      
 755 
     | 
    
         
            +
            	padding-left: 20px;
         
     | 
| 
      
 756 
     | 
    
         
            +
            }
         
     | 
| 
      
 757 
     | 
    
         
            +
            .lang-tabs li.active a.ru {
         
     | 
| 
      
 758 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 759 
     | 
    
         
            +
            	line-height: 40px;
         
     | 
| 
      
 760 
     | 
    
         
            +
            	text-align: center;
         
     | 
| 
      
 761 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 762 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 763 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 764 
     | 
    
         
            +
            	background: url(/images/manage/flag_ru.gif) no-repeat left center;
         
     | 
| 
      
 765 
     | 
    
         
            +
            	padding-left: 20px;
         
     | 
| 
      
 766 
     | 
    
         
            +
            }
         
     | 
| 
      
 767 
     | 
    
         
            +
            .lang-tabs li.active a.en {
         
     | 
| 
      
 768 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 769 
     | 
    
         
            +
            	line-height: 40px;
         
     | 
| 
      
 770 
     | 
    
         
            +
            	text-align: center;
         
     | 
| 
      
 771 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 772 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 773 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 774 
     | 
    
         
            +
            	background: url(/images/manage/flag_en.gif) no-repeat left center;
         
     | 
| 
      
 775 
     | 
    
         
            +
            	padding-left: 20px;
         
     | 
| 
      
 776 
     | 
    
         
            +
            }
         
     | 
| 
      
 777 
     | 
    
         
            +
            .lang-tabs li.not-active {
         
     | 
| 
      
 778 
     | 
    
         
            +
            	background: url(/images/manage/tab_gl.gif) no-repeat left top;
         
     | 
| 
      
 779 
     | 
    
         
            +
            	padding-left: 3px;
         
     | 
| 
      
 780 
     | 
    
         
            +
            }
         
     | 
| 
      
 781 
     | 
    
         
            +
            .lang-tabs li.not-active span {
         
     | 
| 
      
 782 
     | 
    
         
            +
            	background: #bfd6cb url(/images/manage/tab_gr.gif) no-repeat right top;	
         
     | 
| 
      
 783 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 784 
     | 
    
         
            +
            	padding: 0px 10px 0px 7px;
         
     | 
| 
      
 785 
     | 
    
         
            +
            }
         
     | 
| 
      
 786 
     | 
    
         
            +
            .lang-tabs li.not-active a.ua {
         
     | 
| 
      
 787 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 788 
     | 
    
         
            +
            	line-height: 40px;
         
     | 
| 
      
 789 
     | 
    
         
            +
            	text-align: center;
         
     | 
| 
      
 790 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 791 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 792 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 793 
     | 
    
         
            +
            	background: url(/images/manage/flag_ua_nonact.gif) no-repeat left center;
         
     | 
| 
      
 794 
     | 
    
         
            +
            	padding-left: 20px;
         
     | 
| 
      
 795 
     | 
    
         
            +
            }
         
     | 
| 
      
 796 
     | 
    
         
            +
            .lang-tabs li.not-active a.uk {
         
     | 
| 
      
 797 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 798 
     | 
    
         
            +
            	line-height: 40px;
         
     | 
| 
      
 799 
     | 
    
         
            +
            	text-align: center;
         
     | 
| 
      
 800 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 801 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 802 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 803 
     | 
    
         
            +
            	background: url(/images/manage/flag_ua_nonact.gif) no-repeat left center;
         
     | 
| 
      
 804 
     | 
    
         
            +
            	padding-left: 20px;
         
     | 
| 
      
 805 
     | 
    
         
            +
            }
         
     | 
| 
      
 806 
     | 
    
         
            +
            .lang-tabs li.not-active a.ru {
         
     | 
| 
      
 807 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 808 
     | 
    
         
            +
            	line-height: 40px;
         
     | 
| 
      
 809 
     | 
    
         
            +
            	text-align: center;
         
     | 
| 
      
 810 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 811 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 812 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 813 
     | 
    
         
            +
            	background: url(/images/manage/flag_ru_nonact.gif) no-repeat left center;
         
     | 
| 
      
 814 
     | 
    
         
            +
            	padding-left: 20px;
         
     | 
| 
      
 815 
     | 
    
         
            +
            }
         
     | 
| 
      
 816 
     | 
    
         
            +
            .lang-tabs li.not-active a.en {
         
     | 
| 
      
 817 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 818 
     | 
    
         
            +
            	line-height: 40px;
         
     | 
| 
      
 819 
     | 
    
         
            +
            	text-align: center;
         
     | 
| 
      
 820 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 821 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 822 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 823 
     | 
    
         
            +
            	background: url(/images/manage/flag_en_nonact.gif) no-repeat left center;
         
     | 
| 
      
 824 
     | 
    
         
            +
            	padding-left: 20px;
         
     | 
| 
      
 825 
     | 
    
         
            +
            }
         
     | 
| 
      
 826 
     | 
    
         
            +
            .add-white-bl {
         
     | 
| 
      
 827 
     | 
    
         
            +
            	background: url(/images/manage/edit_white_top.gif) no-repeat left top;	
         
     | 
| 
      
 828 
     | 
    
         
            +
            	padding-top: 10px;
         
     | 
| 
      
 829 
     | 
    
         
            +
            }
         
     | 
| 
      
 830 
     | 
    
         
            +
            .add-white-bl .bot-bg {
         
     | 
| 
      
 831 
     | 
    
         
            +
            	background: #fff url(/images/manage/add_white_bot.gif) no-repeat left bottom;	
         
     | 
| 
      
 832 
     | 
    
         
            +
            	padding: 20px 30px 35px 30px;
         
     | 
| 
      
 833 
     | 
    
         
            +
            }
         
     | 
| 
      
 834 
     | 
    
         
            +
            table.page-info {
         
     | 
| 
      
 835 
     | 
    
         
            +
            	margin: 20px;	
         
     | 
| 
      
 836 
     | 
    
         
            +
            }
         
     | 
| 
      
 837 
     | 
    
         
            +
            table.page-info td {
         
     | 
| 
      
 838 
     | 
    
         
            +
            	padding-bottom: 5px;
         
     | 
| 
      
 839 
     | 
    
         
            +
            	text-align: left;
         
     | 
| 
      
 840 
     | 
    
         
            +
            	padding-right: 20px;
         
     | 
| 
      
 841 
     | 
    
         
            +
            	vertical-align: top;
         
     | 
| 
      
 842 
     | 
    
         
            +
            }
         
     | 
| 
      
 843 
     | 
    
         
            +
            table.page-info td label {
         
     | 
| 
      
 844 
     | 
    
         
            +
            	font-size: 1.1em;
         
     | 
| 
      
 845 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 846 
     | 
    
         
            +
            	padding-bottom: 5px;
         
     | 
| 
      
 847 
     | 
    
         
            +
            	padding-top: 10px;
         
     | 
| 
      
 848 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 849 
     | 
    
         
            +
            }
         
     | 
| 
      
 850 
     | 
    
         
            +
            table.page-info td input.text {
         
     | 
| 
      
 851 
     | 
    
         
            +
            	width: 300px;	
         
     | 
| 
      
 852 
     | 
    
         
            +
            }
         
     | 
| 
      
 853 
     | 
    
         
            +
            table.page-info td.check {
         
     | 
| 
      
 854 
     | 
    
         
            +
            	padding-top: 10px;	
         
     | 
| 
      
 855 
     | 
    
         
            +
            }
         
     | 
| 
      
 856 
     | 
    
         
            +
            table.page-info td.check label {
         
     | 
| 
      
 857 
     | 
    
         
            +
            	display: inline;
         
     | 
| 
      
 858 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 859 
     | 
    
         
            +
            	padding: 0px 0px 0px 5px;
         
     | 
| 
      
 860 
     | 
    
         
            +
            }
         
     | 
| 
      
 861 
     | 
    
         
            +
            table.page-info td.check input {
         
     | 
| 
      
 862 
     | 
    
         
            +
            	margin: 0px;
         
     | 
| 
      
 863 
     | 
    
         
            +
            	padding: 0px;
         
     | 
| 
      
 864 
     | 
    
         
            +
            }
         
     | 
| 
      
 865 
     | 
    
         
            +
            .select-list {
         
     | 
| 
      
 866 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 867 
     | 
    
         
            +
            	overflow-x: hidden;
         
     | 
| 
      
 868 
     | 
    
         
            +
            	overflow-y: auto;
         
     | 
| 
      
 869 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 870 
     | 
    
         
            +
            	background: #a9bfb4;
         
     | 
| 
      
 871 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 872 
     | 
    
         
            +
            	width: 250px;
         
     | 
| 
      
 873 
     | 
    
         
            +
            	left: 867px;
         
     | 
| 
      
 874 
     | 
    
         
            +
            	top: 467px;
         
     | 
| 
      
 875 
     | 
    
         
            +
            	text-align: left;
         
     | 
| 
      
 876 
     | 
    
         
            +
            	padding: 5px 0px 7px 0px;
         
     | 
| 
      
 877 
     | 
    
         
            +
            	z-index: 5000;
         
     | 
| 
      
 878 
     | 
    
         
            +
            }
         
     | 
| 
      
 879 
     | 
    
         
            +
            .select-list a {
         
     | 
| 
      
 880 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 881 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 882 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 883 
     | 
    
         
            +
            	margin: 3px 0px;
         
     | 
| 
      
 884 
     | 
    
         
            +
            	padding: 5px 10px;
         
     | 
| 
      
 885 
     | 
    
         
            +
            }
         
     | 
| 
      
 886 
     | 
    
         
            +
            .select-list a.selected {
         
     | 
| 
      
 887 
     | 
    
         
            +
            	background: #8da298;	
         
     | 
| 
      
 888 
     | 
    
         
            +
            }
         
     | 
| 
      
 889 
     | 
    
         
            +
            .select-list a:hover {
         
     | 
| 
      
 890 
     | 
    
         
            +
            	background: #e7faed;
         
     | 
| 
      
 891 
     | 
    
         
            +
            	color: #5b6569;
         
     | 
| 
      
 892 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 893 
     | 
    
         
            +
            }
         
     | 
| 
      
 894 
     | 
    
         
            +
            .progress-container {
         
     | 
| 
      
 895 
     | 
    
         
            +
            	padding-bottom:20px;
         
     | 
| 
      
 896 
     | 
    
         
            +
            	clear: both;
         
     | 
| 
      
 897 
     | 
    
         
            +
            	margin: 0px;
         
     | 
| 
      
 898 
     | 
    
         
            +
            	padding-left: 20px;
         
     | 
| 
      
 899 
     | 
    
         
            +
            }
         
     | 
| 
      
 900 
     | 
    
         
            +
            .progress-container .status-message {
         
     | 
| 
      
 901 
     | 
    
         
            +
            	font-size: 0.8em;
         
     | 
| 
      
 902 
     | 
    
         
            +
            	font-style: italic;
         
     | 
| 
      
 903 
     | 
    
         
            +
            	line-height: 16px;
         
     | 
| 
      
 904 
     | 
    
         
            +
            }
         
     | 
| 
      
 905 
     | 
    
         
            +
            .progress-container .progress-bar {
         
     | 
| 
      
 906 
     | 
    
         
            +
            	background: #FFFFFF none repeat scroll 0 0;
         
     | 
| 
      
 907 
     | 
    
         
            +
            	border: 1px solid #ABD2E7;
         
     | 
| 
      
 908 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 909 
     | 
    
         
            +
            	width: 400px;
         
     | 
| 
      
 910 
     | 
    
         
            +
            }
         
     | 
| 
      
 911 
     | 
    
         
            +
            .progress-container .progress-bar .progress {
         
     | 
| 
      
 912 
     | 
    
         
            +
            	background: url(/images/manage/upload_progress.gif) repeat-x scroll 0 0;
         
     | 
| 
      
 913 
     | 
    
         
            +
            	border-right: 1px solid #ABD2E7;
         
     | 
| 
      
 914 
     | 
    
         
            +
            	height: 17px;
         
     | 
| 
      
 915 
     | 
    
         
            +
            	width: 400px;
         
     | 
| 
      
 916 
     | 
    
         
            +
            }
         
     | 
| 
      
 917 
     | 
    
         
            +
            .input-bl input, .input-bl textarea, .input-bl label {
         
     | 
| 
      
 918 
     | 
    
         
            +
            	display: block;	
         
     | 
| 
      
 919 
     | 
    
         
            +
            }
         
     | 
| 
      
 920 
     | 
    
         
            +
            .input-bl label {
         
     | 
| 
      
 921 
     | 
    
         
            +
            	padding: 7px 0px 2px 0px;	
         
     | 
| 
      
 922 
     | 
    
         
            +
            }
         
     | 
| 
      
 923 
     | 
    
         
            +
            .pending {
         
     | 
| 
      
 924 
     | 
    
         
            +
            	background: url(/images/manage/duo_top_small_notact.gif) no-repeat left top;	
         
     | 
| 
      
 925 
     | 
    
         
            +
            }
         
     | 
| 
      
 926 
     | 
    
         
            +
            .pending .bot-bg {
         
     | 
| 
      
 927 
     | 
    
         
            +
            	background: url(/images/manage/duo_bot_small_notact.gif) no-repeat left bottom;	
         
     | 
| 
      
 928 
     | 
    
         
            +
            }
         
     | 
| 
      
 929 
     | 
    
         
            +
            .pending .dinamic-container {
         
     | 
| 
      
 930 
     | 
    
         
            +
            	background: url(/images/manage/duo_bg_small_notact.gif) repeat-y left top;	
         
     | 
| 
      
 931 
     | 
    
         
            +
            }
         
     | 
| 
      
 932 
     | 
    
         
            +
            .suspended {
         
     | 
| 
      
 933 
     | 
    
         
            +
            	background: url(/images/manage/duo_top_small_frozed.gif) no-repeat left top;	
         
     | 
| 
      
 934 
     | 
    
         
            +
            }
         
     | 
| 
      
 935 
     | 
    
         
            +
            .suspended .bot-bg {
         
     | 
| 
      
 936 
     | 
    
         
            +
            	background: url(/images/manage/duo_bot_small_frozed.gif) no-repeat left bottom;	
         
     | 
| 
      
 937 
     | 
    
         
            +
            }
         
     | 
| 
      
 938 
     | 
    
         
            +
            .suspended .dinamic-container {
         
     | 
| 
      
 939 
     | 
    
         
            +
            	background: url(/images/manage/duo_bg_small_frozed.gif) repeat-y left top;	
         
     | 
| 
      
 940 
     | 
    
         
            +
            }
         
     | 
| 
      
 941 
     | 
    
         
            +
            .deleted {
         
     | 
| 
      
 942 
     | 
    
         
            +
            	background: url(/images/manage/duo_top_small_blocked.gif) no-repeat left top;	
         
     | 
| 
      
 943 
     | 
    
         
            +
            }
         
     | 
| 
      
 944 
     | 
    
         
            +
            .deleted .bot-bg {
         
     | 
| 
      
 945 
     | 
    
         
            +
            	background: url(/images/manage/duo_bot_small_blocked.gif) no-repeat left bottom;	
         
     | 
| 
      
 946 
     | 
    
         
            +
            }
         
     | 
| 
      
 947 
     | 
    
         
            +
            .deleted .dinamic-container {
         
     | 
| 
      
 948 
     | 
    
         
            +
            	background: url(/images/manage/duo_bg_small_blocked.gif) repeat-y left top;	
         
     | 
| 
      
 949 
     | 
    
         
            +
            }
         
     | 
| 
      
 950 
     | 
    
         
            +
            .user-buts {
         
     | 
| 
      
 951 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 952 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 953 
     | 
    
         
            +
            	padding-top: 10px;
         
     | 
| 
      
 954 
     | 
    
         
            +
            }
         
     | 
| 
      
 955 
     | 
    
         
            +
            .user-buts a {
         
     | 
| 
      
 956 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 957 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 958 
     | 
    
         
            +
            	margin-right: 10px;
         
     | 
| 
      
 959 
     | 
    
         
            +
            	color: #fff;
         
     | 
| 
      
 960 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 961 
     | 
    
         
            +
            }
         
     | 
| 
      
 962 
     | 
    
         
            +
            .user-buts a.activate {
         
     | 
| 
      
 963 
     | 
    
         
            +
            	background: url(/images/manage/user_act_lc.gif) no-repeat left top;	
         
     | 
| 
      
 964 
     | 
    
         
            +
            }
         
     | 
| 
      
 965 
     | 
    
         
            +
            .user-buts a.activate span {
         
     | 
| 
      
 966 
     | 
    
         
            +
            	background: url(/images/manage/user_act_rc.gif) no-repeat right top;
         
     | 
| 
      
 967 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 968 
     | 
    
         
            +
            	line-height: 30px;
         
     | 
| 
      
 969 
     | 
    
         
            +
            	padding: 0px 15px;
         
     | 
| 
      
 970 
     | 
    
         
            +
            }
         
     | 
| 
      
 971 
     | 
    
         
            +
            .user-buts a.suspend {
         
     | 
| 
      
 972 
     | 
    
         
            +
            	background: url(/images/manage/but_freze_lc.gif) no-repeat left top;
         
     | 
| 
      
 973 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 974 
     | 
    
         
            +
            }
         
     | 
| 
      
 975 
     | 
    
         
            +
            .user-buts a.suspend span {
         
     | 
| 
      
 976 
     | 
    
         
            +
            	background: url(/images/manage/but_freze_rc.gif) no-repeat right top;
         
     | 
| 
      
 977 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 978 
     | 
    
         
            +
            	line-height: 22px;
         
     | 
| 
      
 979 
     | 
    
         
            +
            	padding: 0px 10px 0px 25px;
         
     | 
| 
      
 980 
     | 
    
         
            +
            }
         
     | 
| 
      
 981 
     | 
    
         
            +
            .user-buts a.unsuspend {
         
     | 
| 
      
 982 
     | 
    
         
            +
            	background: url(/images/manage/but_unfreze_lc.gif) no-repeat left top;
         
     | 
| 
      
 983 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 984 
     | 
    
         
            +
            }
         
     | 
| 
      
 985 
     | 
    
         
            +
            .user-buts a.unsuspend span {
         
     | 
| 
      
 986 
     | 
    
         
            +
            	background: url(/images/manage/but_unfreze_rc.gif) no-repeat right top;
         
     | 
| 
      
 987 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 988 
     | 
    
         
            +
            	line-height: 22px;
         
     | 
| 
      
 989 
     | 
    
         
            +
            	padding: 0px 10px 0px 25px;
         
     | 
| 
      
 990 
     | 
    
         
            +
            }
         
     | 
| 
      
 991 
     | 
    
         
            +
            .user-buts a.unlock {
         
     | 
| 
      
 992 
     | 
    
         
            +
            	background: url(/images/manage/but_unfreze_lc.gif) no-repeat left top;
         
     | 
| 
      
 993 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 994 
     | 
    
         
            +
            }
         
     | 
| 
      
 995 
     | 
    
         
            +
            .user-buts a.unlock span {
         
     | 
| 
      
 996 
     | 
    
         
            +
            	background: url(/images/manage/but_unfreze_rc.gif) no-repeat right top;
         
     | 
| 
      
 997 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 998 
     | 
    
         
            +
            	line-height: 22px;
         
     | 
| 
      
 999 
     | 
    
         
            +
            	padding: 0px 10px 0px 25px;
         
     | 
| 
      
 1000 
     | 
    
         
            +
            }
         
     | 
| 
      
 1001 
     | 
    
         
            +
            .user-buts a.delete {
         
     | 
| 
      
 1002 
     | 
    
         
            +
            	background: url(/images/manage/but_block_lc.gif) no-repeat left top;
         
     | 
| 
      
 1003 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 1004 
     | 
    
         
            +
            }
         
     | 
| 
      
 1005 
     | 
    
         
            +
            .user-buts a.delete span {
         
     | 
| 
      
 1006 
     | 
    
         
            +
            	background: url(/images/manage/but_block_rc.gif) no-repeat right top;
         
     | 
| 
      
 1007 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 1008 
     | 
    
         
            +
            	line-height: 22px;
         
     | 
| 
      
 1009 
     | 
    
         
            +
            	padding: 0px 10px 0px 25px;
         
     | 
| 
      
 1010 
     | 
    
         
            +
            }
         
     | 
| 
      
 1011 
     | 
    
         
            +
            .back-but-bl {
         
     | 
| 
      
 1012 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 1013 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 1014 
     | 
    
         
            +
            	padding-bottom: 10px;
         
     | 
| 
      
 1015 
     | 
    
         
            +
            }
         
     | 
| 
      
 1016 
     | 
    
         
            +
            .back-but-bl a.back {
         
     | 
| 
      
 1017 
     | 
    
         
            +
            	background: url(/images/manage/back_but_lc.gif) no-repeat left top;
         
     | 
| 
      
 1018 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 1019 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 1020 
     | 
    
         
            +
            	color: #476e74;
         
     | 
| 
      
 1021 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 1022 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 1023 
     | 
    
         
            +
            }
         
     | 
| 
      
 1024 
     | 
    
         
            +
            .back-but-bl a.back span {
         
     | 
| 
      
 1025 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 1026 
     | 
    
         
            +
            	background: url(/images/manage/back_but_rc.gif) no-repeat right top;
         
     | 
| 
      
 1027 
     | 
    
         
            +
            	line-height: 32px;
         
     | 
| 
      
 1028 
     | 
    
         
            +
            	padding: 0px 10px 0px 35px;
         
     | 
| 
      
 1029 
     | 
    
         
            +
            }
         
     | 
| 
      
 1030 
     | 
    
         
            +
            ul.error_box {
         
     | 
| 
      
 1031 
     | 
    
         
            +
            	list-style: none;
         
     | 
| 
      
 1032 
     | 
    
         
            +
            	margin: 0px;
         
     | 
| 
      
 1033 
     | 
    
         
            +
            	padding: 0px 0px 0px 10px;
         
     | 
| 
      
 1034 
     | 
    
         
            +
            	color: #c33d17;
         
     | 
| 
      
 1035 
     | 
    
         
            +
            	font-size: 0.9em;
         
     | 
| 
      
 1036 
     | 
    
         
            +
            }
         
     | 
| 
      
 1037 
     | 
    
         
            +
            ul.error_box li {
         
     | 
| 
      
 1038 
     | 
    
         
            +
            	padding-bottom: 2px;	
         
     | 
| 
      
 1039 
     | 
    
         
            +
            }
         
     | 
| 
      
 1040 
     | 
    
         
            +
            /* Messages */
         
     | 
| 
      
 1041 
     | 
    
         
            +
            .message {
         
     | 
| 
      
 1042 
     | 
    
         
            +
            	margin-bottom: 20px;
         
     | 
| 
      
 1043 
     | 
    
         
            +
            	background-color: #fcfbe7;
         
     | 
| 
      
 1044 
     | 
    
         
            +
            	border: solid 1px #e4ead5;
         
     | 
| 
      
 1045 
     | 
    
         
            +
            	padding: 15px 40px 15px 20px;
         
     | 
| 
      
 1046 
     | 
    
         
            +
            	position: relative;
         
     | 
| 
      
 1047 
     | 
    
         
            +
            }
         
     | 
| 
      
 1048 
     | 
    
         
            +
            .message.error {
         
     | 
| 
      
 1049 
     | 
    
         
            +
            	background-color: #ffe5e5;
         
     | 
| 
      
 1050 
     | 
    
         
            +
            	border: solid 1px #e4d1d1;
         
     | 
| 
      
 1051 
     | 
    
         
            +
            }
         
     | 
| 
      
 1052 
     | 
    
         
            +
            .message a {
         
     | 
| 
      
 1053 
     | 
    
         
            +
              color:#2399E4;
         
     | 
| 
      
 1054 
     | 
    
         
            +
            }
         
     | 
| 
      
 1055 
     | 
    
         
            +
            .message a.close {
         
     | 
| 
      
 1056 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 1057 
     | 
    
         
            +
            	top: 8px;
         
     | 
| 
      
 1058 
     | 
    
         
            +
            	right: 20px;
         
     | 
| 
      
 1059 
     | 
    
         
            +
            }
         
     | 
| 
      
 1060 
     | 
    
         
            +
            .message.notice {
         
     | 
| 
      
 1061 
     | 
    
         
            +
            	background-color: #FF9;
         
     | 
| 
      
 1062 
     | 
    
         
            +
            	border: solid 1px #e4d1d1;
         
     | 
| 
      
 1063 
     | 
    
         
            +
            }
         
     | 
| 
      
 1064 
     | 
    
         
            +
            input.hidden {
         
     | 
| 
      
 1065 
     | 
    
         
            +
            	margin: 0px !important;
         
     | 
| 
      
 1066 
     | 
    
         
            +
            	padding: 0px !important;
         
     | 
| 
      
 1067 
     | 
    
         
            +
            }
         
     | 
| 
      
 1068 
     | 
    
         
            +
            .radio-bl {
         
     | 
| 
      
 1069 
     | 
    
         
            +
                overflow: hidden;
         
     | 
| 
      
 1070 
     | 
    
         
            +
                padding: 15px 0px;
         
     | 
| 
      
 1071 
     | 
    
         
            +
            }
         
     | 
| 
      
 1072 
     | 
    
         
            +
            .radio-bl .boolean {
         
     | 
| 
      
 1073 
     | 
    
         
            +
                display: block;
         
     | 
| 
      
 1074 
     | 
    
         
            +
                padding-bottom: 5px;
         
     | 
| 
      
 1075 
     | 
    
         
            +
            }
         
     | 
| 
      
 1076 
     | 
    
         
            +
            .radio-bl .boolean input, .radio-bl .boolean label {
         
     | 
| 
      
 1077 
     | 
    
         
            +
                display: inline;    
         
     | 
| 
      
 1078 
     | 
    
         
            +
                margin-right: 3px;
         
     | 
| 
      
 1079 
     | 
    
         
            +
                font-size: 1em;
         
     | 
| 
      
 1080 
     | 
    
         
            +
            }
         
     | 
| 
      
 1081 
     | 
    
         
            +
            .radio-bl .boolean label {
         
     | 
| 
      
 1082 
     | 
    
         
            +
              padding-top:0px;
         
     | 
| 
      
 1083 
     | 
    
         
            +
            }
         
     | 
| 
      
 1084 
     | 
    
         
            +
            .buttons {
         
     | 
| 
      
 1085 
     | 
    
         
            +
              padding-top:10px;
         
     | 
| 
      
 1086 
     | 
    
         
            +
              position:relative;
         
     | 
| 
      
 1087 
     | 
    
         
            +
            }
         
     | 
| 
      
 1088 
     | 
    
         
            +
            .margin-top {
         
     | 
| 
      
 1089 
     | 
    
         
            +
              margin-top: 10px;
         
     | 
| 
      
 1090 
     | 
    
         
            +
            }
         
     | 
| 
      
 1091 
     | 
    
         
            +
            .ui-timepicker-div .ui-widget-header{ margin-bottom: 8px; }
         
     | 
| 
      
 1092 
     | 
    
         
            +
            .ui-timepicker-div dl{ text-align: left; }
         
     | 
| 
      
 1093 
     | 
    
         
            +
            .ui-timepicker-div dl dt{ height: 25px; }
         
     | 
| 
      
 1094 
     | 
    
         
            +
            .ui-timepicker-div dl dd{ margin: -25px 0 10px 65px; }
         
     | 
| 
      
 1095 
     | 
    
         
            +
            .ui-timepicker-div td { font-size: 90%; }
         
     | 
| 
      
 1096 
     | 
    
         
            +
            .ui-autocomplete li.ui-menu-item a {
         
     | 
| 
      
 1097 
     | 
    
         
            +
              overflow:hidden;
         
     | 
| 
      
 1098 
     | 
    
         
            +
            }
         
     | 
| 
      
 1099 
     | 
    
         
            +
            .ui-autocomplete li.ui-menu-item img {
         
     | 
| 
      
 1100 
     | 
    
         
            +
              margin-right: 10px;
         
     | 
| 
      
 1101 
     | 
    
         
            +
            }
         
     | 
| 
      
 1102 
     | 
    
         
            +
            .ui-autocomplete li.ui-menu-item span {
         
     | 
| 
      
 1103 
     | 
    
         
            +
              line-height: 32px;
         
     | 
| 
      
 1104 
     | 
    
         
            +
            }
         
     | 
| 
      
 1105 
     | 
    
         
            +
            .ui-autocomplete li.ui-menu-item img, .ui-autocomplete li.ui-menu-item span {
         
     | 
| 
      
 1106 
     | 
    
         
            +
              display: block;
         
     | 
| 
      
 1107 
     | 
    
         
            +
              float:left;
         
     | 
| 
      
 1108 
     | 
    
         
            +
            }
         
     |