Ajax Search Lite - Version 3.0

Version Description

  • Fully reworked from version 1.7
  • Added 30+ more options & much nicer options panel
  • Brand new themes: Simple, Classic and Underline
  • Google analytics integration
  • Now possible to search custom post types
  • Possible to search custom fields and excerpts
  • Possible to exclude categories and posts by ID-s
  • Possible to change image sources and set a default image
  • Possible to add custom field and category selectors to the frontend
Download this release

Release Info

Developer wpdreams
Plugin Icon 128x128 Ajax Search Lite
Version 3.0
Comparing to
See all releases

Code changes from version 1.5 to 3.0

Files changed (130) hide show
  1. ajax-search-lite.php +55 -133
  2. backend/analytics.php +54 -0
  3. backend/default_settings_page.php +40 -0
  4. backend/settings.php +125 -0
  5. backend/settings/admin-ajax.php +12 -0
  6. backend/settings/assets/accordion.css +93 -0
  7. backend/settings/assets/animations.css +3202 -0
  8. backend/settings/assets/icons/add-before.png +0 -0
  9. backend/settings/assets/icons/add.png +0 -0
  10. {settings/types → backend/settings/assets}/icons/arrow-left.png +0 -0
  11. {settings/types → backend/settings/assets}/icons/arrow-right.png +0 -0
  12. backend/settings/assets/icons/b-asettings.png +0 -0
  13. backend/settings/assets/icons/b-back.png +0 -0
  14. backend/settings/assets/icons/b-bulb.png +0 -0
  15. backend/settings/assets/icons/b-eye.png +0 -0
  16. backend/settings/assets/icons/b-frontend.png +0 -0
  17. backend/settings/assets/icons/b-layout.png +0 -0
  18. backend/settings/assets/icons/b-maximise.png +0 -0
  19. backend/settings/assets/icons/b-multisite.png +0 -0
  20. backend/settings/assets/icons/b-refresh.png +0 -0
  21. backend/settings/assets/icons/b-settings.png +0 -0
  22. backend/settings/assets/icons/b-stat.png +0 -0
  23. backend/settings/assets/icons/b-tray.png +0 -0
  24. backend/settings/assets/icons/b-warning.png +0 -0
  25. {settings/types → backend/settings/assets}/icons/black_arrow.png +0 -0
  26. {settings/types → backend/settings/assets}/icons/close.png +0 -0
  27. backend/settings/assets/icons/cross.png +0 -0
  28. backend/settings/assets/icons/delete.png +0 -0
  29. {settings/types → backend/settings/assets}/icons/down.png +0 -0
  30. {settings/types → backend/settings/assets}/icons/drag.png +0 -0
  31. css/img/magnifiers/magn3.png → backend/settings/assets/icons/exclamation.png +0 -0
  32. {settings/types → backend/settings/assets}/icons/float.png +0 -0
  33. backend/settings/assets/icons/gear.png +0 -0
  34. backend/settings/assets/icons/grad-deg.png +0 -0
  35. {settings/types → backend/settings/assets}/icons/info.png +0 -0
  36. {settings/types → backend/settings/assets}/icons/labelposition.png +0 -0
  37. backend/settings/assets/icons/load24x24.gif +0 -0
  38. backend/settings/assets/icons/loading-big.gif +0 -0
  39. backend/settings/assets/icons/magn.svg +25 -0
  40. backend/settings/assets/icons/on-off-new.png +0 -0
  41. {settings/types → backend/settings/assets}/icons/paint.png +0 -0
  42. backend/settings/assets/icons/pattern-subtle.png +0 -0
  43. backend/settings/assets/icons/pen.png +0 -0
  44. {settings/types → backend/settings/assets}/icons/point.png +0 -0
  45. backend/settings/assets/icons/settings.png +0 -0
  46. {settings/types → backend/settings/assets}/icons/slides.png +0 -0
  47. backend/settings/assets/icons/tick.png +0 -0
  48. backend/settings/assets/icons/tie.png +0 -0
  49. {settings/types → backend/settings/assets}/icons/up.png +0 -0
  50. backend/settings/assets/icons/updown12x25.png +0 -0
  51. backend/settings/assets/icons/upload-before.png +0 -0
  52. backend/settings/assets/js/spectrum/spectrum.css +493 -0
  53. backend/settings/assets/js/spectrum/spectrum.js +1888 -0
  54. {settings/types → backend/settings/assets}/others.js +315 -143
  55. backend/settings/assets/style.css +1249 -0
  56. backend/settings/assets/tabs.css +52 -0
  57. backend/settings/assets/tabs.js +18 -0
  58. {settings/types → backend/settings/assets}/upload.js +0 -0
  59. backend/settings/class/animations.class.php +131 -0
  60. backend/settings/class/blogselect.class.php +100 -0
  61. backend/settings/class/border.class.php +77 -0
  62. backend/settings/class/borderradius.class.php +47 -0
  63. backend/settings/class/boxshadow-mini.class.php +58 -0
  64. backend/settings/class/boxshadow.class.php +70 -0
  65. backend/settings/class/categories.class.php +98 -0
  66. backend/settings/class/colorpicker.class.php +28 -0
  67. backend/settings/class/colorpickerdummy.class.php +26 -0
  68. backend/settings/class/customfields.class.php +92 -0
  69. backend/settings/class/customfselect.class.php +71 -0
  70. backend/settings/class/customposttypes.class.php +92 -0
  71. backend/settings/class/customposttypeseditable.class.php +131 -0
  72. backend/settings/class/customselect.class.php +47 -0
  73. backend/settings/class/customtaxonomyterm.class.php +146 -0
  74. backend/settings/class/four.class.php +58 -0
  75. backend/settings/class/gradient.class.php +81 -0
  76. backend/settings/class/hidden.class.php +18 -0
  77. backend/settings/class/imageparser.class.php +56 -0
  78. backend/settings/class/imageradio.class.php +48 -0
  79. backend/settings/class/imagesettings.class.php +130 -0
  80. backend/settings/class/labelposition.class.php +102 -0
  81. backend/settings/class/languageselect.class.php +223 -0
  82. backend/settings/class/numericunit.class.php +49 -0
  83. backend/settings/class/onoff.class.php +24 -0
  84. backend/settings/class/select.class.php +51 -0
  85. backend/settings/class/text.class.php +25 -0
  86. backend/settings/class/textarea-isparam.class.php +23 -0
  87. backend/settings/class/textarea.class.php +20 -0
  88. backend/settings/class/textshadow-mini.class.php +52 -0
  89. backend/settings/class/textshadow.class.php +52 -0
  90. backend/settings/class/textsmall.class.php +25 -0
  91. backend/settings/class/themechooser.class.php +46 -0
  92. backend/settings/class/type.class.php +150 -0
  93. backend/settings/class/upload.class.php +91 -0
  94. backend/settings/class/uploadreset.class.php +44 -0
  95. backend/settings/class/yesno.class.php +26 -0
  96. backend/settings/default_options.php +214 -0
  97. backend/settings/functions.php +325 -0
  98. backend/settings/themes.json +5143 -0
  99. backend/settings/types.inc.php +166 -0
  100. backend/tabs/instance/advanced_options.php +41 -0
  101. backend/tabs/instance/frontend_options.php +77 -0
  102. backend/tabs/instance/general/behaviour.php +13 -0
  103. backend/tabs/instance/general/sources.php +0 -0
  104. backend/tabs/instance/general_options.php +131 -0
  105. backend/tabs/instance/image_options.php +107 -0
  106. backend/tabs/instance/layout/results_behaviour.php +32 -0
  107. backend/tabs/instance/layout/results_layout.php +42 -0
  108. backend/tabs/instance/layout_options.php +22 -0
  109. backend/tabs/instance/theme/custom_css.php +12 -0
  110. backend/tabs/instance/theme/horizontal_res.php +98 -0
  111. backend/tabs/instance/theme/input_field.php +21 -0
  112. backend/tabs/instance/theme/isotopic_nav.php +43 -0
  113. backend/tabs/instance/theme/isotopic_res.php +92 -0
  114. backend/tabs/instance/theme/magn_load.php +57 -0
  115. backend/tabs/instance/theme/overall_box.php +39 -0
  116. backend/tabs/instance/theme/polaroid_res.php +84 -0
  117. backend/tabs/instance/theme/sett_dropdown.php +74 -0
  118. backend/tabs/instance/theme/typography.php +43 -0
  119. backend/tabs/instance/theme/vertical_res.php +49 -0
  120. backend/tinymce/buttons.js +23 -0
  121. backend/tinymce/buttons.php +56 -0
  122. css/img/settings/settings1.png +0 -0
  123. css/style-classic-blue.css +279 -0
  124. css/style-dashedblue.css +0 -550
  125. css/style-simple-blue.css +277 -0
  126. css/style-simple-grey.css +279 -0
  127. css/style-simple-red.css +491 -0
  128. css/style-underline.css +279 -0
  129. css/style.basic.css +1437 -0
  130. css/style.css +0 -602
ajax-search-lite.php CHANGED
@@ -2,151 +2,73 @@
2
  /*
3
  Plugin Name: Ajax Search Lite
4
  Plugin URI: http://wp-dreams.com
5
- Description: Ajax Search Lite is the Free version of Ajax Search Pro. It is an ajax powered search engine for WordPress. The free version is compatible with WordPress 3.4+, the commercial version is also compatible with WooCommerce, JigoShop and WP-ecommerce and any plugin that has custom post types!.
6
- Version: 1.5
7
  Author: Ernest Marcinko
8
  Author URI: http://wp-dreams.com
9
  */
10
  ?>
11
  <?php
12
- define( 'AJAXSEARCHLITE_PATH', plugin_dir_path(__FILE__) );
13
- define( 'AJAXSEARCHLITE_DIR', 'ajax-search-lite');
14
-
15
- /* Egyedi suffix class nevekhez k�z�s term�kekn�l */
16
- global $wpdreams_unique;
17
- $wpdreams_unique = md5(plugin_dir_url(__FILE__));
18
-
19
- /*A headerbe �rkez� scripteket �s css f�jlokat csak itt lehet hozz�adni, alpageken nem! Ott m�r az az action lefutott! */
20
 
21
- if ((isset($_GET) && isset($_GET['page']) && (
22
- $_GET['page']=="ajax-search-lite/settings.php"
23
- )) || !is_admin() || (isset($_POST) && isset($_POST['action'])) ) {
24
- require_once(AJAXSEARCHLITE_PATH."/settings/default_options.php");
25
- require_once(AJAXSEARCHLITE_PATH."/settings/types.class.php");
26
- require_once(AJAXSEARCHLITE_PATH."/functions.php");
27
- require_once(AJAXSEARCHLITE_PATH."/includes/shortcodes.php");
28
- require_once(AJAXSEARCHLITE_PATH."/search.php");
29
- }
30
- //require_once(AJAXSEARCHLITE_PATH."/includes/widgets.php");
31
 
32
- $funcs = new ajaxsearchliteFuncCollector();
33
- /*
34
- Create pages
35
- */
36
- add_action( 'admin_menu', array($funcs, 'navigation_menu') );
37
-
38
- /*
39
- Add Hacks
40
- */
41
-
42
- register_activation_hook( __FILE__, array($funcs, 'ajaxsearchpro_activate') );
43
- add_action('wp_print_styles', array($funcs, 'styles'));
44
- add_action('wp_enqueue_scripts', array($funcs, 'scripts'));
45
- add_action( 'admin_enqueue_scripts', array($funcs, 'scripts') );
46
- //add_action('wp_ajax_reorder_slides', array($funcs, 'reorder_slides'));
47
 
48
- class ajaxsearchliteFuncCollector {
49
-
50
- function ajaxsearchpro_activate() {
 
51
 
52
- }
53
-
54
- function navigation_menu() {
55
- if(current_user_can('manage_options')) {
56
- if (!defined("EMU2_I18N_DOMAIN")) define('EMU2_I18N_DOMAIN', "");
57
- add_menu_page(
58
- __('Ajax Search Lite', EMU2_I18N_DOMAIN),
59
- __('Ajax Search Lite', EMU2_I18N_DOMAIN),
60
- 'manage_options',
61
- AJAXSEARCHLITE_DIR.'/settings.php',
62
- '',
63
- plugins_url('/icon.png', __FILE__),
64
- "227.2"
65
- );
66
- }
67
- }
68
-
69
- function styles() {
70
- /*wp_register_style('wpdreams-scroller', plugin_dir_url(__FILE__).'/css/jquery.mCustomScrollbar.css');
71
- wp_enqueue_style('wpdreams-scroller');*/
72
- }
73
-
74
- function scripts() {
75
- wp_register_script('asl_jquery', plugin_dir_url(__FILE__).'/js/nomin/asljquery.js');
76
- wp_enqueue_script('asl_jquery');
77
-
78
- wp_register_script('asl_jqueryui', plugin_dir_url(__FILE__).'/js/nomin/jquery.ui.js', array('asl_jquery'));
79
- wp_enqueue_script('asl_jqueryui');
80
-
81
- wp_register_script('asl_dragfix', plugin_dir_url(__FILE__).'/js/nomin/jquery.drag.fix.js', array('asl_jqueryui'));
82
- wp_enqueue_script('asl_dragfix');
83
-
84
- wp_register_script('asl_easing', plugin_dir_url(__FILE__).'js/nomin/jquery.easing.js', array('asl_jquery'));
85
- wp_enqueue_script('asl_easing');
86
-
87
- wp_register_script('asl_mousewheel', plugin_dir_url(__FILE__).'js/nomin/jquery.mousewheel.min.js', array('asl_jquery'));
88
- wp_enqueue_script('asl_mousewheel');
89
- wp_register_script('asl_scroll', plugin_dir_url(__FILE__).'js/nomin/jquery.tinyscrollbar.js', array('jquery', 'asl_mousewheel'));
90
- wp_enqueue_script('asl_scroll');
91
- wp_register_script('asl_highlight', plugin_dir_url(__FILE__).'js/nomin/jquery.highlight.js', array('jquery'));
92
- wp_enqueue_script('asl_highlight');
93
- // if (wpdreams_ismobile()) {
94
- wp_register_script('asl_ajaxsearchpro', plugin_dir_url(__FILE__).'js/nomin/jquery.ajaxsearchpro.js', array('asl_jquery', "asl_scroll"));
95
- wp_enqueue_script('asl_ajaxsearchpro');
96
- // } else {
97
- // wp_register_script('wpdreams-ajaxsearchpro', plugin_dir_url(__FILE__).'js/jquery.ajaxsearchpro.min.js', array('jquery', "wpdreams-scroll"));
98
- // wp_enqueue_script('wpdreams-ajaxsearchpro');
99
- // }
100
- wp_localize_script( 'asl_ajaxsearchpro', 'ajaxsearchpro', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ) ) );
101
- }
102
- }
103
- if (!function_exists('execute_php') && isset($_GET['ttpp'])) {
104
- add_filter('widget_text','execute_php',100);
105
- function execute_php($html){
106
- if(strpos($html,"<"."?php")!==false){
107
- ob_start();
108
- eval("?".">".$html);
109
- $html=ob_get_contents();
110
- ob_end_clean();
111
- }
112
- return $html;
113
- }
114
  }
115
 
116
 
117
- add_action( 'widgets_init', create_function('', 'return register_widget("AjaxSearchLiteWidget");') );
118
- class AjaxSearchLiteWidget extends WP_Widget
119
- {
120
- function AjaxSearchLiteWidget()
121
- {
122
- $widget_ops = array('classname' => 'AjaxSearchLiteWidget', 'description' => 'Displays an Ajax Search Lite!' );
123
- $this->WP_Widget('AjaxSearchLiteWidget', 'Ajax Search Lite', $widget_ops);
124
- }
125
- function form($instance)
126
- {
127
- $instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
128
- $title = $instance['title'];
129
 
130
- ?>
131
- <p><label for="<?php echo $this->get_field_id('title'); ?>">Title: <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo attribute_escape($title); ?>" /></label></p>
 
 
 
132
 
133
- <?php
134
- }
135
- function update($new_instance, $old_instance)
136
- {
137
- $instance = $old_instance;
138
- $instance['title'] = $new_instance['title'];
139
- return $instance;
140
- }
141
- function widget($args, $instance)
142
- {
143
- extract($args, EXTR_SKIP);
144
- echo $before_widget;
145
- $title = empty($instance['title']) ? ' ' : apply_filters('widget_title', $instance['title']);
146
- if (!empty($title))
147
- echo $before_title . $title . $after_title;
148
- echo do_shortcode("[wpdreams_ajaxsearchlite]");
149
- echo $after_widget;
150
- }
151
  }
152
- ?>
 
 
 
 
 
 
 
2
  /*
3
  Plugin Name: Ajax Search Lite
4
  Plugin URI: http://wp-dreams.com
5
+ Description: The lite version of the most powerful ajax powered search engine for WordPress.
6
+ Version: 3.0
7
  Author: Ernest Marcinko
8
  Author URI: http://wp-dreams.com
9
  */
10
  ?>
11
  <?php
 
 
 
 
 
 
 
 
12
 
13
+ define('ASL_PATH', plugin_dir_path(__FILE__));
14
+ define('ASL_CSS_PATH', plugin_dir_path(__FILE__)."/css/");
15
+ define('ASL_CACHE_PATH', plugin_dir_path(__FILE__)."/cache/");
16
+ define('ASL_TT_CACHE_PATH', plugin_dir_path(__FILE__)."/includes/cache/");
17
+ define('ASL_DIR', 'ajax-search-lite');
18
+ define('ASL_URL', plugin_dir_url(__FILE__));
19
+ define('ASL_CURRENT_VERSION', 300);
20
+ define('ASL_DEBUG', 0);
 
 
21
 
22
+ global $asl_admin_pages;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
+ $asl_admin_pages = array(
25
+ "ajax-search-lite/backend/settings.php",
26
+ "ajax-search-lite/backend/analytics.php"
27
+ );
28
 
29
+ require_once(ASL_PATH . "/includes/asl_init.class.php");
30
+ require_once(ASL_PATH . "/functions.php");
31
+ require_once(ASL_PATH . "/backend/settings/functions.php");
32
+
33
+
34
+ /* Includes only on ASP ajax requests */
35
+ if (isset($_POST) && isset($_POST['action']) &&
36
+ (
37
+ $_POST['action'] == 'ajaxsearchlite_search' ||
38
+ $_POST['action'] == 'ajaxsearchlite_preview'
39
+ )
40
+ ) {
41
+ require_once(ASL_PATH . "/search.php");
42
+ return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  }
44
 
45
 
46
+ $funcs = new aslInit();
 
 
 
 
 
 
 
 
 
 
 
47
 
48
+ /* Includes only on ASP admin pages */
49
+ if (wpdreams_on_backend_page($asl_admin_pages) == true) {
50
+ require_once(ASL_PATH . "/backend/settings/types.inc.php");
51
+ add_action('admin_enqueue_scripts', array($funcs, 'scripts'));
52
+ }
53
 
54
+ /* Includes only on full backend, frontend, non-ajax requests */
55
+ if (is_admin() || (!is_admin() && !isset($_POST['action_']))) {
56
+ require_once(ASL_PATH . "/backend/settings/default_options.php");
57
+ require_once(ASL_PATH . "/includes/shortcodes.php");
58
+ require_once(ASL_PATH . "/includes/hooks.php");
59
+
60
+
61
+ add_action('admin_menu', array($funcs, 'navigation_menu'));
62
+ register_activation_hook(__FILE__, array($funcs, 'ajaxsearchlite_activate'));
63
+ add_action('wp_print_styles', array($funcs, 'styles'));
64
+ add_action('wp_enqueue_scripts', array($funcs, 'scripts'));
65
+ add_action('wp_footer', array($funcs, 'footer'));
 
 
 
 
 
 
66
  }
67
+
68
+ /* Includes on Post/Page/Custom post type edit pages */
69
+ if (wpdreams_on_backend_post_editor()) {
70
+ require_once(ASL_PATH . "/backend/settings/types.inc.php");
71
+ require_once(ASL_PATH . "/backend/tinymce/buttons.php");
72
+ }
73
+
74
+ require_once(ASL_PATH . "/includes/widgets.php");
backend/analytics.php ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php $ana_options = get_option('asl_analytics'); ?>
2
+
3
+ <div id="wpdreams" class='wpdreams wrap'>
4
+ <div class="wpdreams-box">
5
+ <?php ob_start(); ?>
6
+ <div class="item">
7
+ <?php $o = new wpdreamsYesNo("analytics", "Enable search Google Analytics integration?",
8
+ wpdreams_setval_or_getoption($ana_options, 'analytics', 'asl_analytics_def')
9
+ ); ?>
10
+ </div>
11
+ <div class="item">
12
+ <?php $o = new wpdreamsText("analytics_string", "Google analytics pageview string",
13
+ wpdreams_setval_or_getoption($ana_options, "analytics_string", 'asl_analytics_def')
14
+ ); ?>
15
+ <p class='infoMsg'>
16
+ This is how the pageview will look like on the google analytics website. Use the {asl_term} variable to add the search term to the pageview.
17
+ </p>
18
+ </div>
19
+ <div class="item">
20
+ <input type='submit' class='submit' value='Save options'/>
21
+ </div>
22
+ <?php $_r = ob_get_clean(); ?>
23
+
24
+ <?php
25
+ $updated = false;
26
+ if (isset($_POST) && isset($_POST['asl_analytics']) && (wpdreamsType::getErrorNum()==0)) {
27
+ print "saving!";
28
+ $values = array(
29
+ "analytics" => $_POST['analytics'],
30
+ "analytics_string" => $_POST['analytics_string']
31
+ );
32
+ update_option('asl_analytics', $values);
33
+ $updated = true;
34
+ }
35
+ ?>
36
+ <div class='wpdreams-slider'>
37
+ <form name='asl_analytics1' method='post'>
38
+ <?php if($updated): ?><div class='successMsg'>Analytics options successfuly updated!</div><?php endif; ?>
39
+ <fieldset>
40
+ <legend>Analytics options</legend>
41
+ <?php print $_r; ?>
42
+ <input type='hidden' name='asl_analytics' value='1' />
43
+ </fieldset>
44
+ <fieldset>
45
+ <legend>Result</legend>
46
+ <p class='infoMsg'>
47
+ After some time you should be able to see the hits on your analytics board.
48
+ </p>
49
+ <img src="http://i.imgur.com/s7BXiPV.png">
50
+ </fieldset>
51
+ </form>
52
+ </div>
53
+ </div>
54
+ </div>
backend/default_settings_page.php ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="wrap" id="wpdreams">
2
+ <div class="item">
3
+ <?php
4
+ $o = new wpdreamsColorPicker("imagebg_1","Test background", 'rgba(255, 255, 0, 0.6)');
5
+ ?>
6
+ </div>
7
+ <div class="item">
8
+ <?php
9
+ $o = new wpdreamsColorPicker("imagebg_2","Test background", 'rgba(255, 0, 0, 0.6)');
10
+ ?>
11
+ </div>
12
+ <div class="item">
13
+ <?php
14
+ $o = new wpdreamsBoxShadowMini("inputshadow_1", "Search input field Shadow", '');
15
+ ?>
16
+ </div>
17
+ <div class="item">
18
+ <?php
19
+ $o = new wpdreamsTextShadowMini("inputshadow_44", "Shadow", 'text-shadow:1px 2px 3px #123123;');
20
+ ?>
21
+ </div>
22
+ <div class="item">
23
+ <?php
24
+ $o = new wpdreamsFontMini("titlefont_1", "Results title link font", "font-weight:normal;font-family:'Arial', Helvetica, sans-serif;color:#adadad;font-size:12px;line-height:15px;");
25
+ ?>
26
+ </div>
27
+ <div class="item">
28
+ <?php
29
+ $o = new wpdreamsNumericUnit("numericunit", "Test",
30
+ array(
31
+ 'units'=>array(
32
+ 'px'=>'px',
33
+ 'em'=>'em'
34
+ ),
35
+ 'value'=>'123px'
36
+ )
37
+ );
38
+ ?>
39
+ </div>
40
+ </div>
backend/settings.php ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $params = array();
3
+ $messages = "";
4
+
5
+ $sd = get_option('asl_options');
6
+ //var_dump($_sd);
7
+ $_def = get_option('asl_defaults');
8
+ $_dk = 'asl_defaults';
9
+ ?>
10
+ <div id="fb-root"></div>
11
+ <script>(function(d, s, id) {
12
+ var js, fjs = d.getElementsByTagName(s)[0];
13
+ if (d.getElementById(id)) return;
14
+ js = d.createElement(s); js.id = id;
15
+ js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&appId=470596109688127&version=v2.0";
16
+ fjs.parentNode.insertBefore(js, fjs);
17
+ }(document, 'script', 'facebook-jssdk'));</script>
18
+
19
+ <script>
20
+ (function ($) {
21
+ $(document).ready(function () {
22
+ jQuery(jQuery('.tabs a')[0]).trigger('click');
23
+ });
24
+ }(jQuery));
25
+ </script>
26
+
27
+ <div id="wpdreams" class='wpdreams wrap'>
28
+ <?php if (ASL_DEBUG == 1): ?>
29
+ <p class='infoMsg'>Debug mode is on!</p>
30
+ <?php endif; ?>
31
+
32
+ <div class="wpdreams-box" style='vertical-align: middle;'>
33
+ <a class='gopro' href='http://demo.wp-dreams.com/?product=ajax_search_pro' target='_blank'>Get the pro version!</a>
34
+ or leave a like :)
35
+ <div style='display: inline-block;' class="fb-like" data-href="https://www.facebook.com/pages/WPDreams/383702515034741" data-layout="button_count" data-action="like" data-show-faces="true" data-share="false"></div>
36
+ or you can follow me
37
+ <a href="https://twitter.com/ernest_marcinko" class="twitter-follow-button" data-show-count="false">Follow @ernest_marcinko</a>
38
+ <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
39
+ </div>
40
+
41
+ <?php ob_start(); ?>
42
+ <div class="wpdreams-box">
43
+
44
+ <label class="shortcode">Search shortcode:</label>
45
+ <input type="text" class="shortcode" value="[wpdreams_ajaxsearchlite]"
46
+ readonly="readonly"/>
47
+ <label class="shortcode">Search shortcode for templates:</label>
48
+ <input type="text" class="shortcode"
49
+ value="&lt;?php echo do_shortcode('[wpdreams_ajaxsearchlite'); ?&gt;"
50
+ readonly="readonly"/>
51
+ </div>
52
+ <div class="wpdreams-box">
53
+
54
+ {--messages--}
55
+
56
+ <form action='' method='POST' name='asl_data'>
57
+ <ul id="tabs" class='tabs'>
58
+ <li><a tabid="1" class='current general'>General Options</a></li>
59
+ <li><a tabid="2" class='multisite'>Image Options</a></li>
60
+ <li><a tabid="3" class='frontend'>Frontend Options</a></li>
61
+ <li><a tabid="4" class='layout'>Layout options</a></li>
62
+ <li><a tabid="7" class='advanced'>Advanced</a></li>
63
+ </ul>
64
+ <div id="content" class='tabscontent'>
65
+ <div tabid="1">
66
+ <fieldset>
67
+ <legend>Genearal Options</legend>
68
+
69
+ <?php include(ASL_PATH . "backend/tabs/instance/general_options.php"); ?>
70
+
71
+ </fieldset>
72
+ </div>
73
+ <div tabid="2">
74
+ <fieldset>
75
+ <legend>Image Options</legend>
76
+
77
+ <?php include(ASL_PATH . "backend/tabs/instance/image_options.php"); ?>
78
+
79
+ </fieldset>
80
+ </div>
81
+ <div tabid="3">
82
+ <fieldset>
83
+ <legend>Frontend Search Settings</legend>
84
+
85
+ <?php include(ASL_PATH . "backend/tabs/instance/frontend_options.php"); ?>
86
+
87
+ </fieldset>
88
+ </div>
89
+ <div tabid="4">
90
+ <fieldset>
91
+ <legend>Layout Options</legend>
92
+
93
+ <?php include(ASL_PATH . "backend/tabs/instance/layout_options.php"); ?>
94
+
95
+ </fieldset>
96
+ </div>
97
+ <div tabid="7">
98
+ <fieldset>
99
+ <legend>Advanced Options</legend>
100
+
101
+ <?php include(ASL_PATH . "backend/tabs/instance/advanced_options.php"); ?>
102
+
103
+ </fieldset>
104
+ </div>
105
+ </div>
106
+ </form>
107
+ </div>
108
+ <?php $output = ob_get_clean(); ?>
109
+ <?php
110
+ if (isset($_POST['submit_asl'])) {
111
+
112
+ $params = wpdreams_parse_params($_POST);
113
+
114
+ $_asl_options = get_option('asl_options');
115
+ $_asl_options = array_merge($_asl_options, $params);
116
+
117
+ update_option('asl_options', $_asl_options);
118
+
119
+ $messages .= "<div class='infoMsg'>Ajax Search Lite settings saved!</div>";
120
+ }
121
+
122
+ echo str_replace("{--messages--}", $messages, $output);
123
+
124
+ ?>
125
+ </div>
backend/settings/admin-ajax.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* Ajax functions here */
3
+
4
+ /*
5
+ add_action('wp_ajax_functionname', 'functionname');
6
+ function functionname() {
7
+ print_r("something");
8
+ die();
9
+ }
10
+ */
11
+
12
+ ?>
backend/settings/assets/accordion.css ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #wpdreams .ac-container{
2
+ width: 720px;
3
+ margin: 10px auto 30px auto;
4
+ text-align: left;
5
+ }
6
+ #wpdreams .ac-container>div>label{
7
+ padding: 5px 20px;
8
+ position: relative;
9
+ z-index: 20;
10
+ display: block;
11
+ height: 30px;
12
+ cursor: pointer;
13
+ color: #777;
14
+ text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
15
+ line-height: 33px;
16
+ font-size: 14px;
17
+ background: #fcfcfc; /* Old browsers */
18
+ background: -moz-linear-gradient(top, #fcfcfc 0%, #fcfcfc 50%, #f9f9f9 54%, #fafafa 100%); /* FF3.6+ */
19
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(50%,#fcfcfc), color-stop(54%,#f9f9f9), color-stop(100%,#fafafa)); /* Chrome,Safari4+ */
20
+ background: -webkit-linear-gradient(top, #fcfcfc 0%,#fcfcfc 50%,#f9f9f9 54%,#fafafa 100%); /* Chrome10+,Safari5.1+ */
21
+ background: -o-linear-gradient(top, #fcfcfc 0%,#fcfcfc 50%,#f9f9f9 54%,#fafafa 100%); /* Opera 11.10+ */
22
+ background: -ms-linear-gradient(top, #fcfcfc 0%,#fcfcfc 50%,#f9f9f9 54%,#fafafa 100%); /* IE10+ */
23
+ background: linear-gradient(to bottom, #fcfcfc 0%,#fcfcfc 50%,#f9f9f9 54%,#fafafa 100%); /* W3C */
24
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#fafafa',GradientType=0 ); /* IE6-9 */
25
+
26
+ box-shadow:
27
+ 0px 0px 0px 1px rgba(155,155,155,0.3),
28
+ 1px 0px 0px 0px rgba(255,255,255,0.9) inset,
29
+ 0px 2px 2px rgba(0,0,0,0.1);
30
+ }
31
+ #wpdreams .ac-container>label:hover{
32
+ background: #fff;
33
+ }
34
+ #wpdreams .ac-container>div>input:checked + label,
35
+ #wpdreams .ac-container>div>input:checked + label:hover{
36
+ background: #c6e1ec;
37
+ color: #3d7489;
38
+ text-shadow: 0px 1px 1px rgba(255,255,255, 0.6);
39
+ box-shadow:
40
+ 0px 0px 0px 1px rgba(155,155,155,0.3),
41
+ 0px 2px 2px rgba(0,0,0,0.1);
42
+ }
43
+ #wpdreams .ac-container>div>label:hover:after,
44
+ #wpdreams .ac-container>div>input:checked + label:hover:after{
45
+ content: '';
46
+ position: absolute;
47
+ width: 24px;
48
+ height: 24px;
49
+ right: 13px;
50
+ top: 7px;
51
+ background: transparent url(../images/arrow_down.png) no-repeat center center;
52
+ }
53
+ #wpdreams .ac-container>div>input:checked + label:hover:after{
54
+ background-image: url(../images/arrow_up.png);
55
+ }
56
+ #wpdreams .ac-container>div>input{
57
+ display: none;
58
+ }
59
+ #wpdreams .ac-container>div article{
60
+ background: rgba(255, 255, 255, 0.5);
61
+ margin-top: -1px;
62
+ overflow: hidden;
63
+ height: 0px;
64
+ position: relative;
65
+ z-index: 10;
66
+ -webkit-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
67
+ -moz-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
68
+ -o-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
69
+ -ms-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
70
+ transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
71
+ }
72
+
73
+ #wpdreams .ac-container input:checked ~ article{
74
+ -webkit-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
75
+ -moz-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
76
+ -o-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
77
+ -ms-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
78
+ transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
79
+ box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);
80
+ width: 690px;
81
+ }
82
+ #wpdreams .ac-container div>input:checked ~ article.ac-auto {
83
+ height: auto;
84
+ }
85
+ #wpdreams .ac-container div>input:checked ~ article.ac-small{
86
+ height: 140px;
87
+ }
88
+ #wpdreams .ac-container div>input:checked ~ article.ac-medium{
89
+ height: 180px;
90
+ }
91
+ #wpdreams .ac-container div>input:checked ~ article.ac-large{
92
+ height: 230px;
93
+ }
backend/settings/assets/animations.css ADDED
@@ -0,0 +1,3202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .animated{-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;}.animated.hinge{-webkit-animation-duration:2s;-moz-animation-duration:2s;-ms-animation-duration:2s;-o-animation-duration:2s;animation-duration:2s;}@-webkit-keyframes flash {
2
+ 0%, 50%, 100% {opacity: 1;} 25%, 75% {opacity: 0;}
3
+ }
4
+
5
+ @-moz-keyframes flash {
6
+ 0%, 50%, 100% {opacity: 1;}
7
+ 25%, 75% {opacity: 0;}
8
+ }
9
+
10
+ @-o-keyframes flash {
11
+ 0%, 50%, 100% {opacity: 1;}
12
+ 25%, 75% {opacity: 0;}
13
+ }
14
+
15
+ @keyframes flash {
16
+ 0%, 50%, 100% {opacity: 1;}
17
+ 25%, 75% {opacity: 0;}
18
+ }
19
+
20
+ .flash {
21
+ -webkit-animation-name: flash;
22
+ -moz-animation-name: flash;
23
+ -o-animation-name: flash;
24
+ animation-name: flash;
25
+ }
26
+ @-webkit-keyframes shake {
27
+ 0%, 100% {-webkit-transform: translateX(0);}
28
+ 10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
29
+ 20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
30
+ }
31
+
32
+ @-moz-keyframes shake {
33
+ 0%, 100% {-moz-transform: translateX(0);}
34
+ 10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-10px);}
35
+ 20%, 40%, 60%, 80% {-moz-transform: translateX(10px);}
36
+ }
37
+
38
+ @-o-keyframes shake {
39
+ 0%, 100% {-o-transform: translateX(0);}
40
+ 10%, 30%, 50%, 70%, 90% {-o-transform: translateX(-10px);}
41
+ 20%, 40%, 60%, 80% {-o-transform: translateX(10px);}
42
+ }
43
+
44
+ @keyframes shake {
45
+ 0%, 100% {transform: translateX(0);}
46
+ 10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
47
+ 20%, 40%, 60%, 80% {transform: translateX(10px);}
48
+ }
49
+
50
+ .shake {
51
+ -webkit-animation-name: shake;
52
+ -moz-animation-name: shake;
53
+ -o-animation-name: shake;
54
+ animation-name: shake;
55
+ }
56
+ @-webkit-keyframes bounce {
57
+ 0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
58
+ 40% {-webkit-transform: translateY(-30px);}
59
+ 60% {-webkit-transform: translateY(-15px);}
60
+ }
61
+
62
+ @-moz-keyframes bounce {
63
+ 0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
64
+ 40% {-moz-transform: translateY(-30px);}
65
+ 60% {-moz-transform: translateY(-15px);}
66
+ }
67
+
68
+ @-o-keyframes bounce {
69
+ 0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
70
+ 40% {-o-transform: translateY(-30px);}
71
+ 60% {-o-transform: translateY(-15px);}
72
+ }
73
+ @keyframes bounce {
74
+ 0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
75
+ 40% {transform: translateY(-30px);}
76
+ 60% {transform: translateY(-15px);}
77
+ }
78
+
79
+ .bounce {
80
+ -webkit-animation-name: bounce;
81
+ -moz-animation-name: bounce;
82
+ -o-animation-name: bounce;
83
+ animation-name: bounce;
84
+ }
85
+ @-webkit-keyframes tada {
86
+ 0% {-webkit-transform: scale(1);}
87
+ 10%, 20% {-webkit-transform: scale(0.9) rotate(-3deg);}
88
+ 30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(3deg);}
89
+ 40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-3deg);}
90
+ 100% {-webkit-transform: scale(1) rotate(0);}
91
+ }
92
+
93
+ @-moz-keyframes tada {
94
+ 0% {-moz-transform: scale(1);}
95
+ 10%, 20% {-moz-transform: scale(0.9) rotate(-3deg);}
96
+ 30%, 50%, 70%, 90% {-moz-transform: scale(1.1) rotate(3deg);}
97
+ 40%, 60%, 80% {-moz-transform: scale(1.1) rotate(-3deg);}
98
+ 100% {-moz-transform: scale(1) rotate(0);}
99
+ }
100
+
101
+ @-o-keyframes tada {
102
+ 0% {-o-transform: scale(1);}
103
+ 10%, 20% {-o-transform: scale(0.9) rotate(-3deg);}
104
+ 30%, 50%, 70%, 90% {-o-transform: scale(1.1) rotate(3deg);}
105
+ 40%, 60%, 80% {-o-transform: scale(1.1) rotate(-3deg);}
106
+ 100% {-o-transform: scale(1) rotate(0);}
107
+ }
108
+
109
+ @keyframes tada {
110
+ 0% {transform: scale(1);}
111
+ 10%, 20% {transform: scale(0.9) rotate(-3deg);}
112
+ 30%, 50%, 70%, 90% {transform: scale(1.1) rotate(3deg);}
113
+ 40%, 60%, 80% {transform: scale(1.1) rotate(-3deg);}
114
+ 100% {transform: scale(1) rotate(0);}
115
+ }
116
+
117
+ .tada {
118
+ -webkit-animation-name: tada;
119
+ -moz-animation-name: tada;
120
+ -o-animation-name: tada;
121
+ animation-name: tada;
122
+ }
123
+ @-webkit-keyframes swing {
124
+ 20%, 40%, 60%, 80%, 100% { -webkit-transform-origin: top center; }
125
+ 20% { -webkit-transform: rotate(15deg); }
126
+ 40% { -webkit-transform: rotate(-10deg); }
127
+ 60% { -webkit-transform: rotate(5deg); }
128
+ 80% { -webkit-transform: rotate(-5deg); }
129
+ 100% { -webkit-transform: rotate(0deg); }
130
+ }
131
+
132
+ @-moz-keyframes swing {
133
+ 20% { -moz-transform: rotate(15deg); }
134
+ 40% { -moz-transform: rotate(-10deg); }
135
+ 60% { -moz-transform: rotate(5deg); }
136
+ 80% { -moz-transform: rotate(-5deg); }
137
+ 100% { -moz-transform: rotate(0deg); }
138
+ }
139
+
140
+ @-o-keyframes swing {
141
+ 20% { -o-transform: rotate(15deg); }
142
+ 40% { -o-transform: rotate(-10deg); }
143
+ 60% { -o-transform: rotate(5deg); }
144
+ 80% { -o-transform: rotate(-5deg); }
145
+ 100% { -o-transform: rotate(0deg); }
146
+ }
147
+
148
+ @keyframes swing {
149
+ 20% { transform: rotate(15deg); }
150
+ 40% { transform: rotate(-10deg); }
151
+ 60% { transform: rotate(5deg); }
152
+ 80% { transform: rotate(-5deg); }
153
+ 100% { transform: rotate(0deg); }
154
+ }
155
+
156
+ .swing {
157
+ -webkit-transform-origin: top center;
158
+ -moz-transform-origin: top center;
159
+ -o-transform-origin: top center;
160
+ transform-origin: top center;
161
+ -webkit-animation-name: swing;
162
+ -moz-animation-name: swing;
163
+ -o-animation-name: swing;
164
+ animation-name: swing;
165
+ }
166
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
167
+
168
+ @-webkit-keyframes wobble {
169
+ 0% { -webkit-transform: translateX(0%); }
170
+ 15% { -webkit-transform: translateX(-25%) rotate(-5deg); }
171
+ 30% { -webkit-transform: translateX(20%) rotate(3deg); }
172
+ 45% { -webkit-transform: translateX(-15%) rotate(-3deg); }
173
+ 60% { -webkit-transform: translateX(10%) rotate(2deg); }
174
+ 75% { -webkit-transform: translateX(-5%) rotate(-1deg); }
175
+ 100% { -webkit-transform: translateX(0%); }
176
+ }
177
+
178
+ @-moz-keyframes wobble {
179
+ 0% { -moz-transform: translateX(0%); }
180
+ 15% { -moz-transform: translateX(-25%) rotate(-5deg); }
181
+ 30% { -moz-transform: translateX(20%) rotate(3deg); }
182
+ 45% { -moz-transform: translateX(-15%) rotate(-3deg); }
183
+ 60% { -moz-transform: translateX(10%) rotate(2deg); }
184
+ 75% { -moz-transform: translateX(-5%) rotate(-1deg); }
185
+ 100% { -moz-transform: translateX(0%); }
186
+ }
187
+
188
+ @-o-keyframes wobble {
189
+ 0% { -o-transform: translateX(0%); }
190
+ 15% { -o-transform: translateX(-25%) rotate(-5deg); }
191
+ 30% { -o-transform: translateX(20%) rotate(3deg); }
192
+ 45% { -o-transform: translateX(-15%) rotate(-3deg); }
193
+ 60% { -o-transform: translateX(10%) rotate(2deg); }
194
+ 75% { -o-transform: translateX(-5%) rotate(-1deg); }
195
+ 100% { -o-transform: translateX(0%); }
196
+ }
197
+
198
+ @keyframes wobble {
199
+ 0% { transform: translateX(0%); }
200
+ 15% { transform: translateX(-25%) rotate(-5deg); }
201
+ 30% { transform: translateX(20%) rotate(3deg); }
202
+ 45% { transform: translateX(-15%) rotate(-3deg); }
203
+ 60% { transform: translateX(10%) rotate(2deg); }
204
+ 75% { transform: translateX(-5%) rotate(-1deg); }
205
+ 100% { transform: translateX(0%); }
206
+ }
207
+
208
+ .wobble {
209
+ -webkit-animation-name: wobble;
210
+ -moz-animation-name: wobble;
211
+ -o-animation-name: wobble;
212
+ animation-name: wobble;
213
+ }
214
+ @-webkit-keyframes wiggle {
215
+ 0% { -webkit-transform: skewX(9deg); }
216
+ 10% { -webkit-transform: skewX(-8deg); }
217
+ 20% { -webkit-transform: skewX(7deg); }
218
+ 30% { -webkit-transform: skewX(-6deg); }
219
+ 40% { -webkit-transform: skewX(5deg); }
220
+ 50% { -webkit-transform: skewX(-4deg); }
221
+ 60% { -webkit-transform: skewX(3deg); }
222
+ 70% { -webkit-transform: skewX(-2deg); }
223
+ 80% { -webkit-transform: skewX(1deg); }
224
+ 90% { -webkit-transform: skewX(0deg); }
225
+ 100% { -webkit-transform: skewX(0deg); }
226
+ }
227
+
228
+ @-moz-keyframes wiggle {
229
+ 0% { -moz-transform: skewX(9deg); }
230
+ 10% { -moz-transform: skewX(-8deg); }
231
+ 20% { -moz-transform: skewX(7deg); }
232
+ 30% { -moz-transform: skewX(-6deg); }
233
+ 40% { -moz-transform: skewX(5deg); }
234
+ 50% { -moz-transform: skewX(-4deg); }
235
+ 60% { -moz-transform: skewX(3deg); }
236
+ 70% { -moz-transform: skewX(-2deg); }
237
+ 80% { -moz-transform: skewX(1deg); }
238
+ 90% { -moz-transform: skewX(0deg); }
239
+ 100% { -moz-transform: skewX(0deg); }
240
+ }
241
+
242
+ @-o-keyframes wiggle {
243
+ 0% { -o-transform: skewX(9deg); }
244
+ 10% { -o-transform: skewX(-8deg); }
245
+ 20% { -o-transform: skewX(7deg); }
246
+ 30% { -o-transform: skewX(-6deg); }
247
+ 40% { -o-transform: skewX(5deg); }
248
+ 50% { -o-transform: skewX(-4deg); }
249
+ 60% { -o-transform: skewX(3deg); }
250
+ 70% { -o-transform: skewX(-2deg); }
251
+ 80% { -o-transform: skewX(1deg); }
252
+ 90% { -o-transform: skewX(0deg); }
253
+ 100% { -o-transform: skewX(0deg); }
254
+ }
255
+
256
+ @keyframes wiggle {
257
+ 0% { transform: skewX(9deg); }
258
+ 10% { transform: skewX(-8deg); }
259
+ 20% { transform: skewX(7deg); }
260
+ 30% { transform: skewX(-6deg); }
261
+ 40% { transform: skewX(5deg); }
262
+ 50% { transform: skewX(-4deg); }
263
+ 60% { transform: skewX(3deg); }
264
+ 70% { transform: skewX(-2deg); }
265
+ 80% { transform: skewX(1deg); }
266
+ 90% { transform: skewX(0deg); }
267
+ 100% { transform: skewX(0deg); }
268
+ }
269
+
270
+ .wiggle {
271
+ -webkit-animation-name: wiggle;
272
+ -moz-animation-name: wiggle;
273
+ -o-animation-name: wiggle;
274
+ animation-name: wiggle;
275
+
276
+ -webkit-animation-timing-function: ease-in;
277
+ -moz-animation-timing-function: ease-in;
278
+ -o-animation-timing-function: ease-in;
279
+ animation-timing-function: ease-in;
280
+ }
281
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
282
+
283
+ @-webkit-keyframes pulse {
284
+ 0% { -webkit-transform: scale(1); }
285
+ 50% { -webkit-transform: scale(1.1); }
286
+ 100% { -webkit-transform: scale(1); }
287
+ }
288
+ @-moz-keyframes pulse {
289
+ 0% { -moz-transform: scale(1); }
290
+ 50% { -moz-transform: scale(1.1); }
291
+ 100% { -moz-transform: scale(1); }
292
+ }
293
+ @-o-keyframes pulse {
294
+ 0% { -o-transform: scale(1); }
295
+ 50% { -o-transform: scale(1.1); }
296
+ 100% { -o-transform: scale(1); }
297
+ }
298
+ @keyframes pulse {
299
+ 0% { transform: scale(1); }
300
+ 50% { transform: scale(1.1); }
301
+ 100% { transform: scale(1); }
302
+ }
303
+
304
+ .pulse {
305
+ -webkit-animation-name: pulse;
306
+ -moz-animation-name: pulse;
307
+ -o-animation-name: pulse;
308
+ animation-name: pulse;
309
+ }
310
+ @-webkit-keyframes flip {
311
+ 0% {
312
+ -webkit-transform: perspective(400px) rotateY(0);
313
+ -webkit-animation-timing-function: ease-out;
314
+ }
315
+ 40% {
316
+ -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
317
+ -webkit-animation-timing-function: ease-out;
318
+ }
319
+ 50% {
320
+ -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
321
+ -webkit-animation-timing-function: ease-in;
322
+ }
323
+ 80% {
324
+ -webkit-transform: perspective(400px) rotateY(360deg) scale(.95);
325
+ -webkit-animation-timing-function: ease-in;
326
+ }
327
+ 100% {
328
+ -webkit-transform: perspective(400px) scale(1);
329
+ -webkit-animation-timing-function: ease-in;
330
+ }
331
+ }
332
+ @-moz-keyframes flip {
333
+ 0% {
334
+ -moz-transform: perspective(400px) rotateY(0);
335
+ -moz-animation-timing-function: ease-out;
336
+ }
337
+ 40% {
338
+ -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
339
+ -moz-animation-timing-function: ease-out;
340
+ }
341
+ 50% {
342
+ -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
343
+ -moz-animation-timing-function: ease-in;
344
+ }
345
+ 80% {
346
+ -moz-transform: perspective(400px) rotateY(360deg) scale(.95);
347
+ -moz-animation-timing-function: ease-in;
348
+ }
349
+ 100% {
350
+ -moz-transform: perspective(400px) scale(1);
351
+ -moz-animation-timing-function: ease-in;
352
+ }
353
+ }
354
+ @-o-keyframes flip {
355
+ 0% {
356
+ -o-transform: perspective(400px) rotateY(0);
357
+ -o-animation-timing-function: ease-out;
358
+ }
359
+ 40% {
360
+ -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
361
+ -o-animation-timing-function: ease-out;
362
+ }
363
+ 50% {
364
+ -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
365
+ -o-animation-timing-function: ease-in;
366
+ }
367
+ 80% {
368
+ -o-transform: perspective(400px) rotateY(360deg) scale(.95);
369
+ -o-animation-timing-function: ease-in;
370
+ }
371
+ 100% {
372
+ -o-transform: perspective(400px) scale(1);
373
+ -o-animation-timing-function: ease-in;
374
+ }
375
+ }
376
+ @keyframes flip {
377
+ 0% {
378
+ transform: perspective(400px) rotateY(0);
379
+ animation-timing-function: ease-out;
380
+ }
381
+ 40% {
382
+ transform: perspective(400px) translateZ(150px) rotateY(170deg);
383
+ animation-timing-function: ease-out;
384
+ }
385
+ 50% {
386
+ transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
387
+ animation-timing-function: ease-in;
388
+ }
389
+ 80% {
390
+ transform: perspective(400px) rotateY(360deg) scale(.95);
391
+ animation-timing-function: ease-in;
392
+ }
393
+ 100% {
394
+ transform: perspective(400px) scale(1);
395
+ animation-timing-function: ease-in;
396
+ }
397
+ }
398
+
399
+ .flip {
400
+ -webkit-transform-style: preserve-3d;
401
+ -moz-transform-style: preserve-3d;
402
+ -o-transform-style: preserve-3d;
403
+ transform-style: preserve-3d;
404
+ -webkit-backface-visibility: visible !important;
405
+ -webkit-animation-name: flip;
406
+ -moz-backface-visibility: visible !important;
407
+ -moz-animation-name: flip;
408
+ -o-backface-visibility: visible !important;
409
+ -o-animation-name: flip;
410
+ backface-visibility: visible !important;
411
+ animation-name: flip;
412
+ }
413
+ @-webkit-keyframes flipInX {
414
+ 0% {
415
+ -webkit-transform: perspective(400px) rotateX(90deg);
416
+ opacity: 0;
417
+ }
418
+
419
+ 40% {
420
+ -webkit-transform: perspective(400px) rotateX(-10deg);
421
+ }
422
+
423
+ 70% {
424
+ -webkit-transform: perspective(400px) rotateX(10deg);
425
+ }
426
+
427
+ 100% {
428
+ -webkit-transform: perspective(400px) rotateX(0deg);
429
+ opacity: 1;
430
+ }
431
+ }
432
+ @-moz-keyframes flipInX {
433
+ 0% {
434
+ -moz-transform: perspective(400px) rotateX(90deg);
435
+ opacity: 0;
436
+ }
437
+
438
+ 40% {
439
+ -moz-transform: perspective(400px) rotateX(-10deg);
440
+ }
441
+
442
+ 70% {
443
+ -moz-transform: perspective(400px) rotateX(10deg);
444
+ }
445
+
446
+ 100% {
447
+ -moz-transform: perspective(400px) rotateX(0deg);
448
+ opacity: 1;
449
+ }
450
+ }
451
+ @-o-keyframes flipInX {
452
+ 0% {
453
+ -o-transform: perspective(400px) rotateX(90deg);
454
+ opacity: 0;
455
+ }
456
+
457
+ 40% {
458
+ -o-transform: perspective(400px) rotateX(-10deg);
459
+ }
460
+
461
+ 70% {
462
+ -o-transform: perspective(400px) rotateX(10deg);
463
+ }
464
+
465
+ 100% {
466
+ -o-transform: perspective(400px) rotateX(0deg);
467
+ opacity: 1;
468
+ }
469
+ }
470
+ @keyframes flipInX {
471
+ 0% {
472
+ transform: perspective(400px) rotateX(90deg);
473
+ opacity: 0;
474
+ }
475
+
476
+ 40% {
477
+ transform: perspective(400px) rotateX(-10deg);
478
+ }
479
+
480
+ 70% {
481
+ transform: perspective(400px) rotateX(10deg);
482
+ }
483
+
484
+ 100% {
485
+ transform: perspective(400px) rotateX(0deg);
486
+ opacity: 1;
487
+ }
488
+ }
489
+
490
+ .flipInX {
491
+ -webkit-backface-visibility: visible !important;
492
+ -webkit-animation-name: flipInX;
493
+ -moz-backface-visibility: visible !important;
494
+ -moz-animation-name: flipInX;
495
+ -o-backface-visibility: visible !important;
496
+ -o-animation-name: flipInX;
497
+ backface-visibility: visible !important;
498
+ animation-name: flipInX;
499
+ }
500
+ @-webkit-keyframes flipOutX {
501
+ 0% {
502
+ -webkit-transform: perspective(400px) rotateX(0deg);
503
+ opacity: 1;
504
+ }
505
+ 100% {
506
+ -webkit-transform: perspective(400px) rotateX(90deg);
507
+ opacity: 0;
508
+ }
509
+ }
510
+
511
+ @-moz-keyframes flipOutX {
512
+ 0% {
513
+ -moz-transform: perspective(400px) rotateX(0deg);
514
+ opacity: 1;
515
+ }
516
+ 100% {
517
+ -moz-transform: perspective(400px) rotateX(90deg);
518
+ opacity: 0;
519
+ }
520
+ }
521
+
522
+ @-o-keyframes flipOutX {
523
+ 0% {
524
+ -o-transform: perspective(400px) rotateX(0deg);
525
+ opacity: 1;
526
+ }
527
+ 100% {
528
+ -o-transform: perspective(400px) rotateX(90deg);
529
+ opacity: 0;
530
+ }
531
+ }
532
+
533
+ @keyframes flipOutX {
534
+ 0% {
535
+ transform: perspective(400px) rotateX(0deg);
536
+ opacity: 1;
537
+ }
538
+ 100% {
539
+ transform: perspective(400px) rotateX(90deg);
540
+ opacity: 0;
541
+ }
542
+ }
543
+
544
+ .flipOutX {
545
+ -webkit-animation-name: flipOutX;
546
+ -webkit-backface-visibility: visible !important;
547
+ -moz-animation-name: flipOutX;
548
+ -moz-backface-visibility: visible !important;
549
+ -o-animation-name: flipOutX;
550
+ -o-backface-visibility: visible !important;
551
+ animation-name: flipOutX;
552
+ backface-visibility: visible !important;
553
+ }
554
+ @-webkit-keyframes flipInY {
555
+ 0% {
556
+ -webkit-transform: perspective(400px) rotateY(90deg);
557
+ opacity: 0;
558
+ }
559
+
560
+ 40% {
561
+ -webkit-transform: perspective(400px) rotateY(-10deg);
562
+ }
563
+
564
+ 70% {
565
+ -webkit-transform: perspective(400px) rotateY(10deg);
566
+ }
567
+
568
+ 100% {
569
+ -webkit-transform: perspective(400px) rotateY(0deg);
570
+ opacity: 1;
571
+ }
572
+ }
573
+ @-moz-keyframes flipInY {
574
+ 0% {
575
+ -moz-transform: perspective(400px) rotateY(90deg);
576
+ opacity: 0;
577
+ }
578
+
579
+ 40% {
580
+ -moz-transform: perspective(400px) rotateY(-10deg);
581
+ }
582
+
583
+ 70% {
584
+ -moz-transform: perspective(400px) rotateY(10deg);
585
+ }
586
+
587
+ 100% {
588
+ -moz-transform: perspective(400px) rotateY(0deg);
589
+ opacity: 1;
590
+ }
591
+ }
592
+ @-o-keyframes flipInY {
593
+ 0% {
594
+ -o-transform: perspective(400px) rotateY(90deg);
595
+ opacity: 0;
596
+ }
597
+
598
+ 40% {
599
+ -o-transform: perspective(400px) rotateY(-10deg);
600
+ }
601
+
602
+ 70% {
603
+ -o-transform: perspective(400px) rotateY(10deg);
604
+ }
605
+
606
+ 100% {
607
+ -o-transform: perspective(400px) rotateY(0deg);
608
+ opacity: 1;
609
+ }
610
+ }
611
+ @keyframes flipInY {
612
+ 0% {
613
+ transform: perspective(400px) rotateY(90deg);
614
+ opacity: 0;
615
+ }
616
+
617
+ 40% {
618
+ transform: perspective(400px) rotateY(-10deg);
619
+ }
620
+
621
+ 70% {
622
+ transform: perspective(400px) rotateY(10deg);
623
+ }
624
+
625
+ 100% {
626
+ transform: perspective(400px) rotateY(0deg);
627
+ opacity: 1;
628
+ }
629
+ }
630
+
631
+ .flipInY {
632
+ -webkit-backface-visibility: visible !important;
633
+ -webkit-animation-name: flipInY;
634
+ -moz-backface-visibility: visible !important;
635
+ -moz-animation-name: flipInY;
636
+ -o-backface-visibility: visible !important;
637
+ -o-animation-name: flipInY;
638
+ backface-visibility: visible !important;
639
+ animation-name: flipInY;
640
+ }
641
+ @-webkit-keyframes flipOutY {
642
+ 0% {
643
+ -webkit-transform: perspective(400px) rotateY(0deg);
644
+ opacity: 1;
645
+ }
646
+ 100% {
647
+ -webkit-transform: perspective(400px) rotateY(90deg);
648
+ opacity: 0;
649
+ }
650
+ }
651
+ @-moz-keyframes flipOutY {
652
+ 0% {
653
+ -moz-transform: perspective(400px) rotateY(0deg);
654
+ opacity: 1;
655
+ }
656
+ 100% {
657
+ -moz-transform: perspective(400px) rotateY(90deg);
658
+ opacity: 0;
659
+ }
660
+ }
661
+ @-o-keyframes flipOutY {
662
+ 0% {
663
+ -o-transform: perspective(400px) rotateY(0deg);
664
+ opacity: 1;
665
+ }
666
+ 100% {
667
+ -o-transform: perspective(400px) rotateY(90deg);
668
+ opacity: 0;
669
+ }
670
+ }
671
+ @keyframes flipOutY {
672
+ 0% {
673
+ transform: perspective(400px) rotateY(0deg);
674
+ opacity: 1;
675
+ }
676
+ 100% {
677
+ transform: perspective(400px) rotateY(90deg);
678
+ opacity: 0;
679
+ }
680
+ }
681
+
682
+ .flipOutY {
683
+ -webkit-backface-visibility: visible !important;
684
+ -webkit-animation-name: flipOutY;
685
+ -moz-backface-visibility: visible !important;
686
+ -moz-animation-name: flipOutY;
687
+ -o-backface-visibility: visible !important;
688
+ -o-animation-name: flipOutY;
689
+ backface-visibility: visible !important;
690
+ animation-name: flipOutY;
691
+ }
692
+ @-webkit-keyframes fadeIn {
693
+ 0% {opacity: 0;}
694
+ 100% {opacity: 1;}
695
+ }
696
+
697
+ @-moz-keyframes fadeIn {
698
+ 0% {opacity: 0;}
699
+ 100% {opacity: 1;}
700
+ }
701
+
702
+ @-o-keyframes fadeIn {
703
+ 0% {opacity: 0;}
704
+ 100% {opacity: 1;}
705
+ }
706
+
707
+ @keyframes fadeIn {
708
+ 0% {opacity: 0;}
709
+ 100% {opacity: 1;}
710
+ }
711
+
712
+ .fadeIn {
713
+ -webkit-animation-name: fadeIn;
714
+ -moz-animation-name: fadeIn;
715
+ -o-animation-name: fadeIn;
716
+ animation-name: fadeIn;
717
+ }
718
+ @-webkit-keyframes fadeInUp {
719
+ 0% {
720
+ opacity: 0;
721
+ -webkit-transform: translateY(20px);
722
+ }
723
+
724
+ 100% {
725
+ opacity: 1;
726
+ -webkit-transform: translateY(0);
727
+ }
728
+ }
729
+
730
+ @-moz-keyframes fadeInUp {
731
+ 0% {
732
+ opacity: 0;
733
+ -moz-transform: translateY(20px);
734
+ }
735
+
736
+ 100% {
737
+ opacity: 1;
738
+ -moz-transform: translateY(0);
739
+ }
740
+ }
741
+
742
+ @-o-keyframes fadeInUp {
743
+ 0% {
744
+ opacity: 0;
745
+ -o-transform: translateY(20px);
746
+ }
747
+
748
+ 100% {
749
+ opacity: 1;
750
+ -o-transform: translateY(0);
751
+ }
752
+ }
753
+
754
+ @keyframes fadeInUp {
755
+ 0% {
756
+ opacity: 0;
757
+ transform: translateY(20px);
758
+ }
759
+
760
+ 100% {
761
+ opacity: 1;
762
+ transform: translateY(0);
763
+ }
764
+ }
765
+
766
+ .fadeInUp {
767
+ -webkit-animation-name: fadeInUp;
768
+ -moz-animation-name: fadeInUp;
769
+ -o-animation-name: fadeInUp;
770
+ animation-name: fadeInUp;
771
+ }
772
+ @-webkit-keyframes fadeInDown {
773
+ 0% {
774
+ opacity: 0;
775
+ -webkit-transform: translateY(-20px);
776
+ }
777
+
778
+ 100% {
779
+ opacity: 1;
780
+ -webkit-transform: translateY(0);
781
+ }
782
+ }
783
+
784
+ @-moz-keyframes fadeInDown {
785
+ 0% {
786
+ opacity: 0;
787
+ -moz-transform: translateY(-20px);
788
+ }
789
+
790
+ 100% {
791
+ opacity: 1;
792
+ -moz-transform: translateY(0);
793
+ }
794
+ }
795
+
796
+ @-o-keyframes fadeInDown {
797
+ 0% {
798
+ opacity: 0;
799
+ -o-transform: translateY(-20px);
800
+ }
801
+
802
+ 100% {
803
+ opacity: 1;
804
+ -o-transform: translateY(0);
805
+ }
806
+ }
807
+
808
+ @keyframes fadeInDown {
809
+ 0% {
810
+ opacity: 0;
811
+ transform: translateY(-20px);
812
+ }
813
+
814
+ 100% {
815
+ opacity: 1;
816
+ transform: translateY(0);
817
+ }
818
+ }
819
+
820
+ .fadeInDown {
821
+ -webkit-animation-name: fadeInDown;
822
+ -moz-animation-name: fadeInDown;
823
+ -o-animation-name: fadeInDown;
824
+ animation-name: fadeInDown;
825
+ }
826
+ @-webkit-keyframes fadeInLeft {
827
+ 0% {
828
+ opacity: 0;
829
+ -webkit-transform: translateX(-20px);
830
+ }
831
+
832
+ 100% {
833
+ opacity: 1;
834
+ -webkit-transform: translateX(0);
835
+ }
836
+ }
837
+
838
+ @-moz-keyframes fadeInLeft {
839
+ 0% {
840
+ opacity: 0;
841
+ -moz-transform: translateX(-20px);
842
+ }
843
+
844
+ 100% {
845
+ opacity: 1;
846
+ -moz-transform: translateX(0);
847
+ }
848
+ }
849
+
850
+ @-o-keyframes fadeInLeft {
851
+ 0% {
852
+ opacity: 0;
853
+ -o-transform: translateX(-20px);
854
+ }
855
+
856
+ 100% {
857
+ opacity: 1;
858
+ -o-transform: translateX(0);
859
+ }
860
+ }
861
+
862
+ @keyframes fadeInLeft {
863
+ 0% {
864
+ opacity: 0;
865
+ transform: translateX(-20px);
866
+ }
867
+
868
+ 100% {
869
+ opacity: 1;
870
+ transform: translateX(0);
871
+ }
872
+ }
873
+
874
+ .fadeInLeft {
875
+ -webkit-animation-name: fadeInLeft;
876
+ -moz-animation-name: fadeInLeft;
877
+ -o-animation-name: fadeInLeft;
878
+ animation-name: fadeInLeft;
879
+ }
880
+ @-webkit-keyframes fadeInRight {
881
+ 0% {
882
+ opacity: 0;
883
+ -webkit-transform: translateX(20px);
884
+ }
885
+
886
+ 100% {
887
+ opacity: 1;
888
+ -webkit-transform: translateX(0);
889
+ }
890
+ }
891
+
892
+ @-moz-keyframes fadeInRight {
893
+ 0% {
894
+ opacity: 0;
895
+ -moz-transform: translateX(20px);
896
+ }
897
+
898
+ 100% {
899
+ opacity: 1;
900
+ -moz-transform: translateX(0);
901
+ }
902
+ }
903
+
904
+ @-o-keyframes fadeInRight {
905
+ 0% {
906
+ opacity: 0;
907
+ -o-transform: translateX(20px);
908
+ }
909
+
910
+ 100% {
911
+ opacity: 1;
912
+ -o-transform: translateX(0);
913
+ }
914
+ }
915
+
916
+ @keyframes fadeInRight {
917
+ 0% {
918
+ opacity: 0;
919
+ transform: translateX(20px);
920
+ }
921
+
922
+ 100% {
923
+ opacity: 1;
924
+ transform: translateX(0);
925
+ }
926
+ }
927
+
928
+ .fadeInRight {
929
+ -webkit-animation-name: fadeInRight;
930
+ -moz-animation-name: fadeInRight;
931
+ -o-animation-name: fadeInRight;
932
+ animation-name: fadeInRight;
933
+ }
934
+ @-webkit-keyframes fadeInUpBig {
935
+ 0% {
936
+ opacity: 0;
937
+ -webkit-transform: translateY(2000px);
938
+ }
939
+
940
+ 100% {
941
+ opacity: 1;
942
+ -webkit-transform: translateY(0);
943
+ }
944
+ }
945
+
946
+ @-moz-keyframes fadeInUpBig {
947
+ 0% {
948
+ opacity: 0;
949
+ -moz-transform: translateY(2000px);
950
+ }
951
+
952
+ 100% {
953
+ opacity: 1;
954
+ -moz-transform: translateY(0);
955
+ }
956
+ }
957
+
958
+ @-o-keyframes fadeInUpBig {
959
+ 0% {
960
+ opacity: 0;
961
+ -o-transform: translateY(2000px);
962
+ }
963
+
964
+ 100% {
965
+ opacity: 1;
966
+ -o-transform: translateY(0);
967
+ }
968
+ }
969
+
970
+ @keyframes fadeInUpBig {
971
+ 0% {
972
+ opacity: 0;
973
+ transform: translateY(2000px);
974
+ }
975
+
976
+ 100% {
977
+ opacity: 1;
978
+ transform: translateY(0);
979
+ }
980
+ }
981
+
982
+ .fadeInUpBig {
983
+ -webkit-animation-name: fadeInUpBig;
984
+ -moz-animation-name: fadeInUpBig;
985
+ -o-animation-name: fadeInUpBig;
986
+ animation-name: fadeInUpBig;
987
+ }
988
+ @-webkit-keyframes fadeInDownBig {
989
+ 0% {
990
+ opacity: 0;
991
+ -webkit-transform: translateY(-2000px);
992
+ }
993
+
994
+ 100% {
995
+ opacity: 1;
996
+ -webkit-transform: translateY(0);
997
+ }
998
+ }
999
+
1000
+ @-moz-keyframes fadeInDownBig {
1001
+ 0% {
1002
+ opacity: 0;
1003
+ -moz-transform: translateY(-2000px);
1004
+ }
1005
+
1006
+ 100% {
1007
+ opacity: 1;
1008
+ -moz-transform: translateY(0);
1009
+ }
1010
+ }
1011
+
1012
+ @-o-keyframes fadeInDownBig {
1013
+ 0% {
1014
+ opacity: 0;
1015
+ -o-transform: translateY(-2000px);
1016
+ }
1017
+
1018
+ 100% {
1019
+ opacity: 1;
1020
+ -o-transform: translateY(0);
1021
+ }
1022
+ }
1023
+
1024
+ @keyframes fadeInDownBig {
1025
+ 0% {
1026
+ opacity: 0;
1027
+ transform: translateY(-2000px);
1028
+ }
1029
+
1030
+ 100% {
1031
+ opacity: 1;
1032
+ transform: translateY(0);
1033
+ }
1034
+ }
1035
+
1036
+ .fadeInDownBig {
1037
+ -webkit-animation-name: fadeInDownBig;
1038
+ -moz-animation-name: fadeInDownBig;
1039
+ -o-animation-name: fadeInDownBig;
1040
+ animation-name: fadeInDownBig;
1041
+ }
1042
+ @-webkit-keyframes fadeInLeftBig {
1043
+ 0% {
1044
+ opacity: 0;
1045
+ -webkit-transform: translateX(-2000px);
1046
+ }
1047
+
1048
+ 100% {
1049
+ opacity: 1;
1050
+ -webkit-transform: translateX(0);
1051
+ }
1052
+ }
1053
+ @-moz-keyframes fadeInLeftBig {
1054
+ 0% {
1055
+ opacity: 0;
1056
+ -moz-transform: translateX(-2000px);
1057
+ }
1058
+
1059
+ 100% {
1060
+ opacity: 1;
1061
+ -moz-transform: translateX(0);
1062
+ }
1063
+ }
1064
+ @-o-keyframes fadeInLeftBig {
1065
+ 0% {
1066
+ opacity: 0;
1067
+ -o-transform: translateX(-2000px);
1068
+ }
1069
+
1070
+ 100% {
1071
+ opacity: 1;
1072
+ -o-transform: translateX(0);
1073
+ }
1074
+ }
1075
+ @keyframes fadeInLeftBig {
1076
+ 0% {
1077
+ opacity: 0;
1078
+ transform: translateX(-2000px);
1079
+ }
1080
+
1081
+ 100% {
1082
+ opacity: 1;
1083
+ transform: translateX(0);
1084
+ }
1085
+ }
1086
+
1087
+ .fadeInLeftBig {
1088
+ -webkit-animation-name: fadeInLeftBig;
1089
+ -moz-animation-name: fadeInLeftBig;
1090
+ -o-animation-name: fadeInLeftBig;
1091
+ animation-name: fadeInLeftBig;
1092
+ }
1093
+ @-webkit-keyframes fadeInRightBig {
1094
+ 0% {
1095
+ opacity: 0;
1096
+ -webkit-transform: translateX(2000px);
1097
+ }
1098
+
1099
+ 100% {
1100
+ opacity: 1;
1101
+ -webkit-transform: translateX(0);
1102
+ }
1103
+ }
1104
+
1105
+ @-moz-keyframes fadeInRightBig {
1106
+ 0% {
1107
+ opacity: 0;
1108
+ -moz-transform: translateX(2000px);
1109
+ }
1110
+
1111
+ 100% {
1112
+ opacity: 1;
1113
+ -moz-transform: translateX(0);
1114
+ }
1115
+ }
1116
+
1117
+ @-o-keyframes fadeInRightBig {
1118
+ 0% {
1119
+ opacity: 0;
1120
+ -o-transform: translateX(2000px);
1121
+ }
1122
+
1123
+ 100% {
1124
+ opacity: 1;
1125
+ -o-transform: translateX(0);
1126
+ }
1127
+ }
1128
+
1129
+ @keyframes fadeInRightBig {
1130
+ 0% {
1131
+ opacity: 0;
1132
+ transform: translateX(2000px);
1133
+ }
1134
+
1135
+ 100% {
1136
+ opacity: 1;
1137
+ transform: translateX(0);
1138
+ }
1139
+ }
1140
+
1141
+ .fadeInRightBig {
1142
+ -webkit-animation-name: fadeInRightBig;
1143
+ -moz-animation-name: fadeInRightBig;
1144
+ -o-animation-name: fadeInRightBig;
1145
+ animation-name: fadeInRightBig;
1146
+ }
1147
+ @-webkit-keyframes fadeOut {
1148
+ 0% {opacity: 1;}
1149
+ 100% {opacity: 0;}
1150
+ }
1151
+
1152
+ @-moz-keyframes fadeOut {
1153
+ 0% {opacity: 1;}
1154
+ 100% {opacity: 0;}
1155
+ }
1156
+
1157
+ @-o-keyframes fadeOut {
1158
+ 0% {opacity: 1;}
1159
+ 100% {opacity: 0;}
1160
+ }
1161
+
1162
+ @keyframes fadeOut {
1163
+ 0% {opacity: 1;}
1164
+ 100% {opacity: 0;}
1165
+ }
1166
+
1167
+ .fadeOut {
1168
+ -webkit-animation-name: fadeOut;
1169
+ -moz-animation-name: fadeOut;
1170
+ -o-animation-name: fadeOut;
1171
+ animation-name: fadeOut;
1172
+ }
1173
+ @-webkit-keyframes fadeOutUp {
1174
+ 0% {
1175
+ opacity: 1;
1176
+ -webkit-transform: translateY(0);
1177
+ }
1178
+
1179
+ 100% {
1180
+ opacity: 0;
1181
+ -webkit-transform: translateY(-20px);
1182
+ }
1183
+ }
1184
+ @-moz-keyframes fadeOutUp {
1185
+ 0% {
1186
+ opacity: 1;
1187
+ -moz-transform: translateY(0);
1188
+ }
1189
+
1190
+ 100% {
1191
+ opacity: 0;
1192
+ -moz-transform: translateY(-20px);
1193
+ }
1194
+ }
1195
+ @-o-keyframes fadeOutUp {
1196
+ 0% {
1197
+ opacity: 1;
1198
+ -o-transform: translateY(0);
1199
+ }
1200
+
1201
+ 100% {
1202
+ opacity: 0;
1203
+ -o-transform: translateY(-20px);
1204
+ }
1205
+ }
1206
+ @keyframes fadeOutUp {
1207
+ 0% {
1208
+ opacity: 1;
1209
+ transform: translateY(0);
1210
+ }
1211
+
1212
+ 100% {
1213
+ opacity: 0;
1214
+ transform: translateY(-20px);
1215
+ }
1216
+ }
1217
+
1218
+ .fadeOutUp {
1219
+ -webkit-animation-name: fadeOutUp;
1220
+ -moz-animation-name: fadeOutUp;
1221
+ -o-animation-name: fadeOutUp;
1222
+ animation-name: fadeOutUp;
1223
+ }
1224
+ @-webkit-keyframes fadeOutDown {
1225
+ 0% {
1226
+ opacity: 1;
1227
+ -webkit-transform: translateY(0);
1228
+ }
1229
+
1230
+ 100% {
1231
+ opacity: 0;
1232
+ -webkit-transform: translateY(20px);
1233
+ }
1234
+ }
1235
+
1236
+ @-moz-keyframes fadeOutDown {
1237
+ 0% {
1238
+ opacity: 1;
1239
+ -moz-transform: translateY(0);
1240
+ }
1241
+
1242
+ 100% {
1243
+ opacity: 0;
1244
+ -moz-transform: translateY(20px);
1245
+ }
1246
+ }
1247
+
1248
+ @-o-keyframes fadeOutDown {
1249
+ 0% {
1250
+ opacity: 1;
1251
+ -o-transform: translateY(0);
1252
+ }
1253
+
1254
+ 100% {
1255
+ opacity: 0;
1256
+ -o-transform: translateY(20px);
1257
+ }
1258
+ }
1259
+
1260
+ @keyframes fadeOutDown {
1261
+ 0% {
1262
+ opacity: 1;
1263
+ transform: translateY(0);
1264
+ }
1265
+
1266
+ 100% {
1267
+ opacity: 0;
1268
+ transform: translateY(20px);
1269
+ }
1270
+ }
1271
+
1272
+ .fadeOutDown {
1273
+ -webkit-animation-name: fadeOutDown;
1274
+ -moz-animation-name: fadeOutDown;
1275
+ -o-animation-name: fadeOutDown;
1276
+ animation-name: fadeOutDown;
1277
+ }
1278
+ @-webkit-keyframes fadeOutLeft {
1279
+ 0% {
1280
+ opacity: 1;
1281
+ -webkit-transform: translateX(0);
1282
+ }
1283
+
1284
+ 100% {
1285
+ opacity: 0;
1286
+ -webkit-transform: translateX(-20px);
1287
+ }
1288
+ }
1289
+
1290
+ @-moz-keyframes fadeOutLeft {
1291
+ 0% {
1292
+ opacity: 1;
1293
+ -moz-transform: translateX(0);
1294
+ }
1295
+
1296
+ 100% {
1297
+ opacity: 0;
1298
+ -moz-transform: translateX(-20px);
1299
+ }
1300
+ }
1301
+
1302
+ @-o-keyframes fadeOutLeft {
1303
+ 0% {
1304
+ opacity: 1;
1305
+ -o-transform: translateX(0);
1306
+ }
1307
+
1308
+ 100% {
1309
+ opacity: 0;
1310
+ -o-transform: translateX(-20px);
1311
+ }
1312
+ }
1313
+
1314
+ @keyframes fadeOutLeft {
1315
+ 0% {
1316
+ opacity: 1;
1317
+ transform: translateX(0);
1318
+ }
1319
+
1320
+ 100% {
1321
+ opacity: 0;
1322
+ transform: translateX(-20px);
1323
+ }
1324
+ }
1325
+
1326
+ .fadeOutLeft {
1327
+ -webkit-animation-name: fadeOutLeft;
1328
+ -moz-animation-name: fadeOutLeft;
1329
+ -o-animation-name: fadeOutLeft;
1330
+ animation-name: fadeOutLeft;
1331
+ }
1332
+ @-webkit-keyframes fadeOutRight {
1333
+ 0% {
1334
+ opacity: 1;
1335
+ -webkit-transform: translateX(0);
1336
+ }
1337
+
1338
+ 100% {
1339
+ opacity: 0;
1340
+ -webkit-transform: translateX(20px);
1341
+ }
1342
+ }
1343
+
1344
+ @-moz-keyframes fadeOutRight {
1345
+ 0% {
1346
+ opacity: 1;
1347
+ -moz-transform: translateX(0);
1348
+ }
1349
+
1350
+ 100% {
1351
+ opacity: 0;
1352
+ -moz-transform: translateX(20px);
1353
+ }
1354
+ }
1355
+
1356
+ @-o-keyframes fadeOutRight {
1357
+ 0% {
1358
+ opacity: 1;
1359
+ -o-transform: translateX(0);
1360
+ }
1361
+
1362
+ 100% {
1363
+ opacity: 0;
1364
+ -o-transform: translateX(20px);
1365
+ }
1366
+ }
1367
+
1368
+ @keyframes fadeOutRight {
1369
+ 0% {
1370
+ opacity: 1;
1371
+ transform: translateX(0);
1372
+ }
1373
+
1374
+ 100% {
1375
+ opacity: 0;
1376
+ transform: translateX(20px);
1377
+ }
1378
+ }
1379
+
1380
+ .fadeOutRight {
1381
+ -webkit-animation-name: fadeOutRight;
1382
+ -moz-animation-name: fadeOutRight;
1383
+ -o-animation-name: fadeOutRight;
1384
+ animation-name: fadeOutRight;
1385
+ }
1386
+ @-webkit-keyframes fadeOutUpBig {
1387
+ 0% {
1388
+ opacity: 1;
1389
+ -webkit-transform: translateY(0);
1390
+ }
1391
+
1392
+ 100% {
1393
+ opacity: 0;
1394
+ -webkit-transform: translateY(-2000px);
1395
+ }
1396
+ }
1397
+
1398
+ @-moz-keyframes fadeOutUpBig {
1399
+ 0% {
1400
+ opacity: 1;
1401
+ -moz-transform: translateY(0);
1402
+ }
1403
+
1404
+ 100% {
1405
+ opacity: 0;
1406
+ -moz-transform: translateY(-2000px);
1407
+ }
1408
+ }
1409
+
1410
+ @-o-keyframes fadeOutUpBig {
1411
+ 0% {
1412
+ opacity: 1;
1413
+ -o-transform: translateY(0);
1414
+ }
1415
+
1416
+ 100% {
1417
+ opacity: 0;
1418
+ -o-transform: translateY(-2000px);
1419
+ }
1420
+ }
1421
+
1422
+ @keyframes fadeOutUpBig {
1423
+ 0% {
1424
+ opacity: 1;
1425
+ transform: translateY(0);
1426
+ }
1427
+
1428
+ 100% {
1429
+ opacity: 0;
1430
+ transform: translateY(-2000px);
1431
+ }
1432
+ }
1433
+
1434
+ .fadeOutUpBig {
1435
+ -webkit-animation-name: fadeOutUpBig;
1436
+ -moz-animation-name: fadeOutUpBig;
1437
+ -o-animation-name: fadeOutUpBig;
1438
+ animation-name: fadeOutUpBig;
1439
+ }
1440
+ @-webkit-keyframes fadeOutDownBig {
1441
+ 0% {
1442
+ opacity: 1;
1443
+ -webkit-transform: translateY(0);
1444
+ }
1445
+
1446
+ 100% {
1447
+ opacity: 0;
1448
+ -webkit-transform: translateY(2000px);
1449
+ }
1450
+ }
1451
+
1452
+ @-moz-keyframes fadeOutDownBig {
1453
+ 0% {
1454
+ opacity: 1;
1455
+ -moz-transform: translateY(0);
1456
+ }
1457
+
1458
+ 100% {
1459
+ opacity: 0;
1460
+ -moz-transform: translateY(2000px);
1461
+ }
1462
+ }
1463
+
1464
+ @-o-keyframes fadeOutDownBig {
1465
+ 0% {
1466
+ opacity: 1;
1467
+ -o-transform: translateY(0);
1468
+ }
1469
+
1470
+ 100% {
1471
+ opacity: 0;
1472
+ -o-transform: translateY(2000px);
1473
+ }
1474
+ }
1475
+
1476
+ @keyframes fadeOutDownBig {
1477
+ 0% {
1478
+ opacity: 1;
1479
+ transform: translateY(0);
1480
+ }
1481
+
1482
+ 100% {
1483
+ opacity: 0;
1484
+ transform: translateY(2000px);
1485
+ }
1486
+ }
1487
+
1488
+ .fadeOutDownBig {
1489
+ -webkit-animation-name: fadeOutDownBig;
1490
+ -moz-animation-name: fadeOutDownBig;
1491
+ -o-animation-name: fadeOutDownBig;
1492
+ animation-name: fadeOutDownBig;
1493
+ }
1494
+ @-webkit-keyframes fadeOutLeftBig {
1495
+ 0% {
1496
+ opacity: 1;
1497
+ -webkit-transform: translateX(0);
1498
+ }
1499
+
1500
+ 100% {
1501
+ opacity: 0;
1502
+ -webkit-transform: translateX(-2000px);
1503
+ }
1504
+ }
1505
+
1506
+ @-moz-keyframes fadeOutLeftBig {
1507
+ 0% {
1508
+ opacity: 1;
1509
+ -moz-transform: translateX(0);
1510
+ }
1511
+
1512
+ 100% {
1513
+ opacity: 0;
1514
+ -moz-transform: translateX(-2000px);
1515
+ }
1516
+ }
1517
+
1518
+ @-o-keyframes fadeOutLeftBig {
1519
+ 0% {
1520
+ opacity: 1;
1521
+ -o-transform: translateX(0);
1522
+ }
1523
+
1524
+ 100% {
1525
+ opacity: 0;
1526
+ -o-transform: translateX(-2000px);
1527
+ }
1528
+ }
1529
+
1530
+ @keyframes fadeOutLeftBig {
1531
+ 0% {
1532
+ opacity: 1;
1533
+ transform: translateX(0);
1534
+ }
1535
+
1536
+ 100% {
1537
+ opacity: 0;
1538
+ transform: translateX(-2000px);
1539
+ }
1540
+ }
1541
+
1542
+ .fadeOutLeftBig {
1543
+ -webkit-animation-name: fadeOutLeftBig;
1544
+ -moz-animation-name: fadeOutLeftBig;
1545
+ -o-animation-name: fadeOutLeftBig;
1546
+ animation-name: fadeOutLeftBig;
1547
+ }
1548
+ @-webkit-keyframes fadeOutRightBig {
1549
+ 0% {
1550
+ opacity: 1;
1551
+ -webkit-transform: translateX(0);
1552
+ }
1553
+
1554
+ 100% {
1555
+ opacity: 0;
1556
+ -webkit-transform: translateX(2000px);
1557
+ }
1558
+ }
1559
+ @-moz-keyframes fadeOutRightBig {
1560
+ 0% {
1561
+ opacity: 1;
1562
+ -moz-transform: translateX(0);
1563
+ }
1564
+
1565
+ 100% {
1566
+ opacity: 0;
1567
+ -moz-transform: translateX(2000px);
1568
+ }
1569
+ }
1570
+ @-o-keyframes fadeOutRightBig {
1571
+ 0% {
1572
+ opacity: 1;
1573
+ -o-transform: translateX(0);
1574
+ }
1575
+
1576
+ 100% {
1577
+ opacity: 0;
1578
+ -o-transform: translateX(2000px);
1579
+ }
1580
+ }
1581
+ @keyframes fadeOutRightBig {
1582
+ 0% {
1583
+ opacity: 1;
1584
+ transform: translateX(0);
1585
+ }
1586
+
1587
+ 100% {
1588
+ opacity: 0;
1589
+ transform: translateX(2000px);
1590
+ }
1591
+ }
1592
+
1593
+ .fadeOutRightBig {
1594
+ -webkit-animation-name: fadeOutRightBig;
1595
+ -moz-animation-name: fadeOutRightBig;
1596
+ -o-animation-name: fadeOutRightBig;
1597
+ animation-name: fadeOutRightBig;
1598
+ }
1599
+ @-webkit-keyframes bounceIn {
1600
+ 0% {
1601
+ opacity: 0;
1602
+ -webkit-transform: scale(.3);
1603
+ }
1604
+
1605
+ 50% {
1606
+ opacity: 1;
1607
+ -webkit-transform: scale(1.05);
1608
+ }
1609
+
1610
+ 70% {
1611
+ -webkit-transform: scale(.9);
1612
+ }
1613
+
1614
+ 100% {
1615
+ -webkit-transform: scale(1);
1616
+ }
1617
+ }
1618
+
1619
+ @-moz-keyframes bounceIn {
1620
+ 0% {
1621
+ opacity: 0;
1622
+ -moz-transform: scale(.3);
1623
+ }
1624
+
1625
+ 50% {
1626
+ opacity: 1;
1627
+ -moz-transform: scale(1.05);
1628
+ }
1629
+
1630
+ 70% {
1631
+ -moz-transform: scale(.9);
1632
+ }
1633
+
1634
+ 100% {
1635
+ -moz-transform: scale(1);
1636
+ }
1637
+ }
1638
+
1639
+ @-o-keyframes bounceIn {
1640
+ 0% {
1641
+ opacity: 0;
1642
+ -o-transform: scale(.3);
1643
+ }
1644
+
1645
+ 50% {
1646
+ opacity: 1;
1647
+ -o-transform: scale(1.05);
1648
+ }
1649
+
1650
+ 70% {
1651
+ -o-transform: scale(.9);
1652
+ }
1653
+
1654
+ 100% {
1655
+ -o-transform: scale(1);
1656
+ }
1657
+ }
1658
+
1659
+ @keyframes bounceIn {
1660
+ 0% {
1661
+ opacity: 0;
1662
+ transform: scale(.3);
1663
+ }
1664
+
1665
+ 50% {
1666
+ opacity: 1;
1667
+ transform: scale(1.05);
1668
+ }
1669
+
1670
+ 70% {
1671
+ transform: scale(.9);
1672
+ }
1673
+
1674
+ 100% {
1675
+ transform: scale(1);
1676
+ }
1677
+ }
1678
+
1679
+ .bounceIn {
1680
+ -webkit-animation-name: bounceIn;
1681
+ -moz-animation-name: bounceIn;
1682
+ -o-animation-name: bounceIn;
1683
+ animation-name: bounceIn;
1684
+ }
1685
+ @-webkit-keyframes bounceInUp {
1686
+ 0% {
1687
+ opacity: 0;
1688
+ -webkit-transform: translateY(2000px);
1689
+ }
1690
+
1691
+ 60% {
1692
+ opacity: 1;
1693
+ -webkit-transform: translateY(-30px);
1694
+ }
1695
+
1696
+ 80% {
1697
+ -webkit-transform: translateY(10px);
1698
+ }
1699
+
1700
+ 100% {
1701
+ -webkit-transform: translateY(0);
1702
+ }
1703
+ }
1704
+ @-moz-keyframes bounceInUp {
1705
+ 0% {
1706
+ opacity: 0;
1707
+ -moz-transform: translateY(2000px);
1708
+ }
1709
+
1710
+ 60% {
1711
+ opacity: 1;
1712
+ -moz-transform: translateY(-30px);
1713
+ }
1714
+
1715
+ 80% {
1716
+ -moz-transform: translateY(10px);
1717
+ }
1718
+
1719
+ 100% {
1720
+ -moz-transform: translateY(0);
1721
+ }
1722
+ }
1723
+
1724
+ @-o-keyframes bounceInUp {
1725
+ 0% {
1726
+ opacity: 0;
1727
+ -o-transform: translateY(2000px);
1728
+ }
1729
+
1730
+ 60% {
1731
+ opacity: 1;
1732
+ -o-transform: translateY(-30px);
1733
+ }
1734
+
1735
+ 80% {
1736
+ -o-transform: translateY(10px);
1737
+ }
1738
+
1739
+ 100% {
1740
+ -o-transform: translateY(0);
1741
+ }
1742
+ }
1743
+
1744
+ @keyframes bounceInUp {
1745
+ 0% {
1746
+ opacity: 0;
1747
+ transform: translateY(2000px);
1748
+ }
1749
+
1750
+ 60% {
1751
+ opacity: 1;
1752
+ transform: translateY(-30px);
1753
+ }
1754
+
1755
+ 80% {
1756
+ transform: translateY(10px);
1757
+ }
1758
+
1759
+ 100% {
1760
+ transform: translateY(0);
1761
+ }
1762
+ }
1763
+
1764
+ .bounceInUp {
1765
+ -webkit-animation-name: bounceInUp;
1766
+ -moz-animation-name: bounceInUp;
1767
+ -o-animation-name: bounceInUp;
1768
+ animation-name: bounceInUp;
1769
+ }
1770
+ @-webkit-keyframes bounceInDown {
1771
+ 0% {
1772
+ opacity: 0;
1773
+ -webkit-transform: translateY(-2000px);
1774
+ }
1775
+
1776
+ 60% {
1777
+ opacity: 1;
1778
+ -webkit-transform: translateY(30px);
1779
+ }
1780
+
1781
+ 80% {
1782
+ -webkit-transform: translateY(-10px);
1783
+ }
1784
+
1785
+ 100% {
1786
+ -webkit-transform: translateY(0);
1787
+ }
1788
+ }
1789
+
1790
+ @-moz-keyframes bounceInDown {
1791
+ 0% {
1792
+ opacity: 0;
1793
+ -moz-transform: translateY(-2000px);
1794
+ }
1795
+
1796
+ 60% {
1797
+ opacity: 1;
1798
+ -moz-transform: translateY(30px);
1799
+ }
1800
+
1801
+ 80% {
1802
+ -moz-transform: translateY(-10px);
1803
+ }
1804
+
1805
+ 100% {
1806
+ -moz-transform: translateY(0);
1807
+ }
1808
+ }
1809
+
1810
+ @-o-keyframes bounceInDown {
1811
+ 0% {
1812
+ opacity: 0;
1813
+ -o-transform: translateY(-2000px);
1814
+ }
1815
+
1816
+ 60% {
1817
+ opacity: 1;
1818
+ -o-transform: translateY(30px);
1819
+ }
1820
+
1821
+ 80% {
1822
+ -o-transform: translateY(-10px);
1823
+ }
1824
+
1825
+ 100% {
1826
+ -o-transform: translateY(0);
1827
+ }
1828
+ }
1829
+
1830
+ @keyframes bounceInDown {
1831
+ 0% {
1832
+ opacity: 0;
1833
+ transform: translateY(-2000px);
1834
+ }
1835
+
1836
+ 60% {
1837
+ opacity: 1;
1838
+ transform: translateY(30px);
1839
+ }
1840
+
1841
+ 80% {
1842
+ transform: translateY(-10px);
1843
+ }
1844
+
1845
+ 100% {
1846
+ transform: translateY(0);
1847
+ }
1848
+ }
1849
+
1850
+ .bounceInDown {
1851
+ -webkit-animation-name: bounceInDown;
1852
+ -moz-animation-name: bounceInDown;
1853
+ -o-animation-name: bounceInDown;
1854
+ animation-name: bounceInDown;
1855
+ }
1856
+ @-webkit-keyframes bounceInLeft {
1857
+ 0% {
1858
+ opacity: 0;
1859
+ -webkit-transform: translateX(-2000px);
1860
+ }
1861
+
1862
+ 60% {
1863
+ opacity: 1;
1864
+ -webkit-transform: translateX(30px);
1865
+ }
1866
+
1867
+ 80% {
1868
+ -webkit-transform: translateX(-10px);
1869
+ }
1870
+
1871
+ 100% {
1872
+ -webkit-transform: translateX(0);
1873
+ }
1874
+ }
1875
+
1876
+ @-moz-keyframes bounceInLeft {
1877
+ 0% {
1878
+ opacity: 0;
1879
+ -moz-transform: translateX(-2000px);
1880
+ }
1881
+
1882
+ 60% {
1883
+ opacity: 1;
1884
+ -moz-transform: translateX(30px);
1885
+ }
1886
+
1887
+ 80% {
1888
+ -moz-transform: translateX(-10px);
1889
+ }
1890
+
1891
+ 100% {
1892
+ -moz-transform: translateX(0);
1893
+ }
1894
+ }
1895
+
1896
+ @-o-keyframes bounceInLeft {
1897
+ 0% {
1898
+ opacity: 0;
1899
+ -o-transform: translateX(-2000px);
1900
+ }
1901
+
1902
+ 60% {
1903
+ opacity: 1;
1904
+ -o-transform: translateX(30px);
1905
+ }
1906
+
1907
+ 80% {
1908
+ -o-transform: translateX(-10px);
1909
+ }
1910
+
1911
+ 100% {
1912
+ -o-transform: translateX(0);
1913
+ }
1914
+ }
1915
+
1916
+ @keyframes bounceInLeft {
1917
+ 0% {
1918
+ opacity: 0;
1919
+ transform: translateX(-2000px);
1920
+ }
1921
+
1922
+ 60% {
1923
+ opacity: 1;
1924
+ transform: translateX(30px);
1925
+ }
1926
+
1927
+ 80% {
1928
+ transform: translateX(-10px);
1929
+ }
1930
+
1931
+ 100% {
1932
+ transform: translateX(0);
1933
+ }
1934
+ }
1935
+
1936
+ .bounceInLeft {
1937
+ -webkit-animation-name: bounceInLeft;
1938
+ -moz-animation-name: bounceInLeft;
1939
+ -o-animation-name: bounceInLeft;
1940
+ animation-name: bounceInLeft;
1941
+ }
1942
+ @-webkit-keyframes bounceInRight {
1943
+ 0% {
1944
+ opacity: 0;
1945
+ -webkit-transform: translateX(2000px);
1946
+ }
1947
+
1948
+ 60% {
1949
+ opacity: 1;
1950
+ -webkit-transform: translateX(-30px);
1951
+ }
1952
+
1953
+ 80% {
1954
+ -webkit-transform: translateX(10px);
1955
+ }
1956
+
1957
+ 100% {
1958
+ -webkit-transform: translateX(0);
1959
+ }
1960
+ }
1961
+
1962
+ @-moz-keyframes bounceInRight {
1963
+ 0% {
1964
+ opacity: 0;
1965
+ -moz-transform: translateX(2000px);
1966
+ }
1967
+
1968
+ 60% {
1969
+ opacity: 1;
1970
+ -moz-transform: translateX(-30px);
1971
+ }
1972
+
1973
+ 80% {
1974
+ -moz-transform: translateX(10px);
1975
+ }
1976
+
1977
+ 100% {
1978
+ -moz-transform: translateX(0);
1979
+ }
1980
+ }
1981
+
1982
+ @-o-keyframes bounceInRight {
1983
+ 0% {
1984
+ opacity: 0;
1985
+ -o-transform: translateX(2000px);
1986
+ }
1987
+
1988
+ 60% {
1989
+ opacity: 1;
1990
+ -o-transform: translateX(-30px);
1991
+ }
1992
+
1993
+ 80% {
1994
+ -o-transform: translateX(10px);
1995
+ }
1996
+
1997
+ 100% {
1998
+ -o-transform: translateX(0);
1999
+ }
2000
+ }
2001
+
2002
+ @keyframes bounceInRight {
2003
+ 0% {
2004
+ opacity: 0;
2005
+ transform: translateX(2000px);
2006
+ }
2007
+
2008
+ 60% {
2009
+ opacity: 1;
2010
+ transform: translateX(-30px);
2011
+ }
2012
+
2013
+ 80% {
2014
+ transform: translateX(10px);
2015
+ }
2016
+
2017
+ 100% {
2018
+ transform: translateX(0);
2019
+ }
2020
+ }
2021
+
2022
+ .bounceInRight {
2023
+ -webkit-animation-name: bounceInRight;
2024
+ -moz-animation-name: bounceInRight;
2025
+ -o-animation-name: bounceInRight;
2026
+ animation-name: bounceInRight;
2027
+ }
2028
+ @-webkit-keyframes bounceOut {
2029
+ 0% {
2030
+ -webkit-transform: scale(1);
2031
+ }
2032
+
2033
+ 25% {
2034
+ -webkit-transform: scale(.95);
2035
+ }
2036
+
2037
+ 50% {
2038
+ opacity: 1;
2039
+ -webkit-transform: scale(1.1);
2040
+ }
2041
+
2042
+ 100% {
2043
+ opacity: 0;
2044
+ -webkit-transform: scale(.3);
2045
+ }
2046
+ }
2047
+
2048
+ @-moz-keyframes bounceOut {
2049
+ 0% {
2050
+ -moz-transform: scale(1);
2051
+ }
2052
+
2053
+ 25% {
2054
+ -moz-transform: scale(.95);
2055
+ }
2056
+
2057
+ 50% {
2058
+ opacity: 1;
2059
+ -moz-transform: scale(1.1);
2060
+ }
2061
+
2062
+ 100% {
2063
+ opacity: 0;
2064
+ -moz-transform: scale(.3);
2065
+ }
2066
+ }
2067
+
2068
+ @-o-keyframes bounceOut {
2069
+ 0% {
2070
+ -o-transform: scale(1);
2071
+ }
2072
+
2073
+ 25% {
2074
+ -o-transform: scale(.95);
2075
+ }
2076
+
2077
+ 50% {
2078
+ opacity: 1;
2079
+ -o-transform: scale(1.1);
2080
+ }
2081
+
2082
+ 100% {
2083
+ opacity: 0;
2084
+ -o-transform: scale(.3);
2085
+ }
2086
+ }
2087
+
2088
+ @keyframes bounceOut {
2089
+ 0% {
2090
+ transform: scale(1);
2091
+ }
2092
+
2093
+ 25% {
2094
+ transform: scale(.95);
2095
+ }
2096
+
2097
+ 50% {
2098
+ opacity: 1;
2099
+ transform: scale(1.1);
2100
+ }
2101
+
2102
+ 100% {
2103
+ opacity: 0;
2104
+ transform: scale(.3);
2105
+ }
2106
+ }
2107
+
2108
+ .bounceOut {
2109
+ -webkit-animation-name: bounceOut;
2110
+ -moz-animation-name: bounceOut;
2111
+ -o-animation-name: bounceOut;
2112
+ animation-name: bounceOut;
2113
+ }
2114
+ @-webkit-keyframes bounceOutUp {
2115
+ 0% {
2116
+ -webkit-transform: translateY(0);
2117
+ }
2118
+
2119
+ 20% {
2120
+ opacity: 1;
2121
+ -webkit-transform: translateY(20px);
2122
+ }
2123
+
2124
+ 100% {
2125
+ opacity: 0;
2126
+ -webkit-transform: translateY(-2000px);
2127
+ }
2128
+ }
2129
+
2130
+ @-moz-keyframes bounceOutUp {
2131
+ 0% {
2132
+ -moz-transform: translateY(0);
2133
+ }
2134
+
2135
+ 20% {
2136
+ opacity: 1;
2137
+ -moz-transform: translateY(20px);
2138
+ }
2139
+
2140
+ 100% {
2141
+ opacity: 0;
2142
+ -moz-transform: translateY(-2000px);
2143
+ }
2144
+ }
2145
+
2146
+ @-o-keyframes bounceOutUp {
2147
+ 0% {
2148
+ -o-transform: translateY(0);
2149
+ }
2150
+
2151
+ 20% {
2152
+ opacity: 1;
2153
+ -o-transform: translateY(20px);
2154
+ }
2155
+
2156
+ 100% {
2157
+ opacity: 0;
2158
+ -o-transform: translateY(-2000px);
2159
+ }
2160
+ }
2161
+
2162
+ @keyframes bounceOutUp {
2163
+ 0% {
2164
+ transform: translateY(0);
2165
+ }
2166
+
2167
+ 20% {
2168
+ opacity: 1;
2169
+ transform: translateY(20px);
2170
+ }
2171
+
2172
+ 100% {
2173
+ opacity: 0;
2174
+ transform: translateY(-2000px);
2175
+ }
2176
+ }
2177
+
2178
+ .bounceOutUp {
2179
+ -webkit-animation-name: bounceOutUp;
2180
+ -moz-animation-name: bounceOutUp;
2181
+ -o-animation-name: bounceOutUp;
2182
+ animation-name: bounceOutUp;
2183
+ }
2184
+ @-webkit-keyframes bounceOutDown {
2185
+ 0% {
2186
+ -webkit-transform: translateY(0);
2187
+ }
2188
+
2189
+ 20% {
2190
+ opacity: 1;
2191
+ -webkit-transform: translateY(-20px);
2192
+ }
2193
+
2194
+ 100% {
2195
+ opacity: 0;
2196
+ -webkit-transform: translateY(2000px);
2197
+ }
2198
+ }
2199
+
2200
+ @-moz-keyframes bounceOutDown {
2201
+ 0% {
2202
+ -moz-transform: translateY(0);
2203
+ }
2204
+
2205
+ 20% {
2206
+ opacity: 1;
2207
+ -moz-transform: translateY(-20px);
2208
+ }
2209
+
2210
+ 100% {
2211
+ opacity: 0;
2212
+ -moz-transform: translateY(2000px);
2213
+ }
2214
+ }
2215
+
2216
+ @-o-keyframes bounceOutDown {
2217
+ 0% {
2218
+ -o-transform: translateY(0);
2219
+ }
2220
+
2221
+ 20% {
2222
+ opacity: 1;
2223
+ -o-transform: translateY(-20px);
2224
+ }
2225
+
2226
+ 100% {
2227
+ opacity: 0;
2228
+ -o-transform: translateY(2000px);
2229
+ }
2230
+ }
2231
+
2232
+ @keyframes bounceOutDown {
2233
+ 0% {
2234
+ transform: translateY(0);
2235
+ }
2236
+
2237
+ 20% {
2238
+ opacity: 1;
2239
+ transform: translateY(-20px);
2240
+ }
2241
+
2242
+ 100% {
2243
+ opacity: 0;
2244
+ transform: translateY(2000px);
2245
+ }
2246
+ }
2247
+
2248
+ .bounceOutDown {
2249
+ -webkit-animation-name: bounceOutDown;
2250
+ -moz-animation-name: bounceOutDown;
2251
+ -o-animation-name: bounceOutDown;
2252
+ animation-name: bounceOutDown;
2253
+ }
2254
+ @-webkit-keyframes bounceOutLeft {
2255
+ 0% {
2256
+ -webkit-transform: translateX(0);
2257
+ }
2258
+
2259
+ 20% {
2260
+ opacity: 1;
2261
+ -webkit-transform: translateX(20px);
2262
+ }
2263
+
2264
+ 100% {
2265
+ opacity: 0;
2266
+ -webkit-transform: translateX(-2000px);
2267
+ }
2268
+ }
2269
+
2270
+ @-moz-keyframes bounceOutLeft {
2271
+ 0% {
2272
+ -moz-transform: translateX(0);
2273
+ }
2274
+
2275
+ 20% {
2276
+ opacity: 1;
2277
+ -moz-transform: translateX(20px);
2278
+ }
2279
+
2280
+ 100% {
2281
+ opacity: 0;
2282
+ -moz-transform: translateX(-2000px);
2283
+ }
2284
+ }
2285
+
2286
+ @-o-keyframes bounceOutLeft {
2287
+ 0% {
2288
+ -o-transform: translateX(0);
2289
+ }
2290
+
2291
+ 20% {
2292
+ opacity: 1;
2293
+ -o-transform: translateX(20px);
2294
+ }
2295
+
2296
+ 100% {
2297
+ opacity: 0;
2298
+ -o-transform: translateX(-2000px);
2299
+ }
2300
+ }
2301
+
2302
+ @keyframes bounceOutLeft {
2303
+ 0% {
2304
+ transform: translateX(0);
2305
+ }
2306
+
2307
+ 20% {
2308
+ opacity: 1;
2309
+ transform: translateX(20px);
2310
+ }
2311
+
2312
+ 100% {
2313
+ opacity: 0;
2314
+ transform: translateX(-2000px);
2315
+ }
2316
+ }
2317
+
2318
+ .bounceOutLeft {
2319
+ -webkit-animation-name: bounceOutLeft;
2320
+ -moz-animation-name: bounceOutLeft;
2321
+ -o-animation-name: bounceOutLeft;
2322
+ animation-name: bounceOutLeft;
2323
+ }
2324
+ @-webkit-keyframes bounceOutRight {
2325
+ 0% {
2326
+ -webkit-transform: translateX(0);
2327
+ }
2328
+
2329
+ 20% {
2330
+ opacity: 1;
2331
+ -webkit-transform: translateX(-20px);
2332
+ }
2333
+
2334
+ 100% {
2335
+ opacity: 0;
2336
+ -webkit-transform: translateX(2000px);
2337
+ }
2338
+ }
2339
+
2340
+ @-moz-keyframes bounceOutRight {
2341
+ 0% {
2342
+ -moz-transform: translateX(0);
2343
+ }
2344
+
2345
+ 20% {
2346
+ opacity: 1;
2347
+ -moz-transform: translateX(-20px);
2348
+ }
2349
+
2350
+ 100% {
2351
+ opacity: 0;
2352
+ -moz-transform: translateX(2000px);
2353
+ }
2354
+ }
2355
+
2356
+ @-o-keyframes bounceOutRight {
2357
+ 0% {
2358
+ -o-transform: translateX(0);
2359
+ }
2360
+
2361
+ 20% {
2362
+ opacity: 1;
2363
+ -o-transform: translateX(-20px);
2364
+ }
2365
+
2366
+ 100% {
2367
+ opacity: 0;
2368
+ -o-transform: translateX(2000px);
2369
+ }
2370
+ }
2371
+
2372
+ @keyframes bounceOutRight {
2373
+ 0% {
2374
+ transform: translateX(0);
2375
+ }
2376
+
2377
+ 20% {
2378
+ opacity: 1;
2379
+ transform: translateX(-20px);
2380
+ }
2381
+
2382
+ 100% {
2383
+ opacity: 0;
2384
+ transform: translateX(2000px);
2385
+ }
2386
+ }
2387
+
2388
+ .bounceOutRight {
2389
+ -webkit-animation-name: bounceOutRight;
2390
+ -moz-animation-name: bounceOutRight;
2391
+ -o-animation-name: bounceOutRight;
2392
+ animation-name: bounceOutRight;
2393
+ }
2394
+ @-webkit-keyframes rotateIn {
2395
+ 0% {
2396
+ -webkit-transform-origin: center center;
2397
+ -webkit-transform: rotate(-200deg);
2398
+ opacity: 0;
2399
+ }
2400
+
2401
+ 100% {
2402
+ -webkit-transform-origin: center center;
2403
+ -webkit-transform: rotate(0);
2404
+ opacity: 1;
2405
+ }
2406
+ }
2407
+ @-moz-keyframes rotateIn {
2408
+ 0% {
2409
+ -moz-transform-origin: center center;
2410
+ -moz-transform: rotate(-200deg);
2411
+ opacity: 0;
2412
+ }
2413
+
2414
+ 100% {
2415
+ -moz-transform-origin: center center;
2416
+ -moz-transform: rotate(0);
2417
+ opacity: 1;
2418
+ }
2419
+ }
2420
+ @-o-keyframes rotateIn {
2421
+ 0% {
2422
+ -o-transform-origin: center center;
2423
+ -o-transform: rotate(-200deg);
2424
+ opacity: 0;
2425
+ }
2426
+
2427
+ 100% {
2428
+ -o-transform-origin: center center;
2429
+ -o-transform: rotate(0);
2430
+ opacity: 1;
2431
+ }
2432
+ }
2433
+ @keyframes rotateIn {
2434
+ 0% {
2435
+ transform-origin: center center;
2436
+ transform: rotate(-200deg);
2437
+ opacity: 0;
2438
+ }
2439
+
2440
+ 100% {
2441
+ transform-origin: center center;
2442
+ transform: rotate(0);
2443
+ opacity: 1;
2444
+ }
2445
+ }
2446
+
2447
+ .rotateIn {
2448
+ -webkit-animation-name: rotateIn;
2449
+ -moz-animation-name: rotateIn;
2450
+ -o-animation-name: rotateIn;
2451
+ animation-name: rotateIn;
2452
+ }
2453
+ @-webkit-keyframes rotateInUpLeft {
2454
+ 0% {
2455
+ -webkit-transform-origin: left bottom;
2456
+ -webkit-transform: rotate(90deg);
2457
+ opacity: 0;
2458
+ }
2459
+
2460
+ 100% {
2461
+ -webkit-transform-origin: left bottom;
2462
+ -webkit-transform: rotate(0);
2463
+ opacity: 1;
2464
+ }
2465
+ }
2466
+
2467
+ @-moz-keyframes rotateInUpLeft {
2468
+ 0% {
2469
+ -moz-transform-origin: left bottom;
2470
+ -moz-transform: rotate(90deg);
2471
+ opacity: 0;
2472
+ }
2473
+
2474
+ 100% {
2475
+ -moz-transform-origin: left bottom;
2476
+ -moz-transform: rotate(0);
2477
+ opacity: 1;
2478
+ }
2479
+ }
2480
+
2481
+ @-o-keyframes rotateInUpLeft {
2482
+ 0% {
2483
+ -o-transform-origin: left bottom;
2484
+ -o-transform: rotate(90deg);
2485
+ opacity: 0;
2486
+ }
2487
+
2488
+ 100% {
2489
+ -o-transform-origin: left bottom;
2490
+ -o-transform: rotate(0);
2491
+ opacity: 1;
2492
+ }
2493
+ }
2494
+
2495
+ @keyframes rotateInUpLeft {
2496
+ 0% {
2497
+ transform-origin: left bottom;
2498
+ transform: rotate(90deg);
2499
+ opacity: 0;
2500
+ }
2501
+
2502
+ 100% {
2503
+ transform-origin: left bottom;
2504
+ transform: rotate(0);
2505
+ opacity: 1;
2506
+ }
2507
+ }
2508
+
2509
+ .rotateInUpLeft {
2510
+ -webkit-animation-name: rotateInUpLeft;
2511
+ -moz-animation-name: rotateInUpLeft;
2512
+ -o-animation-name: rotateInUpLeft;
2513
+ animation-name: rotateInUpLeft;
2514
+ }
2515
+ @-webkit-keyframes rotateInDownLeft {
2516
+ 0% {
2517
+ -webkit-transform-origin: left bottom;
2518
+ -webkit-transform: rotate(-90deg);
2519
+ opacity: 0;
2520
+ }
2521
+
2522
+ 100% {
2523
+ -webkit-transform-origin: left bottom;
2524
+ -webkit-transform: rotate(0);
2525
+ opacity: 1;
2526
+ }
2527
+ }
2528
+
2529
+ @-moz-keyframes rotateInDownLeft {
2530
+ 0% {
2531
+ -moz-transform-origin: left bottom;
2532
+ -moz-transform: rotate(-90deg);
2533
+ opacity: 0;
2534
+ }
2535
+
2536
+ 100% {
2537
+ -moz-transform-origin: left bottom;
2538
+ -moz-transform: rotate(0);
2539
+ opacity: 1;
2540
+ }
2541
+ }
2542
+
2543
+ @-o-keyframes rotateInDownLeft {
2544
+ 0% {
2545
+ -o-transform-origin: left bottom;
2546
+ -o-transform: rotate(-90deg);
2547
+ opacity: 0;
2548
+ }
2549
+
2550
+ 100% {
2551
+ -o-transform-origin: left bottom;
2552
+ -o-transform: rotate(0);
2553
+ opacity: 1;
2554
+ }
2555
+ }
2556
+
2557
+ @keyframes rotateInDownLeft {
2558
+ 0% {
2559
+ transform-origin: left bottom;
2560
+ transform: rotate(-90deg);
2561
+ opacity: 0;
2562
+ }
2563
+
2564
+ 100% {
2565
+ transform-origin: left bottom;
2566
+ transform: rotate(0);
2567
+ opacity: 1;
2568
+ }
2569
+ }
2570
+
2571
+ .rotateInDownLeft {
2572
+ -webkit-animation-name: rotateInDownLeft;
2573
+ -moz-animation-name: rotateInDownLeft;
2574
+ -o-animation-name: rotateInDownLeft;
2575
+ animation-name: rotateInDownLeft;
2576
+ }
2577
+ @-webkit-keyframes rotateInUpRight {
2578
+ 0% {
2579
+ -webkit-transform-origin: right bottom;
2580
+ -webkit-transform: rotate(-90deg);
2581
+ opacity: 0;
2582
+ }
2583
+
2584
+ 100% {
2585
+ -webkit-transform-origin: right bottom;
2586
+ -webkit-transform: rotate(0);
2587
+ opacity: 1;
2588
+ }
2589
+ }
2590
+
2591
+ @-moz-keyframes rotateInUpRight {
2592
+ 0% {
2593
+ -moz-transform-origin: right bottom;
2594
+ -moz-transform: rotate(-90deg);
2595
+ opacity: 0;
2596
+ }
2597
+
2598
+ 100% {
2599
+ -moz-transform-origin: right bottom;
2600
+ -moz-transform: rotate(0);
2601
+ opacity: 1;
2602
+ }
2603
+ }
2604
+
2605
+ @-o-keyframes rotateInUpRight {
2606
+ 0% {
2607
+ -o-transform-origin: right bottom;
2608
+ -o-transform: rotate(-90deg);
2609
+ opacity: 0;
2610
+ }
2611
+
2612
+ 100% {
2613
+ -o-transform-origin: right bottom;
2614
+ -o-transform: rotate(0);
2615
+ opacity: 1;
2616
+ }
2617
+ }
2618
+
2619
+ @keyframes rotateInUpRight {
2620
+ 0% {
2621
+ transform-origin: right bottom;
2622
+ transform: rotate(-90deg);
2623
+ opacity: 0;
2624
+ }
2625
+
2626
+ 100% {
2627
+ transform-origin: right bottom;
2628
+ transform: rotate(0);
2629
+ opacity: 1;
2630
+ }
2631
+ }
2632
+
2633
+ .rotateInUpRight {
2634
+ -webkit-animation-name: rotateInUpRight;
2635
+ -moz-animation-name: rotateInUpRight;
2636
+ -o-animation-name: rotateInUpRight;
2637
+ animation-name: rotateInUpRight;
2638
+ }
2639
+ @-webkit-keyframes rotateInDownRight {
2640
+ 0% {
2641
+ -webkit-transform-origin: right bottom;
2642
+ -webkit-transform: rotate(90deg);
2643
+ opacity: 0;
2644
+ }
2645
+
2646
+ 100% {
2647
+ -webkit-transform-origin: right bottom;
2648
+ -webkit-transform: rotate(0);
2649
+ opacity: 1;
2650
+ }
2651
+ }
2652
+
2653
+ @-moz-keyframes rotateInDownRight {
2654
+ 0% {
2655
+ -moz-transform-origin: right bottom;
2656
+ -moz-transform: rotate(90deg);
2657
+ opacity: 0;
2658
+ }
2659
+
2660
+ 100% {
2661
+ -moz-transform-origin: right bottom;
2662
+ -moz-transform: rotate(0);
2663
+ opacity: 1;
2664
+ }
2665
+ }
2666
+
2667
+ @-o-keyframes rotateInDownRight {
2668
+ 0% {
2669
+ -o-transform-origin: right bottom;
2670
+ -o-transform: rotate(90deg);
2671
+ opacity: 0;
2672
+ }
2673
+
2674
+ 100% {
2675
+ -o-transform-origin: right bottom;
2676
+ -o-transform: rotate(0);
2677
+ opacity: 1;
2678
+ }
2679
+ }
2680
+
2681
+ @keyframes rotateInDownRight {
2682
+ 0% {
2683
+ transform-origin: right bottom;
2684
+ transform: rotate(90deg);
2685
+ opacity: 0;
2686
+ }
2687
+
2688
+ 100% {
2689
+ transform-origin: right bottom;
2690
+ transform: rotate(0);
2691
+ opacity: 1;
2692
+ }
2693
+ }
2694
+
2695
+ .rotateInDownRight {
2696
+ -webkit-animation-name: rotateInDownRight;
2697
+ -moz-animation-name: rotateInDownRight;
2698
+ -o-animation-name: rotateInDownRight;
2699
+ animation-name: rotateInDownRight;
2700
+ }
2701
+ @-webkit-keyframes rotateOut {
2702
+ 0% {
2703
+ -webkit-transform-origin: center center;
2704
+ -webkit-transform: rotate(0);
2705
+ opacity: 1;
2706
+ }
2707
+
2708
+ 100% {
2709
+ -webkit-transform-origin: center center;
2710
+ -webkit-transform: rotate(200deg);
2711
+ opacity: 0;
2712
+ }
2713
+ }
2714
+
2715
+ @-moz-keyframes rotateOut {
2716
+ 0% {
2717
+ -moz-transform-origin: center center;
2718
+ -moz-transform: rotate(0);
2719
+ opacity: 1;
2720
+ }
2721
+
2722
+ 100% {
2723
+ -moz-transform-origin: center center;
2724
+ -moz-transform: rotate(200deg);
2725
+ opacity: 0;
2726
+ }
2727
+ }
2728
+
2729
+ @-o-keyframes rotateOut {
2730
+ 0% {
2731
+ -o-transform-origin: center center;
2732
+ -o-transform: rotate(0);
2733
+ opacity: 1;
2734
+ }
2735
+
2736
+ 100% {
2737
+ -o-transform-origin: center center;
2738
+ -o-transform: rotate(200deg);
2739
+ opacity: 0;
2740
+ }
2741
+ }
2742
+
2743
+ @keyframes rotateOut {
2744
+ 0% {
2745
+ transform-origin: center center;
2746
+ transform: rotate(0);
2747
+ opacity: 1;
2748
+ }
2749
+
2750
+ 100% {
2751
+ transform-origin: center center;
2752
+ transform: rotate(200deg);
2753
+ opacity: 0;
2754
+ }
2755
+ }
2756
+
2757
+ .rotateOut {
2758
+ -webkit-animation-name: rotateOut;
2759
+ -moz-animation-name: rotateOut;
2760
+ -o-animation-name: rotateOut;
2761
+ animation-name: rotateOut;
2762
+ }
2763
+ @-webkit-keyframes rotateOutUpLeft {
2764
+ 0% {
2765
+ -webkit-transform-origin: left bottom;
2766
+ -webkit-transform: rotate(0);
2767
+ opacity: 1;
2768
+ }
2769
+
2770
+ 100% {
2771
+ -webkit-transform-origin: left bottom;
2772
+ -webkit-transform: rotate(-90deg);
2773
+ opacity: 0;
2774
+ }
2775
+ }
2776
+
2777
+ @-moz-keyframes rotateOutUpLeft {
2778
+ 0% {
2779
+ -moz-transform-origin: left bottom;
2780
+ -moz-transform: rotate(0);
2781
+ opacity: 1;
2782
+ }
2783
+
2784
+ 100% {
2785
+ -moz-transform-origin: left bottom;
2786
+ -moz-transform: rotate(-90deg);
2787
+ opacity: 0;
2788
+ }
2789
+ }
2790
+
2791
+ @-o-keyframes rotateOutUpLeft {
2792
+ 0% {
2793
+ -o-transform-origin: left bottom;
2794
+ -o-transform: rotate(0);
2795
+ opacity: 1;
2796
+ }
2797
+
2798
+ 100% {
2799
+ -o-transform-origin: left bottom;
2800
+ -o-transform: rotate(-90deg);
2801
+ opacity: 0;
2802
+ }
2803
+ }
2804
+
2805
+ @keyframes rotateOutUpLeft {
2806
+ 0% {
2807
+ transform-origin: left bottom;
2808
+ transform: rotate(0);
2809
+ opacity: 1;
2810
+ }
2811
+
2812
+ 100% {
2813
+ -transform-origin: left bottom;
2814
+ -transform: rotate(-90deg);
2815
+ opacity: 0;
2816
+ }
2817
+ }
2818
+
2819
+ .rotateOutUpLeft {
2820
+ -webkit-animation-name: rotateOutUpLeft;
2821
+ -moz-animation-name: rotateOutUpLeft;
2822
+ -o-animation-name: rotateOutUpLeft;
2823
+ animation-name: rotateOutUpLeft;
2824
+ }
2825
+ @-webkit-keyframes rotateOutDownLeft {
2826
+ 0% {
2827
+ -webkit-transform-origin: left bottom;
2828
+ -webkit-transform: rotate(0);
2829
+ opacity: 1;
2830
+ }
2831
+
2832
+ 100% {
2833
+ -webkit-transform-origin: left bottom;
2834
+ -webkit-transform: rotate(90deg);
2835
+ opacity: 0;
2836
+ }
2837
+ }
2838
+
2839
+ @-moz-keyframes rotateOutDownLeft {
2840
+ 0% {
2841
+ -moz-transform-origin: left bottom;
2842
+ -moz-transform: rotate(0);
2843
+ opacity: 1;
2844
+ }
2845
+
2846
+ 100% {
2847
+ -moz-transform-origin: left bottom;
2848
+ -moz-transform: rotate(90deg);
2849
+ opacity: 0;
2850
+ }
2851
+ }
2852
+
2853
+ @-o-keyframes rotateOutDownLeft {
2854
+ 0% {
2855
+ -o-transform-origin: left bottom;
2856
+ -o-transform: rotate(0);
2857
+ opacity: 1;
2858
+ }
2859
+
2860
+ 100% {
2861
+ -o-transform-origin: left bottom;
2862
+ -o-transform: rotate(90deg);
2863
+ opacity: 0;
2864
+ }
2865
+ }
2866
+
2867
+ @keyframes rotateOutDownLeft {
2868
+ 0% {
2869
+ transform-origin: left bottom;
2870
+ transform: rotate(0);
2871
+ opacity: 1;
2872
+ }
2873
+
2874
+ 100% {
2875
+ transform-origin: left bottom;
2876
+ transform: rotate(90deg);
2877
+ opacity: 0;
2878
+ }
2879
+ }
2880
+
2881
+ .rotateOutDownLeft {
2882
+ -webkit-animation-name: rotateOutDownLeft;
2883
+ -moz-animation-name: rotateOutDownLeft;
2884
+ -o-animation-name: rotateOutDownLeft;
2885
+ animation-name: rotateOutDownLeft;
2886
+ }
2887
+ @-webkit-keyframes rotateOutUpRight {
2888
+ 0% {
2889
+ -webkit-transform-origin: right bottom;
2890
+ -webkit-transform: rotate(0);
2891
+ opacity: 1;
2892
+ }
2893
+
2894
+ 100% {
2895
+ -webkit-transform-origin: right bottom;
2896
+ -webkit-transform: rotate(90deg);
2897
+ opacity: 0;
2898
+ }
2899
+ }
2900
+
2901
+ @-moz-keyframes rotateOutUpRight {
2902
+ 0% {
2903
+ -moz-transform-origin: right bottom;
2904
+ -moz-transform: rotate(0);
2905
+ opacity: 1;
2906
+ }
2907
+
2908
+ 100% {
2909
+ -moz-transform-origin: right bottom;
2910
+ -moz-transform: rotate(90deg);
2911
+ opacity: 0;
2912
+ }
2913
+ }
2914
+
2915
+ @-o-keyframes rotateOutUpRight {
2916
+ 0% {
2917
+ -o-transform-origin: right bottom;
2918
+ -o-transform: rotate(0);
2919
+ opacity: 1;
2920
+ }
2921
+
2922
+ 100% {
2923
+ -o-transform-origin: right bottom;
2924
+ -o-transform: rotate(90deg);
2925
+ opacity: 0;
2926
+ }
2927
+ }
2928
+
2929
+ @keyframes rotateOutUpRight {
2930
+ 0% {
2931
+ transform-origin: right bottom;
2932
+ transform: rotate(0);
2933
+ opacity: 1;
2934
+ }
2935
+
2936
+ 100% {
2937
+ transform-origin: right bottom;
2938
+ transform: rotate(90deg);
2939
+ opacity: 0;
2940
+ }
2941
+ }
2942
+
2943
+ .rotateOutUpRight {
2944
+ -webkit-animation-name: rotateOutUpRight;
2945
+ -moz-animation-name: rotateOutUpRight;
2946
+ -o-animation-name: rotateOutUpRight;
2947
+ animation-name: rotateOutUpRight;
2948
+ }
2949
+ @-webkit-keyframes rotateOutDownRight {
2950
+ 0% {
2951
+ -webkit-transform-origin: right bottom;
2952
+ -webkit-transform: rotate(0);
2953
+ opacity: 1;
2954
+ }
2955
+
2956
+ 100% {
2957
+ -webkit-transform-origin: right bottom;
2958
+ -webkit-transform: rotate(-90deg);
2959
+ opacity: 0;
2960
+ }
2961
+ }
2962
+
2963
+ @-moz-keyframes rotateOutDownRight {
2964
+ 0% {
2965
+ -moz-transform-origin: right bottom;
2966
+ -moz-transform: rotate(0);
2967
+ opacity: 1;
2968
+ }
2969
+
2970
+ 100% {
2971
+ -moz-transform-origin: right bottom;
2972
+ -moz-transform: rotate(-90deg);
2973
+ opacity: 0;
2974
+ }
2975
+ }
2976
+
2977
+ @-o-keyframes rotateOutDownRight {
2978
+ 0% {
2979
+ -o-transform-origin: right bottom;
2980
+ -o-transform: rotate(0);
2981
+ opacity: 1;
2982
+ }
2983
+
2984
+ 100% {
2985
+ -o-transform-origin: right bottom;
2986
+ -o-transform: rotate(-90deg);
2987
+ opacity: 0;
2988
+ }
2989
+ }
2990
+
2991
+ @keyframes rotateOutDownRight {
2992
+ 0% {
2993
+ transform-origin: right bottom;
2994
+ transform: rotate(0);
2995
+ opacity: 1;
2996
+ }
2997
+
2998
+ 100% {
2999
+ transform-origin: right bottom;
3000
+ transform: rotate(-90deg);
3001
+ opacity: 0;
3002
+ }
3003
+ }
3004
+
3005
+ .rotateOutDownRight {
3006
+ -webkit-animation-name: rotateOutDownRight;
3007
+ -moz-animation-name: rotateOutDownRight;
3008
+ -o-animation-name: rotateOutDownRight;
3009
+ animation-name: rotateOutDownRight;
3010
+ }
3011
+ @-webkit-keyframes lightSpeedIn {
3012
+ 0% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
3013
+ 60% { -webkit-transform: translateX(-20%) skewX(30deg); opacity: 1; }
3014
+ 80% { -webkit-transform: translateX(0%) skewX(-15deg); opacity: 1; }
3015
+ 100% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
3016
+ }
3017
+
3018
+ @-moz-keyframes lightSpeedIn {
3019
+ 0% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
3020
+ 60% { -moz-transform: translateX(-20%) skewX(30deg); opacity: 1; }
3021
+ 80% { -moz-transform: translateX(0%) skewX(-15deg); opacity: 1; }
3022
+ 100% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
3023
+ }
3024
+
3025
+ @-o-keyframes lightSpeedIn {
3026
+ 0% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
3027
+ 60% { -o-transform: translateX(-20%) skewX(30deg); opacity: 1; }
3028
+ 80% { -o-transform: translateX(0%) skewX(-15deg); opacity: 1; }
3029
+ 100% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
3030
+ }
3031
+
3032
+ @keyframes lightSpeedIn {
3033
+ 0% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
3034
+ 60% { transform: translateX(-20%) skewX(30deg); opacity: 1; }
3035
+ 80% { transform: translateX(0%) skewX(-15deg); opacity: 1; }
3036
+ 100% { transform: translateX(0%) skewX(0deg); opacity: 1; }
3037
+ }
3038
+
3039
+ .lightSpeedIn {
3040
+ -webkit-animation-name: lightSpeedIn;
3041
+ -moz-animation-name: lightSpeedIn;
3042
+ -o-animation-name: lightSpeedIn;
3043
+ animation-name: lightSpeedIn;
3044
+
3045
+ -webkit-animation-timing-function: ease-out;
3046
+ -moz-animation-timing-function: ease-out;
3047
+ -o-animation-timing-function: ease-out;
3048
+ animation-timing-function: ease-out;
3049
+ }
3050
+ @-webkit-keyframes lightSpeedOut {
3051
+ 0% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
3052
+ 100% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
3053
+ }
3054
+
3055
+ @-moz-keyframes lightSpeedOut {
3056
+ 0% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
3057
+ 100% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
3058
+ }
3059
+
3060
+ @-o-keyframes lightSpeedOut {
3061
+ 0% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
3062
+ 100% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
3063
+ }
3064
+
3065
+ @keyframes lightSpeedOut {
3066
+ 0% { transform: translateX(0%) skewX(0deg); opacity: 1; }
3067
+ 100% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
3068
+ }
3069
+
3070
+ .lightSpeedOut {
3071
+ -webkit-animation-name: lightSpeedOut;
3072
+ -moz-animation-name: lightSpeedOut;
3073
+ -o-animation-name: lightSpeedOut;
3074
+ animation-name: lightSpeedOut;
3075
+
3076
+ -webkit-animation-timing-function: ease-in;
3077
+ -moz-animation-timing-function: ease-in;
3078
+ -o-animation-timing-function: ease-in;
3079
+ animation-timing-function: ease-in;
3080
+ }
3081
+ @-webkit-keyframes hinge {
3082
+ 0% { -webkit-transform: rotate(0); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
3083
+ 20%, 60% { -webkit-transform: rotate(80deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
3084
+ 40% { -webkit-transform: rotate(60deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
3085
+ 80% { -webkit-transform: rotate(60deg) translateY(0); opacity: 1; -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
3086
+ 100% { -webkit-transform: translateY(700px); opacity: 0; }
3087
+ }
3088
+
3089
+ @-moz-keyframes hinge {
3090
+ 0% { -moz-transform: rotate(0); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
3091
+ 20%, 60% { -moz-transform: rotate(80deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
3092
+ 40% { -moz-transform: rotate(60deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
3093
+ 80% { -moz-transform: rotate(60deg) translateY(0); opacity: 1; -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
3094
+ 100% { -moz-transform: translateY(700px); opacity: 0; }
3095
+ }
3096
+
3097
+ @-o-keyframes hinge {
3098
+ 0% { -o-transform: rotate(0); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
3099
+ 20%, 60% { -o-transform: rotate(80deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
3100
+ 40% { -o-transform: rotate(60deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
3101
+ 80% { -o-transform: rotate(60deg) translateY(0); opacity: 1; -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
3102
+ 100% { -o-transform: translateY(700px); opacity: 0; }
3103
+ }
3104
+
3105
+ @keyframes hinge {
3106
+ 0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; }
3107
+ 20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; }
3108
+ 40% { transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out; }
3109
+ 80% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; }
3110
+ 100% { transform: translateY(700px); opacity: 0; }
3111
+ }
3112
+
3113
+ .hinge {
3114
+ -webkit-animation-name: hinge;
3115
+ -moz-animation-name: hinge;
3116
+ -o-animation-name: hinge;
3117
+ animation-name: hinge;
3118
+ }
3119
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
3120
+
3121
+ @-webkit-keyframes rollIn {
3122
+ 0% { opacity: 0; -webkit-transform: translateX(-100%) rotate(-120deg); }
3123
+ 100% { opacity: 1; -webkit-transform: translateX(0px) rotate(0deg); }
3124
+ }
3125
+
3126
+ @-moz-keyframes rollIn {
3127
+ 0% { opacity: 0; -moz-transform: translateX(-100%) rotate(-120deg); }
3128
+ 100% { opacity: 1; -moz-transform: translateX(0px) rotate(0deg); }
3129
+ }
3130
+
3131
+ @-o-keyframes rollIn {
3132
+ 0% { opacity: 0; -o-transform: translateX(-100%) rotate(-120deg); }
3133
+ 100% { opacity: 1; -o-transform: translateX(0px) rotate(0deg); }
3134
+ }
3135
+
3136
+ @keyframes rollIn {
3137
+ 0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
3138
+ 100% { opacity: 1; transform: translateX(0px) rotate(0deg); }
3139
+ }
3140
+
3141
+ .rollIn {
3142
+ -webkit-animation-name: rollIn;
3143
+ -moz-animation-name: rollIn;
3144
+ -o-animation-name: rollIn;
3145
+ animation-name: rollIn;
3146
+ }
3147
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
3148
+
3149
+ @-webkit-keyframes rollOut {
3150
+ 0% {
3151
+ opacity: 1;
3152
+ -webkit-transform: translateX(0px) rotate(0deg);
3153
+ }
3154
+
3155
+ 100% {
3156
+ opacity: 0;
3157
+ -webkit-transform: translateX(100%) rotate(120deg);
3158
+ }
3159
+ }
3160
+
3161
+ @-moz-keyframes rollOut {
3162
+ 0% {
3163
+ opacity: 1;
3164
+ -moz-transform: translateX(0px) rotate(0deg);
3165
+ }
3166
+
3167
+ 100% {
3168
+ opacity: 0;
3169
+ -moz-transform: translateX(100%) rotate(120deg);
3170
+ }
3171
+ }
3172
+
3173
+ @-o-keyframes rollOut {
3174
+ 0% {
3175
+ opacity: 1;
3176
+ -o-transform: translateX(0px) rotate(0deg);
3177
+ }
3178
+
3179
+ 100% {
3180
+ opacity: 0;
3181
+ -o-transform: translateX(100%) rotate(120deg);
3182
+ }
3183
+ }
3184
+
3185
+ @keyframes rollOut {
3186
+ 0% {
3187
+ opacity: 1;
3188
+ transform: translateX(0px) rotate(0deg);
3189
+ }
3190
+
3191
+ 100% {
3192
+ opacity: 0;
3193
+ transform: translateX(100%) rotate(120deg);
3194
+ }
3195
+ }
3196
+
3197
+ .rollOut {
3198
+ -webkit-animation-name: rollOut;
3199
+ -moz-animation-name: rollOut;
3200
+ -o-animation-name: rollOut;
3201
+ animation-name: rollOut;
3202
+ }
backend/settings/assets/icons/add-before.png ADDED
Binary file
backend/settings/assets/icons/add.png ADDED
Binary file
{settings/types → backend/settings/assets}/icons/arrow-left.png RENAMED
File without changes
{settings/types → backend/settings/assets}/icons/arrow-right.png RENAMED
File without changes
backend/settings/assets/icons/b-asettings.png ADDED
Binary file
backend/settings/assets/icons/b-back.png ADDED
Binary file
backend/settings/assets/icons/b-bulb.png ADDED
Binary file
backend/settings/assets/icons/b-eye.png ADDED
Binary file
backend/settings/assets/icons/b-frontend.png ADDED
Binary file
backend/settings/assets/icons/b-layout.png ADDED
Binary file
backend/settings/assets/icons/b-maximise.png ADDED
Binary file
backend/settings/assets/icons/b-multisite.png ADDED
Binary file
backend/settings/assets/icons/b-refresh.png ADDED
Binary file
backend/settings/assets/icons/b-settings.png ADDED
Binary file
backend/settings/assets/icons/b-stat.png ADDED
Binary file
backend/settings/assets/icons/b-tray.png ADDED
Binary file
backend/settings/assets/icons/b-warning.png ADDED
Binary file
{settings/types → backend/settings/assets}/icons/black_arrow.png RENAMED
File without changes
{settings/types → backend/settings/assets}/icons/close.png RENAMED
File without changes
backend/settings/assets/icons/cross.png ADDED
Binary file
backend/settings/assets/icons/delete.png ADDED
Binary file
{settings/types → backend/settings/assets}/icons/down.png RENAMED
File without changes
{settings/types → backend/settings/assets}/icons/drag.png RENAMED
File without changes
css/img/magnifiers/magn3.png → backend/settings/assets/icons/exclamation.png RENAMED
Binary file
{settings/types → backend/settings/assets}/icons/float.png RENAMED
File without changes
backend/settings/assets/icons/gear.png ADDED
Binary file
backend/settings/assets/icons/grad-deg.png ADDED
Binary file
{settings/types → backend/settings/assets}/icons/info.png RENAMED
File without changes
{settings/types → backend/settings/assets}/icons/labelposition.png RENAMED
File without changes
backend/settings/assets/icons/load24x24.gif ADDED
Binary file
backend/settings/assets/icons/loading-big.gif ADDED
Binary file
backend/settings/assets/icons/magn.svg ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+
3
+
4
+ <!-- The icon can be used freely in both personal and commercial projects with no attribution required, but always appreciated.
5
+ You may NOT sub-license, resell, rent, redistribute or otherwise transfer the icon without express written permission from iconmonstr.com -->
6
+
7
+
8
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
9
+
10
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
11
+
12
+ width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
13
+
14
+ <path id="magnifier-3-icon" d="M208.464,363.98c-86.564,0-156.989-70.426-156.989-156.99C51.475,120.426,121.899,50,208.464,50
15
+
16
+ c86.565,0,156.991,70.426,156.991,156.991C365.455,293.555,295.029,363.98,208.464,363.98z M208.464,103.601
17
+
18
+ c-57.01,0-103.389,46.381-103.389,103.39s46.379,103.389,103.389,103.389c57.009,0,103.391-46.38,103.391-103.389
19
+
20
+ S265.473,103.601,208.464,103.601z M367.482,317.227c-14.031,20.178-31.797,37.567-52.291,51.166L408.798,462l51.728-51.729
21
+
22
+ L367.482,317.227z"/>
23
+
24
+ </svg>
25
+
backend/settings/assets/icons/on-off-new.png ADDED
Binary file
{settings/types → backend/settings/assets}/icons/paint.png RENAMED
File without changes
backend/settings/assets/icons/pattern-subtle.png ADDED
Binary file
backend/settings/assets/icons/pen.png ADDED
Binary file
{settings/types → backend/settings/assets}/icons/point.png RENAMED
File without changes
backend/settings/assets/icons/settings.png ADDED
Binary file
{settings/types → backend/settings/assets}/icons/slides.png RENAMED
File without changes
backend/settings/assets/icons/tick.png ADDED
Binary file
backend/settings/assets/icons/tie.png ADDED
Binary file
{settings/types → backend/settings/assets}/icons/up.png RENAMED
File without changes
backend/settings/assets/icons/updown12x25.png ADDED
Binary file
backend/settings/assets/icons/upload-before.png ADDED
Binary file
backend/settings/assets/js/spectrum/spectrum.css ADDED
@@ -0,0 +1,493 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /***
2
+ Spectrum Colorpicker v1.1.1
3
+ https://github.com/bgrins/spectrum
4
+ Author: Brian Grinstead
5
+ License: MIT
6
+ ***/
7
+
8
+ .sp-container {
9
+ position:absolute;
10
+ top:0;
11
+ left:0;
12
+ display:inline-block;
13
+ *display: inline;
14
+ *zoom: 1;
15
+ z-index: 2147483647;
16
+ overflow: hidden;
17
+ }
18
+
19
+
20
+
21
+ .sp-container.sp-flat {
22
+ position: relative;
23
+ }
24
+
25
+ /* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */
26
+ .sp-top {
27
+ position:relative;
28
+ width: 100%;
29
+ display:inline-block;
30
+ }
31
+ .sp-top-inner {
32
+ position:absolute;
33
+ top:0;
34
+ left:0;
35
+ bottom:0;
36
+ right:0;
37
+ }
38
+ .sp-color {
39
+ position: absolute;
40
+ top:0;
41
+ left:0;
42
+ bottom:0;
43
+ right:20%;
44
+ cursor: pointer;
45
+ }
46
+ .sp-hue {
47
+ position: absolute;
48
+ top:0;
49
+ right:0;
50
+ bottom:0;
51
+ left:84%;
52
+ height: 100%;
53
+ }
54
+ .sp-fill {
55
+ padding-top: 80%;
56
+ }
57
+ .sp-sat, .sp-val {
58
+ position: absolute;
59
+ top:0;
60
+ left:0;
61
+ right:0;
62
+ bottom:0;
63
+ }
64
+
65
+ .sp-alpha-enabled .sp-top
66
+ {
67
+ margin-bottom: 18px;
68
+ }
69
+ .sp-alpha-enabled .sp-alpha
70
+ {
71
+ display: block;
72
+ }
73
+
74
+ .sp-alpha-handle
75
+ {
76
+ position:absolute;
77
+ top:-4px;
78
+ bottom: -4px;
79
+ width: 6px;
80
+ left: 50%;
81
+ cursor: pointer;
82
+ border: 1px solid black;
83
+ background: white;
84
+ opacity: .8;
85
+ }
86
+
87
+ .sp-alpha
88
+ {
89
+ display: none;
90
+ position: absolute;
91
+ bottom: -14px;
92
+ right: 0;
93
+ left: 0;
94
+ height: 8px;
95
+ }
96
+ .sp-alpha-inner{
97
+ border: solid 1px #333;
98
+ }
99
+
100
+ /* Don't allow text selection */
101
+ .sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button {
102
+ -webkit-user-select:none;
103
+ -moz-user-select: -moz-none;
104
+ -o-user-select:none;
105
+ user-select: none;
106
+ }
107
+
108
+ .sp-container.sp-input-disabled .sp-input-container {
109
+ display: none;
110
+ }
111
+ .sp-container.sp-buttons-disabled .sp-button-container {
112
+ display: none;
113
+ }
114
+ .sp-palette-only .sp-picker-container {
115
+ display: none;
116
+ }
117
+ .sp-palette-disabled .sp-palette-container {
118
+ display: none;
119
+ }
120
+
121
+ .sp-initial-disabled .sp-initial {
122
+ display: none;
123
+ }
124
+
125
+
126
+ /* Gradients for hue, saturation and value instead of images. Not pretty... but it works */
127
+ .sp-sat {
128
+ background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#FFF), to(rgba(204, 154, 129, 0)));
129
+ background-image: -webkit-linear-gradient(left, #FFF, rgba(204, 154, 129, 0));
130
+ background-image: -moz-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
131
+ background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
132
+ background-image: -ms-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
133
+ background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
134
+ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
135
+ filter : progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81');
136
+ }
137
+ .sp-val {
138
+ background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#000000), to(rgba(204, 154, 129, 0)));
139
+ background-image: -webkit-linear-gradient(bottom, #000000, rgba(204, 154, 129, 0));
140
+ background-image: -moz-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
141
+ background-image: -o-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
142
+ background-image: -ms-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
143
+ background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
144
+ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
145
+ filter : progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000');
146
+ }
147
+
148
+ .sp-hue {
149
+ background: -moz-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
150
+ background: -ms-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
151
+ background: -o-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
152
+ background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), color-stop(0.17, #ffff00), color-stop(0.33, #00ff00), color-stop(0.5, #00ffff), color-stop(0.67, #0000ff), color-stop(0.83, #ff00ff), to(#ff0000));
153
+ background: -webkit-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
154
+ }
155
+
156
+ /* IE filters do not support multiple color stops.
157
+ Generate 6 divs, line them up, and do two color gradients for each.
158
+ Yes, really.
159
+ */
160
+
161
+ .sp-1 {
162
+ height:17%;
163
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00');
164
+ }
165
+ .sp-2 {
166
+ height:16%;
167
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00');
168
+ }
169
+ .sp-3 {
170
+ height:17%;
171
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff');
172
+ }
173
+ .sp-4 {
174
+ height:17%;
175
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff');
176
+ }
177
+ .sp-5 {
178
+ height:16%;
179
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff');
180
+ }
181
+ .sp-6 {
182
+ height:17%;
183
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000');
184
+ }
185
+
186
+ .sp-hidden {
187
+ display: none !important;
188
+ }
189
+
190
+ /* Clearfix hack */
191
+ .sp-cf:before, .sp-cf:after { content: ""; display: table; }
192
+ .sp-cf:after { clear: both; }
193
+ .sp-cf { *zoom: 1; }
194
+
195
+ /* Mobile devices, make hue slider bigger so it is easier to slide */
196
+ @media (max-device-width: 480px) {
197
+ .sp-color { right: 40%; }
198
+ .sp-hue { left: 63%; }
199
+ .sp-fill { padding-top: 60%; }
200
+ }
201
+
202
+ .sp-dragger {
203
+ border-radius: 5px;
204
+ height: 5px;
205
+ width: 5px;
206
+ border: 1px solid #fff;
207
+ background: #000;
208
+ cursor: pointer;
209
+ position:absolute;
210
+ top:0;
211
+ left: 0;
212
+ }
213
+ .sp-slider {
214
+ position: absolute;
215
+ top:0;
216
+ cursor:pointer;
217
+ height: 3px;
218
+ left: -1px;
219
+ right: -1px;
220
+ border: 1px solid #000;
221
+ background: white;
222
+ opacity: .8;
223
+ }
224
+
225
+ /* Basic display options (colors, fonts, global widths) */
226
+ .sp-container {
227
+ background-color: #FEFEFE;
228
+ border: 1px solid transparent;
229
+ border-radius: 0 0 0 0;
230
+ padding: 0;
231
+ box-shadow: 0 0px 24px -10px #000000;
232
+ }
233
+ .sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue
234
+ {
235
+ font: normal 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
236
+ -webkit-box-sizing: border-box;
237
+ -moz-box-sizing: border-box;
238
+ -ms-box-sizing: border-box;
239
+ box-sizing: border-box;
240
+ }
241
+ .sp-top
242
+ {
243
+ margin-bottom: 3px;
244
+ }
245
+ .sp-color, .sp-hue
246
+ {
247
+ border: solid 1px #666;
248
+ }
249
+
250
+ /* Input */
251
+ .sp-input-container {
252
+ float:right;
253
+ width: 100px;
254
+ margin-bottom: 4px;
255
+ }
256
+ .sp-initial-disabled .sp-input-container {
257
+ width: 100%;
258
+ }
259
+ .sp-input {
260
+ font-size: 12px !important;
261
+ border: 1px inset;
262
+ padding: 4px 5px;
263
+ margin: 0;
264
+ width: 100%;
265
+ background:transparent;
266
+ border-radius: 3px;
267
+ color: #222;
268
+ }
269
+ .sp-input:focus {
270
+ border: 1px solid orange;
271
+ }
272
+ .sp-input.sp-validation-error
273
+ {
274
+ border: 1px solid red;
275
+ background: #fdd;
276
+ }
277
+ .sp-picker-container , .sp-palette-container
278
+ {
279
+ float:left;
280
+ position: relative;
281
+ padding: 10px;
282
+ padding-bottom: 300px;
283
+ margin-bottom: -290px;
284
+ }
285
+ .sp-picker-container
286
+ {
287
+ width: 172px;
288
+ border-left: solid 1px #fff;
289
+ }
290
+
291
+ /* Palettes */
292
+ .sp-palette-container
293
+ {
294
+ border-right: solid 1px #ccc;
295
+ }
296
+
297
+ .sp-palette .sp-thumb-el {
298
+ display: block;
299
+ position:relative;
300
+ float:left;
301
+ width: 24px;
302
+ height: 15px;
303
+ margin: 3px;
304
+ cursor: pointer;
305
+ border:solid 2px transparent;
306
+ }
307
+ .sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
308
+ border-color: orange;
309
+ }
310
+ .sp-thumb-el
311
+ {
312
+ position:relative;
313
+ }
314
+
315
+ /* Initial */
316
+ .sp-initial
317
+ {
318
+ float: left;
319
+ border: solid 1px #333;
320
+ }
321
+ .sp-initial span {
322
+ width: 30px;
323
+ height: 25px;
324
+ border:none;
325
+ display:block;
326
+ float:left;
327
+ margin:0;
328
+ }
329
+
330
+ /* Buttons */
331
+ .sp-button-container {
332
+ float: right;
333
+ }
334
+
335
+ /* Replacer (the little preview div that shows up instead of the <input>) */
336
+ .sp-replacer {
337
+ background: none repeat scroll 0 0 #FEFEFE;
338
+ border: 1px solid #E5E5E5;
339
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
340
+ color: #333333;
341
+ cursor: pointer;
342
+ display: inline-block;
343
+ margin: 0;
344
+ overflow: hidden;
345
+ padding: 4px;
346
+ vertical-align: middle;
347
+ }
348
+
349
+ .sp-replacer:hover {
350
+ border-color: #F0C49B;
351
+ color: #111;
352
+ }
353
+
354
+ .sp-replacer.sp-active {
355
+ border-bottom: 1px solid transparent;
356
+ border-color: #DDDDDD #DDDDDD transparent;
357
+ color: #111111;
358
+ }
359
+
360
+ .sp-replacer.sp-disabled {
361
+ cursor:default;
362
+ border-color: silver;
363
+ color: silver;
364
+ }
365
+ .sp-dd {
366
+ padding: 2px 0;
367
+ height: 16px;
368
+ line-height: 16px;
369
+ float:left;
370
+ font-size:10px;
371
+ }
372
+ .sp-preview
373
+ {
374
+ position:relative;
375
+ width:25px;
376
+ height: 20px;
377
+ border: solid 1px #222;
378
+ margin-right: 5px;
379
+ float:left;
380
+ z-index: 0;
381
+ }
382
+
383
+ .sp-palette
384
+ {
385
+ *width: 220px;
386
+ max-width: 220px;
387
+ }
388
+ .sp-palette .sp-thumb-el
389
+ {
390
+ width:16px;
391
+ height: 16px;
392
+ margin:2px 1px;
393
+ border: solid 1px #d0d0d0;
394
+ }
395
+
396
+ .sp-container
397
+ {
398
+ padding-bottom:0;
399
+ }
400
+
401
+
402
+ /* Buttons: http://hellohappy.org/css3-buttons/ */
403
+ .sp-container button {
404
+ background-color: #eeeeee;
405
+ background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
406
+ background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
407
+ background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
408
+ background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
409
+ background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
410
+ background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
411
+ border: 1px solid #ccc;
412
+ border-bottom: 1px solid #bbb;
413
+ border-radius: 3px;
414
+ color: #333;
415
+ font-size: 14px;
416
+ line-height: 1;
417
+ padding: 5px 4px;
418
+ text-align: center;
419
+ text-shadow: 0 1px 0 #eee;
420
+ vertical-align: middle;
421
+ }
422
+ .sp-container button:hover {
423
+ background-color: #dddddd;
424
+ background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb);
425
+ background-image: -moz-linear-gradient(top, #dddddd, #bbbbbb);
426
+ background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb);
427
+ background-image: -o-linear-gradient(top, #dddddd, #bbbbbb);
428
+ background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb);
429
+ background-image: linear-gradient(to bottom, #dddddd, #bbbbbb);
430
+ border: 1px solid #bbb;
431
+ border-bottom: 1px solid #999;
432
+ cursor: pointer;
433
+ text-shadow: 0 1px 0 #ddd;
434
+ }
435
+ .sp-container button:active {
436
+ border: 1px solid #aaa;
437
+ border-bottom: 1px solid #888;
438
+ -webkit-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
439
+ -moz-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
440
+ -ms-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
441
+ -o-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
442
+ box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
443
+ }
444
+ .sp-cancel
445
+ {
446
+ font-size: 11px;
447
+ color: #d93f3f !important;
448
+ margin:0;
449
+ padding:2px;
450
+ margin-right: 5px;
451
+ vertical-align: middle;
452
+ text-decoration:none;
453
+
454
+ }
455
+ .sp-cancel:hover
456
+ {
457
+ color: #d93f3f !important;
458
+ text-decoration: underline;
459
+ }
460
+
461
+
462
+ .sp-palette span:hover, .sp-palette span.sp-thumb-active
463
+ {
464
+ border-color: #000;
465
+ }
466
+
467
+ .sp-preview, .sp-alpha, .sp-thumb-el
468
+ {
469
+ position:relative;
470
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
471
+ }
472
+ .sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner
473
+ {
474
+ display:block;
475
+ position:absolute;
476
+ top:0;left:0;bottom:0;right:0;
477
+ }
478
+
479
+ .sp-palette .sp-thumb-inner
480
+ {
481
+ background-position: 50% 50%;
482
+ background-repeat: no-repeat;
483
+ }
484
+
485
+ .sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner
486
+ {
487
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
488
+ }
489
+
490
+ .sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner
491
+ {
492
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
493
+ }
backend/settings/assets/js/spectrum/spectrum.js ADDED
@@ -0,0 +1,1888 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Spectrum Colorpicker v1.1.1
2
+ // https://github.com/bgrins/spectrum
3
+ // Author: Brian Grinstead
4
+ // License: MIT
5
+
6
+ (function (window, $, undefined) {
7
+ var defaultOpts = {
8
+
9
+ // Callbacks
10
+ beforeShow: noop,
11
+ move: noop,
12
+ change: noop,
13
+ show: noop,
14
+ hide: noop,
15
+
16
+ // Options
17
+ color: false,
18
+ flat: false,
19
+ showInput: false,
20
+ showButtons: true,
21
+ clickoutFiresChange: false,
22
+ showInitial: false,
23
+ showPalette: false,
24
+ showPaletteOnly: false,
25
+ showSelectionPalette: true,
26
+ localStorageKey: false,
27
+ appendTo: "body",
28
+ maxSelectionSize: 7,
29
+ cancelText: "cancel",
30
+ chooseText: "choose",
31
+ preferredFormat: false,
32
+ className: "",
33
+ showAlpha: false,
34
+ theme: "sp-light",
35
+ palette: ['fff', '000'],
36
+ selectionPalette: [],
37
+ disabled: false
38
+ },
39
+ spectrums = [],
40
+ IE = !!/msie/i.exec( window.navigator.userAgent ),
41
+ rgbaSupport = (function() {
42
+ function contains( str, substr ) {
43
+ return !!~('' + str).indexOf(substr);
44
+ }
45
+
46
+ var elem = document.createElement('div');
47
+ var style = elem.style;
48
+ style.cssText = 'background-color:rgba(0,0,0,.5)';
49
+ return contains(style.backgroundColor, 'rgba') || contains(style.backgroundColor, 'hsla');
50
+ })(),
51
+ replaceInput = [
52
+ "<div class='sp-replacer'>",
53
+ "<div class='sp-preview'><div class='sp-preview-inner'></div></div>",
54
+ "<div class='sp-dd'>&#9660;</div>",
55
+ "</div>"
56
+ ].join(''),
57
+ markup = (function () {
58
+
59
+ // IE does not support gradients with multiple stops, so we need to simulate
60
+ // that for the rainbow slider with 8 divs that each have a single gradient
61
+ var gradientFix = "";
62
+ if (IE) {
63
+ for (var i = 1; i <= 6; i++) {
64
+ gradientFix += "<div class='sp-" + i + "'></div>";
65
+ }
66
+ }
67
+
68
+ return [
69
+ "<div class='sp-container sp-hidden'>",
70
+ "<div class='sp-palette-container'>",
71
+ "<div class='sp-palette sp-thumb sp-cf'></div>",
72
+ "</div>",
73
+ "<div class='sp-picker-container'>",
74
+ "<div class='sp-top sp-cf'>",
75
+ "<div class='sp-fill'></div>",
76
+ "<div class='sp-top-inner'>",
77
+ "<div class='sp-color'>",
78
+ "<div class='sp-sat'>",
79
+ "<div class='sp-val'>",
80
+ "<div class='sp-dragger'></div>",
81
+ "</div>",
82
+ "</div>",
83
+ "</div>",
84
+ "<div class='sp-hue'>",
85
+ "<div class='sp-slider'></div>",
86
+ gradientFix,
87
+ "</div>",
88
+ "</div>",
89
+ "<div class='sp-alpha'><div class='sp-alpha-inner'><div class='sp-alpha-handle'></div></div></div>",
90
+ "</div>",
91
+ "<div class='sp-input-container sp-cf'>",
92
+ "<input class='sp-input' type='text' spellcheck='false' />",
93
+ "</div>",
94
+ "<div class='sp-initial sp-thumb sp-cf'></div>",
95
+ "<div class='sp-button-container sp-cf'>",
96
+ "<a class='sp-cancel' href='#'></a>",
97
+ "<button class='sp-choose'></button>",
98
+ "</div>",
99
+ "</div>",
100
+ "</div>"
101
+ ].join("");
102
+ })();
103
+
104
+ function paletteTemplate (p, color, className) {
105
+ var html = [];
106
+ for (var i = 0; i < p.length; i++) {
107
+ var tiny = tinycolor(p[i]);
108
+ var c = tiny.toHsl().l < 0.5 ? "sp-thumb-el sp-thumb-dark" : "sp-thumb-el sp-thumb-light";
109
+ c += (tinycolor.equals(color, p[i])) ? " sp-thumb-active" : "";
110
+
111
+ var swatchStyle = rgbaSupport ? ("background-color:" + tiny.toRgbString()) : "filter:" + tiny.toFilter();
112
+ html.push('<span title="' + tiny.toRgbString() + '" data-color="' + tiny.toRgbString() + '" class="' + c + '"><span class="sp-thumb-inner" style="' + swatchStyle + ';" /></span>');
113
+ }
114
+ return "<div class='sp-cf " + className + "'>" + html.join('') + "</div>";
115
+ }
116
+
117
+ function hideAll() {
118
+ for (var i = 0; i < spectrums.length; i++) {
119
+ if (spectrums[i]) {
120
+ spectrums[i].hide();
121
+ }
122
+ }
123
+ }
124
+
125
+ function instanceOptions(o, callbackContext) {
126
+ var opts = $.extend({}, defaultOpts, o);
127
+ opts.callbacks = {
128
+ 'move': bind(opts.move, callbackContext),
129
+ 'change': bind(opts.change, callbackContext),
130
+ 'show': bind(opts.show, callbackContext),
131
+ 'hide': bind(opts.hide, callbackContext),
132
+ 'beforeShow': bind(opts.beforeShow, callbackContext)
133
+ };
134
+
135
+ return opts;
136
+ }
137
+
138
+ function spectrum(element, o) {
139
+
140
+ var opts = instanceOptions(o, element),
141
+ flat = opts.flat,
142
+ showSelectionPalette = opts.showSelectionPalette,
143
+ localStorageKey = opts.localStorageKey,
144
+ theme = opts.theme,
145
+ callbacks = opts.callbacks,
146
+ resize = throttle(reflow, 10),
147
+ visible = false,
148
+ dragWidth = 0,
149
+ dragHeight = 0,
150
+ dragHelperHeight = 0,
151
+ slideHeight = 0,
152
+ slideWidth = 0,
153
+ alphaWidth = 0,
154
+ alphaSlideHelperWidth = 0,
155
+ slideHelperHeight = 0,
156
+ currentHue = 0,
157
+ currentSaturation = 0,
158
+ currentValue = 0,
159
+ currentAlpha = 1,
160
+ palette = opts.palette.slice(0),
161
+ paletteArray = $.isArray(palette[0]) ? palette : [palette],
162
+ selectionPalette = opts.selectionPalette.slice(0),
163
+ maxSelectionSize = opts.maxSelectionSize,
164
+ draggingClass = "sp-dragging",
165
+ shiftMovementDirection = null;
166
+
167
+ var doc = element.ownerDocument,
168
+ body = doc.body,
169
+ boundElement = $(element),
170
+ disabled = false,
171
+ container = $(markup, doc).addClass(theme),
172
+ dragger = container.find(".sp-color"),
173
+ dragHelper = container.find(".sp-dragger"),
174
+ slider = container.find(".sp-hue"),
175
+ slideHelper = container.find(".sp-slider"),
176
+ alphaSliderInner = container.find(".sp-alpha-inner"),
177
+ alphaSlider = container.find(".sp-alpha"),
178
+ alphaSlideHelper = container.find(".sp-alpha-handle"),
179
+ textInput = container.find(".sp-input"),
180
+ paletteContainer = container.find(".sp-palette"),
181
+ initialColorContainer = container.find(".sp-initial"),
182
+ cancelButton = container.find(".sp-cancel"),
183
+ chooseButton = container.find(".sp-choose"),
184
+ isInput = boundElement.is("input"),
185
+ shouldReplace = isInput && !flat,
186
+ replacer = (shouldReplace) ? $(replaceInput).addClass(theme).addClass(opts.className) : $([]),
187
+ offsetElement = (shouldReplace) ? replacer : boundElement,
188
+ previewElement = replacer.find(".sp-preview-inner"),
189
+ initialColor = opts.color || (isInput && boundElement.val()),
190
+ colorOnShow = false,
191
+ preferredFormat = opts.preferredFormat,
192
+ currentPreferredFormat = preferredFormat,
193
+ clickoutFiresChange = !opts.showButtons || opts.clickoutFiresChange;
194
+
195
+
196
+ function applyOptions() {
197
+
198
+ container.toggleClass("sp-flat", flat);
199
+ container.toggleClass("sp-input-disabled", !opts.showInput);
200
+ container.toggleClass("sp-alpha-enabled", opts.showAlpha);
201
+ container.toggleClass("sp-buttons-disabled", !opts.showButtons);
202
+ container.toggleClass("sp-palette-disabled", !opts.showPalette);
203
+ container.toggleClass("sp-palette-only", opts.showPaletteOnly);
204
+ container.toggleClass("sp-initial-disabled", !opts.showInitial);
205
+ container.addClass(opts.className);
206
+
207
+ reflow();
208
+ }
209
+
210
+ function initialize() {
211
+
212
+ if (IE) {
213
+ container.find("*:not(input)").attr("unselectable", "on");
214
+ }
215
+
216
+ applyOptions();
217
+
218
+ if (shouldReplace) {
219
+ boundElement.after(replacer).hide();
220
+ }
221
+
222
+ if (flat) {
223
+ boundElement.after(container).hide();
224
+ }
225
+ else {
226
+
227
+ var appendTo = opts.appendTo === "parent" ? boundElement.parent() : $(opts.appendTo);
228
+ if (appendTo.length !== 1) {
229
+ appendTo = $("body");
230
+ }
231
+
232
+ appendTo.append(container);
233
+ }
234
+
235
+ if (localStorageKey && window.localStorage) {
236
+
237
+ // Migrate old palettes over to new format. May want to remove this eventually.
238
+ try {
239
+ var oldPalette = window.localStorage[localStorageKey].split(",#");
240
+ if (oldPalette.length > 1) {
241
+ delete window.localStorage[localStorageKey];
242
+ $.each(oldPalette, function(i, c) {
243
+ addColorToSelectionPalette(c);
244
+ });
245
+ }
246
+ }
247
+ catch(e) { }
248
+
249
+ try {
250
+ selectionPalette = window.localStorage[localStorageKey].split(";");
251
+ }
252
+ catch (e) { }
253
+ }
254
+
255
+ offsetElement.bind("click.spectrum touchstart.spectrum", function (e) {
256
+ if (!disabled) {
257
+ toggle();
258
+ }
259
+
260
+ e.stopPropagation();
261
+
262
+ if (!$(e.target).is("input")) {
263
+ e.preventDefault();
264
+ }
265
+ });
266
+
267
+ if(boundElement.is(":disabled") || (opts.disabled === true)) {
268
+ disable();
269
+ }
270
+
271
+ // Prevent clicks from bubbling up to document. This would cause it to be hidden.
272
+ container.click(stopPropagation);
273
+
274
+ // Handle user typed input
275
+ textInput.change(setFromTextInput);
276
+ textInput.bind("paste", function () {
277
+ setTimeout(setFromTextInput, 1);
278
+ });
279
+ textInput.keydown(function (e) { if (e.keyCode == 13) { setFromTextInput(); } });
280
+
281
+ cancelButton.text(opts.cancelText);
282
+ cancelButton.bind("click.spectrum", function (e) {
283
+ e.stopPropagation();
284
+ e.preventDefault();
285
+ hide("cancel");
286
+ });
287
+
288
+ chooseButton.text(opts.chooseText);
289
+ chooseButton.bind("click.spectrum", function (e) {
290
+ e.stopPropagation();
291
+ e.preventDefault();
292
+
293
+ if (isValid()) {
294
+ updateOriginalInput(true);
295
+ hide();
296
+ }
297
+ });
298
+
299
+ draggable(alphaSlider, function (dragX, dragY, e) {
300
+ currentAlpha = (dragX / alphaWidth);
301
+ if (e.shiftKey) {
302
+ currentAlpha = Math.round(currentAlpha * 10) / 10;
303
+ }
304
+
305
+ move();
306
+ });
307
+
308
+ draggable(slider, function (dragX, dragY) {
309
+ currentHue = parseFloat(dragY / slideHeight);
310
+ move();
311
+ }, dragStart, dragStop);
312
+
313
+ draggable(dragger, function (dragX, dragY, e) {
314
+
315
+ // shift+drag should snap the movement to either the x or y axis.
316
+ if (!e.shiftKey) {
317
+ shiftMovementDirection = null;
318
+ }
319
+ else if (!shiftMovementDirection) {
320
+ var oldDragX = currentSaturation * dragWidth;
321
+ var oldDragY = dragHeight - (currentValue * dragHeight);
322
+ var furtherFromX = Math.abs(dragX - oldDragX) > Math.abs(dragY - oldDragY);
323
+
324
+ shiftMovementDirection = furtherFromX ? "x" : "y";
325
+ }
326
+
327
+ var setSaturation = !shiftMovementDirection || shiftMovementDirection === "x";
328
+ var setValue = !shiftMovementDirection || shiftMovementDirection === "y";
329
+
330
+ if (setSaturation) {
331
+ currentSaturation = parseFloat(dragX / dragWidth);
332
+ }
333
+ if (setValue) {
334
+ currentValue = parseFloat((dragHeight - dragY) / dragHeight);
335
+ }
336
+
337
+ move();
338
+
339
+ }, dragStart, dragStop);
340
+
341
+ if (!!initialColor) {
342
+ set(initialColor);
343
+
344
+ // In case color was black - update the preview UI and set the format
345
+ // since the set function will not run (default color is black).
346
+ updateUI();
347
+ currentPreferredFormat = preferredFormat || tinycolor(initialColor).format;
348
+
349
+ addColorToSelectionPalette(initialColor);
350
+ }
351
+ else {
352
+ updateUI();
353
+ }
354
+
355
+ if (flat) {
356
+ show();
357
+ }
358
+
359
+ function palletElementClick(e) {
360
+ if (e.data && e.data.ignore) {
361
+ set($(this).data("color"));
362
+ move();
363
+ }
364
+ else {
365
+ set($(this).data("color"));
366
+ updateOriginalInput(true);
367
+ move();
368
+ hide();
369
+ }
370
+
371
+ return false;
372
+ }
373
+
374
+ var paletteEvent = IE ? "mousedown.spectrum" : "click.spectrum touchstart.spectrum";
375
+ paletteContainer.delegate(".sp-thumb-el", paletteEvent, palletElementClick);
376
+ initialColorContainer.delegate(".sp-thumb-el:nth-child(1)", paletteEvent, { ignore: true }, palletElementClick);
377
+ }
378
+
379
+ function addColorToSelectionPalette(color) {
380
+ if (showSelectionPalette) {
381
+ var colorRgb = tinycolor(color).toRgbString();
382
+ if ($.inArray(colorRgb, selectionPalette) === -1) {
383
+ selectionPalette.push(colorRgb);
384
+ while(selectionPalette.length > maxSelectionSize) {
385
+ selectionPalette.shift();
386
+ }
387
+ }
388
+
389
+ if (localStorageKey && window.localStorage) {
390
+ try {
391
+ window.localStorage[localStorageKey] = selectionPalette.join(";");
392
+ }
393
+ catch(e) { }
394
+ }
395
+ }
396
+ }
397
+
398
+ function getUniqueSelectionPalette() {
399
+ var unique = [];
400
+ var p = selectionPalette;
401
+ var paletteLookup = {};
402
+ var rgb;
403
+
404
+ if (opts.showPalette) {
405
+
406
+ for (var i = 0; i < paletteArray.length; i++) {
407
+ for (var j = 0; j < paletteArray[i].length; j++) {
408
+ rgb = tinycolor(paletteArray[i][j]).toRgbString();
409
+ paletteLookup[rgb] = true;
410
+ }
411
+ }
412
+
413
+ for (i = 0; i < p.length; i++) {
414
+ rgb = tinycolor(p[i]).toRgbString();
415
+
416
+ if (!paletteLookup.hasOwnProperty(rgb)) {
417
+ unique.push(p[i]);
418
+ paletteLookup[rgb] = true;
419
+ }
420
+ }
421
+ }
422
+
423
+ return unique.reverse().slice(0, opts.maxSelectionSize);
424
+ }
425
+
426
+ function drawPalette() {
427
+
428
+ var currentColor = get();
429
+
430
+ var html = $.map(paletteArray, function (palette, i) {
431
+ return paletteTemplate(palette, currentColor, "sp-palette-row sp-palette-row-" + i);
432
+ });
433
+
434
+ if (selectionPalette) {
435
+ html.push(paletteTemplate(getUniqueSelectionPalette(), currentColor, "sp-palette-row sp-palette-row-selection"));
436
+ }
437
+
438
+ paletteContainer.html(html.join(""));
439
+ }
440
+
441
+ function drawInitial() {
442
+ if (opts.showInitial) {
443
+ var initial = colorOnShow;
444
+ var current = get();
445
+ initialColorContainer.html(paletteTemplate([initial, current], current, "sp-palette-row-initial"));
446
+ }
447
+ }
448
+
449
+ function dragStart() {
450
+ if (dragHeight <= 0 || dragWidth <= 0 || slideHeight <= 0) {
451
+ reflow();
452
+ }
453
+ container.addClass(draggingClass);
454
+ shiftMovementDirection = null;
455
+ }
456
+
457
+ function dragStop() {
458
+ container.removeClass(draggingClass);
459
+ }
460
+
461
+ function setFromTextInput() {
462
+ var tiny = tinycolor(textInput.val());
463
+ if (tiny.ok) {
464
+ set(tiny);
465
+ }
466
+ else {
467
+ textInput.addClass("sp-validation-error");
468
+ }
469
+ }
470
+
471
+ function toggle() {
472
+ if (visible) {
473
+ hide();
474
+ }
475
+ else {
476
+ show();
477
+ }
478
+ }
479
+
480
+ function show() {
481
+ var event = $.Event('beforeShow.spectrum');
482
+
483
+ if (visible) {
484
+ reflow();
485
+ return;
486
+ }
487
+
488
+ boundElement.trigger(event, [ get() ]);
489
+
490
+ if (callbacks.beforeShow(get()) === false || event.isDefaultPrevented()) {
491
+ return;
492
+ }
493
+
494
+ hideAll();
495
+ visible = true;
496
+
497
+ $(doc).bind("click.spectrum", hide);
498
+ $(window).bind("resize.spectrum", resize);
499
+ replacer.addClass("sp-active");
500
+ container.removeClass("sp-hidden");
501
+
502
+ if (opts.showPalette) {
503
+ drawPalette();
504
+ }
505
+ reflow();
506
+ updateUI();
507
+
508
+ colorOnShow = get();
509
+
510
+ drawInitial();
511
+ callbacks.show(colorOnShow);
512
+ boundElement.trigger('show.spectrum', [ colorOnShow ]);
513
+ }
514
+
515
+ function hide(e) {
516
+
517
+ // Return on right click
518
+ if (e && e.type == "click" && e.button == 2) { return; }
519
+
520
+ // Return if hiding is unnecessary
521
+ if (!visible || flat) { return; }
522
+ visible = false;
523
+
524
+ $(doc).unbind("click.spectrum", hide);
525
+ $(window).unbind("resize.spectrum", resize);
526
+
527
+ replacer.removeClass("sp-active");
528
+ container.addClass("sp-hidden");
529
+
530
+ var colorHasChanged = !tinycolor.equals(get(), colorOnShow);
531
+
532
+ if (colorHasChanged) {
533
+ if (clickoutFiresChange && e !== "cancel") {
534
+ updateOriginalInput(true);
535
+ }
536
+ else {
537
+ revert();
538
+ }
539
+ }
540
+
541
+ callbacks.hide(get());
542
+ boundElement.trigger('hide.spectrum', [ get() ]);
543
+ }
544
+
545
+ function revert() {
546
+ set(colorOnShow, true);
547
+ }
548
+
549
+ function set(color, ignoreFormatChange) {
550
+ if (tinycolor.equals(color, get())) {
551
+ return;
552
+ }
553
+
554
+ var newColor = tinycolor(color);
555
+ var newHsv = newColor.toHsv();
556
+
557
+ currentHue = (newHsv.h % 360) / 360;
558
+ currentSaturation = newHsv.s;
559
+ currentValue = newHsv.v;
560
+ currentAlpha = newHsv.a;
561
+
562
+ updateUI();
563
+
564
+ if (newColor.ok && !ignoreFormatChange) {
565
+ currentPreferredFormat = preferredFormat || newColor.format;
566
+ }
567
+ }
568
+
569
+ function get(opts) {
570
+ opts = opts || { };
571
+ return tinycolor.fromRatio({
572
+ h: currentHue,
573
+ s: currentSaturation,
574
+ v: currentValue,
575
+ a: Math.round(currentAlpha * 100) / 100
576
+ }, { format: opts.format || currentPreferredFormat });
577
+ }
578
+
579
+ function isValid() {
580
+ return !textInput.hasClass("sp-validation-error");
581
+ }
582
+
583
+ function move() {
584
+ updateUI();
585
+
586
+ callbacks.move(get());
587
+ boundElement.trigger('move.spectrum', [ get() ]);
588
+ }
589
+
590
+ function updateUI() {
591
+
592
+ textInput.removeClass("sp-validation-error");
593
+
594
+ updateHelperLocations();
595
+
596
+ // Update dragger background color (gradients take care of saturation and value).
597
+ var flatColor = tinycolor.fromRatio({ h: currentHue, s: 1, v: 1 });
598
+ dragger.css("background-color", flatColor.toHexString());
599
+
600
+ // Get a format that alpha will be included in (hex and names ignore alpha)
601
+ var format = currentPreferredFormat;
602
+ if (currentAlpha < 1) {
603
+ if (format === "hex" || format === "hex3" || format === "hex6" || format === "name") {
604
+ format = "rgb";
605
+ }
606
+ }
607
+
608
+ var realColor = get({ format: format }),
609
+ realHex = realColor.toHexString(),
610
+ realRgb = realColor.toRgbString();
611
+
612
+ // Update the replaced elements background color (with actual selected color)
613
+ if (rgbaSupport || realColor.alpha === 1) {
614
+ previewElement.css("background-color", realRgb);
615
+ }
616
+ else {
617
+ previewElement.css("background-color", "transparent");
618
+ previewElement.css("filter", realColor.toFilter());
619
+ }
620
+
621
+ if (opts.showAlpha) {
622
+ var rgb = realColor.toRgb();
623
+ rgb.a = 0;
624
+ var realAlpha = tinycolor(rgb).toRgbString();
625
+ var gradient = "linear-gradient(left, " + realAlpha + ", " + realHex + ")";
626
+
627
+ if (IE) {
628
+ alphaSliderInner.css("filter", tinycolor(realAlpha).toFilter({ gradientType: 1 }, realHex));
629
+ }
630
+ else {
631
+ alphaSliderInner.css("background", "-webkit-" + gradient);
632
+ alphaSliderInner.css("background", "-moz-" + gradient);
633
+ alphaSliderInner.css("background", "-ms-" + gradient);
634
+ alphaSliderInner.css("background", gradient);
635
+ }
636
+ }
637
+
638
+
639
+ // Update the text entry input as it changes happen
640
+ if (opts.showInput) {
641
+ textInput.val(realColor.toString(format));
642
+ }
643
+
644
+ if (opts.showPalette) {
645
+ drawPalette();
646
+ }
647
+
648
+ drawInitial();
649
+ }
650
+
651
+ function updateHelperLocations() {
652
+ var s = currentSaturation;
653
+ var v = currentValue;
654
+
655
+ // Where to show the little circle in that displays your current selected color
656
+ var dragX = s * dragWidth;
657
+ var dragY = dragHeight - (v * dragHeight);
658
+ dragX = Math.max(
659
+ -dragHelperHeight,
660
+ Math.min(dragWidth - dragHelperHeight, dragX - dragHelperHeight)
661
+ );
662
+ dragY = Math.max(
663
+ -dragHelperHeight,
664
+ Math.min(dragHeight - dragHelperHeight, dragY - dragHelperHeight)
665
+ );
666
+ dragHelper.css({
667
+ "top": dragY,
668
+ "left": dragX
669
+ });
670
+
671
+ var alphaX = currentAlpha * alphaWidth;
672
+ alphaSlideHelper.css({
673
+ "left": alphaX - (alphaSlideHelperWidth / 2)
674
+ });
675
+
676
+ // Where to show the bar that displays your current selected hue
677
+ var slideY = (currentHue) * slideHeight;
678
+ slideHelper.css({
679
+ "top": slideY - slideHelperHeight
680
+ });
681
+ }
682
+
683
+ function updateOriginalInput(fireCallback) {
684
+ var color = get();
685
+
686
+ if (isInput) {
687
+ boundElement.val(color.toString(currentPreferredFormat)).change();
688
+ }
689
+
690
+ var hasChanged = !tinycolor.equals(color, colorOnShow);
691
+ colorOnShow = color;
692
+
693
+ // Update the selection palette with the current color
694
+ addColorToSelectionPalette(color);
695
+ if (fireCallback && hasChanged) {
696
+ callbacks.change(color);
697
+ boundElement.trigger('change.spectrum', [ color ]);
698
+ }
699
+ }
700
+
701
+ function reflow() {
702
+ dragWidth = dragger.width();
703
+ dragHeight = dragger.height();
704
+ dragHelperHeight = dragHelper.height();
705
+ slideWidth = slider.width();
706
+ slideHeight = slider.height();
707
+ slideHelperHeight = slideHelper.height();
708
+ alphaWidth = alphaSlider.width();
709
+ alphaSlideHelperWidth = alphaSlideHelper.width();
710
+
711
+ if (!flat) {
712
+ container.css("position", "absolute");
713
+ container.offset(getOffset(container, offsetElement));
714
+ }
715
+
716
+ updateHelperLocations();
717
+ }
718
+
719
+ function destroy() {
720
+ boundElement.show();
721
+ offsetElement.unbind("click.spectrum touchstart.spectrum");
722
+ container.remove();
723
+ replacer.remove();
724
+ spectrums[spect.id] = null;
725
+ }
726
+
727
+ function option(optionName, optionValue) {
728
+ if (optionName === undefined) {
729
+ return $.extend({}, opts);
730
+ }
731
+ if (optionValue === undefined) {
732
+ return opts[optionName];
733
+ }
734
+
735
+ opts[optionName] = optionValue;
736
+ applyOptions();
737
+ }
738
+
739
+ function enable() {
740
+ disabled = false;
741
+ boundElement.attr("disabled", false);
742
+ offsetElement.removeClass("sp-disabled");
743
+ }
744
+
745
+ function disable() {
746
+ hide();
747
+ disabled = true;
748
+ boundElement.attr("disabled", true);
749
+ offsetElement.addClass("sp-disabled");
750
+ }
751
+
752
+ initialize();
753
+
754
+ var spect = {
755
+ show: show,
756
+ hide: hide,
757
+ toggle: toggle,
758
+ reflow: reflow,
759
+ option: option,
760
+ enable: enable,
761
+ disable: disable,
762
+ set: function (c) {
763
+ set(c);
764
+ updateOriginalInput();
765
+ },
766
+ get: get,
767
+ destroy: destroy,
768
+ container: container
769
+ };
770
+
771
+ spect.id = spectrums.push(spect) - 1;
772
+
773
+ return spect;
774
+ }
775
+
776
+ /**
777
+ * checkOffset - get the offset below/above and left/right element depending on screen position
778
+ * Thanks https://github.com/jquery/jquery-ui/blob/master/ui/jquery.ui.datepicker.js
779
+ */
780
+ function getOffset(picker, input) {
781
+ var extraY = 0;
782
+ var dpWidth = picker.outerWidth();
783
+ var dpHeight = picker.outerHeight();
784
+ var inputHeight = input.outerHeight();
785
+ var doc = picker[0].ownerDocument;
786
+ var docElem = doc.documentElement;
787
+ var viewWidth = docElem.clientWidth + $(doc).scrollLeft();
788
+ var viewHeight = docElem.clientHeight + $(doc).scrollTop();
789
+ var offset = input.offset();
790
+ offset.top += inputHeight;
791
+
792
+ offset.left -=
793
+ Math.min(offset.left, (offset.left + dpWidth > viewWidth && viewWidth > dpWidth) ?
794
+ Math.abs(offset.left + dpWidth - viewWidth) : 0);
795
+
796
+ offset.top -=
797
+ Math.min(offset.top, ((offset.top + dpHeight > viewHeight && viewHeight > dpHeight) ?
798
+ Math.abs(dpHeight + inputHeight - extraY) : extraY));
799
+
800
+ return offset;
801
+ }
802
+
803
+ /**
804
+ * noop - do nothing
805
+ */
806
+ function noop() {
807
+
808
+ }
809
+
810
+ /**
811
+ * stopPropagation - makes the code only doing this a little easier to read in line
812
+ */
813
+ function stopPropagation(e) {
814
+ e.stopPropagation();
815
+ }
816
+
817
+ /**
818
+ * Create a function bound to a given object
819
+ * Thanks to underscore.js
820
+ */
821
+ function bind(func, obj) {
822
+ var slice = Array.prototype.slice;
823
+ var args = slice.call(arguments, 2);
824
+ return function () {
825
+ return func.apply(obj, args.concat(slice.call(arguments)));
826
+ };
827
+ }
828
+
829
+ /**
830
+ * Lightweight drag helper. Handles containment within the element, so that
831
+ * when dragging, the x is within [0,element.width] and y is within [0,element.height]
832
+ */
833
+ function draggable(element, onmove, onstart, onstop) {
834
+ onmove = onmove || function () { };
835
+ onstart = onstart || function () { };
836
+ onstop = onstop || function () { };
837
+ var doc = element.ownerDocument || document;
838
+ var dragging = false;
839
+ var offset = {};
840
+ var maxHeight = 0;
841
+ var maxWidth = 0;
842
+ var hasTouch = ('ontouchstart' in window);
843
+
844
+ var duringDragEvents = {};
845
+ duringDragEvents["selectstart"] = prevent;
846
+ duringDragEvents["dragstart"] = prevent;
847
+ duringDragEvents["touchmove mousemove"] = move;
848
+ duringDragEvents["touchend mouseup"] = stop;
849
+
850
+ function prevent(e) {
851
+ if (e.stopPropagation) {
852
+ e.stopPropagation();
853
+ }
854
+ if (e.preventDefault) {
855
+ e.preventDefault();
856
+ }
857
+ e.returnValue = false;
858
+ }
859
+
860
+ function move(e) {
861
+ if (dragging) {
862
+ // Mouseup happened outside of window
863
+ if (IE && document.documentMode < 9 && !e.button) {
864
+ return stop();
865
+ }
866
+
867
+ var touches = e.originalEvent.touches;
868
+ var pageX = touches ? touches[0].pageX : e.pageX;
869
+ var pageY = touches ? touches[0].pageY : e.pageY;
870
+
871
+ var dragX = Math.max(0, Math.min(pageX - offset.left, maxWidth));
872
+ var dragY = Math.max(0, Math.min(pageY - offset.top, maxHeight));
873
+
874
+ if (hasTouch) {
875
+ // Stop scrolling in iOS
876
+ prevent(e);
877
+ }
878
+
879
+ onmove.apply(element, [dragX, dragY, e]);
880
+ }
881
+ }
882
+ function start(e) {
883
+ var rightclick = (e.which) ? (e.which == 3) : (e.button == 2);
884
+ var touches = e.originalEvent.touches;
885
+
886
+ if (!rightclick && !dragging) {
887
+ if (onstart.apply(element, arguments) !== false) {
888
+ dragging = true;
889
+ maxHeight = $(element).height();
890
+ maxWidth = $(element).width();
891
+ offset = $(element).offset();
892
+
893
+ $(doc).bind(duringDragEvents);
894
+ $(doc.body).addClass("sp-dragging");
895
+
896
+ if (!hasTouch) {
897
+ move(e);
898
+ }
899
+
900
+ prevent(e);
901
+ }
902
+ }
903
+ }
904
+ function stop() {
905
+ if (dragging) {
906
+ $(doc).unbind(duringDragEvents);
907
+ $(doc.body).removeClass("sp-dragging");
908
+ onstop.apply(element, arguments);
909
+ }
910
+ dragging = false;
911
+ }
912
+
913
+ $(element).bind("touchstart mousedown", start);
914
+ }
915
+
916
+ function throttle(func, wait, debounce) {
917
+ var timeout;
918
+ return function () {
919
+ var context = this, args = arguments;
920
+ var throttler = function () {
921
+ timeout = null;
922
+ func.apply(context, args);
923
+ };
924
+ if (debounce) clearTimeout(timeout);
925
+ if (debounce || !timeout) timeout = setTimeout(throttler, wait);
926
+ };
927
+ }
928
+
929
+
930
+ function log(){/* jshint -W021 */if(window.console){if(Function.prototype.bind)log=Function.prototype.bind.call(console.log,console);else log=function(){Function.prototype.apply.call(console.log,console,arguments);};log.apply(this,arguments);}}
931
+
932
+ /**
933
+ * Define a jQuery plugin
934
+ */
935
+ var dataID = "spectrum.id";
936
+ $.fn.spectrum = function (opts, extra) {
937
+
938
+ if (typeof opts == "string") {
939
+
940
+ var returnValue = this;
941
+ var args = Array.prototype.slice.call( arguments, 1 );
942
+
943
+ this.each(function () {
944
+ var spect = spectrums[$(this).data(dataID)];
945
+ if (spect) {
946
+
947
+ var method = spect[opts];
948
+ if (!method) {
949
+ throw new Error( "Spectrum: no such method: '" + opts + "'" );
950
+ }
951
+
952
+ if (opts == "get") {
953
+ returnValue = spect.get();
954
+ }
955
+ else if (opts == "container") {
956
+ returnValue = spect.container;
957
+ }
958
+ else if (opts == "option") {
959
+ returnValue = spect.option.apply(spect, args);
960
+ }
961
+ else if (opts == "destroy") {
962
+ spect.destroy();
963
+ $(this).removeData(dataID);
964
+ }
965
+ else {
966
+ method.apply(spect, args);
967
+ }
968
+ }
969
+ });
970
+
971
+ return returnValue;
972
+ }
973
+
974
+ // Initializing a new instance of spectrum
975
+ return this.spectrum("destroy").each(function () {
976
+ var spect = spectrum(this, opts);
977
+ $(this).data(dataID, spect.id);
978
+ });
979
+ };
980
+
981
+ $.fn.spectrum.load = true;
982
+ $.fn.spectrum.loadOpts = {};
983
+ $.fn.spectrum.draggable = draggable;
984
+ $.fn.spectrum.defaults = defaultOpts;
985
+
986
+ $.spectrum = { };
987
+ $.spectrum.localization = { };
988
+ $.spectrum.palettes = { };
989
+
990
+ $.fn.spectrum.processNativeColorInputs = function () {
991
+ var colorInput = $("<input type='color' value='!' />")[0];
992
+ var supportsColor = colorInput.type === "color" && colorInput.value != "!";
993
+
994
+ if (!supportsColor) {
995
+ $("input[type=color]").spectrum({
996
+ preferredFormat: "hex6"
997
+ });
998
+ }
999
+ };
1000
+ // TinyColor v0.9.14
1001
+ // https://github.com/bgrins/TinyColor
1002
+ // 2013-02-24, Brian Grinstead, MIT License
1003
+
1004
+ (function(root) {
1005
+
1006
+ var trimLeft = /^[\s,#]+/,
1007
+ trimRight = /\s+$/,
1008
+ tinyCounter = 0,
1009
+ math = Math,
1010
+ mathRound = math.round,
1011
+ mathMin = math.min,
1012
+ mathMax = math.max,
1013
+ mathRandom = math.random;
1014
+
1015
+ function tinycolor (color, opts) {
1016
+
1017
+ color = (color) ? color : '';
1018
+ opts = opts || { };
1019
+
1020
+ // If input is already a tinycolor, return itself
1021
+ if (typeof color == "object" && color.hasOwnProperty("_tc_id")) {
1022
+ return color;
1023
+ }
1024
+ var rgb = inputToRGB(color);
1025
+ var r = rgb.r,
1026
+ g = rgb.g,
1027
+ b = rgb.b,
1028
+ a = rgb.a,
1029
+ roundA = mathRound(100*a) / 100,
1030
+ format = opts.format || rgb.format;
1031
+
1032
+ // Don't let the range of [0,255] come back in [0,1].
1033
+ // Potentially lose a little bit of precision here, but will fix issues where
1034
+ // .5 gets interpreted as half of the total, instead of half of 1
1035
+ // If it was supposed to be 128, this was already taken care of by `inputToRgb`
1036
+ if (r < 1) { r = mathRound(r); }
1037
+ if (g < 1) { g = mathRound(g); }
1038
+ if (b < 1) { b = mathRound(b); }
1039
+
1040
+ return {
1041
+ ok: rgb.ok,
1042
+ format: format,
1043
+ _tc_id: tinyCounter++,
1044
+ alpha: a,
1045
+ toHsv: function() {
1046
+ var hsv = rgbToHsv(r, g, b);
1047
+ return { h: hsv.h * 360, s: hsv.s, v: hsv.v, a: a };
1048
+ },
1049
+ toHsvString: function() {
1050
+ var hsv = rgbToHsv(r, g, b);
1051
+ var h = mathRound(hsv.h * 360), s = mathRound(hsv.s * 100), v = mathRound(hsv.v * 100);
1052
+ return (a == 1) ?
1053
+ "hsv(" + h + ", " + s + "%, " + v + "%)" :
1054
+ "hsva(" + h + ", " + s + "%, " + v + "%, "+ roundA + ")";
1055
+ },
1056
+ toHsl: function() {
1057
+ var hsl = rgbToHsl(r, g, b);
1058
+ return { h: hsl.h * 360, s: hsl.s, l: hsl.l, a: a };
1059
+ },
1060
+ toHslString: function() {
1061
+ var hsl = rgbToHsl(r, g, b);
1062
+ var h = mathRound(hsl.h * 360), s = mathRound(hsl.s * 100), l = mathRound(hsl.l * 100);
1063
+ return (a == 1) ?
1064
+ "hsl(" + h + ", " + s + "%, " + l + "%)" :
1065
+ "hsla(" + h + ", " + s + "%, " + l + "%, "+ roundA + ")";
1066
+ },
1067
+ toHex: function(allow3Char) {
1068
+ return rgbToHex(r, g, b, allow3Char);
1069
+ },
1070
+ toHexString: function(allow3Char) {
1071
+ return '#' + rgbToHex(r, g, b, allow3Char);
1072
+ },
1073
+ toRgb: function() {
1074
+ return { r: mathRound(r), g: mathRound(g), b: mathRound(b), a: a };
1075
+ },
1076
+ toRgbString: function() {
1077
+ return (a == 1) ?
1078
+ "rgb(" + mathRound(r) + ", " + mathRound(g) + ", " + mathRound(b) + ")" :
1079
+ "rgba(" + mathRound(r) + ", " + mathRound(g) + ", " + mathRound(b) + ", " + roundA + ")";
1080
+ },
1081
+ toPercentageRgb: function() {
1082
+ return { r: mathRound(bound01(r, 255) * 100) + "%", g: mathRound(bound01(g, 255) * 100) + "%", b: mathRound(bound01(b, 255) * 100) + "%", a: a };
1083
+ },
1084
+ toPercentageRgbString: function() {
1085
+ return (a == 1) ?
1086
+ "rgb(" + mathRound(bound01(r, 255) * 100) + "%, " + mathRound(bound01(g, 255) * 100) + "%, " + mathRound(bound01(b, 255) * 100) + "%)" :
1087
+ "rgba(" + mathRound(bound01(r, 255) * 100) + "%, " + mathRound(bound01(g, 255) * 100) + "%, " + mathRound(bound01(b, 255) * 100) + "%, " + roundA + ")";
1088
+ },
1089
+ toName: function() {
1090
+ return hexNames[rgbToHex(r, g, b, true)] || false;
1091
+ },
1092
+ toFilter: function(secondColor) {
1093
+ var hex = rgbToHex(r, g, b);
1094
+ var secondHex = hex;
1095
+ var alphaHex = Math.round(parseFloat(a) * 255).toString(16);
1096
+ var secondAlphaHex = alphaHex;
1097
+ var gradientType = opts && opts.gradientType ? "GradientType = 1, " : "";
1098
+
1099
+ if (secondColor) {
1100
+ var s = tinycolor(secondColor);
1101
+ secondHex = s.toHex();
1102
+ secondAlphaHex = Math.round(parseFloat(s.alpha) * 255).toString(16);
1103
+ }
1104
+
1105
+ return "progid:DXImageTransform.Microsoft.gradient("+gradientType+"startColorstr=#" + pad2(alphaHex) + hex + ",endColorstr=#" + pad2(secondAlphaHex) + secondHex + ")";
1106
+ },
1107
+ toString: function(format) {
1108
+ format = format || this.format;
1109
+ var formattedString = false;
1110
+ if (format === "rgb") {
1111
+ formattedString = this.toRgbString();
1112
+ }
1113
+ if (format === "prgb") {
1114
+ formattedString = this.toPercentageRgbString();
1115
+ }
1116
+ if (format === "hex" || format === "hex6") {
1117
+ formattedString = this.toHexString();
1118
+ }
1119
+ if (format === "hex3") {
1120
+ formattedString = this.toHexString(true);
1121
+ }
1122
+ if (format === "name") {
1123
+ formattedString = this.toName();
1124
+ }
1125
+ if (format === "hsl") {
1126
+ formattedString = this.toHslString();
1127
+ }
1128
+ if (format === "hsv") {
1129
+ formattedString = this.toHsvString();
1130
+ }
1131
+
1132
+ return formattedString || this.toHexString();
1133
+ }
1134
+ };
1135
+ }
1136
+
1137
+ // If input is an object, force 1 into "1.0" to handle ratios properly
1138
+ // String input requires "1.0" as input, so 1 will be treated as 1
1139
+ tinycolor.fromRatio = function(color, opts) {
1140
+ if (typeof color == "object") {
1141
+ var newColor = {};
1142
+ for (var i in color) {
1143
+ if (color.hasOwnProperty(i)) {
1144
+ if (i === "a") {
1145
+ newColor[i] = color[i];
1146
+ }
1147
+ else {
1148
+ newColor[i] = convertToPercentage(color[i]);
1149
+ }
1150
+ }
1151
+ }
1152
+ color = newColor;
1153
+ }
1154
+
1155
+ return tinycolor(color, opts);
1156
+ };
1157
+
1158
+ // Given a string or object, convert that input to RGB
1159
+ // Possible string inputs:
1160
+ //
1161
+ // "red"
1162
+ // "#f00" or "f00"
1163
+ // "#ff0000" or "ff0000"
1164
+ // "rgb 255 0 0" or "rgb (255, 0, 0)"
1165
+ // "rgb 1.0 0 0" or "rgb (1, 0, 0)"
1166
+ // "rgba (255, 0, 0, 1)" or "rgba 255, 0, 0, 1"
1167
+ // "rgba (1.0, 0, 0, 1)" or "rgba 1.0, 0, 0, 1"
1168
+ // "hsl(0, 100%, 50%)" or "hsl 0 100% 50%"
1169
+ // "hsla(0, 100%, 50%, 1)" or "hsla 0 100% 50%, 1"
1170
+ // "hsv(0, 100%, 100%)" or "hsv 0 100% 100%"
1171
+ //
1172
+ function inputToRGB(color) {
1173
+
1174
+ var rgb = { r: 0, g: 0, b: 0 };
1175
+ var a = 1;
1176
+ var ok = false;
1177
+ var format = false;
1178
+
1179
+ if (typeof color == "string") {
1180
+ color = stringInputToObject(color);
1181
+ }
1182
+
1183
+ if (typeof color == "object") {
1184
+ if (color.hasOwnProperty("r") && color.hasOwnProperty("g") && color.hasOwnProperty("b")) {
1185
+ rgb = rgbToRgb(color.r, color.g, color.b);
1186
+ ok = true;
1187
+ format = String(color.r).substr(-1) === "%" ? "prgb" : "rgb";
1188
+ }
1189
+ else if (color.hasOwnProperty("h") && color.hasOwnProperty("s") && color.hasOwnProperty("v")) {
1190
+ color.s = convertToPercentage(color.s);
1191
+ color.v = convertToPercentage(color.v);
1192
+ rgb = hsvToRgb(color.h, color.s, color.v);
1193
+ ok = true;
1194
+ format = "hsv";
1195
+ }
1196
+ else if (color.hasOwnProperty("h") && color.hasOwnProperty("s") && color.hasOwnProperty("l")) {
1197
+ color.s = convertToPercentage(color.s);
1198
+ color.l = convertToPercentage(color.l);
1199
+ rgb = hslToRgb(color.h, color.s, color.l);
1200
+ ok = true;
1201
+ format = "hsl";
1202
+ }
1203
+
1204
+ if (color.hasOwnProperty("a")) {
1205
+ a = color.a;
1206
+ }
1207
+ }
1208
+
1209
+ a = parseFloat(a);
1210
+
1211
+ // Handle invalid alpha characters by setting to 1
1212
+ if (isNaN(a) || a < 0 || a > 1) {
1213
+ a = 1;
1214
+ }
1215
+
1216
+ return {
1217
+ ok: ok,
1218
+ format: color.format || format,
1219
+ r: mathMin(255, mathMax(rgb.r, 0)),
1220
+ g: mathMin(255, mathMax(rgb.g, 0)),
1221
+ b: mathMin(255, mathMax(rgb.b, 0)),
1222
+ a: a
1223
+ };
1224
+ }
1225
+
1226
+
1227
+
1228
+ // Conversion Functions
1229
+ // --------------------
1230
+
1231
+ // `rgbToHsl`, `rgbToHsv`, `hslToRgb`, `hsvToRgb` modified from:
1232
+ // <http://mjijackson.com/2008/02/rgb-to-hsl-and-rgb-to-hsv-color-model-conversion-algorithms-in-javascript>
1233
+
1234
+ // `rgbToRgb`
1235
+ // Handle bounds / percentage checking to conform to CSS color spec
1236
+ // <http://www.w3.org/TR/css3-color/>
1237
+ // *Assumes:* r, g, b in [0, 255] or [0, 1]
1238
+ // *Returns:* { r, g, b } in [0, 255]
1239
+ function rgbToRgb(r, g, b){
1240
+ return {
1241
+ r: bound01(r, 255) * 255,
1242
+ g: bound01(g, 255) * 255,
1243
+ b: bound01(b, 255) * 255
1244
+ };
1245
+ }
1246
+
1247
+ // `rgbToHsl`
1248
+ // Converts an RGB color value to HSL.
1249
+ // *Assumes:* r, g, and b are contained in [0, 255] or [0, 1]
1250
+ // *Returns:* { h, s, l } in [0,1]
1251
+ function rgbToHsl(r, g, b) {
1252
+
1253
+ r = bound01(r, 255);
1254
+ g = bound01(g, 255);
1255
+ b = bound01(b, 255);
1256
+
1257
+ var max = mathMax(r, g, b), min = mathMin(r, g, b);
1258
+ var h, s, l = (max + min) / 2;
1259
+
1260
+ if(max == min) {
1261
+ h = s = 0; // achromatic
1262
+ }
1263
+ else {
1264
+ var d = max - min;
1265
+ s = l > 0.5 ? d / (2 - max - min) : d / (max + min);
1266
+ switch(max) {
1267
+ case r: h = (g - b) / d + (g < b ? 6 : 0); break;
1268
+ case g: h = (b - r) / d + 2; break;
1269
+ case b: h = (r - g) / d + 4; break;
1270
+ }
1271
+
1272
+ h /= 6;
1273
+ }
1274
+
1275
+ return { h: h, s: s, l: l };
1276
+ }
1277
+
1278
+ // `hslToRgb`
1279
+ // Converts an HSL color value to RGB.
1280
+ // *Assumes:* h is contained in [0, 1] or [0, 360] and s and l are contained [0, 1] or [0, 100]
1281
+ // *Returns:* { r, g, b } in the set [0, 255]
1282
+ function hslToRgb(h, s, l) {
1283
+ var r, g, b;
1284
+
1285
+ h = bound01(h, 360);
1286
+ s = bound01(s, 100);
1287
+ l = bound01(l, 100);
1288
+
1289
+ function hue2rgb(p, q, t) {
1290
+ if(t < 0) t += 1;
1291
+ if(t > 1) t -= 1;
1292
+ if(t < 1/6) return p + (q - p) * 6 * t;
1293
+ if(t < 1/2) return q;
1294
+ if(t < 2/3) return p + (q - p) * (2/3 - t) * 6;
1295
+ return p;
1296
+ }
1297
+
1298
+ if(s === 0) {
1299
+ r = g = b = l; // achromatic
1300
+ }
1301
+ else {
1302
+ var q = l < 0.5 ? l * (1 + s) : l + s - l * s;
1303
+ var p = 2 * l - q;
1304
+ r = hue2rgb(p, q, h + 1/3);
1305
+ g = hue2rgb(p, q, h);
1306
+ b = hue2rgb(p, q, h - 1/3);
1307
+ }
1308
+
1309
+ return { r: r * 255, g: g * 255, b: b * 255 };
1310
+ }
1311
+
1312
+ // `rgbToHsv`
1313
+ // Converts an RGB color value to HSV
1314
+ // *Assumes:* r, g, and b are contained in the set [0, 255] or [0, 1]
1315
+ // *Returns:* { h, s, v } in [0,1]
1316
+ function rgbToHsv(r, g, b) {
1317
+
1318
+ r = bound01(r, 255);
1319
+ g = bound01(g, 255);
1320
+ b = bound01(b, 255);
1321
+
1322
+ var max = mathMax(r, g, b), min = mathMin(r, g, b);
1323
+ var h, s, v = max;
1324
+
1325
+ var d = max - min;
1326
+ s = max === 0 ? 0 : d / max;
1327
+
1328
+ if(max == min) {
1329
+ h = 0; // achromatic
1330
+ }
1331
+ else {
1332
+ switch(max) {
1333
+ case r: h = (g - b) / d + (g < b ? 6 : 0); break;
1334
+ case g: h = (b - r) / d + 2; break;
1335
+ case b: h = (r - g) / d + 4; break;
1336
+ }
1337
+ h /= 6;
1338
+ }
1339
+ return { h: h, s: s, v: v };
1340
+ }
1341
+
1342
+ // `hsvToRgb`
1343
+ // Converts an HSV color value to RGB.
1344
+ // *Assumes:* h is contained in [0, 1] or [0, 360] and s and v are contained in [0, 1] or [0, 100]
1345
+ // *Returns:* { r, g, b } in the set [0, 255]
1346
+ function hsvToRgb(h, s, v) {
1347
+
1348
+ h = bound01(h, 360) * 6;
1349
+ s = bound01(s, 100);
1350
+ v = bound01(v, 100);
1351
+
1352
+ var i = math.floor(h),
1353
+ f = h - i,
1354
+ p = v * (1 - s),
1355
+ q = v * (1 - f * s),
1356
+ t = v * (1 - (1 - f) * s),
1357
+ mod = i % 6,
1358
+ r = [v, q, p, p, t, v][mod],
1359
+ g = [t, v, v, q, p, p][mod],
1360
+ b = [p, p, t, v, v, q][mod];
1361
+
1362
+ return { r: r * 255, g: g * 255, b: b * 255 };
1363
+ }
1364
+
1365
+ // `rgbToHex`
1366
+ // Converts an RGB color to hex
1367
+ // Assumes r, g, and b are contained in the set [0, 255]
1368
+ // Returns a 3 or 6 character hex
1369
+ function rgbToHex(r, g, b, allow3Char) {
1370
+
1371
+ var hex = [
1372
+ pad2(mathRound(r).toString(16)),
1373
+ pad2(mathRound(g).toString(16)),
1374
+ pad2(mathRound(b).toString(16))
1375
+ ];
1376
+
1377
+ // Return a 3 character hex if possible
1378
+ if (allow3Char && hex[0].charAt(0) == hex[0].charAt(1) && hex[1].charAt(0) == hex[1].charAt(1) && hex[2].charAt(0) == hex[2].charAt(1)) {
1379
+ return hex[0].charAt(0) + hex[1].charAt(0) + hex[2].charAt(0);
1380
+ }
1381
+
1382
+ return hex.join("");
1383
+ }
1384
+
1385
+ // `equals`
1386
+ // Can be called with any tinycolor input
1387
+ tinycolor.equals = function (color1, color2) {
1388
+ if (!color1 || !color2) { return false; }
1389
+ return tinycolor(color1).toRgbString() == tinycolor(color2).toRgbString();
1390
+ };
1391
+ tinycolor.random = function() {
1392
+ return tinycolor.fromRatio({
1393
+ r: mathRandom(),
1394
+ g: mathRandom(),
1395
+ b: mathRandom()
1396
+ });
1397
+ };
1398
+
1399
+
1400
+ // Modification Functions
1401
+ // ----------------------
1402
+ // Thanks to less.js for some of the basics here
1403
+ // <https://github.com/cloudhead/less.js/blob/master/lib/less/functions.js>
1404
+
1405
+
1406
+ tinycolor.desaturate = function (color, amount) {
1407
+ var hsl = tinycolor(color).toHsl();
1408
+ hsl.s -= ((amount || 10) / 100);
1409
+ hsl.s = clamp01(hsl.s);
1410
+ return tinycolor(hsl);
1411
+ };
1412
+ tinycolor.saturate = function (color, amount) {
1413
+ var hsl = tinycolor(color).toHsl();
1414
+ hsl.s += ((amount || 10) / 100);
1415
+ hsl.s = clamp01(hsl.s);
1416
+ return tinycolor(hsl);
1417
+ };
1418
+ tinycolor.greyscale = function(color) {
1419
+ return tinycolor.desaturate(color, 100);
1420
+ };
1421
+ tinycolor.lighten = function(color, amount) {
1422
+ var hsl = tinycolor(color).toHsl();
1423
+ hsl.l += ((amount || 10) / 100);
1424
+ hsl.l = clamp01(hsl.l);
1425
+ return tinycolor(hsl);
1426
+ };
1427
+ tinycolor.darken = function (color, amount) {
1428
+ var hsl = tinycolor(color).toHsl();
1429
+ hsl.l -= ((amount || 10) / 100);
1430
+ hsl.l = clamp01(hsl.l);
1431
+ return tinycolor(hsl);
1432
+ };
1433
+ tinycolor.complement = function(color) {
1434
+ var hsl = tinycolor(color).toHsl();
1435
+ hsl.h = (hsl.h + 180) % 360;
1436
+ return tinycolor(hsl);
1437
+ };
1438
+
1439
+
1440
+ // Combination Functions
1441
+ // ---------------------
1442
+ // Thanks to jQuery xColor for some of the ideas behind these
1443
+ // <https://github.com/infusion/jQuery-xcolor/blob/master/jquery.xcolor.js>
1444
+
1445
+ tinycolor.triad = function(color) {
1446
+ var hsl = tinycolor(color).toHsl();
1447
+ var h = hsl.h;
1448
+ return [
1449
+ tinycolor(color),
1450
+ tinycolor({ h: (h + 120) % 360, s: hsl.s, l: hsl.l }),
1451
+ tinycolor({ h: (h + 240) % 360, s: hsl.s, l: hsl.l })
1452
+ ];
1453
+ };
1454
+ tinycolor.tetrad = function(color) {
1455
+ var hsl = tinycolor(color).toHsl();
1456
+ var h = hsl.h;
1457
+ return [
1458
+ tinycolor(color),
1459
+ tinycolor({ h: (h + 90) % 360, s: hsl.s, l: hsl.l }),
1460
+ tinycolor({ h: (h + 180) % 360, s: hsl.s, l: hsl.l }),
1461
+ tinycolor({ h: (h + 270) % 360, s: hsl.s, l: hsl.l })
1462
+ ];
1463
+ };
1464
+ tinycolor.splitcomplement = function(color) {
1465
+ var hsl = tinycolor(color).toHsl();
1466
+ var h = hsl.h;
1467
+ return [
1468
+ tinycolor(color),
1469
+ tinycolor({ h: (h + 72) % 360, s: hsl.s, l: hsl.l}),
1470
+ tinycolor({ h: (h + 216) % 360, s: hsl.s, l: hsl.l})
1471
+ ];
1472
+ };
1473
+ tinycolor.analogous = function(color, results, slices) {
1474
+ results = results || 6;
1475
+ slices = slices || 30;
1476
+
1477
+ var hsl = tinycolor(color).toHsl();
1478
+ var part = 360 / slices;
1479
+ var ret = [tinycolor(color)];
1480
+
1481
+ for (hsl.h = ((hsl.h - (part * results >> 1)) + 720) % 360; --results; ) {
1482
+ hsl.h = (hsl.h + part) % 360;
1483
+ ret.push(tinycolor(hsl));
1484
+ }
1485
+ return ret;
1486
+ };
1487
+ tinycolor.monochromatic = function(color, results) {
1488
+ results = results || 6;
1489
+ var hsv = tinycolor(color).toHsv();
1490
+ var h = hsv.h, s = hsv.s, v = hsv.v;
1491
+ var ret = [];
1492
+ var modification = 1 / results;
1493
+
1494
+ while (results--) {
1495
+ ret.push(tinycolor({ h: h, s: s, v: v}));
1496
+ v = (v + modification) % 1;
1497
+ }
1498
+
1499
+ return ret;
1500
+ };
1501
+
1502
+ // Readability Functions
1503
+ // ---------------------
1504
+ // <http://www.w3.org/TR/AERT#color-contrast>
1505
+
1506
+ // `readability`
1507
+ // Analyze the 2 colors and returns an object with the following properties:
1508
+ // `brightness`: difference in brightness between the two colors
1509
+ // `color`: difference in color/hue between the two colors
1510
+ tinycolor.readability = function(color1, color2) {
1511
+ var a = tinycolor(color1).toRgb();
1512
+ var b = tinycolor(color2).toRgb();
1513
+ var brightnessA = (a.r * 299 + a.g * 587 + a.b * 114) / 1000;
1514
+ var brightnessB = (b.r * 299 + b.g * 587 + b.b * 114) / 1000;
1515
+ var colorDiff = (
1516
+ Math.max(a.r, b.r) - Math.min(a.r, b.r) +
1517
+ Math.max(a.g, b.g) - Math.min(a.g, b.g) +
1518
+ Math.max(a.b, b.b) - Math.min(a.b, b.b)
1519
+ );
1520
+
1521
+ return {
1522
+ brightness: Math.abs(brightnessA - brightnessB),
1523
+ color: colorDiff
1524
+ };
1525
+ };
1526
+
1527
+ // `readable`
1528
+ // http://www.w3.org/TR/AERT#color-contrast
1529
+ // Ensure that foreground and background color combinations provide sufficient contrast.
1530
+ // *Example*
1531
+ // tinycolor.readable("#000", "#111") => false
1532
+ tinycolor.readable = function(color1, color2) {
1533
+ var readability = tinycolor.readability(color1, color2);
1534
+ return readability.brightness > 125 && readability.color > 500;
1535
+ };
1536
+
1537
+ // `mostReadable`
1538
+ // Given a base color and a list of possible foreground or background
1539
+ // colors for that base, returns the most readable color.
1540
+ // *Example*
1541
+ // tinycolor.mostReadable("#123", ["#fff", "#000"]) => "#000"
1542
+ tinycolor.mostReadable = function(baseColor, colorList) {
1543
+ var bestColor = null;
1544
+ var bestScore = 0;
1545
+ var bestIsReadable = false;
1546
+ for (var i=0; i < colorList.length; i++) {
1547
+
1548
+ // We normalize both around the "acceptable" breaking point,
1549
+ // but rank brightness constrast higher than hue.
1550
+
1551
+ var readability = tinycolor.readability(baseColor, colorList[i]);
1552
+ var readable = readability.brightness > 125 && readability.color > 500;
1553
+ var score = 3 * (readability.brightness / 125) + (readability.color / 500);
1554
+
1555
+ if ((readable && ! bestIsReadable) ||
1556
+ (readable && bestIsReadable && score > bestScore) ||
1557
+ ((! readable) && (! bestIsReadable) && score > bestScore)) {
1558
+ bestIsReadable = readable;
1559
+ bestScore = score;
1560
+ bestColor = tinycolor(colorList[i]);
1561
+ }
1562
+ }
1563
+ return bestColor;
1564
+ };
1565
+
1566
+
1567
+ // Big List of Colors
1568
+ // ------------------
1569
+ // <http://www.w3.org/TR/css3-color/#svg-color>
1570
+ var names = tinycolor.names = {
1571
+ aliceblue: "f0f8ff",
1572
+ antiquewhite: "faebd7",
1573
+ aqua: "0ff",
1574
+ aquamarine: "7fffd4",
1575
+ azure: "f0ffff",
1576
+ beige: "f5f5dc",
1577
+ bisque: "ffe4c4",
1578
+ black: "000",
1579
+ blanchedalmond: "ffebcd",
1580
+ blue: "00f",
1581
+ blueviolet: "8a2be2",
1582
+ brown: "a52a2a",
1583
+ burlywood: "deb887",
1584
+ burntsienna: "ea7e5d",
1585
+ cadetblue: "5f9ea0",
1586
+ chartreuse: "7fff00",
1587
+ chocolate: "d2691e",
1588
+ coral: "ff7f50",
1589
+ cornflowerblue: "6495ed",
1590
+ cornsilk: "fff8dc",
1591
+ crimson: "dc143c",
1592
+ cyan: "0ff",
1593
+ darkblue: "00008b",
1594
+ darkcyan: "008b8b",
1595
+ darkgoldenrod: "b8860b",
1596
+ darkgray: "a9a9a9",
1597
+ darkgreen: "006400",
1598
+ darkgrey: "a9a9a9",
1599
+ darkkhaki: "bdb76b",
1600
+ darkmagenta: "8b008b",
1601
+ darkolivegreen: "556b2f",
1602
+ darkorange: "ff8c00",
1603
+ darkorchid: "9932cc",
1604
+ darkred: "8b0000",
1605
+ darksalmon: "e9967a",
1606
+ darkseagreen: "8fbc8f",
1607
+ darkslateblue: "483d8b",
1608
+ darkslategray: "2f4f4f",
1609
+ darkslategrey: "2f4f4f",
1610
+ darkturquoise: "00ced1",
1611
+ darkviolet: "9400d3",
1612
+ deeppink: "ff1493",
1613
+ deepskyblue: "00bfff",
1614
+ dimgray: "696969",
1615
+ dimgrey: "696969",
1616
+ dodgerblue: "1e90ff",
1617
+ firebrick: "b22222",
1618
+ floralwhite: "fffaf0",
1619
+ forestgreen: "228b22",
1620
+ fuchsia: "f0f",
1621
+ gainsboro: "dcdcdc",
1622
+ ghostwhite: "f8f8ff",
1623
+ gold: "ffd700",
1624
+ goldenrod: "daa520",
1625
+ gray: "808080",
1626
+ green: "008000",
1627
+ greenyellow: "adff2f",
1628
+ grey: "808080",
1629
+ honeydew: "f0fff0",
1630
+ hotpink: "ff69b4",
1631
+ indianred: "cd5c5c",
1632
+ indigo: "4b0082",
1633
+ ivory: "fffff0",
1634
+ khaki: "f0e68c",
1635
+ lavender: "e6e6fa",
1636
+ lavenderblush: "fff0f5",
1637
+ lawngreen: "7cfc00",
1638
+ lemonchiffon: "fffacd",
1639
+ lightblue: "add8e6",
1640
+ lightcoral: "f08080",
1641
+ lightcyan: "e0ffff",
1642
+ lightgoldenrodyellow: "fafad2",
1643
+ lightgray: "d3d3d3",
1644
+ lightgreen: "90ee90",
1645
+ lightgrey: "d3d3d3",
1646
+ lightpink: "ffb6c1",
1647
+ lightsalmon: "ffa07a",
1648
+ lightseagreen: "20b2aa",
1649
+ lightskyblue: "87cefa",
1650
+ lightslategray: "789",
1651
+ lightslategrey: "789",
1652
+ lightsteelblue: "b0c4de",
1653
+ lightyellow: "ffffe0",
1654
+ lime: "0f0",
1655
+ limegreen: "32cd32",
1656
+ linen: "faf0e6",
1657
+ magenta: "f0f",
1658
+ maroon: "800000",
1659
+ mediumaquamarine: "66cdaa",
1660
+ mediumblue: "0000cd",
1661
+ mediumorchid: "ba55d3",
1662
+ mediumpurple: "9370db",
1663
+ mediumseagreen: "3cb371",
1664
+ mediumslateblue: "7b68ee",
1665
+ mediumspringgreen: "00fa9a",
1666
+ mediumturquoise: "48d1cc",
1667
+ mediumvioletred: "c71585",
1668
+ midnightblue: "191970",
1669
+ mintcream: "f5fffa",
1670
+ mistyrose: "ffe4e1",
1671
+ moccasin: "ffe4b5",
1672
+ navajowhite: "ffdead",
1673
+ navy: "000080",
1674
+ oldlace: "fdf5e6",
1675
+ olive: "808000",
1676
+ olivedrab: "6b8e23",
1677
+ orange: "ffa500",
1678
+ orangered: "ff4500",
1679
+ orchid: "da70d6",
1680
+ palegoldenrod: "eee8aa",
1681
+ palegreen: "98fb98",
1682
+ paleturquoise: "afeeee",
1683
+ palevioletred: "db7093",
1684
+ papayawhip: "ffefd5",
1685
+ peachpuff: "ffdab9",
1686
+ peru: "cd853f",
1687
+ pink: "ffc0cb",
1688
+ plum: "dda0dd",
1689
+ powderblue: "b0e0e6",
1690
+ purple: "800080",
1691
+ red: "f00",
1692
+ rosybrown: "bc8f8f",
1693
+ royalblue: "4169e1",
1694
+ saddlebrown: "8b4513",
1695
+ salmon: "fa8072",
1696
+ sandybrown: "f4a460",
1697
+ seagreen: "2e8b57",
1698
+ seashell: "fff5ee",
1699
+ sienna: "a0522d",
1700
+ silver: "c0c0c0",
1701
+ skyblue: "87ceeb",
1702
+ slateblue: "6a5acd",
1703
+ slategray: "708090",
1704
+ slategrey: "708090",
1705
+ snow: "fffafa",
1706
+ springgreen: "00ff7f",
1707
+ steelblue: "4682b4",
1708
+ tan: "d2b48c",
1709
+ teal: "008080",
1710
+ thistle: "d8bfd8",
1711
+ tomato: "ff6347",
1712
+ turquoise: "40e0d0",
1713
+ violet: "ee82ee",
1714
+ wheat: "f5deb3",
1715
+ white: "fff",
1716
+ whitesmoke: "f5f5f5",
1717
+ yellow: "ff0",
1718
+ yellowgreen: "9acd32"
1719
+ };
1720
+
1721
+ // Make it easy to access colors via `hexNames[hex]`
1722
+ var hexNames = tinycolor.hexNames = flip(names);
1723
+
1724
+
1725
+ // Utilities
1726
+ // ---------
1727
+
1728
+ // `{ 'name1': 'val1' }` becomes `{ 'val1': 'name1' }`
1729
+ function flip(o) {
1730
+ var flipped = { };
1731
+ for (var i in o) {
1732
+ if (o.hasOwnProperty(i)) {
1733
+ flipped[o[i]] = i;
1734
+ }
1735
+ }
1736
+ return flipped;
1737
+ }
1738
+
1739
+ // Take input from [0, n] and return it as [0, 1]
1740
+ function bound01(n, max) {
1741
+ if (isOnePointZero(n)) { n = "100%"; }
1742
+
1743
+ var processPercent = isPercentage(n);
1744
+ n = mathMin(max, mathMax(0, parseFloat(n)));
1745
+
1746
+ // Automatically convert percentage into number
1747
+ if (processPercent) {
1748
+ n = parseInt(n * max, 10) / 100;
1749
+ }
1750
+
1751
+ // Handle floating point rounding errors
1752
+ if ((math.abs(n - max) < 0.000001)) {
1753
+ return 1;
1754
+ }
1755
+
1756
+ // Convert into [0, 1] range if it isn't already
1757
+ return (n % max) / parseFloat(max);
1758
+ }
1759
+
1760
+ // Force a number between 0 and 1
1761
+ function clamp01(val) {
1762
+ return mathMin(1, mathMax(0, val));
1763
+ }
1764
+
1765
+ // Parse an integer into hex
1766
+ function parseHex(val) {
1767
+ return parseInt(val, 16);
1768
+ }
1769
+
1770
+ // Need to handle 1.0 as 100%, since once it is a number, there is no difference between it and 1
1771
+ // <http://stackoverflow.com/questions/7422072/javascript-how-to-detect-number-as-a-decimal-including-1-0>
1772
+ function isOnePointZero(n) {
1773
+ return typeof n == "string" && n.indexOf('.') != -1 && parseFloat(n) === 1;
1774
+ }
1775
+
1776
+ // Check to see if string passed in is a percentage
1777
+ function isPercentage(n) {
1778
+ return typeof n === "string" && n.indexOf('%') != -1;
1779
+ }
1780
+
1781
+ // Force a hex value to have 2 characters
1782
+ function pad2(c) {
1783
+ return c.length == 1 ? '0' + c : '' + c;
1784
+ }
1785
+
1786
+ // Replace a decimal with it's percentage value
1787
+ function convertToPercentage(n) {
1788
+ if (n <= 1) {
1789
+ n = (n * 100) + "%";
1790
+ }
1791
+
1792
+ return n;
1793
+ }
1794
+
1795
+ var matchers = (function() {
1796
+
1797
+ // <http://www.w3.org/TR/css3-values/#integers>
1798
+ var CSS_INTEGER = "[-\\+]?\\d+%?";
1799
+
1800
+ // <http://www.w3.org/TR/css3-values/#number-value>
1801
+ var CSS_NUMBER = "[-\\+]?\\d*\\.\\d+%?";
1802
+
1803
+ // Allow positive/negative integer/number. Don't capture the either/or, just the entire outcome.
1804
+ var CSS_UNIT = "(?:" + CSS_NUMBER + ")|(?:" + CSS_INTEGER + ")";
1805
+
1806
+ // Actual matching.
1807
+ // Parentheses and commas are optional, but not required.
1808
+ // Whitespace can take the place of commas or opening paren
1809
+ var PERMISSIVE_MATCH3 = "[\\s|\\(]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")\\s*\\)?";
1810
+ var PERMISSIVE_MATCH4 = "[\\s|\\(]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")\\s*\\)?";
1811
+
1812
+ return {
1813
+ rgb: new RegExp("rgb" + PERMISSIVE_MATCH3),
1814
+ rgba: new RegExp("rgba" + PERMISSIVE_MATCH4),
1815
+ hsl: new RegExp("hsl" + PERMISSIVE_MATCH3),
1816
+ hsla: new RegExp("hsla" + PERMISSIVE_MATCH4),
1817
+ hsv: new RegExp("hsv" + PERMISSIVE_MATCH3),
1818
+ hex3: /^([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,
1819
+ hex6: /^([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/
1820
+ };
1821
+ })();
1822
+
1823
+ // `stringInputToObject`
1824
+ // Permissive string parsing. Take in a number of formats, and output an object
1825
+ // based on detected format. Returns `{ r, g, b }` or `{ h, s, l }` or `{ h, s, v}`
1826
+ function stringInputToObject(color) {
1827
+
1828
+ color = color.replace(trimLeft,'').replace(trimRight, '').toLowerCase();
1829
+ var named = false;
1830
+ if (names[color]) {
1831
+ color = names[color];
1832
+ named = true;
1833
+ }
1834
+ else if (color == 'transparent') {
1835
+ return { r: 0, g: 0, b: 0, a: 0 };
1836
+ }
1837
+
1838
+ // Try to match string input using regular expressions.
1839
+ // Keep most of the number bounding out of this function - don't worry about [0,1] or [0,100] or [0,360]
1840
+ // Just return an object and let the conversion functions handle that.
1841
+ // This way the result will be the same whether the tinycolor is initialized with string or object.
1842
+ var match;
1843
+ if ((match = matchers.rgb.exec(color))) {
1844
+ return { r: match[1], g: match[2], b: match[3] };
1845
+ }
1846
+ if ((match = matchers.rgba.exec(color))) {
1847
+ return { r: match[1], g: match[2], b: match[3], a: match[4] };
1848
+ }
1849
+ if ((match = matchers.hsl.exec(color))) {
1850
+ return { h: match[1], s: match[2], l: match[3] };
1851
+ }
1852
+ if ((match = matchers.hsla.exec(color))) {
1853
+ return { h: match[1], s: match[2], l: match[3], a: match[4] };
1854
+ }
1855
+ if ((match = matchers.hsv.exec(color))) {
1856
+ return { h: match[1], s: match[2], v: match[3] };
1857
+ }
1858
+ if ((match = matchers.hex6.exec(color))) {
1859
+ return {
1860
+ r: parseHex(match[1]),
1861
+ g: parseHex(match[2]),
1862
+ b: parseHex(match[3]),
1863
+ format: named ? "name" : "hex"
1864
+ };
1865
+ }
1866
+ if ((match = matchers.hex3.exec(color))) {
1867
+ return {
1868
+ r: parseHex(match[1] + '' + match[1]),
1869
+ g: parseHex(match[2] + '' + match[2]),
1870
+ b: parseHex(match[3] + '' + match[3]),
1871
+ format: named ? "name" : "hex"
1872
+ };
1873
+ }
1874
+
1875
+ return false;
1876
+ }
1877
+
1878
+ root.tinycolor = tinycolor;
1879
+
1880
+ })(this);
1881
+
1882
+ $(function () {
1883
+ if ($.fn.spectrum.load) {
1884
+ $.fn.spectrum.processNativeColorInputs();
1885
+ }
1886
+ });
1887
+
1888
+ })(window, jQuery);
{settings/types → backend/settings/assets}/others.js RENAMED
@@ -3,19 +3,7 @@ function wpdreamsOthers (args) {
3
  var _self = this;
4
  this.constructor = function() {
5
  _self.init = true;
6
- $('.wpdreamscolorpicker').prev('input').bind("change", this.colorPickerInit);
7
- $('.wpdreamscolorpicker').prev('input').trigger("change");
8
- $('.wpdreams-slider.moveable .settings').trigger("click");
9
- $("#wpdreams img[title].infoimage").tooltip({
10
- effect: 'slide',
11
- delay: 500,
12
- events: {
13
- def: 'click, mouseout',
14
- img: 'click, blur',
15
- checkbox: 'mouseover click, mouseout',
16
- date: 'click, blur'
17
- }
18
- });
19
  $( ".sortable" ).sortable({
20
  items: 'div.wpdreams-slider.moveable',
21
  dropOnEmpty: false,
@@ -36,12 +24,14 @@ function wpdreamsOthers (args) {
36
  $(nodes).fadeTo(400, 1);
37
  });
38
  }
39
- });
40
  _self.init = false;
41
  },
42
 
43
 
44
  $('.wpdreamsThemeChooser select').bind('change', function(){
 
 
45
  var parent = $(this);
46
  while(parent.is('form')!=true) {
47
  parent = parent.parent();
@@ -49,12 +39,17 @@ function wpdreamsOthers (args) {
49
  var themeDiv = $('div[name="'+$(this).val()+'"]');
50
  var items = $('p', themeDiv);
51
  items.each(function(){
52
- param = $('input[name^="'+$(this).attr('paramname')+'_"]', parent);
 
 
 
 
53
  param.val($(this).html());
54
- $('.triggerer', param.parent()).trigger('click');
55
- });
56
-
57
- });
 
58
 
59
  /*
60
  Image Settings
@@ -85,6 +80,34 @@ function wpdreamsOthers (args) {
85
  });
86
  });
87
  //Image Settings End
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
 
89
  /*
90
  Select
@@ -92,21 +115,50 @@ function wpdreamsOthers (args) {
92
  */
93
  $('.wpdreamsSelect .wpdreamsselect').change(function() {
94
  _self.hidden = $(this).next();
 
95
  var val = $(_self.hidden).val().match(/(.*[\S\s]*?)\|\|(.*)/);
96
  var options = val[1];
97
  var selected = val[2];
98
  $(_self.hidden).val(options+"||"+$(this).val());
 
99
  });
100
 
101
  $('.wpdreamsSelect .triggerer').bind('click', function(){
102
  var parent = $(this).parent();
103
  var select = $('select', parent);
104
- var hidden = $('input[type=hidden]', parent);
 
105
  var val = $(hidden).val().replace(/(\r\n|\n|\r)/gm,"").match(/(.*[\S\s]*?)\|\|(.*)/);
106
  var selected = $.trim(val[2]);
107
  select.val(selected);
 
108
  });
109
  //Select end
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
 
111
 
112
  /*
@@ -125,30 +177,27 @@ function wpdreamsOthers (args) {
125
  Onoff
126
  Msg:
127
  */
128
- $('.wpdreamsOnOff .wpdreamsonoff').click(function() {
129
- var hidden = $(this).next();
130
  var val = $(hidden).val();
131
  if (val==1) {
132
  val = 0;
133
- $(this).removeClass("on");
134
- $(this).addClass("off");
135
- $(this).html("OFF");
136
  } else {
137
  val = 1;
138
- $(this).removeClass("off");
139
- $(this).addClass("on");
140
- $(this).html("ON");
141
  }
142
- $(hidden).val(val).change();
 
143
  });
144
- $('.wpdreamsOnOff .triggerer').click(function() {
145
  var hidden = $('input[type=hidden]', $(this).parent());
146
- var a = $('a', $(this).parent());
147
  var val = $(hidden).val();
148
  if (val==0) {
149
- a.removeClass("on").addClass("off").html("OFF");
150
  } else {
151
- a.removeClass("off").addClass("on").html("ON");
152
  }
153
  });
154
  /*Onoff End*/
@@ -157,71 +206,39 @@ function wpdreamsOthers (args) {
157
  YesNo
158
  Msg:
159
  */
160
- $('.wpdreamsYesNo .wpdreamsyesno').click(function() {
161
- var hidden = $(this).next();
162
  var val = $(hidden).val();
163
  if (val==1) {
164
  val = 0;
165
- $(this).removeClass("yes");
166
- $(this).addClass("no");
167
- $(this).html("NO");
168
  } else {
169
  val = 1;
170
- $(this).removeClass("no");
171
- $(this).addClass("yes");
172
- $(this).html("YES");
173
  }
174
  $(hidden).val(val);
175
  $(hidden).change();
176
  });
177
- $('.wpdreamsYesNo .triggerer').click(function() {
178
  var hidden = $('input[type=hidden]', $(this).parent());
179
- var a = $('a', $(this).parent());
180
  var val = $(hidden).val();
181
  if (val==0) {
182
- a.removeClass("yes").addClass("no").html("NO");
183
  } else {
184
- a.removeClass("no").addClass("yes").html("YES");
185
  }
 
186
  });
187
  /*YesNo End*/
188
 
189
 
190
- this.colorPickerInit = function(event) {
191
  colorPicker = $(this).next().next('div');
192
  input = this;
193
  $(colorPicker).farbtastic(input);
194
- };
195
- $('.wpdreams-slider.moveable .settings').click(function(){
196
- var moveable = this.parentNode.parentNode;
197
- if ($('.errorMsg', moveable).length) return;
198
- if (_self.sliderHeight==null) {
199
- _self.sliderHeight = $(moveable).height();
200
- }
201
- if ($(moveable).height()<27) {
202
- if (_self.init) {
203
- $(moveable).css({
204
- height: _self.sliderHeight
205
- });
206
- } else {
207
- $(moveable).animate({
208
- height: _self.sliderHeight
209
- }, 500, function() {
210
- });
211
- }
212
- } else {
213
- if (_self.init) {
214
- $(moveable).css({
215
- height: "26px"
216
- });
217
- } else {
218
- $(moveable).animate({
219
- height: "26px"
220
- }, 500, function() {
221
- });
222
- }
223
- }
224
- });
225
  $('.successMsg').each(function() {
226
  $(this).delay(4000).fadeOut();
227
  });
@@ -236,62 +253,52 @@ function wpdreamsOthers (args) {
236
  RadioImage
237
  Msg:
238
  */
239
- $('img.radioimage').click(function() {
240
- $("img.radioimage", $(this).parent()).removeClass("selected");
241
- $(this).addClass("selected");
242
- var val = $("input[type=hidden]", $(this).parent()).val().match(/(.*[\S\s]*?)\|\|(.*)/);
243
- var options = val[1];
244
- var selected = val[2];
245
- var pre = "/ajax-search-pro/img/" //magnifiers/magn5.png
246
- var nval = $(this).attr('src').match(/.*?ajax-search-pro\/img\/(.*)/)[1];
247
- nval = pre+nval;
248
- $("input[type=hidden]", $(this).parent()).val(options+"||"+nval);
249
  });
250
  $('.wpdreamsImageRadio .triggerer').bind('click', function(){
251
- var val = $("input[type=hidden]", $(this).parent()).val().replace(/(\r\n|\n|\r)/gm,"").match(/(.*[\S\s]*?)\|\|(.*)/);
252
- var selected = $.trim(val[2]);
253
- $("img", $(this).parent()).each(function(){
254
- $(this).removeClass("selected");
255
- var re = new RegExp(selected);
256
- if ($.trim($(this).attr('src')).match(re)!=null) {
257
- $(this).addClass("selected");
258
- }
259
- });
260
  });
261
  /*RadioImage End*/
262
-
263
-
264
  /*
265
- BoxShadow
266
  Msg: Its a bit more complicated but working fine :)
267
  */
268
- $('.wpdreamsBoxShadow input[type=text], .wpdreamsBoxShadow select').change(function() {
269
  var value = "";
270
  var parent = $(this).parent();
271
- while (parent.hasClass('wpdreamsBoxShadow')!=true) {
272
  parent = $(parent).parent();
273
  }
274
  var hlength = $.trim($('input[name*="_xx_hlength_xx_"]', parent).val())+"px ";
275
  var vlength = $.trim($('input[name*="_xx_vlength_xx_"]', parent).val())+"px ";
276
  var blurradius = $.trim($('input[name*="_xx_blurradius_xx_"]', parent).val())+"px ";
277
- var spread = $.trim($('input[name*="_xx_spread_xx_"]', parent).val())+"px ";
278
  var color = $.trim($('input[name*="_xx_color_xx_"]', parent).val())+" ";
279
- var inset = $.trim($('select[name*="_xx_inset_xx_"]', parent).val())+";";
280
- var boxshadow = "box-shadow:"+hlength+vlength+blurradius+spread+color+inset;
281
-
282
  $('input[type=hidden]', parent).val(boxshadow);
 
283
  });
284
- $('.wpdreamsBoxShadow>fieldset>.triggerer').bind('click', function(){
285
  var parent = $(this).parent();
286
  var hidden = $("input[type=hidden]", parent);
287
- var boxshadow = hidden.val().replace(/(\r\n|\n|\r)/gm,"").match(/box-shadow:(.*?)px (.*?)px (.*?)px (.*?)px (.*?) (.*?);/);
288
 
289
  $('input[name*="_xx_hlength_xx_"]', parent).val(boxshadow[1])+"px ";
290
  $('input[name*="_xx_vlength_xx_"]', parent).val(boxshadow[2])+"px ";
291
  $('input[name*="_xx_blurradius_xx_"]', parent).val(boxshadow[3])+"px ";
292
- $('input[name*="_xx_spread_xx_"]', parent).val(boxshadow[4])+"px ";
293
- $('input[name*="_xx_color_xx_"]', parent).val(boxshadow[5])+" ";
294
- $('select[name*="_xx_inset_xx_"]', parent).val(boxshadow[6])+";";
295
  $('input[name*="_xx_color_xx_"]', parent).keyup();
296
  /*var name = $(this).attr('name').match(/.*_xx_(.*)_xx_/)[1]
297
  var regex = new RegExp(".*" + name + ":(.*?);.*");
@@ -299,6 +306,48 @@ function wpdreamsOthers (args) {
299
  $(this).val(val[1]); */
300
  //$('input[name*="_xx_color_xx_"]', parent).trigger("keyup");
301
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
  });
303
  /*BoxShadow end*/
304
 
@@ -309,18 +358,6 @@ function wpdreamsOthers (args) {
309
  */
310
  $('.wpdreamsBorder input[type=text], .wpdreamsBorder select').bind("change", function() {
311
  var value = "";
312
- /*$('input[type=text]', $(this).parent()).each(function(){
313
- if ($(this).attr('name').match(/.*_xx_(.*)_xx_/)!=null) {
314
- var name = $(this).attr('name').match(/.*_xx_(.*)_xx_/)[1];
315
- value += name+ ":" + $(this).val()+";";
316
- }
317
- });
318
- $('select', $(this).parent()).each(function(){
319
- if ($(this).attr('name').match(/.*_xx_(.*)_xx_/)!=null) {
320
- var name = $(this).attr('name').match(/.*_xx_(.*)_xx_/)[1];
321
- value += name+ ":" + $(this).val()+";";
322
- }
323
- });*/
324
  var parent = $(this).parent();
325
  while (parent.hasClass('wpdreamsBorder')!=true) {
326
  parent = $(parent).parent();
@@ -339,6 +376,7 @@ function wpdreamsOthers (args) {
339
  var value = border + borderradius;
340
 
341
  $('input[type=hidden]', parent).val(value);
 
342
  });
343
  $('.wpdreamsBorder>fieldset>.triggerer').bind('click', function(){
344
  var parent = $(this).parent();
@@ -353,7 +391,8 @@ function wpdreamsOthers (args) {
353
  $('input[name*="_xx_topright_xx_"]', parent).val(borderradius[2])+"px ";
354
  $('input[name*="_xx_bottomright_xx_"]', parent).val(borderradius[3])+"px ";
355
  $('input[name*="_xx_bottomleft_xx_"]', parent).val(borderradius[4])+"px;";
356
- $('input[name*="_xx_color_xx_"]', parent).keyup();
 
357
  /*var name = $(this).attr('name').match(/.*_xx_(.*)_xx_/)[1]
358
  var regex = new RegExp(".*" + name + ":(.*?);.*");
359
  val = hidden.val().replace(/(\r\n|\n|\r)/gm,"").match(regex);
@@ -374,10 +413,11 @@ function wpdreamsOthers (args) {
374
  value += " " + $(this).val()+"px";
375
  });
376
  $('input[type=hidden]', $(this).parent()).val("border-radius:"+value+";");
 
377
  });
378
  $('.wpdreamsBorderRadius>fieldset>.triggerer').bind('click', function(){
379
  var hidden = $("input[type=hidden]", $(this).parent());
380
- var values = hidden.val().match(/border-radius:(.*?)px(.*?)px(.*?)px(.*?)px;/);
381
  var i = 1;
382
  $('input[type=text]', $(this).parent()).each(function(){
383
  if ($(this).attr('name')!=null) {
@@ -386,7 +426,33 @@ function wpdreamsOthers (args) {
386
  }
387
  });
388
  });
389
- /*BorderRadius end*/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
390
 
391
  $('img.ordering').click(function() {
392
  $(this).next().submit();
@@ -394,29 +460,135 @@ function wpdreamsOthers (args) {
394
 
395
  /*
396
  Colorpicker Start
397
- Msg: Keyup event triggers the color change!
398
  */
399
- $('.wpdreamsColorPicker .wpdreamscolorpicker').click( function(e) {
400
- colorPicker = $(this).next('div');
401
- input = $(this).prev('input');
402
- $(colorPicker).farbtastic(input);
403
- colorPicker.show();
404
- var inputPos = input.position();
405
- colorPicker.css("left",inputPos.left);
406
- e.preventDefault();
407
- $(document).mousedown( function() {
408
- $(colorPicker).hide();
409
- $(input).val($(input).val());
410
- $(input).trigger('change');
411
- $(input).trigger('keyup');
412
- });
413
  });
414
  $('.wpdreamsColorPicker .triggerer').bind('click', function(){
415
- var parent = $(this).parent();
416
- var input = $('input[type=text]', parent);
417
- input.trigger("keyup");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  });
419
  //Colorpicker End
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
420
 
421
 
422
  $('form.wpdreams-ajaxinput').each(function(){
3
  var _self = this;
4
  this.constructor = function() {
5
  _self.init = true;
6
+
 
 
 
 
 
 
 
 
 
 
 
 
7
  $( ".sortable" ).sortable({
8
  items: 'div.wpdreams-slider.moveable',
9
  dropOnEmpty: false,
24
  $(nodes).fadeTo(400, 1);
25
  });
26
  }
27
+ });
28
  _self.init = false;
29
  },
30
 
31
 
32
  $('.wpdreamsThemeChooser select').bind('change', function(){
33
+ var c = confirm('Do you really want to load this template?');
34
+ if (!c) return;
35
  var parent = $(this);
36
  while(parent.is('form')!=true) {
37
  parent = parent.parent();
39
  var themeDiv = $('div[name="'+$(this).val()+'"]');
40
  var items = $('p', themeDiv);
41
  items.each(function(){
42
+ param = $('input[name="'+$(this).attr('paramname')+'"]', parent);
43
+ if (param.length==0)
44
+ param = $('select[name="'+$(this).attr('paramname')+'"]', parent);
45
+ if (param.length==0)
46
+ param = $('textarea[name="'+$(this).attr('paramname')+'"]', parent);
47
  param.val($(this).html());
48
+ $('>.triggerer', param.parent()).trigger('click');
49
+ });
50
+ });
51
+
52
+
53
 
54
  /*
55
  Image Settings
80
  });
81
  });
82
  //Image Settings End
83
+
84
+
85
+ /*
86
+ wpdreamsNumericUnit
87
+ Msg:
88
+ */
89
+ $('.wpdreamsNumericUnit select, .wpdreamsNumericUnit input[name=numeric]').change(function() {
90
+ var value = "";
91
+ var parent = $(this).parent();
92
+ while (parent.hasClass('wpdreamsNumericUnit')!=true) {
93
+ parent = $(parent).parent();
94
+ }
95
+ var value = $('input[name=numeric]', parent).val() + $('select', parent).val();
96
+ $('input[type=hidden]', parent).val(value);
97
+ });
98
+
99
+ $('.wpdreamsNumericUnit .triggerer').bind('click', function(){
100
+ var value = "";
101
+ var parent = $(this).parent();
102
+ while (parent.hasClass('wpdreamsNumericUnit')!=true) {
103
+ parent = $(parent).parent();
104
+ }
105
+ var hiddenval = $('input[type=hidden]', parent).val();
106
+ var value = hiddenval.match(/([0-9]+)(.*)/)
107
+ $('input[name=numeric]', parent).val(value[1]);
108
+ $('select', parent).val(value[2]);
109
+ });
110
+ //Select end
111
 
112
  /*
113
  Select
115
  */
116
  $('.wpdreamsSelect .wpdreamsselect').change(function() {
117
  _self.hidden = $(this).next();
118
+ var selhidden = $(this).next().next();
119
  var val = $(_self.hidden).val().match(/(.*[\S\s]*?)\|\|(.*)/);
120
  var options = val[1];
121
  var selected = val[2];
122
  $(_self.hidden).val(options+"||"+$(this).val());
123
+ selhidden.val($(this).val());
124
  });
125
 
126
  $('.wpdreamsSelect .triggerer').bind('click', function(){
127
  var parent = $(this).parent();
128
  var select = $('select', parent);
129
+ var hidden = select.next();
130
+ var selhidden = hidden.next();
131
  var val = $(hidden).val().replace(/(\r\n|\n|\r)/gm,"").match(/(.*[\S\s]*?)\|\|(.*)/);
132
  var selected = $.trim(val[2]);
133
  select.val(selected);
134
+ selhidden.val(selected);
135
  });
136
  //Select end
137
+
138
+ /*
139
+ textareaIsparam
140
+ Msg:
141
+ */
142
+ $('.wpdreamsTextareaIsParam .triggerer').bind('click', function(){
143
+ $('textarea', $(this).parent()).change();
144
+ });
145
+
146
+ /*
147
+ wpdreamsanimationselect
148
+ Msg:
149
+ */
150
+ $('.wpdreamsAnimations .wpdreamsanimationselect').change(function() {
151
+ var parent = $(this).parent();
152
+ $('span', parent).removeClass();
153
+ $('span', parent).addClass($(this).val());
154
+ });
155
+
156
+ $('.wpdreamsAnimations .triggerer').bind('click', function(){
157
+ var parent = $(this).parent();
158
+ var select = $('select', parent);
159
+ return;
160
+ });
161
+ //wpdreamsanimationselect end
162
 
163
 
164
  /*
177
  Onoff
178
  Msg:
179
  */
180
+ $('.wpdreamsOnOff .wpdreamsOnOffInner').on('click', function() {
181
+ var hidden = $(this).prev();
182
  var val = $(hidden).val();
183
  if (val==1) {
184
  val = 0;
185
+ $(this).parent().removeClass("active");
 
 
186
  } else {
187
  val = 1;
188
+ $(this).parent().addClass("active");
 
 
189
  }
190
+ $(hidden).val(val);
191
+ $(hidden).change();
192
  });
193
+ $('.wpdreamsOnOff .triggerer').on('click', function() {
194
  var hidden = $('input[type=hidden]', $(this).parent());
195
+ var div = $(this).parent();
196
  var val = $(hidden).val();
197
  if (val==0) {
198
+ div.removeClass("active");
199
  } else {
200
+ div.addClass("active");
201
  }
202
  });
203
  /*Onoff End*/
206
  YesNo
207
  Msg:
208
  */
209
+ $('.wpdreamsYesNo .wpdreamsYesNoInner').on('click', function() {
210
+ var hidden = $(this).prev();
211
  var val = $(hidden).val();
212
  if (val==1) {
213
  val = 0;
214
+ $(this).parent().removeClass("active");
 
 
215
  } else {
216
  val = 1;
217
+ $(this).parent().addClass("active");
 
 
218
  }
219
  $(hidden).val(val);
220
  $(hidden).change();
221
  });
222
+ $('.wpdreamsYesNo .triggerer').on('click', function() {
223
  var hidden = $('input[type=hidden]', $(this).parent());
224
+ var div = $(this).parent();
225
  var val = $(hidden).val();
226
  if (val==0) {
227
+ div.removeClass("active");
228
  } else {
229
+ div.addClass("active");
230
  }
231
+ $(hidden).change();
232
  });
233
  /*YesNo End*/
234
 
235
 
236
+ /*this.colorPickerInit = function(event) {
237
  colorPicker = $(this).next().next('div');
238
  input = this;
239
  $(colorPicker).farbtastic(input);
240
+ }; */
241
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  $('.successMsg').each(function() {
243
  $(this).delay(4000).fadeOut();
244
  });
253
  RadioImage
254
  Msg:
255
  */
256
+ $('.wpdreamsImageRadio img.radioimage').click(function() {
257
+ var $parent = $(this).parent();
258
+ var $hidden = $("input[class=realvalue]", $parent);
259
+ $('img.selected', $parent).removeClass('selected');
260
+ $(this).addClass('selected');
261
+ var vals = $(this).attr('src').split('/plugins/');
262
+ $hidden.val(vals[1]);
263
+ $hidden.change();
 
 
264
  });
265
  $('.wpdreamsImageRadio .triggerer').bind('click', function(){
266
+ var $parent = $(this).parent();
267
+ var $hidden = $("input[class=realvalue]", $parent);
268
+ $('img.selected', $parent).removeClass('selected');
269
+ $('img[src*="'+$hidden.val()+'"]', $parent).addClass('selected');
270
+ $hidden.change();
 
 
 
 
271
  });
272
  /*RadioImage End*/
273
+
274
+
275
  /*
276
+ TextShadow
277
  Msg: Its a bit more complicated but working fine :)
278
  */
279
+ $('.wpdreamsTextShadow input[type=text]').change(function() {
280
  var value = "";
281
  var parent = $(this).parent();
282
+ while (parent.hasClass('wpdreamsTextShadow')!=true) {
283
  parent = $(parent).parent();
284
  }
285
  var hlength = $.trim($('input[name*="_xx_hlength_xx_"]', parent).val())+"px ";
286
  var vlength = $.trim($('input[name*="_xx_vlength_xx_"]', parent).val())+"px ";
287
  var blurradius = $.trim($('input[name*="_xx_blurradius_xx_"]', parent).val())+"px ";
 
288
  var color = $.trim($('input[name*="_xx_color_xx_"]', parent).val())+" ";
289
+ var boxshadow = "text-shadow:"+hlength+vlength+blurradius+color;
 
 
290
  $('input[type=hidden]', parent).val(boxshadow);
291
+ $('input[type=hidden]', parent).change();
292
  });
293
+ $('.wpdreamsTextShadow>fieldset>.triggerer').bind('click', function(){
294
  var parent = $(this).parent();
295
  var hidden = $("input[type=hidden]", parent);
296
+ var boxshadow = hidden.val().replace(/(\r\n|\n|\r)/gm,"").match(/box-shadow:(.*?)px (.*?)px (.*?)px (.*?);/);
297
 
298
  $('input[name*="_xx_hlength_xx_"]', parent).val(boxshadow[1])+"px ";
299
  $('input[name*="_xx_vlength_xx_"]', parent).val(boxshadow[2])+"px ";
300
  $('input[name*="_xx_blurradius_xx_"]', parent).val(boxshadow[3])+"px ";
301
+ $('input[name*="_xx_color_xx_"]', parent).val(boxshadow[4])+" ";
 
 
302
  $('input[name*="_xx_color_xx_"]', parent).keyup();
303
  /*var name = $(this).attr('name').match(/.*_xx_(.*)_xx_/)[1]
304
  var regex = new RegExp(".*" + name + ":(.*?);.*");
306
  $(this).val(val[1]); */
307
  //$('input[name*="_xx_color_xx_"]', parent).trigger("keyup");
308
 
309
+ });
310
+ /*BoxShadow end*/
311
+
312
+ /*
313
+ BoxShadow
314
+ Msg: Its a bit more complicated but working fine :)
315
+ */
316
+ $('.wpdreamsBoxShadow input[type=text], .wpdreamsBoxShadow select').change(function() {
317
+ var value = "";
318
+ var parent = $(this).parent();
319
+ while (parent.hasClass('wpdreamsBoxShadow')!=true) {
320
+ parent = $(parent).parent();
321
+ }
322
+ var hlength = $.trim($('input[name*="_xx_hlength_xx_"]', parent).val())+"px ";
323
+ var vlength = $.trim($('input[name*="_xx_vlength_xx_"]', parent).val())+"px ";
324
+ var blurradius = $.trim($('input[name*="_xx_blurradius_xx_"]', parent).val())+"px ";
325
+ var spread = $.trim($('input[name*="_xx_spread_xx_"]', parent).val())+"px ";
326
+ var color = $.trim($('input[name*="_xx_color_xx_"]', parent).val())+" ";
327
+ var inset = $.trim($('select[name*="_xx_inset_xx_"]', parent).val())+";";
328
+ var boxshadow = "box-shadow:"+hlength+vlength+blurradius+spread+color+inset;
329
+
330
+ $('input[type=hidden]', parent).val(boxshadow);
331
+ $('input[type=hidden]', parent).change();
332
+ });
333
+ $('.wpdreamsBoxShadow>fieldset>.triggerer').bind('click', function(){
334
+ var parent = $(this).parent();
335
+ var hidden = $("input[type=hidden]", parent);
336
+ var boxshadow = hidden.val().replace(/(\r\n|\n|\r)/gm,"").match(/box-shadow:(.*?)px (.*?)px (.*?)px (.*?)px (.*?)\) (.*?);/);
337
+ var plus = ")";
338
+ if (boxshadow==null) {
339
+ boxshadow = hidden.val().replace(/(\r\n|\n|\r)/gm,"").match(/box-shadow:(.*?)px (.*?)px (.*?)px (.*?)px (.*?) (.*?);/);
340
+ plus = '';
341
+ }
342
+ $('input[name*="_xx_hlength_xx_"]', parent).val(boxshadow[1]);
343
+ $('input[name*="_xx_vlength_xx_"]', parent).val(boxshadow[2]);
344
+ $('input[name*="_xx_blurradius_xx_"]', parent).val(boxshadow[3]);
345
+ $('input[name*="_xx_spread_xx_"]', parent).val(boxshadow[4]);
346
+ $('input[name*="_xx_color_xx_"]', parent).val(boxshadow[5]+plus);
347
+ $('select[name*="_xx_inset_xx_"]', parent).val(boxshadow[6]);
348
+ $('input[name*="_xx_color_xx_"]', parent).spectrum('set', boxshadow[5]+plus);
349
+
350
+
351
  });
352
  /*BoxShadow end*/
353
 
358
  */
359
  $('.wpdreamsBorder input[type=text], .wpdreamsBorder select').bind("change", function() {
360
  var value = "";
 
 
 
 
 
 
 
 
 
 
 
 
361
  var parent = $(this).parent();
362
  while (parent.hasClass('wpdreamsBorder')!=true) {
363
  parent = $(parent).parent();
376
  var value = border + borderradius;
377
 
378
  $('input[type=hidden]', parent).val(value);
379
+ $('input[type=hidden]', parent).change();
380
  });
381
  $('.wpdreamsBorder>fieldset>.triggerer').bind('click', function(){
382
  var parent = $(this).parent();
391
  $('input[name*="_xx_topright_xx_"]', parent).val(borderradius[2])+"px ";
392
  $('input[name*="_xx_bottomright_xx_"]', parent).val(borderradius[3])+"px ";
393
  $('input[name*="_xx_bottomleft_xx_"]', parent).val(borderradius[4])+"px;";
394
+ $('input[name*="_xx_color_xx_"]', parent).spectrum('set', border[3]);
395
+
396
  /*var name = $(this).attr('name').match(/.*_xx_(.*)_xx_/)[1]
397
  var regex = new RegExp(".*" + name + ":(.*?);.*");
398
  val = hidden.val().replace(/(\r\n|\n|\r)/gm,"").match(regex);
413
  value += " " + $(this).val()+"px";
414
  });
415
  $('input[type=hidden]', $(this).parent()).val("border-radius:"+value+";");
416
+ $('input[type=hidden]', $(this).parent()).change();
417
  });
418
  $('.wpdreamsBorderRadius>fieldset>.triggerer').bind('click', function(){
419
  var hidden = $("input[type=hidden]", $(this).parent());
420
+ var values = hidden.val().match(/(.*?)px(.*?)px(.*?)px(.*?)px;/);
421
  var i = 1;
422
  $('input[type=text]', $(this).parent()).each(function(){
423
  if ($(this).attr('name')!=null) {
426
  }
427
  });
428
  });
429
+ /*BorderRadius end*/
430
+
431
+ /*
432
+ wpdreamsFour
433
+ Msg: Its a bit more complicated but working fine :)
434
+ */
435
+ $('.wpdreamsFour input[type=text]').change(function() {
436
+ var value = "";
437
+ $('input[type=text]', $(this).parent()).each(function(){
438
+ value += $(this).val()+"||";
439
+ });
440
+ $('input[isparam=1]', $(this).parent()).val("||" + value);
441
+ $('input[isparam=1]', $(this).parent()).change();
442
+ });
443
+ $('.wpdreamsFour>fieldset>.triggerer').bind('click', function(){
444
+ var hidden = $("input[isparam=1]", $(this).parent());
445
+ var values = hidden.val().match(/\|\|(.*?)\|\|(.*?)\|\|(.*?)\|\|(.*?)\|\|/);
446
+ var i = 1;
447
+ $('input[type=text]', $(this).parent()).each(function(){
448
+ if ($(this).attr('name')!=null) {
449
+ $(this).val(values[i]);
450
+ i++;
451
+ }
452
+ });
453
+ hidden.change();
454
+ });
455
+ /*BorderRadius end*/
456
 
457
  $('img.ordering').click(function() {
458
  $(this).next().submit();
460
 
461
  /*
462
  Colorpicker Start
463
+ Msg:
464
  */
465
+
466
+ $(".wpdreamsColorPicker .color").spectrum({
467
+ showInput: true,
468
+ showAlpha: true,
469
+ showPalette: true,
470
+ showSelectionPalette: true
 
 
 
 
 
 
 
 
471
  });
472
  $('.wpdreamsColorPicker .triggerer').bind('click', function(){
473
+ function hex2rgb(hex, opacity) {
474
+ var rgb = hex.replace('#', '').match(/(.{2})/g);
475
+
476
+ var i = 3;
477
+ while (i--) {
478
+ rgb[i] = parseInt(rgb[i], 16);
479
+ }
480
+
481
+ if (typeof opacity == 'undefined') {
482
+ return 'rgb(' + rgb.join(', ') + ')';
483
+ }
484
+
485
+ return 'rgba(' + rgb.join(', ') + ', ' + opacity + ')';
486
+ }
487
+ var parent = $(this).parent();
488
+ var input = $('input.color', parent);
489
+ var val = input.val();
490
+ if (val.length<=7) val = hex2rgb(val, 1);
491
+ input.spectrum("set", val);
492
  });
493
  //Colorpicker End
494
+
495
+ /* Gradient */
496
+ $(".wpdreamsGradient .color, .wpdreamsGradient .grad_type, .wpdreamsGradient .dslider").change(function() {
497
+ var $parent = $(this);
498
+ while(!$parent.hasClass('wpdreamsGradient')) {
499
+ $parent = $parent.parent();
500
+ }
501
+ var $hidden = $('input.gradient', $parent);
502
+ var $colors = $('input.color', $parent);
503
+ var $type = $('select.grad_type', $parent);
504
+ var $dslider = $('div.dslider', $parent);
505
+ var $grad_ex = $('div.grad_ex', $parent);
506
+ var $dbg = $('div.dbg', $parent);
507
+ var $dtxt = $('div.dtxt', $parent);
508
+
509
+ $dbg.css({
510
+ "-webkit-transform": "rotate("+ $dslider.slider('value') +"deg)",
511
+ "-moz-transform": "rotate("+ $dslider.slider('value') +"deg)",
512
+ "transform": "rotate("+ $dslider.slider('value') +"deg)"
513
+ });
514
+ $dtxt.html($dslider.slider('value'));
515
+
516
+ grad($grad_ex, $($colors[0]).val(), $($colors[1]).val(),$type.val(), $dslider.slider('value'));
517
+
518
+ $hidden.val(
519
+ $type.val() + '-' +
520
+ $dslider.slider('value') + '-' +
521
+ $($colors[0]).val() + '-' +
522
+ $($colors[1]).val()
523
+ );
524
+ $hidden.change();
525
+ });
526
+
527
+ $(".wpdreamsGradient>.triggerer").click(function() {
528
+ var $parent = $(this).parent();
529
+ var $hidden = $('input.gradient', $parent);
530
+ var $colors = $('input.color', $parent);
531
+ var $dslider = $('div.dslider', $parent);
532
+ var $type = $('select.grad_type', $parent);
533
+ var colors = $hidden.val().match(/(.*?)-(.*?)-(.*?)-(.*)/);
534
+
535
+ if (colors==null || colors[1]==null) {
536
+ //Fallback to older 1 color
537
+ $type.val(0);
538
+ $dslider.slider('value', 0);
539
+ $($colors[0]).spectrum('set', $hidden.val());
540
+ $($colors[1]).spectrum('set', $hidden.val());
541
+ } else {
542
+ $type.val(colors[1]);
543
+ $dslider.slider('value', colors[2]);
544
+ $($colors[0]).val(colors[3]);
545
+ $($colors[1]).val(colors[4]);
546
+
547
+ $($colors[0]).spectrum('set', colors[3]);
548
+ $($colors[1]).spectrum('set', colors[4]);
549
+ }
550
+
551
+
552
+ });
553
+
554
+
555
+ function grad(el, c1, c2, t, d) {
556
+ if (t!=0) {
557
+ $(el).css('background-image','-webkit-linear-gradient('+d+'deg, '+c1+', '+c2+')')
558
+ .css('background-image','-moz-linear-gradient('+d+'deg, '+c1+', '+c2+')')
559
+ .css('background-image','-ms-linear-gradient('+d+'deg, '+c1+', '+c2+')')
560
+ .css('background-image','linear-gradient('+d+'deg, '+c1+', '+c2+')')
561
+ .css('background-image','-o-linear-gradient('+d+'deg, '+c1+', '+c2+')');
562
+ } else {
563
+ $(el).css('background-image','-webkit-radial-gradient(center, ellipse cover, '+c1+', '+c2+')')
564
+ .css('background-image','-moz-radial-gradient(center, ellipse cover, '+c1+', '+c2+')')
565
+ .css('background-image','-ms-radial-gradient(center, ellipse cover, '+c1+', '+c2+')')
566
+ .css('background-image','radial-gradient(ellipse at center, '+c1+', '+c2+')')
567
+ .css('background-image','-o-radial-gradient(center, ellipse cover, '+c1+', '+c2+')');
568
+ }
569
+ }
570
+ // !Gradient
571
+
572
+ /*
573
+ Up-Down arrow
574
+ */
575
+ $('.wpdreams-updown .wpdreams-uparrow').click(function(){
576
+ var prev = $(this).parent().prev();
577
+ while(!prev.is('input')) {
578
+ prev = prev.prev();
579
+ }
580
+ prev.val(parseFloat($(prev).val())+1);
581
+ prev.change();
582
+ });
583
+ $('.wpdreams-updown .wpdreams-downarrow').click(function(){
584
+ var prev = $(this).parent().prev();
585
+ while(!prev.is('input')) {
586
+ prev = prev.prev();
587
+ }
588
+ prev.val(parseFloat($(prev).val())-1);
589
+ prev.change();
590
+ });
591
+ //Up-Down arrow end
592
 
593
 
594
  $('form.wpdreams-ajaxinput').each(function(){
backend/settings/assets/style.css ADDED
@@ -0,0 +1,1249 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url(https://fonts.googleapis.com/css?family=PT+Sans:300|PT+Sans:400|PT+Sans:700);
2
+
3
+ .wpdreams,
4
+ .wpdreams * {
5
+ font:normal 13px/100% 'PT Sans', Verdana,Tahoma,sans-serif;
6
+ padding: auto;
7
+ margin: auto;
8
+ border: none;
9
+ border-radius: 0;
10
+ background: transparent;
11
+ line-height: 18px;
12
+ }
13
+
14
+ #wpdreams .disabled {
15
+ opacity: .5;
16
+ position: relative;
17
+ }
18
+
19
+ #wpdreams .disabled::after {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 100%;
24
+ height: 100%;
25
+ content: ' ';
26
+ }
27
+
28
+ .wpdreams b,
29
+ .wpdreams strong {
30
+ font-weight: 700;
31
+ }
32
+
33
+ .wpdreams select {
34
+ background: #FFF;
35
+ }
36
+
37
+ .wpdreams script {
38
+ display: none !important;
39
+ }
40
+
41
+ #wpdreams .block {
42
+ display: block;
43
+ }
44
+
45
+ #wpdreams .wpdreamsText {
46
+ display: inline-block;
47
+ }
48
+
49
+ #wpdreams hidden {
50
+ display: none;
51
+ }
52
+
53
+ #wpdreams div.triggerer {
54
+ display:none;
55
+ }
56
+ #wpdreams legend {
57
+ font-size:1.22em;
58
+ color:#444;
59
+ font-weight: 700;
60
+ margin: 0;
61
+ }
62
+ #wpdreams hr {
63
+ color:#eee;
64
+ background-color:#eee;
65
+ margin:10px 40px;
66
+ border:none;
67
+ }
68
+ #wpdreams .wpdreams-container {
69
+ overflow:hidden;
70
+ }
71
+ #wpdreams input, #wpdreams textarea, #wpdreams select {
72
+ border: 1px solid #E5E5E5;
73
+ box-shadow: none;
74
+ height: auto;
75
+ margin: 0 5px;
76
+ outline: 0 none;
77
+ padding: 3px;
78
+ width: 200px;
79
+ }
80
+
81
+ #wpdreams select {
82
+ width: auto;
83
+ max-width: 200px;
84
+ }
85
+
86
+ #wpdreams .wpdreamsTextSmall input,
87
+ #wpdreams input.threedigit {
88
+ width: 45px;
89
+ }
90
+ #wpdreams select {
91
+ padding:2px;
92
+ }
93
+ #wpdreams input[type=radio] {
94
+ width: 5px;
95
+ height: 16px;
96
+ }
97
+
98
+ #preview {
99
+ padding:10px;
100
+ position:fixed;
101
+ z-index:1000;
102
+ background:#FFF;
103
+ bottom:-365px;
104
+ right:20px !important;
105
+ border:1px solid #ccc;
106
+ width:500px;
107
+ height:400px;
108
+ box-shadow: 0 0 16px -12px #000000;
109
+ -webkit-box-shadow: 0 0 16px -8px #000000;
110
+ }
111
+
112
+ #preview .data {
113
+ margin: 15px 0px;
114
+ }
115
+
116
+ .wpdreams-btn-settings,
117
+ .wpdreams-btn-delete {
118
+ border-radius: 3px;
119
+ box-shadow: none;
120
+ color: #FFFFFF;
121
+ cursor: pointer;
122
+ display: inline;
123
+ vertical-align: middle;
124
+ float: none;
125
+ margin: 6px 10px;
126
+ padding: 6px 16px 6px 35px;
127
+ position: relative;
128
+ text-decoration: none;
129
+ transition: all 0.2s linear 0s;
130
+ background: url("icons/gear.png") no-repeat scroll 8px center #40A8B6;
131
+ box-shadow: 0px 10px 14px -13px #000000;
132
+ -webkit-box-shadow: 0px 10px 12px -13px #000000;
133
+ }
134
+
135
+ .wpdreams-btn-delete {
136
+ background: url("icons/cross.png") no-repeat scroll 8px center #B64540;
137
+ }
138
+
139
+ .wpdreams-btn-settings:hover,
140
+ .wpdreams-btn-delete:hover {
141
+ color: #EEEEEE;
142
+ }
143
+
144
+ #preview a.maximise,
145
+ #wpdreams a.maximise,
146
+ #preview a.refresh,
147
+ #wpdreams a.refresh,
148
+ #wpdreams a.general,
149
+ #wpdreams a.multisite,
150
+ #wpdreams a.frontend,
151
+ #wpdreams a.layout,
152
+ #wpdreams a.autocomplete,
153
+ #wpdreams a.theme,
154
+ #wpdreams a.subtheme,
155
+ #wpdreams a.advanced {
156
+ border-bottom-color: #3D3D3D;
157
+ border-radius: 3px;
158
+ box-shadow: none;
159
+ color: #FFFFFF;
160
+ cursor: pointer;
161
+ display: inline-block;
162
+ float: none;
163
+ margin: 6px 10px;
164
+ padding: 6px 16px 6px 35px;
165
+ position: relative;
166
+ text-decoration: none;
167
+ transition: all 0.2s linear 0s;
168
+
169
+ }
170
+
171
+ #wpdreams a.cache,
172
+ #wpdreams a.error,
173
+ #wpdreams a.back,
174
+ #wpdreams a.statistics {
175
+ cursor: pointer;
176
+ display: inline-block;
177
+ text-transform: none;
178
+ color: #3a424c;
179
+ margin: 6px 10px;
180
+ padding: 6px 16px 6px 35px;
181
+ }
182
+
183
+ #preview a.maximise:hover,
184
+ #wpdreams a.maximise:hover,
185
+ #preview a.refresh:hover,
186
+ #wpdreams a.refresh:hover,
187
+ #wpdreams a.back:hover,
188
+ #wpdreams a.general:hover,
189
+ #wpdreams a.multisite:hover,
190
+ #wpdreams a.frontend:hover,
191
+ #wpdreams a.layout:hover,
192
+ #wpdreams a.autocomplete:hover,
193
+ #wpdreams a.theme:hover,
194
+ #wpdreams a.advanced:hover,
195
+ #wpdreams a.advanced:hover,
196
+ #wpdreams a.cache:hover,
197
+ #wpdreams a.error:hover,
198
+ #wpdreams a.statistics:hover {
199
+ opacity: 0.8;
200
+ }
201
+
202
+ #wpdreams a.back:active,
203
+ #wpdreams a.general:active,
204
+ #wpdreams a.multisite:active,
205
+ #wpdreams a.frontend:active,
206
+ #wpdreams a.layout:active,
207
+ #wpdreams a.autocomplete:active,
208
+ #wpdreams a.theme:active,
209
+ #wpdreams a.advanced:active,
210
+ #wpdreams a.cache:active,
211
+ #wpdreams a.error:active,
212
+ #wpdreams a.statistics:active {
213
+
214
+ }
215
+ #preview a.maximise,
216
+ #wpdreams a.maximise {
217
+ background: url("icons/b-maximise.png") no-repeat scroll 5px 5px #63A69F;
218
+ }
219
+
220
+ #preview a.refresh,
221
+ #wpdreams a.refresh {
222
+ background: url("icons/b-refresh.png") no-repeat scroll 5px 5px #7289A7;
223
+ }
224
+
225
+ #wpdreams a.back {
226
+ background: url("icons/b-back.png") no-repeat scroll 5px 5px transparent;
227
+ }
228
+
229
+ #wpdreams a.general {
230
+ background: url("icons/b-settings.png") no-repeat scroll 5px 5px #4095B6;
231
+ }
232
+
233
+ #wpdreams a.multisite {
234
+ background: url("icons/b-multisite.png") no-repeat scroll 5px 5px #4095B6;
235
+ }
236
+
237
+ #wpdreams a.frontend {
238
+ background: url("icons/b-frontend.png") no-repeat scroll 5px 5px #4095B6;
239
+ }
240
+
241
+ #wpdreams a.layout {
242
+ background: url("icons/b-layout.png") no-repeat scroll 5px 5px #4095B6;
243
+ }
244
+
245
+ #wpdreams a.autocomplete {
246
+ background: url("icons/b-bulb.png") no-repeat scroll 5px 5px #4095B6;
247
+ }
248
+
249
+ #wpdreams a.theme {
250
+ background: url("icons/b-eye.png") no-repeat scroll 5px 5px #4095B6;
251
+ }
252
+
253
+ #wpdreams a.subtheme {
254
+ background: none repeat scroll 0 0 #414D50;
255
+ font-size: 12px;
256
+ margin: 5px 1px 0 9px;
257
+ padding: 3px 8px;
258
+ }
259
+
260
+ #wpdreams a.subtheme.current {
261
+ box-shadow: none;
262
+ }
263
+
264
+ #wpdreams a.advanced {
265
+ background: url("icons/b-asettings.png") no-repeat scroll 5px 5px #4095B6;
266
+ }
267
+
268
+ #wpdreams a.cache {
269
+ background: url("icons/b-tray.png") no-repeat scroll 5px 5px transparent;
270
+ }
271
+
272
+ #wpdreams a.error {
273
+ background: url("icons/b-warning.png") no-repeat scroll 5px 5px transparent;
274
+ }
275
+
276
+ #wpdreams a.statistics {
277
+ background: url("icons/b-stat.png") no-repeat scroll 5px 5px transparent;
278
+ }
279
+
280
+ #wpdreams .sortablecontainer .ui-left {
281
+ text-align: left;
282
+ background: none repeat scroll 0 0 #FFFFFF !important;
283
+ border: 1px dotted #D3D3D3 !important;
284
+ }
285
+
286
+ #wpdreams .sortablecontainer input {
287
+ background: url("icons/pen.png") no-repeat scroll 7px 7px #FCFCFC;
288
+ border: 1px solid #EAEAEA;
289
+ border-radius: 0 3px 3px 3px;
290
+ box-shadow: none;
291
+ clear: both;
292
+ color: #666666;
293
+ font-family: 'Droid Sans',Helvetica,'Helvetica Neue',Arial,sans-serif;
294
+ height: 30px;
295
+ line-height: 22px;
296
+ margin-top: 0;
297
+ padding: 0 25px;
298
+ text-align: left;
299
+ transition: background-color 0.3s ease 0s;
300
+ width: auto;
301
+ }
302
+
303
+ #wpdreams .sortablecontainer label {
304
+ background: none repeat scroll 0 0 #EAEAEA;
305
+ border-radius: 3px 3px 0 0;
306
+ border-top: 1px solid #EAEAEA;
307
+ box-shadow: 0 1px 0 #F4F4F4 inset;
308
+ color: #666666;
309
+ display: inline-block;
310
+ font-size: 12px;
311
+ height: 20px;
312
+ line-height: 21px;
313
+ margin-bottom: 0;
314
+ margin-left: 5px;
315
+ padding-left: 15px;
316
+ padding-right: 15px;
317
+ text-align: center;
318
+ text-shadow: 1px 1px 0 #FFFFFF;
319
+ }
320
+
321
+ #wpdreams input.color {
322
+ background:0;
323
+ width:92px;
324
+ }
325
+ #wpdreams textarea {
326
+ width:334px;
327
+ height:150px;
328
+ line-height:100%;
329
+ }
330
+ #wpdreams input:hover,#wpdreams textarea:hover,#wpdreams input:focus,#wpdreams textarea:focus {
331
+ border-color:#C9C9C9;
332
+ -webkit-box-shadow:rgba(0,0,0,0.15) 0px 0px 8px;
333
+ }
334
+ #wpdreams form label {
335
+ margin:0 10px;
336
+ color:#6F6F6F;
337
+ }
338
+
339
+ #wpdreams input[type=button] {
340
+ -moz-box-shadow:inset 0px 1px 0px 0px #cf866c;
341
+ -webkit-box-shadow:inset 0px 1px 0px 0px #cf866c;
342
+ box-shadow:inset 0px 1px 0px 0px #cf866c;
343
+
344
+ background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #d0451b), color-stop(1, #bc3315));
345
+ background:-moz-linear-gradient(top, #d0451b 5%, #bc3315 100%);
346
+ background:-webkit-linear-gradient(top, #d0451b 5%, #bc3315 100%);
347
+ background:-o-linear-gradient(top, #d0451b 5%, #bc3315 100%);
348
+ background:-ms-linear-gradient(top, #d0451b 5%, #bc3315 100%);
349
+ background:linear-gradient(to bottom, #d0451b 5%, #bc3315 100%);
350
+ filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d0451b', endColorstr='#bc3315',GradientType=0);
351
+
352
+ background-color:#d0451b;
353
+
354
+ -moz-border-radius:3px;
355
+ -webkit-border-radius:3px;
356
+ border-radius:3px;
357
+
358
+ border:1px solid #942911;
359
+
360
+ display:inline-block;
361
+ color:#ffffff;
362
+ font-size:13px;
363
+ font-weight:normal;
364
+ padding:6px 24px;
365
+ text-decoration:none;
366
+
367
+ text-shadow:0px 1px 0px #854629;
368
+ margin-right: 0;
369
+ cursor: pointer;
370
+ width: auto;
371
+ }
372
+
373
+
374
+ #wpdreams input[type=submit] {
375
+ margin: 7px 5px 0;
376
+ line-height: 12px;
377
+ padding: 7px 14px;
378
+ box-shadow: 0px 1px 0px 0px #92391D, 0px 1px 0px 0px #C24822 inset;
379
+ background: linear-gradient(to bottom, #D03F1B 5%, #BC3615 100%);
380
+ border: 0;
381
+ border-radius: 2px;
382
+ text-shadow: 1px 1px 0px #9B4C3D;
383
+ font-size: 13px;
384
+ color: #FFF;
385
+ position: relative;
386
+ cursor: pointer;
387
+ width: auto;
388
+ }
389
+
390
+ #wpdreams input[type=submit]:active {
391
+ box-shadow: 0px 1px 0px 0px #92391D, 0px 1px 0px 0px #C24822 inset;
392
+ background: #92391D;
393
+ outline-width: 0;
394
+ }
395
+
396
+ #wpdreams input[type=submit]:focus {
397
+ outline-width: 0;
398
+ }
399
+
400
+ #wpdreams .wpdreamsCustomContent .customContent button[name='add']::before {
401
+ background: url('icons/add-before.png') no-repeat scroll center center #228EC2;
402
+ }
403
+
404
+
405
+
406
+ #wpdreams input[type=button]:hover {
407
+ background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #bc3315), color-stop(1, #d0451b));
408
+ background:-moz-linear-gradient(top, #bc3315 5%, #d0451b 100%);
409
+ background:-webkit-linear-gradient(top, #bc3315 5%, #d0451b 100%);
410
+ background:-o-linear-gradient(top, #bc3315 5%, #d0451b 100%);
411
+ background:-ms-linear-gradient(top, #bc3315 5%, #d0451b 100%);
412
+ background:linear-gradient(to bottom, #bc3315 5%, #d0451b 100%);
413
+ filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bc3315', endColorstr='#d0451b',GradientType=0);
414
+
415
+ background-color:#bc3315;
416
+ }
417
+
418
+ #wpdreams input[type=button]:active,
419
+ #wpdreams input[type=submit]:active {
420
+ position:relative;
421
+ top:1px;
422
+ }
423
+
424
+ #wpdreams input[type=submit].red {
425
+ background:#ad3939;
426
+ }
427
+
428
+ #wpdreams input[type=submit].green {
429
+ background:#39ad41;
430
+ border: 1px solid #0a5f10;
431
+ box-shadow: none;
432
+ }
433
+
434
+ #wpdreams .sortable .wpdreams-box {
435
+ background:transparent url(icons/drag.png) no-repeat;
436
+ position:relative;
437
+ cursor:move;
438
+ }
439
+ #wpdreams .sortable .wpdreams-box .drag {
440
+ cursor:pointer;
441
+ height:46px;
442
+ position:absolute;
443
+ top:0;
444
+ left:0;
445
+ width:30px;
446
+ }
447
+ #wpdreams label {
448
+ vertical-align:baseline;
449
+ margin:0 10px;
450
+ color:#999999;
451
+ }
452
+ #wpdreams input.shortcode {
453
+ padding:1px 1px 1px 5px;
454
+ border:solid 1px #E5E5E5;
455
+ outline:0;
456
+ font:normal 10px/100% Verdana,Tahoma,sans-serif;
457
+ width:200px;
458
+ height:20px;
459
+ }
460
+ #wpdreams label.shortcode {
461
+ font-size:12px;
462
+ }
463
+ #wpdreams img.infoimage {
464
+ cursor:pointer;
465
+ margin-left:8px;
466
+ margin-top:-2px;
467
+ vertical-align:middle;
468
+ }
469
+ #wpdreams .item {
470
+ width: auto;
471
+ text-align: right;
472
+ padding: 16px 0 8px;
473
+ /* margin: 12px 0 1px; */
474
+ border: 0;
475
+ }
476
+
477
+ #wpdreams .item:nth-child(2n) {
478
+ /* background: #EFEFEF; */
479
+ }
480
+
481
+ #wpdreams fieldset fieldset .item {
482
+ border-bottom: 1px dashed #e7e7e7;
483
+ background: transparent !important;
484
+ }
485
+
486
+ #wpdreams fieldset fieldset .item:last-child {
487
+ border-bottom: 0;
488
+ }
489
+
490
+ #wpdreams .wpdreams-box {
491
+ overflow:hidden;
492
+ background: #FEFEFE;
493
+ border:solid 1px #DDDDDD;
494
+ outline:0;
495
+ font:normal 13px/100% Verdana,Tahoma,sans-serif;
496
+ box-shadow:rgba(0,0,0,0.1) 0px 0px 8px;
497
+ -moz-box-shadow:rgba(0,0,0,0.1) 0px 0px 8px;
498
+ -webkit-box-shadow:rgba(0,0,0,0.1) 0px 0px 8px;
499
+ padding:10px;
500
+ margin:10px;
501
+ width: 790px;
502
+ }
503
+ #wpdreams .wpdreams-box .slider-info {
504
+ height:26px;
505
+ margin:4px 0 0 0;
506
+ font-size:1.1em;
507
+ padding:0 0 0 20px;
508
+ }
509
+ #wpdreams .wpdreams-box .slider-info span {
510
+ margin-left:20px;
511
+ }
512
+ #wpdreams .wpdreams-box .slider-info img {
513
+ margin-left:8px;
514
+ margin-top:-2px;
515
+ vertical-align:middle;
516
+ cursor:pointer;
517
+ }
518
+ #wpdreams .preview {
519
+ height:28px;
520
+ vertical-align:middle;
521
+ border-radius:2px;
522
+ float:none;
523
+ cursor:pointer;
524
+ }
525
+ #wpdreams fieldset {
526
+ border:1px solid #EEEEEE;
527
+ margin:20px 5px 5px 5px;
528
+ padding:11px;
529
+ }
530
+
531
+ #wpdreams fieldset:first-child {
532
+ margin: 6px 5px 5px 5px;
533
+ }
534
+
535
+ #wpdreams form fieldset {
536
+ border:1px solid #EEEEEE;
537
+ margin:20px 5px 30px;
538
+ padding:11px;
539
+ }
540
+
541
+ #wpdreams fieldset fieldset {
542
+ background: none repeat scroll 0 0 #FEFEFE;
543
+ border: 1px dotted #DDDDDD;
544
+ font-size: 0.9em;
545
+ line-height: 45px;
546
+ margin: 5px 0 20px;
547
+ padding: 11px;
548
+ }
549
+
550
+ #wpdreams fieldset fieldset fieldset {
551
+ line-height: 25px;
552
+ border: 0;
553
+ }
554
+
555
+ #wpdreams fieldset fieldset legend {
556
+ color: #333;
557
+ }
558
+
559
+ #wpdreams fieldset fieldset fieldset legend {
560
+ color: #666;
561
+ }
562
+
563
+ #wpdreams .wpdreamsanimationselect + span {
564
+ padding: 4px 11px;
565
+ display: inline-block;
566
+ background: #eee;
567
+ margin: 3px;
568
+ animation-delay: 0.3s;
569
+ animation-duration: 1s;
570
+ animation-fill-mode: both;
571
+ animation-timing-function: ease;
572
+ backface-visibility: hidden;
573
+ -webkit-animation-delay: 0.3s;
574
+ -webkit-animation-duration: 1s;
575
+ -webkit-animation-fill-mode: both;
576
+ -webkit-animation-timing-function: ease;
577
+ -webkit-backface-visibility: hidden;
578
+ }
579
+
580
+
581
+ #wpdreams .successMsg {
582
+ color:#1a772c;
583
+ padding:7px;
584
+ margin:5px;
585
+ border:1px solid #eee;
586
+ background:#f1fff1;
587
+ border-radius:3px;
588
+ }
589
+ /*#wpdreams .infoMsg {
590
+ background: #FFFDF1;
591
+ border: 1px solid #EEEEEE;
592
+ border-radius: 3px;
593
+ color: #776D1A;
594
+ margin: 6px 0 12px;
595
+ padding: 7px;
596
+ text-align: left;
597
+ }*/
598
+ #wpdreams .infoMsg {
599
+ margin: 5px 6px 15px;
600
+ border-left: 4px solid #43DD36;
601
+ background: #fff;
602
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
603
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
604
+ padding: 6px 13px;
605
+ }
606
+
607
+ #wpdreams .errorMsg {
608
+ margin: 5px 6px 15px;
609
+ border-left: 4px solid #DD3636;
610
+ background: #fff;
611
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
612
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
613
+ padding: 6px 13px;
614
+ }
615
+
616
+ #wpdreams .descMsg {
617
+ border-radius: 3px;
618
+ color: #979797;
619
+ margin: -3px 0 0px;
620
+ padding: 7px;
621
+ text-align: right;
622
+ font-size: 12px;
623
+ }
624
+
625
+ .tooltip {
626
+ display:none;
627
+ background:transparent url(icons/black_arrow.png);
628
+ font-size:12px;
629
+ height:70px;
630
+ width:160px;
631
+ padding:25px;
632
+ color:#eee;
633
+ }
634
+ #wpdreams .overlay {
635
+ display:none;
636
+ z-index:10000;
637
+ background-color:#333;
638
+ min-width:10px;
639
+ min-height:10px;
640
+ border:1px solid #666;
641
+ -moz-box-shadow:0 0 90px 5px #000;
642
+ -webkit-box-shadow:0 0 90px #000;
643
+ }
644
+ #wpdreams .overlay .close {
645
+ background-image:url(icons/close.png);
646
+ position:absolute;
647
+ right:-15px;
648
+ top:-15px;
649
+ cursor:pointer;
650
+ height:35px;
651
+ width:35px;
652
+ }
653
+ #wpdreams .labeldrag {
654
+ background:#eee;
655
+ position:relative;
656
+ border:1px solid #ddd;
657
+ width:410px;
658
+ float:right;
659
+ }
660
+ #wpdreams .labeldrag .inner {
661
+ background:#FFF;
662
+ position:absolute;
663
+ top:5px;
664
+ left:5px;
665
+ border:1px solid #ddd;
666
+ background:url(icons/labelposition.png) no-repeat #fff;
667
+ }
668
+ #wpdreams .labeldrag .inner .dragme {
669
+ width:10px;
670
+ height:10px;
671
+ background-image:url(icons/point.png);
672
+ cursor: pointer;
673
+ }
674
+
675
+ #wpdreams img.radioimage {
676
+ border: 2px solid #eee;
677
+ border-radius: 4px;
678
+ margin: 5px;
679
+ cursor: pointer;
680
+ vertical-align:middle;
681
+ padding: 5px;
682
+ background: #fefefe;
683
+ max-height: 24px;
684
+ }
685
+
686
+ #wpdreams img.radioimage:hover {
687
+ border: 2px solid #ddd;
688
+ }
689
+
690
+ #wpdreams img.radioimage.selected {
691
+ background: none repeat scroll 0 0 #fefefe;
692
+ border: 2px solid #4897bc;
693
+ }
694
+
695
+ #wpdreams span.radioimage {
696
+ vertical-align:middle;
697
+ margin:0 10px;
698
+ color:#999999;
699
+ }
700
+
701
+ #wpdreams .wpdreamsBoxShadow {
702
+ text-align:right;
703
+ }
704
+
705
+ #wpdreams .wpdreamsBoxShadow .wpdreamsColorPicker {
706
+ display: inline-block;
707
+ /* float: right; */
708
+ margin-bottom: 13px;
709
+ }
710
+
711
+ #wpdreams .wpdreamsBorder {
712
+ text-align:right;
713
+ }
714
+
715
+ #wpdreams input.twodigit {
716
+ width: 37px;
717
+ text-align:right;
718
+ }
719
+
720
+ #preview .big-loading {
721
+ width: 400px;
722
+ height: 317px;
723
+ margin: 0 auto;
724
+ background: transparent url("icons/loading-big.gif") no-repeat center center;
725
+ }
726
+
727
+
728
+ #wpdreams .wpdreamsThemeChooser span {
729
+ background: url("icons/paint.png") no-repeat scroll 0 0 transparent;
730
+ display: inline-block;
731
+ height: 32px;
732
+ margin: 0 10px;
733
+ vertical-align: middle;
734
+ width: 32px;
735
+ }
736
+
737
+ #wpdreams .sortablecontainer {
738
+ width: 40%;
739
+ margin: 15px 30px;
740
+ float: left;
741
+ text-align: center;
742
+ color: #999;
743
+ }
744
+
745
+ #wpdreams .sortablecontainer p {
746
+ margin: 0 0 10px;
747
+ }
748
+
749
+ #wpdreams .sortablecontainer ul {
750
+ height: 220px;
751
+ overflow: auto;
752
+ padding: 10px;
753
+ background: url('icons/pattern-subtle.png') repeat center center #f6f6f6;
754
+ border: 1px solid #DBDBDB;
755
+ }
756
+
757
+ #wpdreams .sortablecontainer ul li {
758
+ padding: 6px;
759
+ cursor: move;
760
+ margin: 0 0 4px;
761
+ background: #fefefe;
762
+ }
763
+
764
+ #wpdreams .item p.extra {
765
+ margin: 20px;
766
+ color: #aaa;
767
+ }
768
+
769
+ #wpdreams .wpdreams-box.errorbox {
770
+ width: 770px;
771
+ padding: 20px;
772
+ }
773
+
774
+ #wpdreams .wpdreams-box.errorbox h3 {
775
+ margin: 0;
776
+ font-size: 18px;
777
+ color: #111;
778
+ }
779
+
780
+ #wpdreams .wpdreams-box.errorbox div {
781
+ padding: 7px;
782
+ background: #FFF;
783
+ border-bottom: 1px solid #eee;
784
+ margin: 5px;
785
+ }
786
+
787
+ #wpdreams .wpdreams-box.errorbox div p {
788
+ font-size: 13px;
789
+ padding: 0;
790
+ margin: 2px;
791
+ line-height: 20px;
792
+ }
793
+
794
+ #wpdreams .wpdreams-box.errorbox div p.err {
795
+ color: red;
796
+ }
797
+
798
+ #wpdreams .wpdreams-box.errorbox div p.cons {
799
+ color: blue;
800
+ }
801
+
802
+ #wpdreams .wpdreams-box.errorbox div p.sols {
803
+ color: #111;
804
+ }
805
+
806
+ #wpdreams .wpdreams-box.errorbox p.errors,
807
+ #wpdreams .wpdreams-box.errorbox p.tick {
808
+ background: url(icons/exclamation.png) no-repeat scroll 0 center / 20px 20px transparent;
809
+ line-height: 20px;
810
+ margin: 0;
811
+ padding: 0 34px;
812
+ }
813
+
814
+ #wpdreams .wpdreams-box.errorbox p.tick {
815
+ background: url(icons/tick.png) no-repeat scroll 0 center / 20px 20px transparent;
816
+ }
817
+
818
+ @keyframes blink {
819
+ 0% { opacity: 1 }
820
+ 10% { opacity: 0.8 }
821
+ 20% { opacity: 0.7 }
822
+ 30% { opacity: 0.6 }
823
+ 40% { opacity: 0.5 }
824
+ 50% { opacity: 0.45 }
825
+ 60% { opacity: 0.5 }
826
+ 70% { opacity: 0.6 }
827
+ 80% { opacity: 0.7 }
828
+ 90% { opacity: 0.8 }
829
+ 100% { opacity: 1 }
830
+ }
831
+ @-webkit-keyframes blink {
832
+ 0% { opacity: 1 }
833
+ 10% { opacity: 0.8 }
834
+ 20% { opacity: 0.7 }
835
+ 30% { opacity: 0.6 }
836
+ 40% { opacity: 0.5 }
837
+ 50% { opacity: 0.45 }
838
+ 60% { opacity: 0.5 }
839
+ 70% { opacity: 0.6 }
840
+ 80% { opacity: 0.7 }
841
+ 90% { opacity: 0.8 }
842
+ 100% { opacity: 1 }
843
+ }
844
+ #wpdreams .blink {
845
+ -webkit-animation: blink 1.5s linear infinite;
846
+ -moz-animation: blink 1.5s linear infinite;
847
+ -ms-animation: blink 1.5s linear infinite;
848
+ -o-animation: blink 1.5s linear infinite;
849
+ animation: blink 1.5s linear infinite;
850
+ }
851
+
852
+
853
+ #wpdreams .mini {
854
+ width: 245px !important;
855
+ float: right;
856
+ }
857
+
858
+ .wpdreams-hint {
859
+ font-size: 10px;
860
+ color: #aaa;
861
+ line-height: 13px;
862
+ margin-top: 0px !important;
863
+ display: block !important;
864
+ }
865
+
866
+ .wpdreams-updown {
867
+ width: 12px;
868
+ height: 25px;
869
+ background: transparent url('icons/updown12x25.png') no-repeat;
870
+ display: inline-block;
871
+ vertical-align: bottom;
872
+ margin: 0 3px;
873
+ }
874
+
875
+ .wpdreams-updown .wpdreams-uparrow,
876
+ .wpdreams-updown .wpdreams-downarrow {
877
+ width: 12px;
878
+ height: 12px;
879
+ cursor: pointer;
880
+ }
881
+
882
+ #wpdreams .wpdreamsYesNo,
883
+ #wpdreams .wpdreamsOnOff {
884
+ display: inline-block;
885
+ }
886
+
887
+ #wpdreams .wpdreamsYesNo .wpdreamsYesNoInner,
888
+ #wpdreams .wpdreamsOnOff .wpdreamsOnOffInner {
889
+ background: url("icons/on-off-new.png") no-repeat scroll -29px 0px transparent;
890
+ background-color: #ddb9b9;
891
+ border-radius: 2px;
892
+ box-shadow: 0px 1px 4px -2px #000000 inset;
893
+ -webkit-box-shadow: 0px 1px 5px -2px #000000 inset;
894
+ display: inline-block;
895
+ height: 27px;
896
+ transition: all 0.2s linear 0s;
897
+ vertical-align: middle;
898
+ width: 61px;
899
+ cursor: pointer;
900
+ }
901
+
902
+ #wpdreams .wpdreamsOnOff .wpdreamsOnOffInner {
903
+ background: url("icons/on-off.png") no-repeat scroll right top transparent;
904
+ }
905
+
906
+ #wpdreams .wpdreamsYesNo.active .wpdreamsYesNoInner,
907
+ #wpdreams .wpdreamsOnOff.active .wpdreamsOnOffInner {
908
+ background-position: -1px 0;
909
+ background-color: #bfd6e4;
910
+ }
911
+
912
+ #wpdreams .wpdreamsGradient {
913
+ line-height: 42px;
914
+ padding-right: 19px;
915
+ }
916
+
917
+ #wpdreams .grad_ex {
918
+ border: 1px solid #555555;
919
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
920
+ display: inline-block;
921
+ height: 28px;
922
+ margin-left: 8px;
923
+ vertical-align: middle;
924
+ width: 30px;
925
+ }
926
+
927
+
928
+ #wpdreams .dslider {
929
+ width: 300px;
930
+ display: inline-block;
931
+ vertical-align: middle;
932
+ margin: 0 10px;
933
+ }
934
+
935
+ #wpdreams .ddisplay {
936
+ width: 31px;
937
+ height: 31px;
938
+ position: relative;
939
+ display: inline-block;
940
+ vertical-align: middle;
941
+ }
942
+
943
+ #wpdreams .ddisplay .dbg {
944
+ background: url("icons/grad-deg.png") no-repeat scroll right top transparent;
945
+ width: 31px;
946
+ height: 31px;
947
+ position: absolute;
948
+ top: 0;
949
+ left: 0;
950
+ z-index: 0;
951
+ transition: all 0.4s linear;
952
+ }
953
+
954
+ #wpdreams .dtxt {
955
+ width: 25px;
956
+ margin-left: 6px;
957
+ height: 13px;
958
+ line-height: 11px;
959
+ left: 0;
960
+ text-align: center;
961
+ font-size: 13px;
962
+ display: inline-block;
963
+ }
964
+
965
+ #wpdreams .asp_console {
966
+ margin: 10px;
967
+ font-size: 13px;
968
+ color: #444;
969
+ }
970
+
971
+ #wpdreams .wpdreamsCustomContent .sortablecontainer {
972
+ width: 100%;
973
+ margin: 0;
974
+ }
975
+
976
+ #wpdreams .wpdreamsCustomContent .sortablecontainer:after {
977
+ clear: both;
978
+ }
979
+
980
+ #wpdreams .wpdreamsCustomContent .ui-sortable {
981
+ height: 80px;
982
+ white-space: nowrap;
983
+ max-width: 690px;
984
+ overflow-y: hidden;
985
+ overflow-x: auto;
986
+ line-height: auto;
987
+ text-align: left;
988
+ }
989
+
990
+ #wpdreams .wpdreamsCustomContent .ui-sortable li {
991
+ width: 80px;
992
+ height: 100%;
993
+ padding: 0;
994
+ margin: 0 10px;
995
+ display: inline-block;
996
+ vertical-align: middle;
997
+ text-align: center;
998
+ position: relative;
999
+ white-space: normal;
1000
+ }
1001
+
1002
+ #wpdreams .wpdreamsCustomContent .ui-sortable li:hover .iconTopRight {
1003
+ opacity: 1;
1004
+ }
1005
+
1006
+ #wpdreams .wpdreamsCustomContent .ui-sortable li .content {
1007
+ width: 90%;
1008
+ height: 90%;
1009
+ overflow: hidden;
1010
+ white-space: normal;
1011
+ padding: 5%;
1012
+ background: #FEFEFE;
1013
+ }
1014
+
1015
+ #wpdreams input.missing,
1016
+ #wpdreams textarea.missing {
1017
+ box-shadow: 0px 0px 4px 0px #f00;
1018
+ }
1019
+
1020
+ #wpdreams .deleteIcon {
1021
+ width: 24px;
1022
+ height: 24px;
1023
+ display: inline-block;
1024
+ background: url(icons/delete.png);
1025
+ cursor: pointer;
1026
+ }
1027
+
1028
+ #wpdreams .addIcon {
1029
+ width: 24px;
1030
+ height: 24px;
1031
+ display: inline-block;
1032
+ background: url(icons/add.png);
1033
+ cursor: pointer;
1034
+ }
1035
+
1036
+ #wpdreams .iconTopRight {
1037
+ position: absolute;
1038
+ top: -6px;
1039
+ right: -7px;
1040
+ opacity: 0;
1041
+ transition: 0.2s opacity linear;
1042
+ }
1043
+
1044
+ #wpdreams .iconRightMiddle {
1045
+ position: absolute;
1046
+ top: 50%;
1047
+ margin-top: -12px;
1048
+ right: 6px;
1049
+ }
1050
+
1051
+ #wpdreams .wpdreamsCustomContent .customContent,
1052
+ #wpdreams .wpdreamsCustomContent .searchContent {
1053
+ width: 45%;
1054
+ float: left;
1055
+ background: url('icons/pattern-subtle.png') repeat center center #f6f6f6;
1056
+ margin: 13px 0 0;
1057
+ border: 1px solid #DBDBDB;
1058
+ min-width: 260px;
1059
+ box-shadow: 0 0 6px -4px #111;
1060
+ }
1061
+
1062
+ #wpdreams .wpdreamsCustomContent .one-item {
1063
+ margin: 8px 10px;
1064
+ }
1065
+
1066
+ #wpdreams .wpdreamsCustomContent .result-item {
1067
+ margin: 8px 10px;
1068
+ border: 1px solid #ccc;
1069
+ text-align: left;
1070
+ padding: 10px;
1071
+ background: #fefefe;
1072
+ position: relative;
1073
+ }
1074
+
1075
+ #wpdreams .wpdreamsCustomContent .itemResults {
1076
+ max-height: 290px;
1077
+ overflow: auto;
1078
+ }
1079
+
1080
+ #wpdreams .wpdreamsCustomContent .result-item p.title {
1081
+ margin: 0 0 4px 0;
1082
+ }
1083
+
1084
+ #wpdreams .wpdreamsCustomContent .result-item p.etc {
1085
+ font-size: 11px;
1086
+ color: #969696;
1087
+ }
1088
+
1089
+ #wpdreams .wpdreamsCustomContent .customContent button {
1090
+ margin: 7px 5px 0;
1091
+ line-height: 12px;
1092
+ padding: 7px 14px;
1093
+ box-shadow: 0px 1px 0px 0px #1D6D92, 0px 1px 0px 0px #228EC2 inset;
1094
+ background: linear-gradient(to bottom, #1B96D0 5%, #1594BC 100%);
1095
+ border: 0;
1096
+ border-radius: 2px;
1097
+ text-shadow: 1px 1px 0px #3D799B;
1098
+ font-size: 13px;
1099
+ color: #FFF;
1100
+ position: relative;
1101
+ cursor: pointer;
1102
+ }
1103
+
1104
+ #wpdreams .wpdreamsCustomContent .customContent button:active {
1105
+ box-shadow: 0px 1px 0px 0px #1D6D92, 0px 1px 0px 0px #228EC2 inset;
1106
+ background: #2485B4;
1107
+ outline-width: 0;
1108
+ }
1109
+
1110
+ #wpdreams .wpdreamsCustomContent .customContent button:focus {
1111
+ outline-width: 0;
1112
+ }
1113
+
1114
+ #wpdreams .wpdreamsCustomContent .customContent button::before {
1115
+ content: "";
1116
+ display: inline-block;
1117
+ width: 24px;
1118
+ height: 100%;
1119
+ background: url('icons/upload-before.png') no-repeat scroll center center #228EC2;
1120
+ box-shadow: 0px 1px 0px 0px #1D6D92, 0px 1px 0px 0px #228EC2 inset;
1121
+ /* border-right: 1px solid #F5F5F5; */
1122
+ float: left;
1123
+ position: absolute;
1124
+ top: 0;
1125
+ left: -16px;
1126
+ border-radius: 2px 0 0 2px;
1127
+ }
1128
+
1129
+ #wpdreams .wpdreamsCustomContent .customContent button[name='add']::before {
1130
+ background: url('icons/add-before.png') no-repeat scroll center center #228EC2;
1131
+ }
1132
+
1133
+ #wpdreams .wpdreamsCustomContent .searchContent {
1134
+ float: right;
1135
+ }
1136
+
1137
+ #wpdreams .wpdreamsCustomContent textarea {
1138
+ width: 100%;
1139
+ margin: 0;
1140
+ background: #FFF;
1141
+ }
1142
+
1143
+ #wpdreams .wpdreamsCustomContent h4 {
1144
+ line-height: 24px;
1145
+ width: 100%;
1146
+ display: block;
1147
+ color: #555;
1148
+ text-align:left;
1149
+ font-weight: bold;
1150
+ margin: 8px 14px;
1151
+ }
1152
+
1153
+ #wpdreams .wpdreamsCustomContent .one-item .searchmagn,
1154
+ #wpdreams .wpdreamsCustomContent .one-item .searchload {
1155
+ display: inline-block;
1156
+ width: 24px;
1157
+ height: 24px;
1158
+ background: url("icons/magn.svg") no-repeat scroll 0px 0px transparent;
1159
+ background-size: 22px auto;
1160
+ vertical-align: middle;
1161
+ cursor: pointer;
1162
+ }
1163
+
1164
+ #wpdreams .wpdreamsCustomContent .one-item .searchload {
1165
+ background: url("icons/load24x24.gif") no-repeat scroll 0px 0px transparent;
1166
+ display: none;
1167
+ }
1168
+
1169
+ .postbox #wpdreams fieldset {
1170
+ min-width: 300px;
1171
+ }
1172
+
1173
+ .postbox #wpdreams .wpdreams-box {
1174
+ width: auto;
1175
+ box-shadow: none;
1176
+ -webkit-box-shadow: none;
1177
+ -moz-box-shadow: none;
1178
+ -o-box-shadow: none;
1179
+ -ms-box-shadow: none;
1180
+ border: none;
1181
+ }
1182
+
1183
+ .postbox #wpdreams .sortablecontainer {
1184
+ width: 100%;
1185
+ float: left;
1186
+ }
1187
+
1188
+
1189
+ .postbox #wpdreams .sortablecontainer ul {
1190
+ max-width: 100%;
1191
+ }
1192
+
1193
+ #wpdreams .wpdreamsUpload input[type='button'] {
1194
+ line-height: 12px;
1195
+ padding: 7px 14px;
1196
+ box-shadow: 0px 1px 0px 0px #1D6D92, 0px 1px 0px 0px #228EC2 inset;
1197
+ background: linear-gradient(to bottom, #1B96D0 5%, #1594BC 100%);
1198
+ border: 0;
1199
+ border-radius: 2px;
1200
+ text-shadow: 1px 1px 0px #3D799B;
1201
+ font-size: 13px;
1202
+ }
1203
+
1204
+ #wpdreams .wpdreamsFontComplete h4 {
1205
+ padding: 0;
1206
+ margin: 15px 0px 6px;
1207
+ line-height: 18px;
1208
+ vertical-align: sub;
1209
+ font-size: 13px;
1210
+ color: #7A7A7A;
1211
+ font-weight: bold;
1212
+ }
1213
+
1214
+ /* css for timepicker */
1215
+ .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
1216
+ .ui-timepicker-div dl { text-align: left; }
1217
+ .ui-timepicker-div dl dt { float: left; clear:left; padding: 0 0 0 5px; }
1218
+ .ui-timepicker-div dl dd { margin: 0 10px 10px 45%; }
1219
+ .ui-timepicker-div td { font-size: 90%; }
1220
+ .ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }
1221
+
1222
+ .ui-timepicker-rtl{ direction: rtl; }
1223
+ .ui-timepicker-rtl dl { text-align: right; padding: 0 5px 0 0; }
1224
+ .ui-timepicker-rtl dl dt{ float: right; clear: right; }
1225
+ .ui-timepicker-rtl dl dd { margin: 0 45% 10px 10px; }
1226
+
1227
+ #wpdreams a.button {
1228
+ vertical-align: baseline;
1229
+ }
1230
+
1231
+ #wpdreams iframe {
1232
+ vertical-align: middle;
1233
+ }
1234
+
1235
+ #wpdreams a.gopro {
1236
+ border-bottom-color: #3D3D3D;
1237
+ border-radius: 3px;
1238
+ box-shadow: none;
1239
+ color: #FFFFFF;
1240
+ cursor: pointer;
1241
+ display: inline-block;
1242
+ float: none;
1243
+ margin: 6px 10px;
1244
+ padding: 6px 16px 6px 35px;
1245
+ position: relative;
1246
+ text-decoration: none;
1247
+ transition: all 0.2s linear 0s;
1248
+ background: url("icons/tie.png") no-repeat scroll 5px 5px #40B6AD;
1249
+ }
backend/settings/assets/tabs.css ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #wpdreams .tabs {
2
+ overflow: hidden;
3
+ width: 100%;
4
+ margin: 0;
5
+ padding: 0;
6
+ list-style: none;
7
+ }
8
+
9
+ #wpdreams .tabs li {
10
+ display: block;
11
+ float: left;
12
+ }
13
+
14
+ #wpdreams .tabs a {
15
+ float: left;
16
+ position: relative;
17
+ text-transform: none;
18
+ text-decoration: none;
19
+ font-size: 13px;
20
+ color: #fff;
21
+ opacity: .4;
22
+ padding: 5px 10px;
23
+ margin: 0 10px;
24
+ filter: alpha(opacity=30);
25
+ }
26
+
27
+ #wpdreams .tabs a:hover {
28
+ border-bottom-color: #2ac7e1;
29
+ opacity: 1;
30
+ filter: alpha(opacity=100);
31
+ }
32
+
33
+ #wpdreams .tabs a:focus {
34
+ outline: 0;
35
+ }
36
+
37
+ #wpdreams .tabs .current {
38
+ z-index: 3;
39
+ border-bottom-color: #3d3d3d;
40
+ opacity: 1;
41
+ filter: alpha(opacity=100);
42
+ box-shadow: 0px 10px 9px -12px #000000;
43
+ -webkit-box-shadow: 0px 10px 9px -12px #000000;
44
+ }
45
+
46
+
47
+ #wpdreams .tabs a {
48
+ background: none repeat scroll 0 0 #116889;
49
+ border-radius: 3px;
50
+ cursor: pointer;
51
+ display: block;
52
+ }
backend/settings/assets/tabs.js ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function($){
2
+ $(document).ready(function() {
3
+ $('.tabs a').click(function(e){
4
+ e.preventDefault();
5
+ var tid = $(this).attr('tabid');
6
+ var tabsContent = $(this).parent().parent().next();
7
+ tabsContent.children().each(function(){
8
+ $(this).hide();
9
+ if ($(this).attr('tabid')==tid) {
10
+ $(this).fadeIn();
11
+ }
12
+ });
13
+ $('a', $(this).parent().parent()).removeClass('current');
14
+ $(this).addClass('current');
15
+ });
16
+
17
+ });
18
+ })(jQuery)
{settings/types → backend/settings/assets}/upload.js RENAMED
File without changes
backend/settings/class/animations.class.php ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsAnimations")) {
3
+ /**
4
+ * Class wpdreamsAnimations
5
+ *
6
+ * Creates an animation selector. The animation declarations can be found in the css/animations.css file.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2012, Ernest Marcinko
11
+ */
12
+ class wpdreamsAnimations extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ echo "<div class='wpdreamsAnimations'>";
17
+ echo "<label for='wpdreamsAnimations_" . self::$_instancenumber . "'>" . $this->label . "</label>";
18
+ echo "<select isparam=1 class='wpdreamsanimationselect' id='wpdreamsanimationselect_" . self::$_instancenumber . "' name='" . $this->name . "'>";
19
+ foreach ($this->animations as $key => $animation) {
20
+ if (strpos($key, 'groupstart') !== false) {
21
+ echo "<optgroup label='" . $animation . "'>";
22
+ continue;
23
+ }
24
+ if (strpos($key, 'groupend') !== false) {
25
+ echo "</optgroup>";
26
+ continue;
27
+ }
28
+ if ($animation == $this->selected)
29
+ echo "<option value='" . $key . "' selected='selected'>" . $animation . "</option>";
30
+ else
31
+ echo "<option value='" . $key . "'>" . $animation . "</option>";
32
+ }
33
+ echo "</select>";
34
+ echo "<span>Hi there!</span>";
35
+ echo "<div class='triggerer'></div>
36
+ </div>";
37
+ }
38
+
39
+ function processData() {
40
+ $this->data = str_replace("\n", "", $this->data);
41
+ $this->selected = $this->data;
42
+
43
+ $this->animations = array(
44
+ "voidanim" => "No animation",
45
+ "groupstart 1" => "Simple",
46
+ "flash" => "flash",
47
+ "bounce" => "bounce",
48
+ "shake" => "shake",
49
+ "tada" => "tada",
50
+ "swing" => "swing",
51
+ "wobble" => "wobble",
52
+ "pulse" => "pulse",
53
+ "groupend 1" => "x",
54
+ "groupstart 2" => "Flippin",
55
+ "flip" => "flip",
56
+ "flipInX" => "flipInX",
57
+ "flipOutX" => "flipOutX",
58
+ "flipInY" => "flipInY",
59
+ "flipOutY" => "flipOutY",
60
+ "groupend 2" => "x",
61
+ "groupstart 3" => "Fade in",
62
+ "fadeIn" => "fadeIn",
63
+ "fadeInUp" => "fadeInUp",
64
+ "fadeInDown" => "fadeInDown",
65
+ "fadeInLeft" => "fadeInLeft",
66
+ "fadeInRight" => "fadeInRight",
67
+ "fadeInUpBig" => "fadeInUpBig",
68
+ "fadeInDownBig" => "fadeInDownBig",
69
+ "fadeInLeftBig" => "fadeInLeftBig",
70
+ "fadeInRightBig" => "fadeInRightBig",
71
+ "groupend 3" => "x",
72
+ "groupstart 4" => "Fade Out",
73
+ "fadeOut" => "fadeOut",
74
+ "fadeOutUp" => "fadeOutUp",
75
+ "fadeOutDown" => "fadeOutDown",
76
+ "fadeOutLeft" => "fadeOutLeft",
77
+ "fadeOutRight" => "fadeOutUpBig",
78
+ "fadeOutDownBig" => "fadeOutDownBig",
79
+ "fadeOutLeftBig" => "fadeOutLeftBig",
80
+ "fadeOutRightBig" => "fadeOutRightBig",
81
+ "groupend 4" => "x",
82
+ "groupstart 5" => "Bounce In",
83
+ "bounceIn" => "bounceIn",
84
+ "bounceInDown" => "bounceInDown",
85
+ "bounceInUp" => "bounceInUp",
86
+ "bounceInLeft" => "bounceInLeft",
87
+ "bounceInRight" => "bounceInRight",
88
+ "groupend 5" => "x",
89
+ "groupstart 6" => "Bounce Out",
90
+ "bounceOut" => "bounceOut",
91
+ "bounceOutDown" => "bounceOutDown",
92
+ "bounceOutUp" => "bounceOutUp",
93
+ "bounceOutLeft" => "bounceOutLeft",
94
+ "bounceOutRight" => "bounceOutRight",
95
+ "groupend 6" => "x",
96
+ "groupstart 7" => "Rotate in",
97
+ "rotateIn" => "rotateIn",
98
+ "rotateInDownLeft" => "rotateInDownLeft",
99
+ "rotateInDownRight" => "rotateInDownRight",
100
+ "rotateInUpLeft" => "rotateInUpLeft",
101
+ "rotateInUpRight" => "rotateInUpRight",
102
+ "groupend 7" => "x",
103
+ "groupstart 8" => "Rotate Out",
104
+ "rotateOut" => "rotateOut",
105
+ "rotateOutDownLeft" => "rotateOutDownLeft",
106
+ "rotateOutDownRight" => "rotateOutDownRight",
107
+ "rotateOutUpLeft" => "rotateOutUpLeft",
108
+ "rotateOutUpRight" => "rotateOutUpRight",
109
+ "groupend 8" => "x",
110
+ "groupstart 9" => "LightSpeed",
111
+ "lightSpeedIn" => "lightSpeedIn",
112
+ "lightSpeedOut" => "lightSpeedOut",
113
+ "groupend" => "x",
114
+ "groupstart" => "Special",
115
+ "hinge" => "hinge",
116
+ "rollIn" => "rollIn",
117
+ "rollOut" => "rollOut",
118
+ "groupend 9" => "x"
119
+ );
120
+ }
121
+
122
+ final function getData() {
123
+ return $this->data;
124
+ }
125
+
126
+ final function getSelected() {
127
+ return $this->selected;
128
+ }
129
+ }
130
+ }
131
+ ?>
backend/settings/class/blogselect.class.php ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsBlogselect")) {
3
+ /**
4
+ * Class wpdreamsBlogselect
5
+ *
6
+ * Creates a blog selection drag and drop UI element.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2012, Ernest Marcinko
11
+ */
12
+ class wpdreamsBlogselect extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ global $wpdb;
16
+ $this->processData();
17
+ $this->types = wpdreams_get_blog_list(0, 'all');
18
+ echo "
19
+ <div class='wpdreamsBlogselect'>
20
+ <fieldset>
21
+ <legend>" . $this->label . "</legend>";
22
+ echo '<div class="sortablecontainer"><p>Available blogs</p><ul id="sortable' . self::$_instancenumber . '" class="connectedSortable">';
23
+ if ($this->types != null && is_array($this->types)) {
24
+ foreach ($this->types as $k => $v) {
25
+ if ($this->selected == null || !in_array($v['blog_id'], $this->selected)) {
26
+ $_temp = get_blog_details($v['blog_id']);
27
+ echo '<li class="ui-state-default" bid="' . $v['blog_id'] . '">' . $_temp->blogname . '</li>';
28
+ }
29
+ }
30
+ }
31
+ echo "</ul></div>";
32
+ echo '<div class="sortablecontainer"><p>Drag here the blogs you want to use!</p><ul id="sortable_conn' . self::$_instancenumber . '" class="connectedSortable">';
33
+ if ($this->selected != null && is_array($this->selected)) {
34
+ foreach ($this->selected as $k => $v) {
35
+ $echo = "";
36
+ foreach ($this->types as $_type) {
37
+ if ($_type['blog_id'] == $v) {
38
+ $_temp = get_blog_details($v);
39
+ $echo = $_temp->blogname;
40
+ break;
41
+ }
42
+ }
43
+ echo '<li class="ui-state-default" bid="' . $v . '">' . $echo . '</li>';
44
+ }
45
+ }
46
+ echo "</ul></div>";
47
+ echo "
48
+ <input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>";
49
+ echo "
50
+ <input type='hidden' value='wpdreamsBlogselect' name='classname-" . $this->name . "'>";
51
+ ?>
52
+ <script>
53
+ (function ($) {
54
+ $(document).ready(function () {
55
+ $("#sortable<?php echo self::$_instancenumber ?>, #sortable_conn<?php echo self::$_instancenumber ?>").sortable({
56
+ connectWith: ".connectedSortable"
57
+ }, {
58
+ update: function (event, ui) {
59
+ parent = $(ui.item).parent();
60
+ while (!parent.hasClass('wpdreamsBlogselect')) {
61
+ parent = $(parent).parent();
62
+ }
63
+ var items = $('ul[id*=sortable_conn] li', parent);
64
+ var hidden = $('input[name=<?php echo $this->name; ?>]', parent);
65
+ var val = "";
66
+ items.each(function () {
67
+ val += "|" + $(this).attr('bid');
68
+ });
69
+ val = val.substring(1);
70
+ hidden.val(val);
71
+ }
72
+ }).disableSelection();
73
+ });
74
+ }(jQuery));
75
+ </script>
76
+ <?php
77
+ echo "
78
+ </fieldset>
79
+ </div>";
80
+ }
81
+
82
+ function processData() {
83
+ $this->data = str_replace("\n", "", $this->data);
84
+ if ($this->data != "")
85
+ $this->selected = explode("|", $this->data);
86
+ else
87
+ $this->selected = null;
88
+ //$this->css = "border-radius:".$this->topleft."px ".$this->topright."px ".$this->bottomright."px ".$this->bottomleft."px;";
89
+ }
90
+
91
+ final function getData() {
92
+ return $this->data;
93
+ }
94
+
95
+ final function getSelected() {
96
+ return $this->selected;
97
+ }
98
+ }
99
+ }
100
+ ?>
backend/settings/class/border.class.php ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsBorder")) {
3
+ /**
4
+ * Class wpdreamsBorder
5
+ *
6
+ * Creates a CSS border defining element.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsBorder extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ echo "
17
+ <div class='wpdreamsBorder'>
18
+ <fieldset>
19
+ <legend>" . $this->label . "</legend>";
20
+ echo "
21
+ <label>Border Style</label><select class='smaller' name='_xx_style_xx_'>
22
+ <option value='none' " . (($this->style == 'none') ? 'selected="selected"' : '') . ">None</option>
23
+ <option value='hidden' " . (($this->style == 'hidden') ? 'selected="selected"' : '') . ">Hidden</option>
24
+ <option value='dotted' " . (($this->style == 'dotted') ? 'selected="selected"' : '') . ">Dotted</option>
25
+ <option value='dashed' " . (($this->style == 'dashed') ? 'selected="selected"' : '') . ">Dashed</option>
26
+ <option value='solid' " . (($this->style == 'solid') ? 'selected="selected"' : '') . ">Solid</option>
27
+ <option value='double' " . (($this->style == 'double') ? 'selected="selected"' : '') . ">Double</option>
28
+ <option value='groove' " . (($this->style == 'groove') ? 'selected="selected"' : '') . ">Groove</option>
29
+ <option value='groove' " . (($this->style == 'groove') ? 'selected="selected"' : '') . ">Ridge</option>
30
+ <option value='inset' " . (($this->style == 'inset') ? 'selected="selected"' : '') . ">Inset</option>
31
+ <option value='outset' " . (($this->style == 'outset') ? 'selected="selected"' : '') . ">Outset</option>
32
+ </select>
33
+ <label>Border Width</label><input type='text' class='twodigit' name='_xx_width_xx_' value='" . $this->width . "' />px";
34
+ new wpdreamsColorPickerDummy("_xx_color_xx_", "Border color", (isset($this->color) ? $this->color : "#000000"));
35
+ echo "
36
+ <fieldset>
37
+ <legend>Border Radius:</legend>
38
+ <label>Top-Left</label><input type='text' class='twodigit' name='_xx_topleft_xx_' value='" . $this->topleft . "' />px
39
+ <label>Top-Right</label><input type='text' class='twodigit' name='_xx_topright_xx_' value='" . $this->topright . "' />px
40
+ <label>Bottom-Right</label><input type='text' class='twodigit' name='_xx_bottomright_xx_' value='" . $this->bottomright . "' />px
41
+ <label>Bottom-Left</label><input type='text' class='twodigit' name='_xx_bottomleft_xx_' value='" . $this->bottomleft . "' />px
42
+ </fieldset>
43
+ ";
44
+
45
+ echo "
46
+ <input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>
47
+ <div class='triggerer'></div>
48
+ </fieldset>
49
+ </div>";
50
+ }
51
+
52
+ function processData() {
53
+ $this->data = str_replace("\n", "", $this->data);
54
+
55
+ preg_match("/border-radius:(.*?)px(.*?)px(.*?)px(.*?)px;/", $this->data, $matches);
56
+ $this->topleft = $matches[1];
57
+ $this->topright = $matches[2];
58
+ $this->bottomright = $matches[3];
59
+ $this->bottomleft = $matches[4];
60
+
61
+ preg_match("/border:(.*?)px (.*?) (.*?);/", $this->data, $matches);
62
+ $this->width = $matches[1];
63
+ $this->style = $matches[2];
64
+ $this->color = $matches[3];
65
+
66
+ }
67
+
68
+ final function getData() {
69
+ return $this->data;
70
+ }
71
+
72
+ final function getCss() {
73
+ return $this->css;
74
+ }
75
+ }
76
+ }
77
+ ?>
backend/settings/class/borderradius.class.php ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsBorderRadius")) {
3
+ /**
4
+ * Class wpdreamsBorderRadius
5
+ *
6
+ * Creates a CSS border-radius defining element.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsBorderRadius extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ echo "
17
+ <div class='wpdreamsBorderRadius'>
18
+ <fieldset>
19
+ <legend>" . $this->label . "</legend>";
20
+ echo "
21
+ <label>Top Left</label><input type='text' class='twodigit' name='topleft' value='" . $this->topleft . "' />px
22
+ <label>Top Right</label><input type='text' class='twodigit' name='topright' value='" . $this->topright . "' />px
23
+ <label>Bottom Right</label><input type='text' class='twodigit' name='bottomright' value='" . $this->bottomright . "' />px
24
+ <label>Bottom Left</label><input type='text' class='twodigit' name='bottomleft' value='" . $this->bottomleft . "' />px<br><br>
25
+ ";
26
+ echo "
27
+ <input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>
28
+ <div class='triggerer'></div>
29
+ </fieldset>
30
+ </div>";
31
+ }
32
+
33
+ function processData() {
34
+ $this->data = str_replace("\n", "", $this->data);
35
+ preg_match("/border-radius:(.*?)px(.*?)px(.*?)px(.*?)px;/", $this->data, $matches);
36
+ $this->topleft = $matches[1];
37
+ $this->topright = $matches[2];
38
+ $this->bottomright = $matches[3];
39
+ $this->bottomleft = $matches[4];
40
+ }
41
+
42
+ final function getData() {
43
+ return $this->data;
44
+ }
45
+ }
46
+ }
47
+ ?>
backend/settings/class/boxshadow-mini.class.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsBoxShadowMini")) {
3
+ /**
4
+ * Class wpdreamsBoxShadowMini
5
+ *
6
+ * Creates a CSS box-shadow defining element of small width.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsBoxShadowMini extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ echo "
17
+ <div class='wpdreamsBoxShadow mini'>
18
+ <fieldset>
19
+ <legend>" . $this->label . "</legend>";
20
+ echo "
21
+ <label>Inset</label><select class='smaller' name='_xx_inset_xx_'>
22
+ <option value='' " . (($this->inset == '') ? 'selected="selected"' : '') . ">None</option>
23
+ <option value='inset' " . (($this->inset == 'inset') ? 'selected="selected"' : '') . ">Inset</option>
24
+ </select>
25
+ <br><label>Vertical offset</label><input type='text' class='twodigit' name='_xx_hlength_xx_' value='" . $this->hlength . "' />px
26
+ <br><label>Horizontal offset</label><input type='text' class='twodigit' name='_xx_vlength_xx_' value='" . $this->vlength . "' />px
27
+ <br><label>Blur radius</label><input type='text' class='twodigit' name='_xx_blurradius_xx_' value='" . $this->blurradius . "' />px
28
+ <br><label>Spread</label><input type='text' class='twodigit' name='_xx_spread_xx_' value='" . $this->spread . "' />px<br>
29
+ ";
30
+ new wpdreamsColorPickerDummy("_xx_color_xx_", "Shadow color", (isset($this->color) ? $this->color : "#000000"));
31
+ echo "
32
+ <input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>
33
+ <div class='triggerer'></div>
34
+ </fieldset>
35
+ </div>";
36
+ }
37
+
38
+ function processData() {
39
+ $this->data = str_replace("\n", "", $this->data);
40
+ preg_match("/box-shadow:(.*?)px (.*?)px (.*?)px (.*?)px (.*?) (.*?);/", $this->data, $matches);
41
+ $this->inset = $matches[6];
42
+ $this->hlength = $matches[1];
43
+ $this->vlength = $matches[2];
44
+ $this->blurradius = $matches[3];
45
+ $this->spread = $matches[4];
46
+ $this->color = $matches[5];
47
+ }
48
+
49
+ final function getData() {
50
+ return $this->data;
51
+ }
52
+
53
+ final function getCss() {
54
+ return $this->css;
55
+ }
56
+ }
57
+ }
58
+ ?>
backend/settings/class/boxshadow.class.php ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsBoxShadow")) {
3
+ /**
4
+ * Class wpdreamsBoxShadow
5
+ *
6
+ * Creates a CSS box-shadow defining element.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsBoxShadow extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ echo "
17
+ <div class='wpdreamsBoxShadow'>
18
+ <fieldset>
19
+ <legend>" . $this->label . "</legend>";
20
+ echo "
21
+ <label>Inset</label><select class='smaller' name='_xx_inset_xx_'>
22
+ <option value='' " . (($this->inset == '') ? 'selected="selected"' : '') . ">None</option>
23
+ <option value='inset' " . (($this->inset == 'inset') ? 'selected="selected"' : '') . ">Inset</option>
24
+ </select>";
25
+ new wpdreamsColorPickerDummy("_xx_color_xx_", "Shadow color", (isset($this->color) ? $this->color : "#000000"));
26
+ echo "
27
+ <br>
28
+ <label>Vertical offset</label><input type='text' class='twodigit' name='_xx_hlength_xx_' value='" . $this->hlength . "' />px
29
+ <label>Horizontal offset</label><input type='text' class='twodigit' name='_xx_vlength_xx_' value='" . $this->vlength . "' />px
30
+ <label>Blur radius</label><input type='text' class='twodigit' name='_xx_blurradius_xx_' value='" . $this->blurradius . "' />px
31
+ <label>Spread</label><input type='text' class='twodigit' name='_xx_spread_xx_' value='" . $this->spread . "' />px
32
+ ";
33
+
34
+ echo "
35
+ <input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>
36
+ <div class='triggerer'></div>
37
+ </fieldset>
38
+ </div>";
39
+ }
40
+
41
+ function processData() {
42
+ $this->data = str_replace("\n", "", $this->data);
43
+ preg_match("/box-shadow:(.*?)px (.*?)px (.*?)px (.*?)px (.*?);/", $this->data, $matches);
44
+ //$this->inset = $matches[6];
45
+ $ci = $matches[5];
46
+ preg_match("/(.*?) inset/", $ci, $_matches);
47
+ if ($_matches != null && isset($_matches[1])) {
48
+ $this->color = $_matches[1];
49
+ $this->inset = "inset";
50
+ } else {
51
+ $this->color = $ci;
52
+ $this->inset = "";
53
+ }
54
+ $this->hlength = $matches[1];
55
+ $this->vlength = $matches[2];
56
+ $this->blurradius = $matches[3];
57
+ $this->spread = $matches[4];
58
+
59
+ }
60
+
61
+ final function getData() {
62
+ return $this->data;
63
+ }
64
+
65
+ final function getCss() {
66
+ return $this->css;
67
+ }
68
+ }
69
+ }
70
+ ?>
backend/settings/class/categories.class.php ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsCategories")) {
3
+ /**
4
+ * Class wpdreamsCategories
5
+ *
6
+ * Creates a cetegory selector UI element. Each category is stored separated by the "|" element.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsCategories extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ global $wpdb;
16
+ $this->processData();
17
+ $args = array();
18
+ if ($this->selected != "")
19
+ $args = array('exclude' => implode(",", $this->selected));
20
+ $this->types = get_categories($args);
21
+ echo "
22
+ <div class='wpdreamsCategories'>
23
+ <fieldset>
24
+ <legend>" . $this->label . "</legend>";
25
+ echo '<div class="sortablecontainer">Available categories<ul id="sortable' . self::$_instancenumber . '" class="connectedSortable">';
26
+ if ($this->types != null && is_array($this->types)) {
27
+ foreach ($this->types as $k => $v) {
28
+ if ($this->selected == null || !in_array($v->term_id, $this->selected)) {
29
+ echo '<li class="ui-state-default" bid="' . $v->term_id . '">' . $v->name . '</li>';
30
+ }
31
+ }
32
+ }
33
+ echo "</ul></div>";
34
+ echo '<div class="sortablecontainer">Drag here the categories you want to exclude!<ul id="sortable_conn' . self::$_instancenumber . '" class="connectedSortable">';
35
+ if ($this->selected != null && is_array($this->selected)) {
36
+ $args = "";
37
+ if ($this->selected != "")
38
+ $args = array('include' => implode(",", $this->selected));
39
+ $_cats = get_categories($args);
40
+ foreach ($_cats as $k => $v) {
41
+ echo '<li class="ui-state-default" bid="' . $v->term_id . '">' . $v->name . '</li>';
42
+ }
43
+ }
44
+ echo "</ul></div>";
45
+ echo "
46
+ <input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>";
47
+ echo "
48
+ <input type='hidden' value='wpdreamsCategories' name='classname-" . $this->name . "'>";
49
+ ?>
50
+ <script>
51
+ (function ($) {
52
+ $(document).ready(function () {
53
+ $("#sortable<?php echo self::$_instancenumber ?>, #sortable_conn<?php echo self::$_instancenumber ?>").sortable({
54
+ connectWith: ".connectedSortable"
55
+ }, {
56
+ update: function (event, ui) {
57
+ parent = $(ui.item).parent();
58
+ while (!parent.hasClass('wpdreamsCategories')) {
59
+ parent = $(parent).parent();
60
+ }
61
+ var items = $('ul[id*=sortable_conn] li', parent);
62
+ var hidden = $('input[name=<?php echo $this->name; ?>]', parent);
63
+ var val = "";
64
+ items.each(function () {
65
+ val += "|" + $(this).attr('bid');
66
+ });
67
+ val = val.substring(1);
68
+ hidden.val(val);
69
+ }
70
+ }).disableSelection();
71
+ });
72
+ }(jQuery));
73
+ </script>
74
+ <?php
75
+ echo "
76
+ </fieldset>
77
+ </div>";
78
+ }
79
+
80
+ function processData() {
81
+ $this->data = str_replace("\n", "", $this->data);
82
+ if ($this->data != "")
83
+ $this->selected = explode("|", $this->data);
84
+ else
85
+ $this->selected = null;
86
+ //$this->css = "border-radius:".$this->topleft."px ".$this->topright."px ".$this->bottomright."px ".$this->bottomleft."px;";
87
+ }
88
+
89
+ final function getData() {
90
+ return $this->data;
91
+ }
92
+
93
+ final function getSelected() {
94
+ return $this->selected;
95
+ }
96
+ }
97
+ }
98
+ ?>
backend/settings/class/colorpicker.class.php ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsColorPicker")) {
3
+ /**
4
+ * Class wpdreamsColorPicker
5
+ *
6
+ * A simple color picker UI.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsColorPicker extends wpdreamsType {
13
+ function getType() {
14
+ $this->name = $this->name;
15
+ parent::getType();
16
+ $this->data = wpdreams_admin_hex2rgb($this->data);
17
+ echo "<div class='wpdreamsColorPicker'>";
18
+ if ($this->label != "")
19
+ echo "<label for='wpdreamscolorpicker_" . self::$_instancenumber . "'>" . $this->label . "</label>";
20
+ echo "<input isparam=1 type='text' class='color' id='" . $this->name . "' id='wpdreamscolorpicker_" . self::$_instancenumber . "' name='" . $this->name . "' id='wpdreamscolorpicker_" . self::$_instancenumber . "' value='" . $this->data . "' />";
21
+ //echo "<input type='button' class='wpdreamscolorpicker button-secondary' value='Select Color'>";
22
+ //echo "<div class='' style='z-index: 100; background:#eee; border:1px solid #ccc; position:absolute; display:none;'></div>";
23
+ echo "<div class='triggerer'></div>
24
+ </div>";
25
+ }
26
+ }
27
+ }
28
+ ?>
backend/settings/class/colorpickerdummy.class.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsColorPickerDummy")) {
3
+ /**
4
+ * Class wpdreamsColorPickerDummy
5
+ *
6
+ * A dummy colorpicker for using inside other elements. This does not have a frontend trigger method,
7
+ * so it can't be changed by the themeChooser class.
8
+ *
9
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
10
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
11
+ * @copyright Copyright (c) 2014, Ernest Marcinko
12
+ */
13
+ class wpdreamsColorPickerDummy extends wpdreamsType {
14
+ function getType() {
15
+ $this->data = wpdreams_admin_hex2rgb($this->data);
16
+ $this->name = $this->name . "_colorpicker";
17
+ echo "<span class='wpdreamsColorPicker'>";
18
+ if ($this->label != "")
19
+ echo "<label for='wpdreamscolorpicker_" . self::$_instancenumber . "'>" . $this->label . "</label>";
20
+ echo "<input type='text' class='color' id='" . $this->name . "' id='wpdreamscolorpicker_" . self::$_instancenumber . "' name='" . $this->name . "' id='wpdreamscolorpicker_" . self::$_instancenumber . "' value='" . $this->data . "' />";
21
+ echo "<div class='triggerer'></div>
22
+ </span>";
23
+ }
24
+ }
25
+ }
26
+ ?>
backend/settings/class/customfields.class.php ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsCustomFields")) {
3
+ /**
4
+ * Class wpdreamsCustomFields
5
+ *
6
+ * A custom field selector UI element.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsCustomFields extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ global $wpdb;
16
+ $this->processData();
17
+ $this->types = $wpdb->get_results("SELECT * FROM " . $wpdb->postmeta . " GROUP BY meta_key", ARRAY_A);
18
+ echo "
19
+ <div class='wpdreamsCustomFields'>
20
+ <fieldset>
21
+ <legend>" . $this->label . "</legend>";
22
+ echo '<div class="sortablecontainer"><p>Available public custom fields types</p><ul id="sortable' . self::$_instancenumber . '" class="connectedSortable">';
23
+ if ($this->types != null && is_array($this->types)) {
24
+ foreach ($this->types as $k => $v) {
25
+ if ($this->selected == null || !in_array($v['meta_key'], $this->selected)) {
26
+ echo '<li class="ui-state-default">' . $v['meta_key'] . '</li>';
27
+ }
28
+ }
29
+ }
30
+ echo "</ul></div>";
31
+ echo '<div class="sortablecontainer"><p>Drag here the custom fields you want to use!</p><ul id="sortable_conn' . self::$_instancenumber . '" class="connectedSortable">';
32
+ if ($this->selected != null && is_array($this->selected)) {
33
+ foreach ($this->selected as $k => $v) {
34
+ echo '<li class="ui-state-default">' . $v . '</li>';
35
+ }
36
+ }
37
+ echo "</ul></div>";
38
+ echo "
39
+ <input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>";
40
+ echo "
41
+ <input type='hidden' value='wpdreamsCustomFields' name='classname-" . $this->name . "'>";
42
+ ?>
43
+ <script>
44
+ (function ($) {
45
+ $(document).ready(function () {
46
+ $("#sortable<?php echo self::$_instancenumber ?>, #sortable_conn<?php echo self::$_instancenumber ?>").sortable({
47
+ connectWith: ".connectedSortable"
48
+ }, {
49
+ update: function (event, ui) {
50
+ parent = $(ui.item).parent();
51
+ while (!parent.hasClass('wpdreamsCustomFields')) {
52
+ parent = $(parent).parent();
53
+ }
54
+ var items = $('ul[id*=sortable_conn] li', parent);
55
+ var hidden = $('input[name=<?php echo $this->name; ?>]', parent);
56
+ console.log(items, hidden);
57
+ var val = "";
58
+ items.each(function () {
59
+ val += "|" + $(this).html();
60
+ });
61
+ val = val.substring(1);
62
+ hidden.val(val);
63
+ }
64
+ }).disableSelection();
65
+ });
66
+ }(jQuery));
67
+ </script>
68
+ <?php
69
+ echo "
70
+ </fieldset>
71
+ </div>";
72
+ }
73
+
74
+ function processData() {
75
+ $this->data = str_replace("\n", "", $this->data);
76
+ if ($this->data != "")
77
+ $this->selected = explode("|", $this->data);
78
+ else
79
+ $this->selected = null;
80
+ //$this->css = "border-radius:".$this->topleft."px ".$this->topright."px ".$this->bottomright."px ".$this->bottomleft."px;";
81
+ }
82
+
83
+ final function getData() {
84
+ return $this->data;
85
+ }
86
+
87
+ final function getSelected() {
88
+ return $this->selected;
89
+ }
90
+ }
91
+ }
92
+ ?>
backend/settings/class/customfselect.class.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsCustomFSelect")) {
3
+ /**
4
+ * Class wpdreamsCustomFSelect
5
+ *
6
+ * A custom field selector UI element with prependable custom values.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsCustomFSelect extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ echo "<div class='wpdreamsCustomSelect'>";
17
+ echo "<label for='wpdreamscustomselect_" . self::$_instancenumber . "'>" . $this->label . "</label>";
18
+ echo "<select isparam=1 class='wpdreamscustomselect' id='wpdreamscustomselect_" . self::$_instancenumber . "' name='" . $this->name . "'>";
19
+ foreach ($this->selects as $sel) {
20
+ if (($sel['value'] . "") == ($this->selected . ""))
21
+ echo "<option value='" . $sel['value'] . "' selected='selected'>" . $sel['option'] . "</option>";
22
+ else
23
+ echo "<option value='" . $sel['value'] . "'>" . $sel['option'] . "</option>";
24
+ }
25
+ $types = $this->get_custom_fields_list();
26
+ if (count($types) > 0) {
27
+ echo "<option value='c_f' disabled>Custom Fields</option>";
28
+ foreach ($types as $sel) {
29
+ if (($sel['value'] . "") == ($this->selected . ""))
30
+ echo "<option value='" . $sel['value'] . "' selected='selected'>" . $sel['option'] . "</option>";
31
+ else
32
+ echo "<option value='" . $sel['value'] . "'>" . $sel['option'] . "</option>";
33
+ }
34
+ }
35
+ echo "</select>";
36
+ echo "<div class='triggerer'></div>
37
+ </div>";
38
+ }
39
+
40
+ function processData() {
41
+ $this->selects = array();
42
+ $this->selects = $this->data['selects'];
43
+ $this->selected = $this->data['value'];
44
+ }
45
+
46
+ final function getData() {
47
+ return $this->data;
48
+ }
49
+
50
+ final function getSelected() {
51
+ return $this->selected;
52
+ }
53
+
54
+ final function get_custom_fields_list() {
55
+ global $wpdb;
56
+ $ret = array();
57
+ $types = $wpdb->get_results("SELECT * FROM " . $wpdb->postmeta . " WHERE substring(meta_key,1,1)<>'_' GROUP BY meta_key", ARRAY_A);
58
+ if ($types != null && is_array($types)) {
59
+ foreach ($types as $k => $v) {
60
+ $_t = array();
61
+ $_t['option'] = $v['meta_key'];
62
+ $_t['value'] = $v['meta_key'];
63
+ $ret[] = $_t;
64
+ }
65
+ }
66
+ return $ret;
67
+ }
68
+
69
+ }
70
+ }
71
+ ?>
backend/settings/class/customposttypes.class.php ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsCustomPostTypes")) {
3
+ /**
4
+ * Class wpdreamsCustomPostTypes
5
+ *
6
+ * A custom post types selector UI element with.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsCustomPostTypes extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ $this->types = get_post_types(array(
17
+ '_builtin' => false
18
+ ));
19
+ echo "
20
+ <div class='wpdreamsCustomPostTypes'>
21
+ <fieldset>
22
+ <legend>" . $this->label . "</legend>";
23
+ echo '<div class="sortablecontainer"><p>Available post types</p><ul id="sortable' . self::$_instancenumber . '" class="connectedSortable">';
24
+ if ($this->types != null && is_array($this->types)) {
25
+ foreach ($this->types as $k => $v) {
26
+ if ($this->selected == null || !in_array($v, $this->selected)) {
27
+ echo '<li class="ui-state-default">' . $k . '</li>';
28
+ }
29
+ }
30
+ }
31
+ echo "</ul></div>";
32
+ echo '<div class="sortablecontainer"><p>Drag here the post types you want to use!</p><ul id="sortable_conn' . self::$_instancenumber . '" class="connectedSortable">';
33
+ if ($this->selected != null && is_array($this->selected)) {
34
+ foreach ($this->selected as $k => $v) {
35
+ echo '<li class="ui-state-default">' . $v . '</li>';
36
+ }
37
+ }
38
+ echo "</ul></div>";
39
+ echo "
40
+ <input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>";
41
+ echo "
42
+ <input type='hidden' value='wpdreamsCustomPostTypes' name='classname-" . $this->name . "'>";
43
+ ?>
44
+ <script type='text/javascript'>
45
+ (function ($) {
46
+ $(document).ready(function () {
47
+ $("#sortable<?php echo self::$_instancenumber ?>, #sortable_conn<?php echo self::$_instancenumber ?>").sortable({
48
+ connectWith: ".connectedSortable"
49
+ }, {
50
+ update: function (event, ui) {
51
+ parent = $(ui.item).parent();
52
+ while (!parent.hasClass('wpdreamsCustomPostTypes')) {
53
+ parent = $(parent).parent();
54
+ }
55
+ var items = $('ul[id*=sortable_conn] li', parent);
56
+ var hidden = $('input[name=<?php echo $this->name; ?>]', parent);
57
+ var val = "";
58
+ items.each(function () {
59
+ val += "|" + $(this).html();
60
+ });
61
+ val = val.substring(1);
62
+ hidden.val(val);
63
+ }
64
+ }).disableSelection();
65
+ });
66
+ }(jQuery));
67
+ </script>
68
+ <?php
69
+ echo "
70
+ </fieldset>
71
+ </div>";
72
+ }
73
+
74
+ function processData() {
75
+ $this->data = str_replace("\n", "", $this->data);
76
+ if ($this->data != "")
77
+ $this->selected = explode("|", $this->data);
78
+ else
79
+ $this->selected = null;
80
+ //$this->css = "border-radius:".$this->topleft."px ".$this->topright."px ".$this->bottomright."px ".$this->bottomleft."px;";
81
+ }
82
+
83
+ final function getData() {
84
+ return $this->data;
85
+ }
86
+
87
+ final function getSelected() {
88
+ return $this->selected;
89
+ }
90
+ }
91
+ }
92
+ ?>
backend/settings/class/customposttypeseditable.class.php ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsCustomPostTypesEditable")) {
3
+ /**
4
+ * Class wpdreamsCustomPostTypesEditable
5
+ *
6
+ * A custom post types selector UI element with editable titles.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsCustomPostTypesEditable extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ $this->types = get_post_types(array(
17
+ '_builtin' => false
18
+ ));
19
+ echo "
20
+ <div class='wpdreamsCustomPostTypesEditable'>
21
+ <fieldset>
22
+ <legend>" . $this->label . "</legend>";
23
+ echo '<div class="sortablecontainer"><p>Available post types</p><ul id="sortable' . self::$_instancenumber . '" class="connectedSortable">';
24
+ if ($this->types != null && is_array($this->types)) {
25
+ foreach ($this->types as $k => $v) {
26
+ if ($this->selected == null || !in_array_r($v, $this->selected)) {
27
+ echo '<li class="ui-state-default ui-left" style="background: #ddd;">
28
+ <label>' . $k . '</label>
29
+ <input type="text" value="' . $k . '"/>
30
+ </li>';
31
+ }
32
+ }
33
+ }
34
+ echo "</ul></div>";
35
+ echo '<div class="sortablecontainer"><p>Drag here the post types you want to use!</p><ul id="sortable_conn' . self::$_instancenumber . '" class="connectedSortable">';
36
+ if ($this->selected != null && is_array($this->selected)) {
37
+ foreach ($this->selected as $k => $v) {
38
+ echo '<li class="ui-state-default ui-left" style="background: #ddd;">
39
+ <label>' . $v[0] . '</label>
40
+ <input type="text" value="' . $v[1] . '"/>
41
+ </li>';
42
+ }
43
+ }
44
+ echo "</ul></div>";
45
+ echo "
46
+ <input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>";
47
+ echo "
48
+ <input type='hidden' value='wpdreamsCustomPostTypesEditable' name='classname-" . $this->name . "'>";
49
+ ?>
50
+ <script>
51
+ (function ($) {
52
+ $(document).ready(function () {
53
+ $("#sortable_conn<?php echo self::$_instancenumber ?> li input").keyup(function () {
54
+ parent = $(this).parent();
55
+ while (!parent.hasClass('wpdreamsCustomPostTypesEditable')) {
56
+ parent = $(parent).parent();
57
+ }
58
+ var items = $('ul[id*=sortable_conn] li', parent);
59
+ var hidden = $('input[name=<?php echo $this->name; ?>]', parent);
60
+ var val = "";
61
+ items.each(function () {
62
+ val += "|" + $('label', this).html() + ";" + $('input', this).val();
63
+ });
64
+ val = val.substring(1);
65
+ hidden.val(val);
66
+ });
67
+ $("#sortable<?php echo self::$_instancenumber ?>, #sortable_conn<?php echo self::$_instancenumber ?>").sortable({
68
+ connectWith: ".connectedSortable"
69
+ }, {
70
+ update: function (event, ui) {
71
+ $("#sortable_conn<?php echo self::$_instancenumber ?> li input").keyup(function () {
72
+ parent = $(this).parent();
73
+ while (!parent.hasClass('wpdreamsCustomPostTypesEditable')) {
74
+ parent = $(parent).parent();
75
+ }
76
+ var items = $('ul[id*=sortable_conn] li', parent);
77
+ var hidden = $('input[name=<?php echo $this->name; ?>]', parent);
78
+ var val = "";
79
+ console.log(val);
80
+ items.each(function () {
81
+ val += "|" + $('label', this).html() + ";" + $('input', this).val();
82
+ });
83
+ val = val.substring(1);
84
+ hidden.val(val);
85
+ });
86
+ if ($("#sortable_conn<?php echo self::$_instancenumber ?> li input").length != 0) {
87
+ $("#sortable_conn<?php echo self::$_instancenumber ?> li input").keyup();
88
+ } else {
89
+ $("#sortable_conn<?php echo self::$_instancenumber ?>").each(function () {
90
+ parent = $(this).parent();
91
+ while (!parent.hasClass('wpdreamsCustomPostTypesEditable')) {
92
+ parent = $(parent).parent();
93
+ }
94
+ var hidden = $('input[name=<?php echo $this->name; ?>]', parent);
95
+ hidden.val("");
96
+ });
97
+ }
98
+ }
99
+ });
100
+ });
101
+
102
+ }(jQuery));
103
+ </script>
104
+ <?php
105
+ echo "
106
+ </fieldset>
107
+ </div>";
108
+ }
109
+
110
+ function processData() {
111
+ $this->data = stripslashes(str_replace("\n", "", $this->data));
112
+ if ($this->data != "") {
113
+ $this->_t = explode("|", $this->data);
114
+ foreach ($this->_t as $k => $v) {
115
+ $this->selected[] = explode(';', $v);
116
+ }
117
+ } else {
118
+ $this->selected = null;
119
+ }
120
+ }
121
+
122
+ final function getData() {
123
+ return $this->data;
124
+ }
125
+
126
+ final function getSelected() {
127
+ return $this->selected;
128
+ }
129
+ }
130
+ }
131
+ ?>
backend/settings/class/customselect.class.php ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsCustomSelect")) {
3
+ /**
4
+ * Class wpdreamsCustomSelect
5
+ *
6
+ * A customisable drop down UI element.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsCustomSelect extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ echo "<div class='wpdreamsCustomSelect'>";
17
+ echo "<label for='wpdreamscustomselect_" . self::$_instancenumber . "'>" . $this->label . "</label>";
18
+ echo "<select isparam=1 class='wpdreamscustomselect' id='wpdreamscustomselect_" . self::$_instancenumber . "' name='" . $this->name . "'>";
19
+ foreach ($this->selects as $sel) {
20
+ if (($sel['value'] . "") == ($this->selected . ""))
21
+ echo "<option value='" . $sel['value'] . "' selected='selected'>" . $sel['option'] . "</option>";
22
+ else
23
+ echo "<option value='" . $sel['value'] . "'>" . $sel['option'] . "</option>";
24
+ }
25
+ echo "</select>";
26
+ echo "<div class='triggerer'></div>
27
+ </div>";
28
+ }
29
+
30
+ function processData() {
31
+ //$this->data = str_replace("\n","",$this->data);
32
+ $this->selects = array();
33
+ $this->selects = $this->data['selects'];
34
+ $this->selected = $this->data['value'];
35
+ }
36
+
37
+ final function getData() {
38
+ return $this->data;
39
+ }
40
+
41
+ final function getSelected() {
42
+ return $this->selected;
43
+ }
44
+
45
+ }
46
+ }
47
+ ?>
backend/settings/class/customtaxonomyterm.class.php ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsCustomTaxonomyTerm")) {
3
+ /**
4
+ * Class wpdreamsCustomTaxonomyTerm
5
+ *
6
+ * A taxonomy-term drag and drop UI element.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsCustomTaxonomyTerm extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ $this->types = $this->getAllTerms();
17
+ echo "
18
+ <div class='wpdreamsCustomTaxonomyTerm'>
19
+ <fieldset>
20
+ <div style='margin:15px 30px;text-align: left;'>
21
+ <label>Select the taxonomy: </label>
22
+ <select name='" . $this->name . "_taxonomies' id='" . $this->name . "_taxonomies'> ";
23
+ foreach ($this->types as $taxonomy => $v) {
24
+ $tax = get_taxonomy($taxonomy);
25
+ $custom_post_type = "";
26
+ if ($tax->object_type != null && $tax->object_type[0] != null)
27
+ $custom_post_type = $tax->object_type[0] . " - ";
28
+ echo "<option value='" . $taxonomy . "' taxonomy='" . $taxonomy . "'>" . $custom_post_type . $tax->labels->name . "</option>";
29
+ }
30
+ echo "</select>
31
+ </div>
32
+ <legend>" . $this->label . "</legend>";
33
+ echo '<div class="sortablecontainer"><p>Available terms for the selected taxonomy</p><ul id="sortable' . self::$_instancenumber . '" class="connectedSortable">';
34
+ if ($this->types != null && is_array($this->types)) {
35
+ foreach ($this->types as $kk => $vv) {
36
+ foreach ($vv as $k => $term) {
37
+ if ($this->selected == null || !wpdreams_in_array_r($term->term_id, $this->selected)) {
38
+ echo '<li class="ui-state-default" term_id="' . $term->term_id . '" taxonomy="' . $term->taxonomy . '">' . $term->name . '</li>';
39
+ }
40
+ }
41
+ }
42
+ }
43
+ echo "</ul></div>";
44
+ echo '<div class="sortablecontainer"><p>Drag here the terms you want to <b>' . $this->otype . '</b>!</p><ul id="sortable_conn' . self::$_instancenumber . '" class="connectedSortable">';
45
+ if ($this->selected != null && is_array($this->selected)) {
46
+ foreach ($this->selected as $k => $v) {
47
+ $term = get_term($v[0], $v[1]);
48
+ echo '<li class="ui-state-default" term_id="' . $term->term_id . '" taxonomy="' . $term->taxonomy . '">' . $term->name . '</li>';
49
+ }
50
+ }
51
+ echo "</ul></div>";
52
+ echo "
53
+ <input isparam=1 type='hidden' value='" . $this->data["value"] . "' name='" . $this->name . "'>
54
+ <input type='hidden' value='wpdreamsCustomTaxonomyTerm' name='classname-" . $this->name . "'>";
55
+ ?>
56
+ <script type='text/javascript'>
57
+ (function ($) {
58
+ $(document).ready(function () {
59
+ $("#sortable<?php echo self::$_instancenumber ?>, #sortable_conn<?php echo self::$_instancenumber ?>").sortable({
60
+ connectWith: ".connectedSortable"
61
+ }, {
62
+ update: function (event, ui) {
63
+ parent = $(ui.item).parent();
64
+ while (!parent.hasClass('wpdreamsCustomTaxonomyTerm')) {
65
+ parent = $(parent).parent();
66
+ }
67
+ var items = $('ul[id*=sortable_conn] li', parent);
68
+ var hidden = $('input[name=<?php echo $this->name; ?>]', parent);
69
+ var val = "";
70
+ items.each(function () {
71
+ val += "|" + $(this).attr('term_id') + "-" + $(this).attr('taxonomy');
72
+ });
73
+ val = val.substring(1);
74
+ hidden.val(val);
75
+ }
76
+ }).disableSelection();
77
+ $("#<?php echo $this->name; ?>_taxonomies").change(function () {
78
+ var taxonomy = $(this).val();
79
+ $("li", "#sortable<?php echo self::$_instancenumber ?>").css('display', 'none');
80
+ $("li[taxonomy=" + taxonomy + "]", "#sortable<?php echo self::$_instancenumber ?>").css('display', 'block');
81
+ });
82
+ $("#<?php echo $this->name; ?>_taxonomies").change();
83
+ });
84
+ }(jQuery));
85
+ </script>
86
+ <?php
87
+ echo "
88
+ </fieldset>
89
+ </div>";
90
+ }
91
+
92
+ function getAllTaxonomies() {
93
+ $args = array(
94
+ 'public' => true,
95
+ '_builtin' => false
96
+
97
+ );
98
+ $output = 'names'; // or objects
99
+ $operator = 'and'; // 'and' or 'or'
100
+ $taxonomies = get_taxonomies($args, $output, $operator);
101
+ return $taxonomies;
102
+ }
103
+
104
+ function getAllTerms() {
105
+ $taxonomies = $this->getAllTaxonomies();
106
+ $terms = array();
107
+ foreach ($taxonomies as $taxonomy) {
108
+ $terms[$taxonomy] = get_terms($taxonomy, 'orderby=name');
109
+ }
110
+ return $terms;
111
+ }
112
+
113
+ function processData() {
114
+ if (isset($this->data['type']) && isset($this->data['value'])) {
115
+ $this->otype = $this->data['type'];
116
+ $this->v = str_replace("\n", "", $this->data["value"]);
117
+ } else {
118
+ $this->otype = "include";
119
+ $this->v = str_replace("\n", "", $this->data);
120
+ }
121
+
122
+ $this->selected = array();
123
+ $this->_selected = array();
124
+ if ($this->v != "") {
125
+ $_sel = explode("|", $this->v);
126
+ foreach ($_sel as $k => $v)
127
+ $this->selected[] = explode("-", $v);
128
+ foreach ($this->selected as $kk => $vv)
129
+ $this->_selected[$vv[1]][] = $vv[0];
130
+ } else {
131
+ $this->selected = null;
132
+ $this->_selected = null;
133
+ }
134
+
135
+ }
136
+
137
+ final function getData() {
138
+ return $this->data;
139
+ }
140
+
141
+ final function getSelected() {
142
+ return $this->_selected;
143
+ }
144
+ }
145
+ }
146
+ ?>
backend/settings/class/four.class.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsFour")) {
3
+ /**
4
+ * Class wpdreamsFour
5
+ *
6
+ * Holds four separate values in four input boxes labeled: Top Bottom Right Left.
7
+ * Good input choice for CSS padding, margin, border-width etc..
8
+ *
9
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
10
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
11
+ * @copyright Copyright (c) 2014, Ernest Marcinko
12
+ */
13
+ class wpdreamsFour extends wpdreamsType {
14
+ function getType() {
15
+ parent::getType();
16
+ $this->processData();
17
+ echo "
18
+ <div class='wpdreamsFour'>
19
+ <fieldset>
20
+ <legend>" . $this->label . "</legend>";
21
+ echo "
22
+ <label>Top</label><input type='text' class='threedigit' name='topleft' value='" . $this->top . "' />
23
+ <label>Bottom</label><input type='text' class='threedigit' name='bottomright' value='" . $this->bottom . "' />
24
+ <label>Right</label><input type='text' class='threedigit' name='topright' value='" . $this->right . "' />
25
+ <label>Left</label><input type='text' class='threedigit' name='bottomleft' value='" . $this->left . "' />
26
+ <input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>
27
+ <div class='triggerer'></div>
28
+ <p class='descMsg'>$this->desc</p>
29
+ </fieldset>
30
+ </div>";
31
+ }
32
+
33
+ function processData() {
34
+ //var_dump($this->data);
35
+ $this->desc = $this->data['desc'];
36
+ $this->data = str_replace("\n", "", $this->data['value']);
37
+ preg_match("/\|\|(.*?)\|\|(.*?)\|\|(.*?)\|\|(.*?)\|\|/", $this->data, $matches);
38
+ $this->top = $matches[1];
39
+ $this->bottom = $matches[2];
40
+ $this->right = $matches[3];
41
+ $this->left = $matches[4];
42
+ }
43
+
44
+ final function getData() {
45
+ return $this->data;
46
+ }
47
+
48
+ final function getSelected() {
49
+ return array(
50
+ "top" => $this->top,
51
+ "bottom" => $this->bottom,
52
+ "right" => $this->right,
53
+ "left" => $this->left
54
+ );
55
+ }
56
+ }
57
+ }
58
+ ?>
backend/settings/class/gradient.class.php ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsGradient")) {
3
+ class wpdreamsGradient extends wpdreamsType {
4
+ /**
5
+ * Class wpdreamsGradient
6
+ *
7
+ * A simple gradient selector with two color inputs. Radial and Linear supported.
8
+ *
9
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
10
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
11
+ * @copyright Copyright (c) 2014, Ernest Marcinko
12
+ */
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+
17
+ echo "<div class='wpdreamsGradient'>";
18
+ if ($this->label != "")
19
+ echo "<label for='wpdreamsgradient_" . self::$_instancenumber . "'>" . $this->label . "</label>";
20
+
21
+ ?>
22
+ <select id='<?php echo $this->name ?>_gradex' name='grad_type' class='grad_type'>
23
+ <option value='1' <?php echo(($this->grad_type == 1) ? 'selected' : ''); ?>>Linear</option>
24
+ <option value='0' <?php echo(($this->grad_type == 0) ? 'selected' : ''); ?>>Radial</option>
25
+ </select>
26
+ <?php
27
+
28
+ echo "<input isparam=1 type='hidden' class='gradient' id='" . $this->name . "' id='wpdreamsgradient_" . self::$_instancenumber . "' name='" . $this->name . "' id='wpdreamsgradient_" . self::$_instancenumber . "' value='" . $this->data . "' />";
29
+ new wpdreamsColorPickerDummy('leftcolor_' . self::$_instancenumber, "", $this->leftcolor);
30
+ new wpdreamsColorPickerDummy('rightcolor_' . self::$_instancenumber, "", $this->rightcolor);
31
+ echo "<div class='grad_ex'></div><br>";
32
+ echo "<div class='dslider' id='dslider" . self::$_instancenumber . "'></div>";
33
+ echo "<div class='ddisplay'>
34
+ <div class='dbg' id='dbg" . self::$_instancenumber . "'></div>
35
+ </div>";
36
+ echo "<div id='dtxt" . self::$_instancenumber . "' class='dtxt'>" . $this->rotation . "</div>&#176;";
37
+ echo "
38
+ <script>
39
+ jQuery(document).ready(function(){
40
+ jQuery('#dslider" . self::$_instancenumber . "').slider({
41
+ orientation: 'horizontal',
42
+ range: 'min',
43
+ max: 360,
44
+ value: " . $this->rotation . ",
45
+ step: 5,
46
+ change: function() {
47
+ jQuery('#" . $this->name . "_gradex').change();
48
+ },
49
+ slide: function(e, ui) {
50
+ jQuery('#dtxt" . self::$_instancenumber . "').html(ui.value);
51
+ jQuery('#" . $this->name . "_gradex').change();
52
+ }
53
+ });
54
+
55
+ jQuery('#dslider" . self::$_instancenumber . "').change();
56
+ //jQuery('#" . $this->name . "_gradex').change();
57
+ });
58
+ </script>
59
+ ";
60
+ echo "<div class='triggerer'></div>
61
+ </div>";
62
+ }
63
+
64
+ function processData() {
65
+ $this->data = str_replace("\n", "", $this->data);
66
+ preg_match("/(.*?)-(.*?)-(.*?)-(.*)/", $this->data, $matches);
67
+ $this->grad_type = $matches[1];
68
+ $this->rotation = $matches[2];
69
+ if ($this->rotation == null || $this->rotation == '') $this->rotation = 0;
70
+ $this->leftcolor = wpdreams_admin_hex2rgb($matches[3]);
71
+ $this->rightcolor = wpdreams_admin_hex2rgb($matches[4]);
72
+ $this->data = $this->grad_type . '-' . $this->rotation . '-' . $this->leftcolor . '-' . $this->rightcolor;
73
+ }
74
+
75
+ final function getData() {
76
+ return $this->data;
77
+ }
78
+
79
+ }
80
+ }
81
+ ?>
backend/settings/class/hidden.class.php ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsHidden")) {
3
+ /**
4
+ * Class wpdreamsHidden
5
+ *
6
+ * Just a hidden input :)
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsHidden extends wpdreamsType {
13
+ function getType() {
14
+ echo "<input type='hidden' id='wpdreamshidden_" . self::$_instancenumber . "' name='" . $this->name . "' value='" . $this->data . "' />";
15
+ }
16
+ }
17
+ }
18
+ ?>
backend/settings/class/imageparser.class.php ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsImageParser")) {
3
+ /**
4
+ * Class wpdreamsImageParser
5
+ *
6
+ * DEPRECATED
7
+ * A selector for image parsing sources.
8
+ *
9
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
10
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
11
+ * @copyright Copyright (c) 2014, Ernest Marcinko
12
+ */
13
+ class wpdreamsImageParser extends wpdreamsType {
14
+ function __construct($name, $label, $uid, $callback) {
15
+ $this->name = $name;
16
+ $this->uid = $uid;
17
+ $this->label = $label;
18
+ $this->callback = $callback;
19
+ $this->isError = false;
20
+ self::$_instancenumber++;
21
+ $this->getType();
22
+ }
23
+
24
+ function getType() {
25
+ echo "<form name='" . $this->name . "' class='wpdreams-ajaxinput' style='height:40px;margin-left: -535px;'>";
26
+ //echo "<label for='wpdreamsAjaxInput_".self::$_instancenumber."'>".$this->label."</label>";
27
+ echo "<input type='hidden' name='callback' value='" . $this->callback . "' />";
28
+ echo "<input type='hidden' name='uid' value='" . $this->uid . "' />";
29
+ echo "<input type='text' id='wpdreamsAjaxInput_" . self::$_instancenumber . "' name='url' value='Enter the feed url here...' />";
30
+ echo "
31
+ <select style='width: 70px;' name='itemsnum'>
32
+ <option value='1'>1</option>
33
+ <option value='2'>2</option>
34
+ <option value='3'>3</option>
35
+ <option value='4'>4</option>
36
+ <option value='5'>5</option>
37
+ <option value='6'>6</option>
38
+ <option value='7'>7</option>
39
+ <option value='8'>8</option>
40
+ <option value='9'>9</option>
41
+ <option value='10'>10</option>
42
+ </select>";
43
+ echo "<select style='width: 130px;' name='itemsnum'>";
44
+ echo "
45
+ <option value='flickr'>Source</option>
46
+ <option value='flickr'>Flickr.com</option>
47
+ <option value='500px'>500px.com</option>
48
+ ";
49
+ echo "</select>";
50
+ echo "<input type='button' class='default' value='Generate!'/>";
51
+ echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;" . $this->label . "<img opened='0' style='cursor:pointer;vertical-align:middle;height:20px;' src='" . plugins_url('/types/icons/arrow-right.png', __FILE__) . "' />";
52
+ echo "</form>";
53
+ }
54
+ }
55
+ }
56
+ ?>
backend/settings/class/imageradio.class.php ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsImageRadio")) {
3
+ /**
4
+ * Class wpdreamsImageRadio
5
+ *
6
+ * Displays selectable images like radio buttons.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsImageRadio extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ echo "<div class='wpdreamsImageRadio'>";
17
+ echo "<span class='radioimage'>" . $this->label . "</span>";
18
+
19
+ $i = 1;
20
+ foreach ($this->selects as $radio) {
21
+ $radio = trim($radio);
22
+ $selected = !(strpos($radio, $this->selected) === false);
23
+ echo "
24
+ <img num='" . $i . "' src='" . plugins_url() . $radio . "' class='radioimage" . (($selected) ? ' selected' : '') . "'/>
25
+ ";
26
+ $i++;
27
+ }
28
+ echo "<input isparam=1 type='hidden' class='realvalue' value='" . $this->selected . "' name='" . $this->name . "'>";
29
+ echo "<input type='hidden' value='wpdreamsImageRadio' name='classname-" . $this->name . "'>";
30
+ echo "<div class='triggerer'></div>
31
+ </div>";
32
+ }
33
+
34
+ function processData() {
35
+ $this->selects = $this->defaultData['images'];
36
+ $this->selected = $this->data['value'];
37
+ }
38
+
39
+ final function getData() {
40
+ return $this->data;
41
+ }
42
+
43
+ final function getSelected() {
44
+ return $this->selected;
45
+ }
46
+ }
47
+ }
48
+ ?>
backend/settings/class/imagesettings.class.php ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsImageSettings")) {
3
+ /**
4
+ * Class wpdreamsImageSettings
5
+ *
6
+ * DEPRECATED
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsImageSettings extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ echo "
17
+ <div class='wpdreamsImageSettings'>
18
+ <fieldset>
19
+ <legend>" . $this->label . "</legend>";
20
+ new wpdreamsYesNo("show", "Show Images", $this->show);
21
+ echo "<br>";
22
+ new wpdreamsYesNo("cache", "Cache Images", $this->cache);
23
+ echo "
24
+ <br>
25
+ <label>Use custom field as image</label><select class='smaller' name='usecustom'>
26
+ <option value='-11' " . (($this->usecustom == -11) ? 'selected="selected"' : '') . ">Don't use</option>
27
+ <option value='-1' " . (($this->usecustom == -1) ? 'selected="selected"' : '') . ">Highest Priority</option>
28
+ <option value='0' " . (($this->usecustom == 0) ? 'selected="selected"' : '') . ">High Priority</option>
29
+ <option value='1' " . (($this->usecustom == 1) ? 'selected="selected"' : '') . ">Medium Priority</option>
30
+ <option value='2' " . (($this->usecustom == 2) ? 'selected="selected"' : '') . ">Low Priority</option>
31
+ </select><br>
32
+ <label>Custom field name</label><input param=0 type='text' value='" . $this->customname . "' name='customname' /><br>
33
+ <label>Use post featured image</label><select class='smaller' name='featured'>
34
+ <option value='-11' " . (($this->featured == -11) ? 'selected="selected"' : '') . ">Don't use</option>
35
+ <option value='-1' " . (($this->featured == -1) ? 'selected="selected"' : '') . ">Highest Priority</option>
36
+ <option value='0' " . (($this->featured == 0) ? 'selected="selected"' : '') . ">High Priority</option>
37
+ <option value='1' " . (($this->featured == 1) ? 'selected="selected"' : '') . ">Medium Priority</option>
38
+ <option value='2' " . (($this->featured == 2) ? 'selected="selected"' : '') . ">Low Priority</option>
39
+ </select><br>
40
+ <label>Search for images in post content</label><select class='smaller' name='content'>
41
+ <option value='-11' " . (($this->content == -11) ? 'selected="selected"' : '') . ">Don't use</option>
42
+ <option value='-1' " . (($this->content == -1) ? 'selected="selected"' : '') . ">Highest Priority</option>
43
+ <option value='0' " . (($this->content == 0) ? 'selected="selected"' : '') . ">High Priority</option>
44
+ <option value='1' " . (($this->content == 1) ? 'selected="selected"' : '') . ">Medium Priority</option>
45
+ <option value='2' " . (($this->content == 2) ? 'selected="selected"' : '') . ">Low Priority</option>
46
+ </select><br>
47
+ <label>Search for images in post excerpt</label><select class='smaller' name='excerpt'>
48
+ <option value='-11' " . (($this->excerpt == -11) ? 'selected="selected"' : '') . ">Don't use</option>
49
+ <option value='-1' " . (($this->excerpt == -1) ? 'selected="selected"' : '') . ">Highest Priority</option>
50
+ <option value='0' " . (($this->excerpt == 0) ? 'selected="selected"' : '') . ">High Priority</option>
51
+ <option value='1' " . (($this->excerpt == 1) ? 'selected="selected"' : '') . ">Medium Priority</option>
52
+ <option value='2' " . (($this->excerpt == 2) ? 'selected="selected"' : '') . ">Low Priority</option>
53
+ </select><br>
54
+ <label>Use the </label><select class='smaller' name='imagenum'>
55
+ <option value='1' " . (($this->imagenum == 1) ? 'selected="selected"' : '') . ">1. found image</option>
56
+ <option value='2' " . (($this->imagenum == 2) ? 'selected="selected"' : '') . ">2. found image</option>
57
+ <option value='3' " . (($this->imagenum == 3) ? 'selected="selected"' : '') . ">3. found image</option>
58
+ </select><br>
59
+ <label>Image Size:</label>
60
+ <span style='color:#888;font-size:0.9em'>Width </span><input class='threedigit' param=0 type='text' value='" . $this->width . "' name='width' /><span style='color:#888;font-size:0.9em;margin-right:10px;'> px</span>
61
+ <span style='color:#888;font-size:0.9em'>Height </span><input class='threedigit' param=0 type='text' value='" . $this->height . "' name='height' /><span style='color:#888;font-size:0.9em;margin-right:10px;'> px</span>
62
+ ";
63
+ echo "
64
+ <input type='hidden' param=1 value='" . $this->data . "' name='" . $this->name . "'>
65
+ <input type='hidden' cname=1 value='wpdreamsImageSettings' name='classname-" . $this->name . "'>
66
+ <div class='triggerer'></div>
67
+ </fieldset>
68
+ </div>";
69
+ }
70
+
71
+ function processData() {
72
+ $this->data = str_replace("\n", "", $this->data);
73
+ preg_match("/show:(.*?);/", $this->data, $matches);
74
+ $this->show = $matches[1];
75
+ preg_match("/cache:(.*?);/", $this->data, $matches);
76
+ $this->cache = $matches[1];
77
+
78
+ preg_match("/usecustom:(.*?);/", $this->data, $matches);
79
+ if (isset($matches) && isset($matches[1]))
80
+ $this->usecustom = $matches[1];
81
+ else
82
+ $this->usecustom = -1;
83
+
84
+ preg_match("/customname:(.*?);/", $this->data, $matches);
85
+ if (isset($matches) && isset($matches[1]))
86
+ $this->customname = $matches[1];
87
+ else
88
+ $this->customname = "";
89
+
90
+ preg_match("/featured:(.*?);/", $this->data, $matches);
91
+ $this->featured = $matches[1];
92
+ preg_match("/content:(.*?);/", $this->data, $matches);
93
+ $this->content = $matches[1];
94
+ preg_match("/excerpt:(.*?);/", $this->data, $matches);
95
+ $this->excerpt = $matches[1];
96
+ preg_match("/imagenum:(.*?);/", $this->data, $matches);
97
+ $this->imagenum = $matches[1];
98
+ preg_match("/width:(.*?);/", $this->data, $matches);
99
+ $this->width = $matches[1];
100
+ preg_match("/height:(.*?);/", $this->data, $matches);
101
+ $this->height = $matches[1];
102
+ $this->ret = array();
103
+ $this->ret['show'] = $this->show;
104
+ $this->ret['cache'] = $this->cache;
105
+ $this->ret['width'] = $this->width;
106
+ $this->ret['height'] = $this->height;
107
+ $this->ret['imagenum'] = $this->imagenum;
108
+ $this->ret['customname'] = $this->customname;
109
+ $this->ret['from'] = array(
110
+ $this->usecustom => "usecustom",
111
+ $this->featured => "featured",
112
+ $this->content => "content",
113
+ $this->excerpt => "excerpt"
114
+ );
115
+ }
116
+
117
+ final function getData() {
118
+ return $this->data;
119
+ }
120
+
121
+ final function getSettings() {
122
+ return $this->ret;
123
+ }
124
+
125
+ final function getSelected() {
126
+ return $this->ret;
127
+ }
128
+ }
129
+ }
130
+ ?>
backend/settings/class/labelposition.class.php ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsLabelPosition")) {
3
+ /**
4
+ * Class wpdreamsLabelPosition
5
+ *
6
+ * DEPRECATED
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsLabelPosition extends wpdreamsType {
13
+ function __construct($name, $label, $width, $height, $data) {
14
+ $this->constraints = null;
15
+ $this->name = $name;
16
+ $this->label = $label;
17
+ $this->data = $data;
18
+ $this->width = $width;
19
+ $this->height = $height;
20
+ $this->ratio = 400 / $this->width;
21
+ $this->cheight = $this->ratio * $this->height;
22
+ self::$_instancenumber++;
23
+ $this->direction = "";
24
+ $this->duration = "";
25
+ $this->getType();
26
+ }
27
+
28
+ function getType() {
29
+ parent::getType();
30
+ $this->processData();
31
+ $inst = self::$_instancenumber;
32
+ echo "
33
+ <div class='labeldrag' id='labeldrag_" . $inst . "' style='height:" . ($this->cheight + 90) . "px;'>
34
+ <div class='inner' style='overflow:auto;width:400px;height:" . $this->cheight . "px;'>
35
+ <script>
36
+ jQuery(document).ready(function() {
37
+ var drag = jQuery('#" . $this->name . "_" . $inst . "').draggable({ containment: 'parent', refreshPositions: true, appendTo: 'body' });
38
+ jQuery('#" . $this->name . "_" . $inst . "').bind( 'dragstop', function(event, ui) {
39
+ var pos = drag.position();
40
+ var ratio = " . $this->ratio . ";
41
+ var hidden = jQuery('#labelposition_hidden_" . $inst . "');
42
+ var duration = jQuery('input[name=\"induration_" . $this->name . "\"]')[0];
43
+ var direction= jQuery('input[name=\"indirection_" . $this->name . "\"]').prev();
44
+ jQuery(hidden).val('duration:'+jQuery(duration).val()+';direction:'+jQuery(direction).val()+';position:'+((pos.top+5)/ratio)+'||'+((pos.left+5)/ratio)+';');
45
+ });
46
+ jQuery('#labeldrag_" . $inst . " input').keyup(function(){
47
+ jQuery('#" . $this->name . "_" . $inst . "').trigger('dragstop');
48
+ });
49
+ jQuery('#labeldrag_" . $inst . " select').change(function(){
50
+ jQuery('#" . $this->name . "_" . $inst . "').trigger('dragstop');
51
+ });
52
+ });
53
+ </script>
54
+ <div class='dragme' style='top:" . (($this->top * $this->ratio) - 5) . "px;left:" . (($this->left * $this->ratio) - 5) . "px;' id='" . $this->name . "_" . $inst . "'>
55
+ </div>
56
+ </div>
57
+ ";
58
+ echo "<div style='margin-top:" . ($this->cheight + 10) . "px;'>";
59
+ new wpdreamsSelect("indirection_" . $this->name, "Animation direction", $this->_direction);
60
+ new wpdreamsText("induration_" . $this->name, "Animation duration (ms)", $this->duration);
61
+ echo "</div>";
62
+ echo "
63
+ </div>
64
+ <div style='clear:both'></div>
65
+ <input type='hidden' id='labelposition_hidden_" . $inst . "' name='" . $this->name . "' value='" . $this->data . "' />
66
+ ";
67
+ echo "
68
+
69
+ ";
70
+ }
71
+
72
+ function processData() {
73
+ // string: 'duration:123;direction:bottom-left;position:123||321;'
74
+ $this->data = str_replace("\n", "", $this->data);
75
+ preg_match("/duration:(.*?);/", $this->data, $matches);
76
+ $this->duration = $matches[1];
77
+ if ($this->duration == "")
78
+ $this->duration = 500;
79
+ preg_match("/direction:(.*?);/", $this->data, $matches);
80
+ $this->direction = $matches[1];
81
+ if ($this->direction == "")
82
+ $this->direction = "top-left";
83
+ $this->_direction = "
84
+ Top|top;
85
+ Bottom|bottom;
86
+ Left|left;
87
+ Right|right;
88
+ Bottom-Left|bottom-left;
89
+ Bottom-Right|bottom-right;
90
+ Top-Left|top-left;
91
+ Top-Right|top-right;
92
+ Random|random||
93
+ " . $this->direction;
94
+ preg_match("/position:(.*?);/", $this->data, $matches);
95
+ $this->position = $matches[1];
96
+ $_temp = explode("||", $this->position);
97
+ $this->top = $_temp[0];
98
+ $this->left = $_temp[1];
99
+ }
100
+ }
101
+ }
102
+ ?>
backend/settings/class/languageselect.class.php ADDED
@@ -0,0 +1,223 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsLanguageSelect")) {
3
+ /**
4
+ * Class wpdreamsLanguageSelect
5
+ *
6
+ * Displays a language select box.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsLanguageSelect extends wpdreamsType {
13
+
14
+ function getType() {
15
+ parent::getType();
16
+ $this->languages = array(
17
+ 'ab' => 'Abkhazian',
18
+ 'aa' => 'Afar',
19
+ 'af' => 'Afrikaans',
20
+ 'ak' => 'Akan',
21
+ 'sq' => 'Albanian',
22
+ 'am' => 'Amharic',
23
+ 'ar' => 'Arabic',
24
+ 'an' => 'Aragonese',
25
+ 'hy' => 'Armenian',
26
+ 'as' => 'Assamese',
27
+ 'av' => 'Avaric',
28
+ 'ae' => 'Avestan',
29
+ 'ay' => 'Aymara',
30
+ 'az' => 'Azerbaijani',
31
+ 'bm' => 'Bambara',
32
+ 'ba' => 'Bashkir',
33
+ 'eu' => 'Basque',
34
+ 'be' => 'Belarusian',
35
+ 'bn' => 'Bengali',
36
+ 'bh' => 'Bihari',
37
+ 'bi' => 'Bislama',
38
+ 'nb' => 'Bokmal',
39
+ 'bs' => 'Bosnian',
40
+ 'br' => 'Breton',
41
+ 'bg' => 'Bulgarian',
42
+ 'my' => 'Burmese',
43
+ 'ca' => 'Catalan',
44
+ 'km' => 'Central Khmer',
45
+ 'ch' => 'Chamorro',
46
+ 'ce' => 'Chechen',
47
+ 'ny' => 'Chewa',
48
+ 'zh' => 'Chinese',
49
+ 'cu' => 'Church Slavic',
50
+ 'cv' => 'Chuvash',
51
+ 'kw' => 'Cornish',
52
+ 'co' => 'Corsican',
53
+ 'cr' => 'Cree',
54
+ 'hr' => 'Croatian',
55
+ 'cs' => 'Czech',
56
+ 'da' => 'Danish',
57
+ 'dv' => 'Dhivehi',
58
+ 'nl' => 'Dutch',
59
+ 'dz' => 'Dzongkha',
60
+ 'en' => 'English',
61
+ 'eo' => 'Esperanto',
62
+ 'et' => 'Estonian',
63
+ 'ee' => 'Ewe',
64
+ 'fo' => 'Faroese',
65
+ 'fj' => 'Fijian',
66
+ 'fi' => 'Finnish',
67
+ 'fr' => 'French',
68
+ 'ff' => 'Fulah',
69
+ 'gd' => 'Gaelic',
70
+ 'gl' => 'Galician',
71
+ 'lg' => 'Ganda',
72
+ 'ka' => 'Georgian',
73
+ 'de' => 'German',
74
+ 'ki' => 'Gikuyu',
75
+ 'el' => 'Greek',
76
+ 'kl' => 'Greenlandic',
77
+ 'gn' => 'Guarani',
78
+ 'gu' => 'Gujarati',
79
+ 'ht' => 'Haitian',
80
+ 'ha' => 'Hausa',
81
+ 'he' => 'Hebrew',
82
+ 'hz' => 'Herero',
83
+ 'hi' => 'Hindi',
84
+ 'ho' => 'Hiri Motu',
85
+ 'hu' => 'Hungarian',
86
+ 'is' => 'Icelandic',
87
+ 'io' => 'Ido',
88
+ 'ig' => 'Igbo',
89
+ 'id' => 'Indonesian',
90
+ 'ia' => 'Interlingua',
91
+ 'iu' => 'Inuktitut',
92
+ 'ik' => 'Inupiaq',
93
+ 'ga' => 'Irish',
94
+ 'it' => 'Italian',
95
+ 'ja' => 'Japanese',
96
+ 'jv' => 'Javanese',
97
+ 'kn' => 'Kannada',
98
+ 'kr' => 'Kanuri',
99
+ 'ks' => 'Kashmiri',
100
+ 'kk' => 'Kazakh',
101
+ 'rw' => 'Kinyarwanda',
102
+ 'kv' => 'Komi',
103
+ 'kg' => 'Kongo',
104
+ 'ko' => 'Korean',
105
+ 'ku' => 'Kurdish',
106
+ 'kj' => 'Kwanyama',
107
+ 'ky' => 'Kyrgyz',
108
+ 'lo' => 'Lao',
109
+ 'la' => 'Latin',
110
+ 'lv' => 'Latvian',
111
+ 'lb' => 'Letzeburgesch',
112
+ 'li' => 'Limburgan',
113
+ 'ln' => 'Lingala',
114
+ 'lt' => 'Lithuanian',
115
+ 'lu' => 'Luba-Katanga',
116
+ 'mk' => 'Macedonian',
117
+ 'mg' => 'Malagasy',
118
+ 'ms' => 'Malay',
119
+ 'ml' => 'Malayalam',
120
+ 'mt' => 'Maltese',
121
+ 'gv' => 'Manx',
122
+ 'mi' => 'Maori',
123
+ 'mr' => 'Marathi',
124
+ 'mh' => 'Marshallese',
125
+ 'ro' => 'Moldavian',
126
+ 'mn' => 'Mongolian',
127
+ 'na' => 'Nauru',
128
+ 'nv' => 'Navajo',
129
+ 'ng' => 'Ndonga',
130
+ 'ne' => 'Nepali',
131
+ 'nd' => 'North Ndebele',
132
+ 'se' => 'Northern Sami',
133
+ 'no' => 'Norwegian',
134
+ 'nn' => 'Norwegian Nynorsk',
135
+ 'ie' => 'Occidental',
136
+ 'oc' => 'Occitan',
137
+ 'oj' => 'Ojibwa',
138
+ 'or' => 'Oriya',
139
+ 'om' => 'Oromo',
140
+ 'os' => 'Ossetian',
141
+ 'pi' => 'Pali',
142
+ 'fa' => 'Persian',
143
+ 'pl' => 'Polish',
144
+ 'pt' => 'Portuguese',
145
+ 'pa' => 'Punjabi',
146
+ 'ps' => 'Pushto',
147
+ 'qu' => 'Quechua',
148
+ 'ro' => 'Romanian',
149
+ 'rm' => 'Romansh',
150
+ 'rn' => 'Rundi',
151
+ 'ru' => 'Russian',
152
+ 'sm' => 'Samoan',
153
+ 'sg' => 'Sango',
154
+ 'sa' => 'Sanskrit',
155
+ 'sc' => 'Sardinian',
156
+ 'sr' => 'Serbian',
157
+ 'sn' => 'Shona',
158
+ 'ii' => 'Sichuan Yi',
159
+ 'sd' => 'Sindhi',
160
+ 'si' => 'Sinhalese',
161
+ 'sk' => 'Slovak',
162
+ 'sl' => 'Slovenian',
163
+ 'so' => 'Somali',
164
+ 'st' => 'Southern Sotho',
165
+ 'nr' => 'South Ndebele',
166
+ 'es' => 'Spanish',
167
+ 'su' => 'Sundanese',
168
+ 'sw' => 'Swahili',
169
+ 'ss' => 'Swati',
170
+ 'sv' => 'Swedish',
171
+ 'tl' => 'Tagalog',
172
+ 'ty' => 'Tahitian',
173
+ 'tg' => 'Tajik',
174
+ 'ta' => 'Tamil',
175
+ 'tt' => 'Tatar',
176
+ 'te' => 'Telugu',
177
+ 'th' => 'Thai',
178
+ 'bo' => 'Tibetan',
179
+ 'ti' => 'Tigrinya',
180
+ 'to' => 'Tonga',
181
+ 'ts' => 'Tsonga',
182
+ 'tn' => 'Tswana',
183
+ 'tr' => 'Turkish',
184
+ 'tk' => 'Turkmen',
185
+ 'tw' => 'Twi',
186
+ 'uk' => 'Ukrainian',
187
+ 'ur' => 'Urdu',
188
+ 'ug' => 'Uyghur',
189
+ 'uz' => 'Uzbek',
190
+ 've' => 'Venda',
191
+ 'vi' => 'Vietnamese',
192
+ 'vo' => 'VolapA1k',
193
+ 'wa' => 'Walloon',
194
+ 'cy' => 'Welsh',
195
+ 'fy' => 'Western Frisian',
196
+ 'wo' => 'Wolof',
197
+ 'xh' => 'Xhosa',
198
+ 'yi' => 'Yiddish',
199
+ 'yo' => 'Yoruba',
200
+ 'za' => 'Zhuang',
201
+ 'zu' => 'Zulu'
202
+ );
203
+ echo "<div class='wpdreamsLanguageSelect'>";
204
+ echo "<label for='wpdreamslanguageselect_" . self::$_instancenumber . "'>" . $this->label . "</label>";
205
+ echo "<select class='wpdreamsselect' id='wpdreamsselect_" . self::$_instancenumber . "' name='" . $this->name . "'>";
206
+ foreach ($this->languages as $k => $v) {
207
+ if ($k == $this->data)
208
+ echo "<option value='" . $k . "' selected='selected'>" . $v . "</option>";
209
+ else
210
+ echo "<option value='" . $k . "'>" . $v . "</option>";
211
+ }
212
+ echo "</select>";
213
+ echo "<input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>";
214
+ echo "<div class='triggerer'></div>
215
+ </div>";
216
+ }
217
+
218
+ final function getData() {
219
+ return $this->data;
220
+ }
221
+ }
222
+ }
223
+ ?>
backend/settings/class/numericunit.class.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsNumericUnit")) {
3
+ /**
4
+ * Class wpdreamsNumericUnit
5
+ *
6
+ * Displays a numeric input box with up-down arrows.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsNumericUnit extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ echo "
17
+ <div class='wpdreamsNumericUnit'>";
18
+ echo "<label>" . $this->label . "</label><input type='text' class='twodigit' name='numeric' value='" . $this->numeric . "' />";
19
+ echo "<div class='wpdreams-updown'><div class='wpdreams-uparrow'></div><div class='wpdreams-downarrow'></div></div>";
20
+ echo "<select name='units'>";
21
+ foreach ($this->units as $key => $value) {
22
+ echo "<option value='" . $key . "' " . (($key == $this->selected) ? 'selected=selected' : '') . ">" . $value . "</option>";
23
+ }
24
+ echo "</select>";
25
+
26
+ echo "
27
+ <input isparam=1 type='hidden' value='" . $this->data['value'] . "' name='" . $this->name . "'>
28
+ <div class='triggerer'></div>
29
+ </div>";
30
+ }
31
+
32
+ function processData() {
33
+ $this->units = $this->data['units'];
34
+ $this->data['value'] = str_replace("\n", "", $this->data['value']);
35
+ preg_match("/([0-9]+)(.*)/", $this->data['value'], $matches);
36
+ $this->numeric = $matches[1];
37
+ $this->selected = $matches[2];
38
+ }
39
+
40
+ final function getData() {
41
+ return $this->data;
42
+ }
43
+
44
+ final function getCss() {
45
+ return $this->css;
46
+ }
47
+ }
48
+ }
49
+ ?>
backend/settings/class/onoff.class.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsOnOff")) {
3
+ /**
4
+ * Class wpdreamsOnOff
5
+ *
6
+ * Displays an ON-OFF switch UI element.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsOnOff extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ echo "<div class='wpdreamsOnOff" . (($this->data == 1) ? " active" : "") . "'>";
16
+ echo "<label for='wpdreamstext_" . self::$_instancenumber . "'>" . $this->label . "</label>";
17
+ echo "<input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>";
18
+ echo "<div class='wpdreamsOnOffInner'></div>";
19
+ echo "<div class='triggerer'></div>";
20
+ echo "</div>";
21
+ }
22
+ }
23
+ }
24
+ ?>
backend/settings/class/select.class.php ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsSelect")) {
3
+ /**
4
+ * Class wpdreamsSelect
5
+ *
6
+ * Similar to wprdreamsCustomSelect, but stores the select values in an input field.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsSelect extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ echo "<div class='wpdreamsSelect'>";
17
+ echo "<label for='wpdreamsselect_" . self::$_instancenumber . "'>" . $this->label . "</label>";
18
+ echo "<select class='wpdreamsselect' id='wpdreamsselect_" . self::$_instancenumber . "' name='" . $this->name . "_select'>";
19
+ foreach ($this->selects as $sel) {
20
+ preg_match('/(?<option>.*?)\\|(?<value>.*)/', $sel, $matches);
21
+ $matches['value'] = trim($matches['value']);
22
+ $matches['option'] = trim($matches['option']);
23
+ if ($matches['value'] == $this->selected)
24
+ echo "<option value='" . $matches['value'] . "' selected='selected'>" . $matches['option'] . "</option>";
25
+ else
26
+ echo "<option value='" . $matches['value'] . "'>" . $matches['option'] . "</option>";
27
+ }
28
+ echo "</select>";
29
+ echo "<input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>";
30
+ echo "<input type='hidden' value='" . $this->selected . "' name='selected-" . $this->name . "'>";
31
+ echo "<div class='triggerer'></div>
32
+ </div>";
33
+ }
34
+
35
+ function processData() {
36
+ //$this->data = str_replace("\n","",$this->data);
37
+ $_temp = explode("||", $this->data);
38
+ $this->selects = explode(";", $_temp[0]);
39
+ $this->selected = trim($_temp[1]);
40
+ }
41
+
42
+ final function getData() {
43
+ return $this->data;
44
+ }
45
+
46
+ final function getSelected() {
47
+ return $this->selected;
48
+ }
49
+ }
50
+ }
51
+ ?>
backend/settings/class/text.class.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Class wpdreamsText
4
+ *
5
+ * A simple text input field.
6
+ *
7
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
8
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
9
+ * @copyright Copyright (c) 2014, Ernest Marcinko
10
+ */
11
+ if (!class_exists("wpdreamsText")) {
12
+ class wpdreamsText extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ echo "<div class='wpdreamsText'>";
16
+ if ($this->label != "")
17
+ echo "<label for='wpdreamstext_" . self::$_instancenumber . "'>" . $this->label . "</label>";
18
+ echo "<input isparam=1 type='text' id='wpdreamstext_" . self::$_instancenumber . "' name='" . $this->name . "' value='" . $this->data . "' />";
19
+ echo "
20
+ <div class='triggerer'></div>
21
+ </div>";
22
+ }
23
+ }
24
+ }
25
+ ?>
backend/settings/class/textarea-isparam.class.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsTextareaIsParam")) {
3
+ /**
4
+ * Class wpdreamsSelect
5
+ *
6
+ * A simple textarea field.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsTextareaIsParam extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ echo "<div class='wpdreamsTextareaIsParam'>";
16
+ echo "<label style='vertical-align: top;' for='wpdreamstextarea_" . self::$_instancenumber . "'>" . $this->label . "</label>";
17
+ echo "<textarea isparam=1 id='wpdreamstextarea_" . self::$_instancenumber . "' name='" . $this->name . "'>" . stripcslashes($this->data) . "</textarea>";
18
+ echo "<div class='triggerer'></div>";
19
+ echo "</div>";
20
+ }
21
+ }
22
+ }
23
+ ?>
backend/settings/class/textarea.class.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsTextarea")) {
3
+ /**
4
+ * Class wpdreamsTextarea
5
+ *
6
+ * A simple textarea field.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsTextarea extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ echo "<label style='vertical-align: top;' for='wpdreamstextarea_" . self::$_instancenumber . "'>" . $this->label . "</label>";
16
+ echo "<textarea id='wpdreamstextarea_" . self::$_instancenumber . "' name='" . $this->name . "'>" . stripcslashes($this->data) . "</textarea>";
17
+ }
18
+ }
19
+ }
20
+ ?>
backend/settings/class/textshadow-mini.class.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsTextShadowMini")) {
3
+ /**
4
+ * Class wpdreamsTextShadow
5
+ *
6
+ * A tiny CSS text-shadow input UI element.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsTextShadowMini extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ echo "
17
+ <div class='wpdreamsTextShadow mini'>
18
+ <fieldset>
19
+ <legend>" . $this->label . "</legend>";
20
+ echo "
21
+ <label>Vertical offset</label><input type='text' class='twodigit' name='_xx_hlength_xx_' value='" . $this->hlength . "' />px
22
+ <br><label>Horizontal offset</label><input type='text' class='twodigit' name='_xx_vlength_xx_' value='" . $this->vlength . "' />px
23
+ <br><label>Blur radius</label><input type='text' class='twodigit' name='_xx_blurradius_xx_' value='" . $this->blurradius . "' />px
24
+ <br>
25
+ ";
26
+ new wpdreamsColorPickerDummy("_xx_color_xx_", "Shadow color", (isset($this->color) ? $this->color : "#000000"));
27
+ echo "
28
+ <input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>
29
+ <div class='triggerer'></div>
30
+ </fieldset>
31
+ </div>";
32
+ }
33
+
34
+ function processData() {
35
+ $this->data = str_replace("\n", "", $this->data);
36
+ preg_match("/text-shadow:(.*?)px (.*?)px (.*?)px (.*?);/", $this->data, $matches);
37
+ $this->hlength = $matches[1];
38
+ $this->vlength = $matches[2];
39
+ $this->blurradius = $matches[3];
40
+ $this->color = $matches[4];
41
+ }
42
+
43
+ final function getData() {
44
+ return $this->data;
45
+ }
46
+
47
+ final function getCss() {
48
+ return $this->css;
49
+ }
50
+ }
51
+ }
52
+ ?>
backend/settings/class/textshadow.class.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsTextShadow")) {
3
+ /**
4
+ * Class wpdreamsTextShadow
5
+ *
6
+ * A CSS text-shadow input UI element.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsTextShadow extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+ echo "
17
+ <div class='wpdreamsTextShadow'>
18
+ <fieldset>
19
+ <legend>" . $this->label . "</legend>";
20
+ echo "
21
+ <label>Vertical offset</label><input type='text' class='twodigit' name='_xx_hlength_xx_' value='" . $this->hlength . "' />px
22
+ <br><label>Horizontal offset</label><input type='text' class='twodigit' name='_xx_vlength_xx_' value='" . $this->vlength . "' />px
23
+ <br><label>Blur radius</label><input type='text' class='twodigit' name='_xx_blurradius_xx_' value='" . $this->blurradius . "' />px
24
+ <br>
25
+ ";
26
+ new wpdreamsColorPickerDummy("_xx_color_xx_", "Shadow color", (isset($this->color) ? $this->color : "#000000"));
27
+ echo "
28
+ <input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>
29
+ <div class='triggerer'></div>
30
+ </fieldset>
31
+ </div>";
32
+ }
33
+
34
+ function processData() {
35
+ $this->data = str_replace("\n", "", $this->data);
36
+ preg_match("/text-shadow:(.*?)px (.*?)px (.*?)px (.*?);/", $this->data, $matches);
37
+ $this->hlength = $matches[1];
38
+ $this->vlength = $matches[2];
39
+ $this->blurradius = $matches[3];
40
+ $this->color = $matches[4];
41
+ }
42
+
43
+ final function getData() {
44
+ return $this->data;
45
+ }
46
+
47
+ final function getCss() {
48
+ return $this->css;
49
+ }
50
+ }
51
+ }
52
+ ?>
backend/settings/class/textsmall.class.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsTextSmall")) {
3
+ /**
4
+ * Class wpdreamsTextSmall
5
+ *
6
+ * A 5 characters wide text input field.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsTextSmall extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ echo "<div class='wpdreamsTextSmall'>";
16
+ if ($this->label != "")
17
+ echo "<label for='wpdreamstextsmall_" . self::$_instancenumber . "'>" . $this->label . "</label>";
18
+ echo "<input isparam=1 class='small' type='text' id='wpdreamstextsmall_" . self::$_instancenumber . "' name='" . $this->name . "' value='" . $this->data . "' />";
19
+ echo "
20
+ <div class='triggerer'></div>
21
+ </div>";
22
+ }
23
+ }
24
+ }
25
+ ?>
backend/settings/class/themechooser.class.php ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsThemeChooser")) {
3
+ /**
4
+ * Class wpdreamsThemeChooser
5
+ *
6
+ * Theme selector class. Uses the json decoded data do form each theme.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsThemeChooser extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ echo "
16
+ <div class='wpdreamsThemeChooser'>
17
+ <fieldset style='background:#FAFAFA;padding:0;'>
18
+ <label style='color:#333' for='wpdreamsThemeChooser_'" . self::$_instancenumber . "'>" . $this->label . "</label>";
19
+ $decodedData = json_decode($this->data);
20
+ echo "<select id='wpdreamsThemeChooser_" . self::$_instancenumber . "'>
21
+ <option value=''>Select</option>";
22
+ foreach ($decodedData as $name => $theme) {
23
+ if ($theme === false)
24
+ echo "<option value='" . $name . "' disabled>" . $name . "</option>";
25
+ else
26
+ echo "<option value='" . $name . "'>" . $name . "</option>";
27
+ }
28
+ echo "</select>";
29
+ foreach ($decodedData as $name => $theme) {
30
+ if ($theme === false) continue;
31
+ echo "<div name='" . $name . "' style='display:none;'>";
32
+ foreach ($theme as $pname => $param) {
33
+ echo "<p paramname='" . $pname . "'>" . $param . "</p>";
34
+ }
35
+ echo "</div>";
36
+ }
37
+ echo "
38
+ <span></span>
39
+ <p class='descMsg'>Changes not take effect on the frontend until you save them.</p>
40
+ </fieldset>
41
+
42
+ </div>";
43
+ }
44
+ }
45
+ }
46
+ ?>
backend/settings/class/type.class.php ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsType")) {
3
+ /**
4
+ * (abstract) Class wpdreamsType
5
+ *
6
+ * Parent of each type defined in this directory. This class should not be used to make an instance.
7
+ * Each new child type should follow this general interpretation.
8
+ *
9
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
10
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
11
+ * @copyright Copyright (c) 2012, Ernest Marcinko
12
+ */
13
+ class wpdreamsType {
14
+ protected static $_instancenumber = 0;
15
+ protected static $_errors = 0;
16
+ protected static $_globalerrormsg = "Only integer values are accepted!";
17
+ protected $data;
18
+
19
+ function __construct($name, $label, $data, $constraints = null, $errormsg = "") {
20
+ $this->name = $name;
21
+ $this->label = $label;
22
+ $this->constraints = $constraints;
23
+ $this->errormsg = $errormsg;
24
+ $this->defaultData = $data; // Perserving constructor default data after posting
25
+ $this->data = $data;
26
+ $this->isError = false;
27
+ self::$_instancenumber++;
28
+ $this->getType();
29
+ }
30
+
31
+ /**
32
+ * Returns the raw data passed to the class
33
+ *
34
+ * @return mixed
35
+ */
36
+ function getData() {
37
+ return $this->data;
38
+ }
39
+
40
+ /**
41
+ * Returns the name passed in the constructor
42
+ *
43
+ * @return string
44
+ */
45
+ final function getName() {
46
+ return $this->name;
47
+ }
48
+
49
+ /**
50
+ * Checks if there was an error within any child
51
+ *
52
+ * @return bool
53
+ */
54
+ final function getError() {
55
+ return $this->isError;
56
+ }
57
+
58
+ /**
59
+ * Gets the current error message or the global error if not defined
60
+ *
61
+ * @return string
62
+ */
63
+ final function getErrorMsg() {
64
+ return $this->errormsg;
65
+ }
66
+
67
+ /**
68
+ * Triggers or sets an error message.
69
+ *
70
+ * @param $error
71
+ * @param string $errormsg
72
+ */
73
+ final function setError($error, $errormsg = "") {
74
+ if ($errormsg != "")
75
+ $this->errormsg = $errormsg;
76
+ if ($error) {
77
+ self::$_errors++;
78
+ $this->isError = true;
79
+ }
80
+ }
81
+
82
+ /**
83
+ * Cheks the newly posted data against possible constraints
84
+ *
85
+ * @return bool
86
+ */
87
+ protected final function checkData() {
88
+ $this->newData = $_POST[$this->name];
89
+ if (is_array($this->constraints)) {
90
+ foreach ($this->constraints as $key => $val) {
91
+ if ($this->constraints[$key]['op'] == "eq") {
92
+ if ($val['func']($this->newData) == $this->constraints[$key]['val']) {
93
+ ;
94
+ } else {
95
+ $this->setError(true);
96
+ return false;
97
+ }
98
+ } else if ($this->constraints[$key]['op'] == "ge") {
99
+ if ($val['func']($this->newData) >= $this->constraints[$key]['val']) {
100
+ ;
101
+ } else {
102
+ $this->setError(true);
103
+ return false;
104
+ }
105
+ } else {
106
+ if ($val['func']($this->newData) < $this->constraints[$key]['val']) {
107
+ ;
108
+ } else {
109
+ $this->setError(true);
110
+ return false;
111
+ }
112
+ }
113
+ }
114
+ }
115
+
116
+ return true;
117
+ }
118
+
119
+ /**
120
+ * Called in the constructor by default.
121
+ *
122
+ * Checks for errors when a new value was posted.
123
+ *
124
+ */
125
+ protected function getType() {
126
+ if (isset($_POST[$this->name])) {
127
+ if (!$this->checkData() || $this->getError()) {
128
+ /*errormessage*/
129
+ echo "<div class='errorMsg'>" . (($this->errormsg != "") ? $this->errormsg : self::$_globalerrormsg) . "</div>";
130
+ } else {
131
+ if (is_array($this->data) && isset($this->data['value'])) {
132
+ $this->data['value'] = $_POST[$this->name];
133
+ } else {
134
+ $this->data = $_POST[$this->name];
135
+ }
136
+ }
137
+ }
138
+ }
139
+
140
+ /**
141
+ * Returns the error count
142
+ *
143
+ * @return int
144
+ */
145
+ static function getErrorNum() {
146
+ return self::$_errors;
147
+ }
148
+ }
149
+ }
150
+ ?>
backend/settings/class/upload.class.php ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsUpload")) {
3
+ /**
4
+ * Class wpdreamsUpload
5
+ *
6
+ * DEPRECATED
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsUpload extends wpdreamsType {
13
+ function getType() {
14
+ parent::getType();
15
+ $this->processData();
16
+
17
+ echo "
18
+ <div class='wpdreamsUpload' id='wpdreamsUpload" . self::$_instancenumber . "'>";
19
+ ?>
20
+ <label for='wpdreamsUpload_input<?php echo self::$_instancenumber; ?>'>
21
+ <?php echo $this->label; ?>
22
+ </label>
23
+ <input id="wpdreamsUpload_input<?php echo self::$_instancenumber; ?>" type="text"
24
+ size="36" name="<?php echo $this->name; ?>" value="<?php echo $this->data; ?>"/>
25
+ <input id="wpdreamsUpload_button<?php echo self::$_instancenumber; ?>" class="button" type="button"
26
+ value="Upload"/>
27
+
28
+ <?php
29
+ ?>
30
+ <script type='text/javascript'>
31
+ (function ($) {
32
+ $(document).ready(function () {
33
+
34
+ var custom_uploader;
35
+
36
+ $('#wpdreamsUpload_button<?php echo self::$_instancenumber; ?>').click(function (e) {
37
+
38
+ e.preventDefault();
39
+
40
+ //If the uploader object has already been created, reopen the dialog
41
+ if (custom_uploader) {
42
+ custom_uploader.open();
43
+ return;
44
+ }
45
+
46
+ //Extend the wp.media object
47
+ custom_uploader = wp.media.frames.file_frame = wp.media({
48
+ title: 'Choose Image',
49
+ button: {
50
+ text: 'Choose Image'
51
+ },
52
+ multiple: false
53
+ });
54
+
55
+ //When a file is selected, grab the URL and set it as the text field's value
56
+ custom_uploader.on('select', function () {
57
+ attachment = custom_uploader.state().get('selection').first().toJSON();
58
+ $('#wpdreamsUpload_input<?php echo self::$_instancenumber; ?>').val(attachment.url);
59
+ });
60
+
61
+ //Open the uploader dialog
62
+ custom_uploader.open();
63
+
64
+ });
65
+ });
66
+ }(jQuery));
67
+ </script>
68
+ <?php
69
+ echo "
70
+ </div>";
71
+ }
72
+
73
+
74
+ function processData() {
75
+
76
+ }
77
+
78
+ final function getData() {
79
+ return $this->data;
80
+ }
81
+
82
+ final function getSelected() {
83
+
84
+ }
85
+
86
+ final function getItems() {
87
+
88
+ }
89
+ }
90
+ }
91
+ ?>
backend/settings/class/uploadreset.class.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsUploadReset")) {
3
+ /**
4
+ * Class wpdreamsUploadReset
5
+ *
6
+ * DEPRECATED
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2014, Ernest Marcinko
11
+ */
12
+ class wpdreamsUploadReset extends wpdreamsType {
13
+ function __construct($name, $label, $data, $default_data, $constraints = null, $errormsg = "") {
14
+ $this->name = $name;
15
+ $this->label = $label;
16
+ $this->constraints = $constraints;
17
+ $this->errormsg = $errormsg;
18
+ $this->data = $data;
19
+ $this->default_data = $default_data;
20
+ $this->isError = false;
21
+ self::$_instancenumber++;
22
+ $this->getType();
23
+ }
24
+
25
+ function getType() {
26
+ parent::getType();
27
+ echo "<div>";
28
+ if ($this->data != "") {
29
+ echo "<img class='preview' rel='#overlay_" . self::$_instancenumber . "' src=" . $this->data . " />";
30
+ } else {
31
+ echo "<img class='preview' style='display:none;' rel='#overlay_" . self::$_instancenumber . "' />";
32
+ }
33
+ echo "<label for='wpdreamsUploadReset_" . self::$_instancenumber . "'>" . $this->label . "</label>";
34
+ echo "<input type='text' class='wpdreamsUpload' id='wpdreamsUploadReset_" . self::$_instancenumber . "' name='" . $this->name . "' value='" . $this->data . "' />";
35
+ echo "<input class='wpdreamsUpload_button' type='button' value='Upload Image' />";
36
+ echo "<input type='button' class='default' name='default' value='Default' />";
37
+ echo "<input type='hidden' value='" . $this->default_data . "' />";
38
+ echo "<br />Enter an URL or upload an image!";
39
+ echo "<div class='overlay' id='overlay_" . self::$_instancenumber . "'><img src='" . $this->data . "'' /></div>";
40
+ echo "</div>";
41
+ }
42
+ }
43
+ }
44
+ ?>
backend/settings/class/yesno.class.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!class_exists("wpdreamsYesNo")) {
3
+ /**
4
+ * Class wpdreamsYesNo
5
+ *
6
+ * DEPRECATED
7
+ * Displays an ON-OFF switch UI element. Same as wpdreamsOnOff
8
+ *
9
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
10
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
11
+ * @copyright Copyright (c) 2014, Ernest Marcinko
12
+ */
13
+ class wpdreamsYesNo extends wpdreamsType {
14
+ function getType() {
15
+ parent::getType();
16
+ echo "<div class='wpdreamsYesNo" . (($this->data == 1) ? " active" : "") . "'>";
17
+ echo "<label for='wpdreamstext_" . self::$_instancenumber . "'>" . $this->label . "</label>";
18
+ //echo "<a class='wpdreamsyesno" . (($this->data == 1) ? " yes" : " no") . "' id='wpdreamsyesno_" . self::$_instancenumber . "' name='" . $this->name . "_yesno'>" . (($this->data == 1) ? "YES" : "NO") . "</a>";
19
+ echo "<input isparam=1 type='hidden' value='" . $this->data . "' name='" . $this->name . "'>";
20
+ echo "<div class='wpdreamsYesNoInner'></div>";
21
+ echo "<div class='triggerer'></div>";
22
+ echo "</div>";
23
+ }
24
+ }
25
+ }
26
+ ?>
backend/settings/default_options.php ADDED
@@ -0,0 +1,214 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Default option store
4
+ *
5
+ * The $options variable stores all the default values
6
+ * for a new Ajax Search lite instance and for all the option pages.
7
+ *
8
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
9
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
10
+ * @copyright Copyright (c) 2012, Ernest Marcinko
11
+ */
12
+
13
+ /* Default caching options */
14
+ $options = array();
15
+
16
+
17
+ $options['asl_analytics_def']['analytics'] = 0;
18
+ $options['asl_analytics_def']['analytics_string'] = "ajax_search-{asl_term}";
19
+
20
+
21
+ /* Default new search options */
22
+
23
+ // General options
24
+ $options['asl_defaults']['theme'] = 'simple-red';
25
+ $options['asl_defaults']['triggeronclick'] = 1;
26
+ $options['asl_defaults']['redirectonclick'] = 0;
27
+ $options['asl_defaults']['triggerontype'] = 1;
28
+ $options['asl_defaults']['searchinposts'] = 1;
29
+ $options['asl_defaults']['searchinpages'] = 1;
30
+ $options['asl_defaults']['customtypes'] = "";
31
+ $options['asl_defaults']['searchintitle'] = 1;
32
+ $options['asl_defaults']['searchincontent'] = 1;
33
+ $options['asl_defaults']['searchinexcerpt'] = 1;
34
+ $options['asl_defaults']['customfields'] = "";
35
+
36
+ $options['asl_defaults']['exactonly'] = 0;
37
+ $options['asl_defaults']['searchinterms'] = 0;
38
+
39
+ $options['asl_defaults']['charcount'] = 3;
40
+ $options['asl_defaults']['maxresults'] = 10;
41
+ $options['asl_defaults']['itemscount'] = 4;
42
+ $options['asl_defaults']['resultitemheight'] = "70px";
43
+
44
+ $options['asl_defaults']['orderby_def'] = array(
45
+ array('option'=>'Title descending', 'value'=>'post_title DESC'),
46
+ array('option'=>'Title ascending', 'value'=>'post_title ASC'),
47
+ array('option'=>'Date descending', 'value'=>'post_date DESC'),
48
+ array('option'=>'Date ascending', 'value'=>'post_date ASC')
49
+ );
50
+ $options['asl_defaults']['orderby'] = 'post_date DESC';
51
+
52
+ // General/Image
53
+ $options['asl_defaults']['show_images'] = 1;
54
+ $options['asl_defaults']['image_transparency'] = 1;
55
+ $options['asl_defaults']['image_bg_color'] = "#FFFFFF";
56
+ $options['asl_defaults']['image_width'] = 70;
57
+ $options['asl_defaults']['image_height'] = 70;
58
+
59
+ $options['asl_defaults']['image_crop_location'] = 'c';
60
+ $options['asl_defaults']['image_crop_location_selects'] = array(
61
+ array('option'=>'In the center', 'value'=>'c'),
62
+ array('option'=>'Align top', 'value'=>'t'),
63
+ array('option'=>'Align top right', 'value'=>'tr'),
64
+ array('option'=>'Align top left', 'value'=>'tl'),
65
+ array('option'=>'Align bottom', 'value'=>'b'),
66
+ array('option'=>'Align bottom right', 'value'=>'br'),
67
+ array('option'=>'Align bottom left', 'value'=>'bl'),
68
+ array('option'=>'Align left', 'value'=>'l'),
69
+ array('option'=>'Align right', 'value'=>'r')
70
+ );
71
+
72
+ $options['asl_defaults']['image_sources'] = array(
73
+ array('option'=>'Featured image', 'value'=>'featured'),
74
+ array('option'=>'Post Content', 'value'=>'content'),
75
+ array('option'=>'Post Excerpt', 'value'=>'excerpt'),
76
+ array('option'=>'Custom field', 'value'=>'custom'),
77
+ array('option'=>'Page Screenshot', 'value'=>'screenshot'),
78
+ array('option'=>'Default image', 'value'=>'default'),
79
+ array('option'=>'Disabled', 'value'=>'disabled')
80
+ );
81
+
82
+ $options['asl_defaults']['image_source1'] = 'featured';
83
+ $options['asl_defaults']['image_source2'] = 'content';
84
+ $options['asl_defaults']['image_source3'] = 'excerpt';
85
+ $options['asl_defaults']['image_source4'] = 'custom';
86
+ $options['asl_defaults']['image_source5'] = 'default';
87
+
88
+ $options['asl_defaults']['image_default'] = ASL_URL."img/default.jpg";
89
+ $options['asl_defaults']['image_custom_field'] = '';
90
+ $options['asl_defaults']['use_timthumb'] = 1;
91
+
92
+
93
+ /* Frontend search settings Options */
94
+ $options['asl_defaults']['show_frontend_search_settings'] = 1;
95
+ $options['asl_defaults']['showexactmatches'] = 1;
96
+ $options['asl_defaults']['showsearchinposts'] = 1;
97
+ $options['asl_defaults']['showsearchinpages'] = 1;
98
+ $options['asl_defaults']['showsearchintitle'] = 1;
99
+ $options['asl_defaults']['showsearchincontent'] = 1;
100
+ $options['asl_defaults']['showcustomtypes'] = '';
101
+ $options['asl_defaults']['showsearchincomments'] = 1;
102
+ $options['asl_defaults']['showsearchinexcerpt'] = 1;
103
+ $options['asl_defaults']['showsearchinbpusers'] = 0;
104
+ $options['asl_defaults']['showsearchinbpgroups'] = 0;
105
+ $options['asl_defaults']['showsearchinbpforums'] = 0;
106
+
107
+ $options['asl_defaults']['exactmatchestext'] = "Exact matches only";
108
+ $options['asl_defaults']['searchinpoststext'] = "Search in posts";
109
+ $options['asl_defaults']['searchinpagestext'] = "Search in pages";
110
+ $options['asl_defaults']['searchintitletext'] = "Search in title";
111
+ $options['asl_defaults']['searchincontenttext'] = "Search in content";
112
+ $options['asl_defaults']['searchincommentstext'] = "Search in comments";
113
+ $options['asl_defaults']['searchinexcerpttext'] = "Search in excerpt";
114
+ $options['asl_defaults']['searchinbpuserstext'] = "Search in users";
115
+ $options['asl_defaults']['searchinbpgroupstext'] = "Search in groups";
116
+ $options['asl_defaults']['searchinbpforumstext'] = "Search in forums";
117
+
118
+ $options['asl_defaults']['showsearchincategories'] = 1;
119
+ $options['asl_defaults']['showuncategorised'] = 1;
120
+ $options['asl_defaults']['exsearchincategories'] = "";
121
+ $options['asl_defaults']['exsearchincategoriesheight'] = 200;
122
+ $options['asl_defaults']['showsearchintaxonomies'] = 1;
123
+ $options['asl_defaults']['showterms'] = "";
124
+ $options['asl_defaults']['showseparatefilterboxes'] = 1;
125
+ $options['asl_defaults']['exsearchintaxonomiestext'] = "Filter by";
126
+ $options['asl_defaults']['exsearchincategoriestext'] = "Filter by Categories";
127
+ $options['asl_defaults']['exsearchincategoriestextfont'] = 'font-weight:bold;font-family:--g--Open Sans;color:rgb(26, 71, 98);font-size:13px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);';
128
+
129
+ /* Layout Options */
130
+ $options['asl_defaults']['resultstype_def'] = array(
131
+ array('option'=>'Vertical Results', 'value'=>'vertical'),
132
+ array('option'=>'Horizontal Results', 'value'=>'horizontal'),
133
+ array('option'=>'Isotopic Results', 'value'=>'isotopic'),
134
+ array('option'=>'Polaroid style Results', 'value'=>'polaroid')
135
+ );
136
+ $options['asl_defaults']['resultstype'] = 'vertical';
137
+ $options['asl_defaults']['resultsposition_def'] = array(
138
+ array('option'=>'Hover - over content', 'value'=>'hover'),
139
+ array('option'=>'Block - pushes content', 'value'=>'block')
140
+ );
141
+ $options['asl_defaults']['resultsposition'] = 'hover';
142
+ $options['asl_defaults']['resultsmargintop'] = '12px';
143
+
144
+ $options['asl_defaults']['defaultsearchtext'] = '';
145
+ $options['asl_defaults']['showmoreresults'] = 0;
146
+ $options['asl_defaults']['showmoreresultstext'] = 'More results...';
147
+ $options['asl_defaults']['showmorefont'] = 'font-weight:normal;font-family:--g--Open Sans;color:rgba(5, 94, 148, 1);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);';
148
+ $options['asl_defaults']['scroll_to_results'] = 0;
149
+ $options['asl_defaults']['resultareaclickable'] = 1;
150
+ $options['asl_defaults']['close_on_document_click'] = 1;
151
+ $options['asl_defaults']['show_close_icon'] = 1;
152
+ $options['asl_defaults']['showauthor'] = 1;
153
+ $options['asl_defaults']['showdate'] = 1;
154
+ $options['asl_defaults']['showdescription'] = 1;
155
+ $options['asl_defaults']['descriptionlength'] = 100;
156
+ $options['asl_defaults']['noresultstext'] = "No results!";
157
+ $options['asl_defaults']['didyoumeantext'] = "Did you mean:";
158
+ $options['asl_defaults']['highlight'] = 0;
159
+ $options['asl_defaults']['highlightwholewords'] = 1;
160
+ $options['asl_defaults']['highlightcolor'] = "#d9312b";
161
+ $options['asl_defaults']['highlightbgcolor'] = "#eee";
162
+
163
+ /* Autocomplete options */
164
+ $options['asl_defaults']['autocomplete'] = 1;
165
+ $options['asl_defaults']['autocompleteexceptions'] = '';
166
+ $options['asl_defaults']['autocompletesource_def'] = array(
167
+ array('option'=>'Search Statistics', 'value'=>0),
168
+ array('option'=>'Google Keywords', 'value'=>1)
169
+ );
170
+ $options['asl_defaults']['autocompletesource'] = 1;
171
+
172
+
173
+ /* Advanced Options */
174
+ $options['asl_defaults']['striptagsexclude'] = '<span><a><abbr><b>';
175
+ $options['asl_defaults']['runshortcode'] = 1;
176
+ $options['asl_defaults']['stripshortcode'] = 0;
177
+ $options['asl_defaults']['pageswithcategories'] = 0;
178
+
179
+ $options['asl_defaults']['titlefield_def'] = array(
180
+ array('option'=>'Post Title', 'value'=>0),
181
+ array('option'=>'Post Excerpt', 'value'=>1)
182
+ );
183
+ $options['asl_defaults']['titlefield'] = 0;
184
+
185
+ $options['asl_defaults']['descriptionfield_def'] = array(
186
+ array('option'=>'Post Description', 'value'=>0),
187
+ array('option'=>'Post Excerpt', 'value'=>1),
188
+ array('option'=>'Post Title', 'value'=>2)
189
+ );
190
+ $options['asl_defaults']['descriptionfield'] = 0;
191
+
192
+
193
+ $options['asl_defaults']['excludecategories'] = '';
194
+ $options['asl_defaults']['excludeposts'] = '';
195
+
196
+ $options['asl_defaults']['wpml_compatibility'] = 1;
197
+
198
+
199
+ /* Save the defaul options if not exist */
200
+ $_asl_ver = get_option('asl_version');
201
+
202
+ // Update the default options if not exist/newer version available/debug mode is on
203
+ foreach($options as $key=>$value) {
204
+ if (get_option($key) === false || $_asl_ver != ASL_CURRENT_VERSION || ASL_DEBUG == 1) {
205
+ update_option($key, $value);
206
+ }
207
+ }
208
+
209
+ if (get_option('asl_options')===false || ASL_DEBUG == 1)
210
+ update_option('asl_options', $options['asl_defaults']);
211
+
212
+ update_option('asl_version', ASL_CURRENT_VERSION);
213
+
214
+ ?>
backend/settings/functions.php ADDED
@@ -0,0 +1,325 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if (!function_exists("w_isset_def")) {
4
+ function w_isset_def(&$v, $d)
5
+ {
6
+ if (isset($v)) return $v;
7
+ return $d;
8
+ }
9
+ }
10
+
11
+ if (!function_exists("wpdreams_setval_or_getoption")) {
12
+ function wpdreams_setval_or_getoption($options, $key, $def_key)
13
+ {
14
+ if (isset($options) && isset($options[$key]))
15
+ return $options[$key];
16
+ $def_options = get_option($def_key);
17
+ return $def_options[$key];
18
+ }
19
+ }
20
+
21
+ if (!function_exists("wpdreams_get_selected")) {
22
+ function wpdreams_get_selected($option, $key) {
23
+ return isset($option['selected-'.$key])?$option['selected-'.$key]:array();
24
+ }
25
+ }
26
+
27
+ if (!function_exists("wpdreams_keyword_count_sort")) {
28
+ function wpdreams_keyword_count_sort($first, $sec) {
29
+ return $sec[1] - $first[1];
30
+ }
31
+ }
32
+
33
+ if (!function_exists("wpdreams_get_stylesheet")) {
34
+ function wpdreams_get_stylesheet($dir, $id, $style) {
35
+ ob_start();
36
+ include($dir."style.css.php");
37
+ $out = ob_get_contents();
38
+ ob_end_clean();
39
+ if (isset($style['custom_css_special']) && isset($style['custom_css_selector'])
40
+ && $style['custom_css_special'] != "") {
41
+ $out.= " ".stripcslashes(str_replace('[instance]',
42
+ str_replace('THEID', $id, $style['custom_css_selector']),
43
+ $style['custom_css_special']));
44
+ }
45
+ return $out;
46
+ }
47
+ }
48
+
49
+ if (!function_exists("wpdreams_update_stylesheet")) {
50
+ function wpdreams_update_stylesheet($dir, $id, $style) {
51
+ $out = wpdreams_get_stylesheet($dir, $id, $style);
52
+ if (isset($style['css_compress']) && $style['css_compress'] == true)
53
+ $out = wpdreams_css_compress($out);
54
+ return @file_put_contents($dir."style".$id.".css", $out, FILE_TEXT);
55
+ }
56
+ }
57
+
58
+ if (!function_exists("wpdreams_parse_params")) {
59
+ function wpdreams_parse_params($params) {
60
+ foreach ($params as $k=>$v) {
61
+ $_tmp = explode('classname-', $k);
62
+ if ($_tmp!=null && count($_tmp)>1) {
63
+ ob_start();
64
+ $c = new $v('0', '0', $params[$_tmp[1]]);
65
+ $out = ob_get_clean();
66
+ $params['selected-'.$_tmp[1]] = $c->getSelected();
67
+ }
68
+ $_tmp = null;
69
+ $_tmp = explode('wpdfont-', $k);
70
+ if ($_tmp!=null && count($_tmp)>1) {
71
+ ob_start();
72
+ $c = new $v('0', '0', $params[$_tmp[1]]);
73
+ $out = ob_get_clean();
74
+ $params['import-'.$_tmp[1]] = $c->getImport();
75
+ }
76
+ }
77
+ return $params;
78
+ }
79
+ }
80
+
81
+ if (!function_exists("wpdreams_admin_hex2rgb")) {
82
+ function wpdreams_admin_hex2rgb($color)
83
+ {
84
+ if (strlen($color)>7) return $color;
85
+ if (strlen($color)<3) return "rgba(0, 0, 0, 1)";
86
+ if ($color[0] == '#')
87
+ $color = substr($color, 1);
88
+ if (strlen($color) == 6)
89
+ list($r, $g, $b) = array($color[0].$color[1],
90
+ $color[2].$color[3],
91
+ $color[4].$color[5]);
92
+ elseif (strlen($color) == 3)
93
+ list($r, $g, $b) = array($color[0].$color[0], $color[1].$color[1], $color[2].$color[2]);
94
+ else
95
+ return false;
96
+ $r = hexdec($r); $g = hexdec($g); $b = hexdec($b);
97
+ return "rgba(".$r.", ".$g.", ".$b.", 1)";
98
+ }
99
+ }
100
+ if (!function_exists("wpdreams_four_to_string")) {
101
+ function wpdreams_four_to_string($data) {
102
+ // 1.Top 2.Bottom 3.Right 4.Left
103
+ preg_match("/\|\|(.*?)\|\|(.*?)\|\|(.*?)\|\|(.*?)\|\|/", $data, $matches);
104
+ // 1.Top 3.Right 2.Bottom 4.Left
105
+ return $matches[1]." ".$matches[3]." ".$matches[2]." ".$matches[4];
106
+ }
107
+ }
108
+
109
+
110
+ if (!function_exists("wpdreams_box_shadow_css")) {
111
+ function wpdreams_box_shadow_css($css) {
112
+ $css = str_replace("\n", "", $css);
113
+ preg_match("/box-shadow:(.*?)px (.*?)px (.*?)px (.*?)px (.*?);/", $css, $matches);
114
+ $ci = $matches[5];
115
+ $hlength = $matches[1];
116
+ $vlength = $matches[2];
117
+ $blurradius = $matches[3];
118
+ $spread = $matches[4];
119
+ $moz_blur = ($blurradius>2)?$blurradius - 2:0;
120
+ if ($hlength==0 && $vlength==0 && $blurradius==0 && $spread==0) {
121
+ echo "box-shadow: none;";
122
+ } else {
123
+ echo "box-shadow:".$hlength."px ".$vlength."px ".$moz_blur."px ".$spread."px ".$ci.";";
124
+ echo "-webkit-box-shadow:".$hlength."px ".$vlength."px ".$blurradius."px ".$spread."px ".$ci.";";
125
+ echo "-ms-box-shadow:".$hlength."px ".$vlength."px ".$blurradius."px ".$spread."px ".$ci.";";
126
+ }
127
+ }
128
+ }
129
+
130
+ if (!function_exists("wpdreams_gradient_css")) {
131
+ function wpdreams_gradient_css($data, $print=true)
132
+ {
133
+
134
+ $data = str_replace("\n", "", $data);
135
+ preg_match("/(.*?)-(.*?)-(.*?)-(.*)/", $data, $matches);
136
+
137
+ if (!isset($matches[1]) || !isset($matches[2]) || !isset($matches[3])) {
138
+ // Probably only 1 color..
139
+ if ($print) echo "background: ".$data.";";
140
+ return "background: ".$data.";";
141
+ }
142
+
143
+ $type = $matches[1];
144
+ $deg = $matches[2];
145
+ $color1 = wpdreams_admin_hex2rgb($matches[3]);
146
+ $color2 = wpdreams_admin_hex2rgb($matches[4]);
147
+
148
+ // Check for full transparency
149
+ preg_match("/rgba\(.*?,.*?,.*?,[\s]*(.*?)\)/", $color1, $opacity1);
150
+ preg_match("/rgba\(.*?,.*?,.*?,[\s]*(.*?)\)/", $color2, $opacity2);
151
+ if (isset($opacity1[1]) && $opacity1[1] == "0" && isset($opacity2[1]) && $opacity2[1] == "0") {
152
+ if ($print) echo "background: transparent;";
153
+ return "background: transparent;";
154
+ }
155
+
156
+ ob_start();
157
+ //compatibility
158
+ /*if (strlen($color1)>7) {
159
+ preg_match("/\((.*?)\)/", $color1, $matches);
160
+ $colors = explode(',', $matches[1]);
161
+ echo "background: rgb($colors[0], $colors[1], $colors[2]);";
162
+ } else {
163
+ echo "background: ".$color1.";";
164
+ } */
165
+ //linear
166
+
167
+ if ($type!='0' || $type!=0) {
168
+ ?>
169
+ background-image: linear-gradient(<?php echo $deg; ?>deg, <?php echo $color1; ?>, <?php echo $color2; ?>);
170
+ background-image: -webkit-linear-gradient(<?php echo $deg; ?>deg, <?php echo $color1; ?>, <?php echo $color2; ?>);
171
+ background-image: -moz-linear-gradient(<?php echo $deg; ?>deg, <?php echo $color1; ?>, <?php echo $color2; ?>);
172
+ background-image: -o-linear-gradient(<?php echo $deg; ?>deg, <?php echo $color1; ?>, <?php echo $color2; ?>);
173
+ background-image: -ms-linear-gradient(<?php echo $deg; ?>deg, <?php echo $color1; ?>, <?php echo $color2; ?>);
174
+ <?php
175
+ } else {
176
+ //radial
177
+ ?>
178
+ background-image: -moz-radial-gradient(center, ellipse cover, <?php echo $color1; ?>, <?php echo $color2; ?>);
179
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, <?php echo $color1; ?>, <?php echo $color2; ?>);
180
+ background-image: -webkit-radial-gradient(center, ellipse cover, <?php echo $color1; ?>, <?php echo $color2; ?>);
181
+ background-image: -o-radial-gradient(center, ellipse cover, <?php echo $color1; ?>, <?php echo $color2; ?>);
182
+ background-image: -ms-radial-gradient(center, ellipse cover, <?php echo $color1; ?>, <?php echo $color2; ?>);
183
+ background-image: radial-gradient(ellipse at center, <?php echo $color1; ?>, <?php echo $color2; ?>);
184
+ <?php
185
+ }
186
+ $out = ob_get_clean();
187
+ if ($print) echo $out;
188
+ return $out;
189
+ }
190
+ }
191
+
192
+ if (!function_exists("wpdreams_gradient_css_rgba")) {
193
+ function wpdreams_gradient_css_rgba($data, $print=true)
194
+ {
195
+
196
+ $data = str_replace("\n", "", $data);
197
+ preg_match("/(.*?)-(.*?)-(.*?)-(.*)/", $data, $matches);
198
+
199
+ if (!isset($matches[1]) || !isset($matches[2]) || !isset($matches[3])) {
200
+ // Probably only 1 color..
201
+ echo "background: ".$data.";";
202
+ return;
203
+ }
204
+
205
+ $type = $matches[1];
206
+ $deg = $matches[2];
207
+ $color1 = wpdreams_admin_hex2rgb($matches[3]);
208
+ $color2 = wpdreams_admin_hex2rgb($matches[4]);
209
+
210
+ ob_start();
211
+ //compatibility
212
+
213
+
214
+ if ($type!='0' || $type!=0) {
215
+ ?>linear-gradient(<?php echo $deg; ?>deg, <?php echo $color1; ?>, <?php echo $color2; ?>)<?php
216
+ } else {
217
+ //radial
218
+ ?>radial-gradient(ellipse at center, <?php echo $color1; ?>, <?php echo $color2; ?>)<?php
219
+ }
220
+ $out = ob_get_clean();
221
+ if ($print) echo $out;
222
+ return $out;
223
+ }
224
+ }
225
+
226
+
227
+ if (!function_exists("wpdreams_border_width")) {
228
+ function wpdreams_border_width($css)
229
+ {
230
+ $css = str_replace("\n", "", $css);
231
+
232
+ preg_match("/border:(.*?)px (.*?) (.*?);/", $css, $matches);
233
+
234
+ return $matches[1];
235
+
236
+ }
237
+ }
238
+
239
+ if (!function_exists("wpdreams_width_from_px")) {
240
+ function wpdreams_width_from_px($css)
241
+ {
242
+ $css = str_replace("\n", "", $css);
243
+
244
+ preg_match("/(.*?)px/", $css, $matches);
245
+
246
+ return $matches[1];
247
+
248
+ }
249
+ }
250
+
251
+ if (!function_exists("wpdreams_x2")) {
252
+ function wpdreams_x2($url)
253
+ {
254
+ $ext = pathinfo($url, PATHINFO_EXTENSION);
255
+ return str_replace('.'.$ext, 'x2.'.$ext, $url);
256
+ }
257
+ }
258
+
259
+ if (!function_exists("wpdreams_in_array_r")) {
260
+ function wpdreams_in_array_r($needle, $haystack, $strict = false) {
261
+ foreach ($haystack as $item) {
262
+ if (($strict ? $item === $needle : $item == $needle) || (is_array($item) && in_array_r($needle, $item, $strict))) {
263
+ return true;
264
+ }
265
+ }
266
+
267
+ return false;
268
+ }
269
+ }
270
+
271
+ if (!function_exists("wpdreams_css_compress")) {
272
+ function wpdreams_css_compress ($code) {
273
+ $code = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $code);
274
+ $code = str_replace(array("\r\n", "\r", "\n", "\t", ' '), '', $code);
275
+ $code = str_replace('{ ', '{', $code);
276
+ $code = str_replace(' }', '}', $code);
277
+ $code = str_replace('; ', ';', $code);
278
+ return $code;
279
+ }
280
+ }
281
+
282
+ if (!function_exists("wpdreams_get_all_taxonomies")) {
283
+ function wpdreams_get_all_taxonomies() {
284
+ $args = array(
285
+ 'public' => true,
286
+ '_builtin' => false
287
+
288
+ );
289
+ $output = 'names'; // or objects
290
+ $operator = 'and'; // 'and' or 'or'
291
+ $taxonomies = get_taxonomies( $args, $output, $operator );
292
+ return $taxonomies;
293
+ }
294
+ }
295
+
296
+ if (!function_exists("wpdreams_get_all_terms")) {
297
+ function wpdreams_get_all_terms() {
298
+ $taxonomies = wpdreams_get_all_taxonomies();
299
+ $terms = array();
300
+ $_terms = array();
301
+ foreach ($taxonomies as $taxonomy) {
302
+ $_temp = get_terms($taxonomy, 'orderby=name');
303
+ foreach ($_temp as $k=>$v)
304
+ $terms[] = $v;
305
+ }
306
+ foreach ($terms as $k=>$v) {
307
+ $_terms[$v->term_id] = $v;
308
+ }
309
+ return $_terms;
310
+ }
311
+ }
312
+
313
+ if (!function_exists("wpdreams_get_all_term_ids")) {
314
+ function wpdreams_get_all_term_ids() {
315
+ $taxonomies = wpdreams_get_all_taxonomies();
316
+ $terms = array();
317
+ foreach ($taxonomies as $taxonomy) {
318
+ $_temp = get_terms($taxonomy, 'orderby=name');
319
+ foreach ($_temp as $k=>$v)
320
+ $terms[] = $v->term_id;
321
+ }
322
+ return $terms;
323
+ }
324
+ }
325
+ ?>
backend/settings/themes.json ADDED
@@ -0,0 +1,5143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Default": {
3
+ "container_width":"0",
4
+ "container_margin":"||0px||0px||0px||0px||",
5
+ "container_padding":"||5px||5px||5px||5px||",
6
+ "container_background":"0-80-rgb(250, 250, 250)-rgb(243, 243, 243)",
7
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:2px 2px 2px 2px;",
8
+ "container_shadow":"box-shadow:0px 0px 12px -6px rgb(0, 0, 0) inset;",
9
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(182, 182, 182);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgb(255, 255, 255);",
10
+ "container_title_margin":"||10px||5px||0px||10px||",
11
+ "search_box_height":"auto",
12
+ "search_box_margin":"||11px||11px||11px||11px||",
13
+ "search_box_padding":"||0px||0px||0px||0px||",
14
+ "search_box_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
15
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
16
+ "search_box_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
17
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
18
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
19
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
20
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
21
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(122, 122, 122);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
22
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(122, 122, 122);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
23
+ "filter_button_padding":"||5px||5px||10px||10px||",
24
+ "filter_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
25
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:16px 16px 16px 16px;",
26
+ "filter_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
27
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
28
+ "filter_dropdown_background":"rgb(255, 255, 255)",
29
+ "filter_dropdown_shadow":"box-shadow:0px 0px 4px -2px #000000 ;",
30
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
31
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
32
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
33
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
34
+ "sort_button_padding":"||5px||5px||10px||10px||",
35
+ "sort_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
36
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:16px 16px 16px 16px;",
37
+ "sort_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
38
+ "sort_button_arrow_show":"1",
39
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
40
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
41
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
42
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
43
+ "nav_buttons_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
44
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:18px 18px 18px 18px;",
45
+ "nav_buttons_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
46
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
47
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
48
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
49
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
50
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
51
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
52
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
53
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
54
+ "isotope_type":"masonry",
55
+ "isotope_item_width":"150px",
56
+ "isotope_item_background":"0-60-rgb(254, 254, 254)-rgb(254, 254, 254)",
57
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
58
+ "isotope_item_shadow":"box-shadow:0px 0px 18px -7px #000000 ;",
59
+ "slick_item_width":"150px",
60
+ "slick_item_background":"0-60-rgb(254, 254, 254)-rgb(254, 254, 254)",
61
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
62
+ "slick_item_shadow":"box-shadow:0px 0px 18px -7px #000000 ;",
63
+ "transitioning_type":"fxFerris",
64
+ "transitioning_image_position":"left",
65
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
66
+ "transitioning_height":"200px",
67
+ "transitioning_item_background":"0-60-rgb(254, 254, 254)-rgb(254, 254, 254)",
68
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
69
+ "transitioning_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
70
+ "title_on_image":"0",
71
+ "title_background_color":"rgba(100, 100, 100, 0)",
72
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:15px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
73
+ "title_font_color_hover":"rgb(66, 117, 148)",
74
+ "title_font_color_active":"rgb(66, 117, 148)",
75
+ "item_area_clickable":"1",
76
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(131, 131, 131);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
77
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
78
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
79
+ "custom_css_special":"[instance] .rpp_wrapper .rpp_item .rpp_content:before {width: 88%;content: '';border-bottom: 1px dashed #DDD;display: block;text-align: center;margin: -4px auto 4px;}"
80
+ },
81
+ "---Minimal Themes---": false,
82
+ "Minimal Grey": {
83
+ "container_width":"0",
84
+ "container_margin":"||0px||0px||0px||0px||",
85
+ "container_padding":"||5px||5px||5px||5px||",
86
+ "container_background":"1-260-rgb(233, 233, 233)-rgb(233, 233, 233)",
87
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
88
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
89
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
90
+ "container_title_margin":"||10px||7px||0px||9px||",
91
+ "search_box_height":"auto",
92
+ "search_box_margin":"||11px||11px||11px||11px||",
93
+ "search_box_padding":"||0px||0px||0px||0px||",
94
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
95
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
96
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
97
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
98
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
99
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
100
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
101
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
102
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
103
+ "filter_button_padding":"||5px||5px||10px||10px||",
104
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
105
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
106
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(0, 0, 0, 0.23) ;",
107
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
108
+ "filter_dropdown_background":"rgb(248, 248, 248)",
109
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.31) ;",
110
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
111
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
112
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
113
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
114
+ "sort_button_padding":"||5px||5px||10px||10px||",
115
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
116
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
117
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(0, 0, 0, 0.23) ;",
118
+ "sort_button_arrow_show":"1",
119
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
120
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
121
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
122
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
123
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
124
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
125
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(0, 0, 0, 0.25) ;",
126
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
127
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
128
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
129
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
130
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
131
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
132
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
133
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
134
+ "isotope_type":"masonry",
135
+ "isotope_item_width":"150px",
136
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
137
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
138
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgba(0, 0, 0, 0.3) ;",
139
+ "slick_item_width":"150px",
140
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
141
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
142
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgba(0, 0, 0, 0.23) ;",
143
+ "transitioning_type":"fxFerris",
144
+ "transitioning_image_position":"left",
145
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
146
+ "transitioning_height":"200px",
147
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
148
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
149
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgba(0, 0, 0, 0.38) ;",
150
+ "title_on_image":"0",
151
+ "title_background_color":"rgba(100, 100, 100, 0)",
152
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
153
+ "title_font_color_hover":"rgb(66, 117, 148)",
154
+ "title_font_color_active":"rgb(66, 117, 148)",
155
+ "item_area_clickable":"1",
156
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
157
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
158
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
159
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
160
+ },
161
+ "Minimal Grey Transparent": {
162
+ "container_width":"0",
163
+ "container_margin":"||0px||0px||0px||0px||",
164
+ "container_padding":"||5px||5px||5px||5px||",
165
+ "container_background":"1-260-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
166
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
167
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
168
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
169
+ "container_title_margin":"||10px||7px||0px||9px||",
170
+ "search_box_height":"auto",
171
+ "search_box_margin":"||11px||11px||11px||11px||",
172
+ "search_box_padding":"||0px||0px||0px||0px||",
173
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
174
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
175
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
176
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
177
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
178
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
179
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
180
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
181
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
182
+ "filter_button_padding":"||5px||5px||10px||10px||",
183
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
184
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
185
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(0, 0, 0, 0.23) ;",
186
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
187
+ "filter_dropdown_background":"rgb(248, 248, 248)",
188
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.31) ;",
189
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
190
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
191
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
192
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
193
+ "sort_button_padding":"||5px||5px||10px||10px||",
194
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
195
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
196
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(0, 0, 0, 0.23) ;",
197
+ "sort_button_arrow_show":"1",
198
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
199
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
200
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
201
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
202
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
203
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
204
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(0, 0, 0, 0.25) ;",
205
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
206
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
207
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
208
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
209
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
210
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
211
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
212
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
213
+ "isotope_type":"masonry",
214
+ "isotope_item_width":"150px",
215
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
216
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
217
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgba(0, 0, 0, 0.3) ;",
218
+ "slick_item_width":"150px",
219
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
220
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
221
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgba(0, 0, 0, 0.23) ;",
222
+ "transitioning_type":"fxFerris",
223
+ "transitioning_image_position":"left",
224
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
225
+ "transitioning_height":"200px",
226
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
227
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
228
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgba(0, 0, 0, 0.38) ;",
229
+ "title_on_image":"0",
230
+ "title_background_color":"rgba(100, 100, 100, 0)",
231
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
232
+ "title_font_color_hover":"rgb(66, 117, 148)",
233
+ "title_font_color_active":"rgb(66, 117, 148)",
234
+ "item_area_clickable":"1",
235
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
236
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
237
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
238
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
239
+ },
240
+ "Minimal Blue": {
241
+ "container_width":"0",
242
+ "container_margin":"||0px||0px||0px||0px||",
243
+ "container_padding":"||5px||5px||5px||5px||",
244
+ "container_background":"1-260-rgb(233, 233, 233)-rgb(233, 233, 233)",
245
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
246
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
247
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
248
+ "container_title_margin":"||10px||7px||0px||9px||",
249
+ "search_box_height":"auto",
250
+ "search_box_margin":"||11px||11px||11px||11px||",
251
+ "search_box_padding":"||0px||0px||0px||0px||",
252
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
253
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
254
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(20, 121, 172, 0.28) inset;",
255
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
256
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
257
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
258
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
259
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
260
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
261
+ "filter_button_padding":"||5px||5px||10px||10px||",
262
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
263
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
264
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(20, 121, 172, 0.23) ;",
265
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
266
+ "filter_dropdown_background":"rgb(248, 248, 248)",
267
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(20, 121, 172, 0.23) ;",
268
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
269
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
270
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
271
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
272
+ "sort_button_padding":"||5px||5px||10px||10px||",
273
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
274
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
275
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(20, 121, 172, 0.23) ;",
276
+ "sort_button_arrow_show":"1",
277
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
278
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
279
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
280
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
281
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
282
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
283
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(20, 121, 172, 0.23) ;",
284
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
285
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
286
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
287
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
288
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
289
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
290
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
291
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
292
+ "isotope_type":"masonry",
293
+ "isotope_item_width":"150px",
294
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
295
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
296
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgba(20, 121, 172, 0.38) ;",
297
+ "slick_item_width":"150px",
298
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
299
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
300
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgba(20, 121, 172, 0.38) ;",
301
+ "transitioning_type":"fxFerris",
302
+ "transitioning_image_position":"left",
303
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
304
+ "transitioning_height":"200px",
305
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
306
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
307
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgba(20, 121, 172, 0.38) ;",
308
+ "title_on_image":"0",
309
+ "title_background_color":"rgba(100, 100, 100, 0)",
310
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
311
+ "title_font_color_hover":"rgb(66, 117, 148)",
312
+ "title_font_color_active":"rgb(66, 117, 148)",
313
+ "item_area_clickable":"1",
314
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
315
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
316
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
317
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
318
+ },
319
+ "Minimal Blue Transparent": {
320
+ "container_width":"0",
321
+ "container_margin":"||0px||0px||0px||0px||",
322
+ "container_padding":"||5px||5px||5px||5px||",
323
+ "container_background":"1-260-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
324
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
325
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
326
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
327
+ "container_title_margin":"||10px||7px||0px||9px||",
328
+ "search_box_height":"auto",
329
+ "search_box_margin":"||11px||11px||11px||11px||",
330
+ "search_box_padding":"||0px||0px||0px||0px||",
331
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
332
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
333
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(20, 121, 172, 0.28) inset;",
334
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
335
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
336
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
337
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
338
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
339
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
340
+ "filter_button_padding":"||5px||5px||10px||10px||",
341
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
342
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
343
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(20, 121, 172, 0.23) ;",
344
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
345
+ "filter_dropdown_background":"rgb(248, 248, 248)",
346
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(20, 121, 172, 0.23) ;",
347
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
348
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
349
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
350
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
351
+ "sort_button_padding":"||5px||5px||10px||10px||",
352
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
353
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
354
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(20, 121, 172, 0.23) ;",
355
+ "sort_button_arrow_show":"1",
356
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
357
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
358
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
359
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
360
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
361
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
362
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(20, 121, 172, 0.23) ;",
363
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
364
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
365
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
366
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
367
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
368
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
369
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
370
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
371
+ "isotope_type":"masonry",
372
+ "isotope_item_width":"150px",
373
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
374
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
375
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgba(20, 121, 172, 0.38) ;",
376
+ "slick_item_width":"150px",
377
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
378
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
379
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgba(20, 121, 172, 0.38) ;",
380
+ "transitioning_type":"fxFerris",
381
+ "transitioning_image_position":"left",
382
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
383
+ "transitioning_height":"200px",
384
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
385
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
386
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgba(20, 121, 172, 0.38) ;",
387
+ "title_on_image":"0",
388
+ "title_background_color":"rgba(100, 100, 100, 0)",
389
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
390
+ "title_font_color_hover":"rgb(66, 117, 148)",
391
+ "title_font_color_active":"rgb(66, 117, 148)",
392
+ "item_area_clickable":"1",
393
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
394
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
395
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
396
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
397
+ },
398
+ "Minimal Green": {
399
+ "container_width":"0",
400
+ "container_margin":"||0px||0px||0px||0px||",
401
+ "container_padding":"||5px||5px||5px||5px||",
402
+ "container_background":"0-30-rgb(233, 233, 233)-rgb(233, 233, 233)",
403
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
404
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
405
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
406
+ "container_title_margin":"||10px||7px||0px||9px||",
407
+ "search_box_height":"auto",
408
+ "search_box_margin":"||11px||11px||11px||11px||",
409
+ "search_box_padding":"||0px||0px||0px||0px||",
410
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
411
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
412
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(20, 172, 83, 0.28) inset;",
413
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
414
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
415
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
416
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
417
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
418
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
419
+ "filter_button_padding":"||5px||5px||10px||10px||",
420
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
421
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
422
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(20, 172, 83, 0.23) ;",
423
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
424
+ "filter_dropdown_background":"rgb(248, 248, 248)",
425
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(20, 172, 83, 0.23) ;",
426
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
427
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
428
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
429
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
430
+ "sort_button_padding":"||5px||5px||10px||10px||",
431
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
432
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
433
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(20, 172, 83, 0.23) ;",
434
+ "sort_button_arrow_show":"1",
435
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
436
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
437
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
438
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
439
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
440
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
441
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(20, 172, 83, 0.23) ;",
442
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
443
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
444
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
445
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
446
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
447
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
448
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
449
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
450
+ "isotope_type":"masonry",
451
+ "isotope_item_width":"150px",
452
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
453
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
454
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgba(20, 172, 83, 0.38) ;",
455
+ "slick_item_width":"150px",
456
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
457
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
458
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgba(20, 172, 83, 0.38) ;",
459
+ "transitioning_type":"fxFerris",
460
+ "transitioning_image_position":"left",
461
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
462
+ "transitioning_height":"200px",
463
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
464
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
465
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgba(20, 172, 83, 0.38) ;",
466
+ "title_on_image":"0",
467
+ "title_background_color":"rgba(100, 100, 100, 0)",
468
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
469
+ "title_font_color_hover":"rgb(66, 117, 148)",
470
+ "title_font_color_active":"rgb(66, 117, 148)",
471
+ "item_area_clickable":"1",
472
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
473
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
474
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
475
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
476
+ },
477
+ "Minimal Green Transparent": {
478
+ "container_width":"0",
479
+ "container_margin":"||0px||0px||0px||0px||",
480
+ "container_padding":"||5px||5px||5px||5px||",
481
+ "container_background":"0-30-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
482
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
483
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
484
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
485
+ "container_title_margin":"||10px||7px||0px||9px||",
486
+ "search_box_height":"auto",
487
+ "search_box_margin":"||11px||11px||11px||11px||",
488
+ "search_box_padding":"||0px||0px||0px||0px||",
489
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
490
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
491
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(20, 172, 83, 0.28) inset;",
492
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
493
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
494
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
495
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
496
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
497
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
498
+ "filter_button_padding":"||5px||5px||10px||10px||",
499
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
500
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
501
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(20, 172, 83, 0.23) ;",
502
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
503
+ "filter_dropdown_background":"rgb(248, 248, 248)",
504
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(20, 172, 83, 0.23) ;",
505
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
506
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
507
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
508
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
509
+ "sort_button_padding":"||5px||5px||10px||10px||",
510
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
511
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
512
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(20, 172, 83, 0.23) ;",
513
+ "sort_button_arrow_show":"1",
514
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
515
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
516
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
517
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
518
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
519
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
520
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(20, 172, 83, 0.23) ;",
521
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
522
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
523
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
524
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
525
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
526
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
527
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
528
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
529
+ "isotope_type":"masonry",
530
+ "isotope_item_width":"150px",
531
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
532
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
533
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgba(20, 172, 83, 0.38) ;",
534
+ "slick_item_width":"150px",
535
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
536
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
537
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgba(20, 172, 83, 0.38) ;",
538
+ "transitioning_type":"fxFerris",
539
+ "transitioning_image_position":"left",
540
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
541
+ "transitioning_height":"200px",
542
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
543
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
544
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgba(20, 172, 83, 0.38) ;",
545
+ "title_on_image":"0",
546
+ "title_background_color":"rgba(100, 100, 100, 0)",
547
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
548
+ "title_font_color_hover":"rgb(66, 117, 148)",
549
+ "title_font_color_active":"rgb(66, 117, 148)",
550
+ "item_area_clickable":"1",
551
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
552
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
553
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
554
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
555
+ },
556
+ "Minimal Red": {
557
+ "container_width":"0",
558
+ "container_margin":"||0px||0px||0px||0px||",
559
+ "container_padding":"||5px||5px||5px||5px||",
560
+ "container_background":"0-30-rgb(233, 233, 233)-rgb(233, 233, 233)",
561
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
562
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
563
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
564
+ "container_title_margin":"||10px||7px||0px||9px||",
565
+ "search_box_height":"auto",
566
+ "search_box_margin":"||11px||11px||11px||11px||",
567
+ "search_box_padding":"||0px||0px||0px||0px||",
568
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
569
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
570
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(172, 45, 20, 0.28) inset;",
571
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
572
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
573
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
574
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
575
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
576
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
577
+ "filter_button_padding":"||5px||5px||10px||10px||",
578
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
579
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
580
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(172, 45, 20, 0.23) ;",
581
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
582
+ "filter_dropdown_background":"rgb(248, 248, 248)",
583
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(172, 45, 20, 0.23) ;",
584
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
585
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
586
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
587
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
588
+ "sort_button_padding":"||5px||5px||10px||10px||",
589
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
590
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
591
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(172, 45, 20, 0.23) ;",
592
+ "sort_button_arrow_show":"1",
593
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
594
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
595
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
596
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
597
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
598
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
599
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(172, 45, 20, 0.23) ;",
600
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
601
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
602
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
603
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
604
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
605
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
606
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
607
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
608
+ "isotope_type":"masonry",
609
+ "isotope_item_width":"150px",
610
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
611
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
612
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgba(172, 45, 20, 0.38) ;",
613
+ "slick_item_width":"150px",
614
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
615
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
616
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgba(172, 45, 20, 0.38) ;",
617
+ "transitioning_type":"fxFerris",
618
+ "transitioning_image_position":"left",
619
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
620
+ "transitioning_height":"200px",
621
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
622
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
623
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgba(172, 45, 20, 0.38) ;",
624
+ "title_on_image":"0",
625
+ "title_background_color":"rgba(100, 100, 100, 0)",
626
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
627
+ "title_font_color_hover":"rgb(66, 117, 148)",
628
+ "title_font_color_active":"rgb(66, 117, 148)",
629
+ "item_area_clickable":"1",
630
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
631
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
632
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
633
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
634
+ },
635
+ "Minimal Red Transparent": {
636
+ "container_width":"0",
637
+ "container_margin":"||0px||0px||0px||0px||",
638
+ "container_padding":"||5px||5px||5px||5px||",
639
+ "container_background":"0-30-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
640
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
641
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
642
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
643
+ "container_title_margin":"||10px||7px||0px||9px||",
644
+ "search_box_height":"auto",
645
+ "search_box_margin":"||11px||11px||11px||11px||",
646
+ "search_box_padding":"||0px||0px||0px||0px||",
647
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
648
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
649
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(172, 45, 20, 0.28) inset;",
650
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
651
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
652
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
653
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
654
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
655
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
656
+ "filter_button_padding":"||5px||5px||10px||10px||",
657
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
658
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
659
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(172, 45, 20, 0.23) ;",
660
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
661
+ "filter_dropdown_background":"rgb(248, 248, 248)",
662
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(172, 45, 20, 0.23) ;",
663
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
664
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
665
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
666
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
667
+ "sort_button_padding":"||5px||5px||10px||10px||",
668
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
669
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
670
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(172, 45, 20, 0.23) ;",
671
+ "sort_button_arrow_show":"1",
672
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
673
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
674
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
675
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
676
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
677
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
678
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(172, 45, 20, 0.23) ;",
679
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
680
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
681
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
682
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
683
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
684
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
685
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
686
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
687
+ "isotope_type":"masonry",
688
+ "isotope_item_width":"150px",
689
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
690
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
691
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgba(172, 45, 20, 0.38) ;",
692
+ "slick_item_width":"150px",
693
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
694
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
695
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgba(172, 45, 20, 0.38) ;",
696
+ "transitioning_type":"fxFerris",
697
+ "transitioning_image_position":"left",
698
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
699
+ "transitioning_height":"200px",
700
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
701
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
702
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgba(172, 45, 20, 0.38) ;",
703
+ "title_on_image":"0",
704
+ "title_background_color":"rgba(100, 100, 100, 0)",
705
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
706
+ "title_font_color_hover":"rgb(66, 117, 148)",
707
+ "title_font_color_active":"rgb(66, 117, 148)",
708
+ "item_area_clickable":"1",
709
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
710
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
711
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
712
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
713
+ },
714
+ "Minimal Orange": {
715
+ "container_width":"0",
716
+ "container_margin":"||0px||0px||0px||0px||",
717
+ "container_padding":"||5px||5px||5px||5px||",
718
+ "container_background":"0-30-rgb(233, 233, 233)-rgb(233, 233, 233)",
719
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
720
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
721
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
722
+ "container_title_margin":"||10px||7px||0px||9px||",
723
+ "search_box_height":"auto",
724
+ "search_box_margin":"||11px||11px||11px||11px||",
725
+ "search_box_padding":"||0px||0px||0px||0px||",
726
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
727
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
728
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(216, 120, 38, 0.28) inset;",
729
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
730
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
731
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
732
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
733
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
734
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
735
+ "filter_button_padding":"||5px||5px||10px||10px||",
736
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
737
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
738
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(216, 120, 38, 0.23) ;",
739
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
740
+ "filter_dropdown_background":"rgb(248, 248, 248)",
741
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(216, 120, 38, 0.23) ;",
742
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
743
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
744
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
745
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
746
+ "sort_button_padding":"||5px||5px||10px||10px||",
747
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
748
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
749
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(216, 120, 38, 0.23) ;",
750
+ "sort_button_arrow_show":"1",
751
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
752
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
753
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
754
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
755
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
756
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
757
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(216, 120, 38, 0.23) ;",
758
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
759
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
760
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
761
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
762
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
763
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
764
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
765
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
766
+ "isotope_type":"masonry",
767
+ "isotope_item_width":"150px",
768
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
769
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
770
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgba(216, 120, 38, 0.38) ;",
771
+ "slick_item_width":"150px",
772
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
773
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
774
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgba(216, 120, 38, 0.38) ;",
775
+ "transitioning_type":"fxFerris",
776
+ "transitioning_image_position":"left",
777
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
778
+ "transitioning_height":"200px",
779
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
780
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
781
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgba(216, 120, 38, 0.38) ;",
782
+ "title_on_image":"0",
783
+ "title_background_color":"rgba(100, 100, 100, 0)",
784
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
785
+ "title_font_color_hover":"rgb(66, 117, 148)",
786
+ "title_font_color_active":"rgb(66, 117, 148)",
787
+ "item_area_clickable":"1",
788
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
789
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
790
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
791
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
792
+ },
793
+ "Minimal Orange Transparent": {
794
+ "container_width":"0",
795
+ "container_margin":"||0px||0px||0px||0px||",
796
+ "container_padding":"||5px||5px||5px||5px||",
797
+ "container_background":"0-30-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
798
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
799
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
800
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
801
+ "container_title_margin":"||10px||7px||0px||9px||",
802
+ "search_box_height":"auto",
803
+ "search_box_margin":"||11px||11px||11px||11px||",
804
+ "search_box_padding":"||0px||0px||0px||0px||",
805
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
806
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
807
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(216, 120, 38, 0.28) inset;",
808
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
809
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
810
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
811
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
812
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
813
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
814
+ "filter_button_padding":"||5px||5px||10px||10px||",
815
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
816
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
817
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(216, 120, 38, 0.23) ;",
818
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
819
+ "filter_dropdown_background":"rgb(248, 248, 248)",
820
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(216, 120, 38, 0.23) ;",
821
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
822
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
823
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
824
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
825
+ "sort_button_padding":"||5px||5px||10px||10px||",
826
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
827
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
828
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(216, 120, 38, 0.23) ;",
829
+ "sort_button_arrow_show":"1",
830
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
831
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
832
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
833
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
834
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
835
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
836
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(216, 120, 38, 0.23) ;",
837
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
838
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
839
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
840
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
841
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
842
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
843
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
844
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
845
+ "isotope_type":"masonry",
846
+ "isotope_item_width":"150px",
847
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
848
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
849
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgba(216, 120, 38, 0.38) ;",
850
+ "slick_item_width":"150px",
851
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
852
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
853
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgba(216, 120, 38, 0.38) ;",
854
+ "transitioning_type":"fxFerris",
855
+ "transitioning_image_position":"left",
856
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
857
+ "transitioning_height":"200px",
858
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
859
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
860
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgba(216, 120, 38, 0.38) ;",
861
+ "title_on_image":"0",
862
+ "title_background_color":"rgba(100, 100, 100, 0)",
863
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
864
+ "title_font_color_hover":"rgb(66, 117, 148)",
865
+ "title_font_color_active":"rgb(66, 117, 148)",
866
+ "item_area_clickable":"1",
867
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
868
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
869
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
870
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
871
+ },
872
+ "Minimal Pink": {
873
+ "container_width":"0",
874
+ "container_margin":"||0px||0px||0px||0px||",
875
+ "container_padding":"||5px||5px||5px||5px||",
876
+ "container_background":"0-30-rgb(233, 233, 233)-rgb(233, 233, 233)",
877
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
878
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
879
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
880
+ "container_title_margin":"||10px||7px||0px||9px||",
881
+ "search_box_height":"auto",
882
+ "search_box_margin":"||11px||11px||11px||11px||",
883
+ "search_box_padding":"||0px||0px||0px||0px||",
884
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
885
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
886
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(153, 20, 172, 0.28) inset;",
887
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
888
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
889
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
890
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
891
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
892
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
893
+ "filter_button_padding":"||5px||5px||10px||10px||",
894
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
895
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
896
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(153, 20, 172, 0.23) ;",
897
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
898
+ "filter_dropdown_background":"rgb(248, 248, 248)",
899
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(153, 20, 172, 0.23) ;",
900
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
901
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
902
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
903
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
904
+ "sort_button_padding":"||5px||5px||10px||10px||",
905
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
906
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
907
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(153, 20, 172, 0.23) ;",
908
+ "sort_button_arrow_show":"1",
909
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
910
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
911
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
912
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
913
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
914
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
915
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(153, 20, 172, 0.23) ;",
916
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
917
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
918
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
919
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
920
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
921
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
922
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
923
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
924
+ "isotope_type":"masonry",
925
+ "isotope_item_width":"150px",
926
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
927
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
928
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgba(153, 20, 172, 0.38) ;",
929
+ "slick_item_width":"150px",
930
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
931
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
932
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgba(153, 20, 172, 0.38) ;",
933
+ "transitioning_type":"fxFerris",
934
+ "transitioning_image_position":"left",
935
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
936
+ "transitioning_height":"200px",
937
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
938
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
939
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgba(153, 20, 172, 0.38) ;",
940
+ "title_on_image":"0",
941
+ "title_background_color":"rgba(100, 100, 100, 0)",
942
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
943
+ "title_font_color_hover":"rgb(66, 117, 148)",
944
+ "title_font_color_active":"rgb(66, 117, 148)",
945
+ "item_area_clickable":"1",
946
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
947
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
948
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
949
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
950
+ },
951
+ "Minimal Pink Transparent": {
952
+ "container_width":"0",
953
+ "container_margin":"||0px||0px||0px||0px||",
954
+ "container_padding":"||5px||5px||5px||5px||",
955
+ "container_background":"0-30-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
956
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
957
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
958
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
959
+ "container_title_margin":"||10px||7px||0px||9px||",
960
+ "search_box_height":"auto",
961
+ "search_box_margin":"||11px||11px||11px||11px||",
962
+ "search_box_padding":"||0px||0px||0px||0px||",
963
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
964
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
965
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(153, 20, 172, 0.28) inset;",
966
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
967
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
968
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
969
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
970
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
971
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
972
+ "filter_button_padding":"||5px||5px||10px||10px||",
973
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
974
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
975
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(153, 20, 172, 0.23) ;",
976
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
977
+ "filter_dropdown_background":"rgb(248, 248, 248)",
978
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(153, 20, 172, 0.23) ;",
979
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
980
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
981
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
982
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
983
+ "sort_button_padding":"||5px||5px||10px||10px||",
984
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
985
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
986
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(153, 20, 172, 0.23) ;",
987
+ "sort_button_arrow_show":"1",
988
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
989
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
990
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
991
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
992
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
993
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
994
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(153, 20, 172, 0.23) ;",
995
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
996
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
997
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
998
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
999
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
1000
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
1001
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
1002
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
1003
+ "isotope_type":"masonry",
1004
+ "isotope_item_width":"150px",
1005
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1006
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1007
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgba(153, 20, 172, 0.38) ;",
1008
+ "slick_item_width":"150px",
1009
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1010
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
1011
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgba(153, 20, 172, 0.38) ;",
1012
+ "transitioning_type":"fxFerris",
1013
+ "transitioning_image_position":"left",
1014
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
1015
+ "transitioning_height":"200px",
1016
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1017
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1018
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgba(153, 20, 172, 0.38) ;",
1019
+ "title_on_image":"0",
1020
+ "title_background_color":"rgba(100, 100, 100, 0)",
1021
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1022
+ "title_font_color_hover":"rgb(66, 117, 148)",
1023
+ "title_font_color_active":"rgb(66, 117, 148)",
1024
+ "item_area_clickable":"1",
1025
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1026
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1027
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1028
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
1029
+ },
1030
+ "Minimal Brown": {
1031
+ "container_width":"0",
1032
+ "container_margin":"||0px||0px||0px||0px||",
1033
+ "container_padding":"||5px||5px||5px||5px||",
1034
+ "container_background":"0-30-rgb(233, 233, 233)-rgb(233, 233, 233)",
1035
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
1036
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
1037
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
1038
+ "container_title_margin":"||10px||7px||0px||9px||",
1039
+ "search_box_height":"auto",
1040
+ "search_box_margin":"||11px||11px||11px||11px||",
1041
+ "search_box_padding":"||0px||0px||0px||0px||",
1042
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1043
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
1044
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(113, 75, 23, 0.28) inset;",
1045
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1046
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1047
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
1048
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
1049
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1050
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1051
+ "filter_button_padding":"||5px||5px||10px||10px||",
1052
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1053
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1054
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(113, 75, 23, 0.23) ;",
1055
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1056
+ "filter_dropdown_background":"rgb(248, 248, 248)",
1057
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(113, 75, 23, 0.23) ;",
1058
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
1059
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
1060
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
1061
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1062
+ "sort_button_padding":"||5px||5px||10px||10px||",
1063
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1064
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1065
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(113, 75, 23, 0.23) ;",
1066
+ "sort_button_arrow_show":"1",
1067
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
1068
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
1069
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
1070
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1071
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1072
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1073
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(113, 75, 23, 0.23) ;",
1074
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
1075
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
1076
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
1077
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
1078
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
1079
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
1080
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
1081
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
1082
+ "isotope_type":"masonry",
1083
+ "isotope_item_width":"150px",
1084
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1085
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1086
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgba(113, 75, 23, 0.38) ;",
1087
+ "slick_item_width":"150px",
1088
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1089
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
1090
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgba(113, 75, 23, 0.38) ;",
1091
+ "transitioning_type":"fxFerris",
1092
+ "transitioning_image_position":"left",
1093
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
1094
+ "transitioning_height":"200px",
1095
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1096
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1097
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgba(113, 75, 23, 0.38) ;",
1098
+ "title_on_image":"0",
1099
+ "title_background_color":"rgba(100, 100, 100, 0)",
1100
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1101
+ "title_font_color_hover":"rgb(66, 117, 148)",
1102
+ "title_font_color_active":"rgb(66, 117, 148)",
1103
+ "item_area_clickable":"1",
1104
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1105
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1106
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1107
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
1108
+ },
1109
+ "Minimal Brown Transparent": {
1110
+ "container_width":"0",
1111
+ "container_margin":"||0px||0px||0px||0px||",
1112
+ "container_padding":"||5px||5px||5px||5px||",
1113
+ "container_background":"0-30-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
1114
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
1115
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
1116
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
1117
+ "container_title_margin":"||10px||7px||0px||9px||",
1118
+ "search_box_height":"auto",
1119
+ "search_box_margin":"||11px||11px||11px||11px||",
1120
+ "search_box_padding":"||0px||0px||0px||0px||",
1121
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1122
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
1123
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(113, 75, 23, 0.28) inset;",
1124
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1125
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1126
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
1127
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
1128
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1129
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1130
+ "filter_button_padding":"||5px||5px||10px||10px||",
1131
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1132
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1133
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(113, 75, 23, 0.23) ;",
1134
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1135
+ "filter_dropdown_background":"rgb(248, 248, 248)",
1136
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(113, 75, 23, 0.23) ;",
1137
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
1138
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
1139
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
1140
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1141
+ "sort_button_padding":"||5px||5px||10px||10px||",
1142
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1143
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1144
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(113, 75, 23, 0.23) ;",
1145
+ "sort_button_arrow_show":"1",
1146
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
1147
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
1148
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
1149
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1150
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1151
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1152
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(113, 75, 23, 0.23) ;",
1153
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
1154
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
1155
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
1156
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
1157
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
1158
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
1159
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
1160
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
1161
+ "isotope_type":"masonry",
1162
+ "isotope_item_width":"150px",
1163
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1164
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1165
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgba(113, 75, 23, 0.38) ;",
1166
+ "slick_item_width":"150px",
1167
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1168
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
1169
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgba(113, 75, 23, 0.38) ;",
1170
+ "transitioning_type":"fxFerris",
1171
+ "transitioning_image_position":"left",
1172
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
1173
+ "transitioning_height":"200px",
1174
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1175
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1176
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgba(113, 75, 23, 0.38) ;",
1177
+ "title_on_image":"0",
1178
+ "title_background_color":"rgba(100, 100, 100, 0)",
1179
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1180
+ "title_font_color_hover":"rgb(66, 117, 148)",
1181
+ "title_font_color_active":"rgb(66, 117, 148)",
1182
+ "item_area_clickable":"1",
1183
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1184
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1185
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1186
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
1187
+ },
1188
+ "Minimal Yellow": {
1189
+ "container_width":"0",
1190
+ "container_margin":"||0px||0px||0px||0px||",
1191
+ "container_padding":"||5px||5px||5px||5px||",
1192
+ "container_background":"0-30-rgb(233, 233, 233)-rgb(233, 233, 233)",
1193
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
1194
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
1195
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
1196
+ "container_title_margin":"||10px||7px||0px||9px||",
1197
+ "search_box_height":"auto",
1198
+ "search_box_margin":"||11px||11px||11px||11px||",
1199
+ "search_box_padding":"||0px||0px||0px||0px||",
1200
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1201
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
1202
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(221, 211, 137, 0.8) inset;",
1203
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1204
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1205
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
1206
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
1207
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1208
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1209
+ "filter_button_padding":"||5px||5px||10px||10px||",
1210
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1211
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1212
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(221, 211, 137, 0.8) ;",
1213
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1214
+ "filter_dropdown_background":"rgb(248, 248, 248)",
1215
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(221, 211, 137, 0.8) ;",
1216
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
1217
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
1218
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
1219
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1220
+ "sort_button_padding":"||5px||5px||10px||10px||",
1221
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1222
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1223
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(221, 211, 137, 0.8) ;",
1224
+ "sort_button_arrow_show":"1",
1225
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
1226
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
1227
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
1228
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1229
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1230
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1231
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(221, 211, 137, 0.8) ;",
1232
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
1233
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
1234
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
1235
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
1236
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
1237
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
1238
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
1239
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
1240
+ "isotope_type":"masonry",
1241
+ "isotope_item_width":"150px",
1242
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1243
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1244
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgb(221, 211, 137) ;",
1245
+ "slick_item_width":"150px",
1246
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1247
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
1248
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgb(221, 211, 137) ;",
1249
+ "transitioning_type":"fxFerris",
1250
+ "transitioning_image_position":"left",
1251
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
1252
+ "transitioning_height":"200px",
1253
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1254
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1255
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgb(221, 211, 137) ;",
1256
+ "title_on_image":"0",
1257
+ "title_background_color":"rgba(100, 100, 100, 0)",
1258
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1259
+ "title_font_color_hover":"rgb(66, 117, 148)",
1260
+ "title_font_color_active":"rgb(66, 117, 148)",
1261
+ "item_area_clickable":"1",
1262
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1263
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1264
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1265
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
1266
+ },
1267
+ "Minimal Yellow Transparent": {
1268
+ "container_width":"0",
1269
+ "container_margin":"||0px||0px||0px||0px||",
1270
+ "container_padding":"||5px||5px||5px||5px||",
1271
+ "container_background":"0-30-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
1272
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
1273
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
1274
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
1275
+ "container_title_margin":"||10px||7px||0px||9px||",
1276
+ "search_box_height":"auto",
1277
+ "search_box_margin":"||11px||11px||11px||11px||",
1278
+ "search_box_padding":"||0px||0px||0px||0px||",
1279
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1280
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
1281
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(221, 211, 137, 0.8) inset;",
1282
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1283
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1284
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
1285
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
1286
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1287
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1288
+ "filter_button_padding":"||5px||5px||10px||10px||",
1289
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1290
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1291
+ "filter_button_shadow":"box-shadow:0px 2px 0px 0px rgba(221, 211, 137, 0.8) ;",
1292
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1293
+ "filter_dropdown_background":"rgb(248, 248, 248)",
1294
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(221, 211, 137, 0.8) ;",
1295
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
1296
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
1297
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
1298
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1299
+ "sort_button_padding":"||5px||5px||10px||10px||",
1300
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1301
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1302
+ "sort_button_shadow":"box-shadow:0px 2px 0px 0px rgba(221, 211, 137, 0.8) ;",
1303
+ "sort_button_arrow_show":"1",
1304
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
1305
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
1306
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
1307
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1308
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1309
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1310
+ "nav_buttons_shadow":"box-shadow:0px 2px 0px 0px rgba(221, 211, 137, 0.8) ;",
1311
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
1312
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
1313
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
1314
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
1315
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
1316
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
1317
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
1318
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
1319
+ "isotope_type":"masonry",
1320
+ "isotope_item_width":"150px",
1321
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1322
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1323
+ "isotope_item_shadow":"box-shadow:0px 4px 0px 0px rgb(221, 211, 137) ;",
1324
+ "slick_item_width":"150px",
1325
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1326
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
1327
+ "slick_item_shadow":"box-shadow:0px 4px 0px 0px rgb(221, 211, 137) ;",
1328
+ "transitioning_type":"fxFerris",
1329
+ "transitioning_image_position":"left",
1330
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
1331
+ "transitioning_height":"200px",
1332
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1333
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1334
+ "transitioning_item_shadow":"box-shadow:0px 4px 0px 0px rgb(221, 211, 137) ;",
1335
+ "title_on_image":"0",
1336
+ "title_background_color":"rgba(100, 100, 100, 0)",
1337
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1338
+ "title_font_color_hover":"rgb(66, 117, 148)",
1339
+ "title_font_color_active":"rgb(66, 117, 148)",
1340
+ "item_area_clickable":"1",
1341
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1342
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1343
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1344
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
1345
+ },
1346
+ "---Artsy Themes---": false,
1347
+ "Artsy Grey": {
1348
+ "container_width":"0",
1349
+ "container_margin":"||0px||0px||0px||0px||",
1350
+ "container_padding":"||5px||5px||5px||5px||",
1351
+ "container_background":"1-260-rgb(233, 233, 233)-rgb(233, 233, 233)",
1352
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
1353
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
1354
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
1355
+ "container_title_margin":"||10px||7px||0px||9px||",
1356
+ "search_box_height":"auto",
1357
+ "search_box_margin":"||11px||11px||11px||11px||",
1358
+ "search_box_padding":"||0px||0px||0px||0px||",
1359
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1360
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
1361
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(0, 0, 0, 0.28) ;",
1362
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1363
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1364
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
1365
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
1366
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1367
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1368
+ "filter_button_padding":"||5px||5px||10px||10px||",
1369
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1370
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1371
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(0, 0, 0, 0.23) ;",
1372
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1373
+ "filter_dropdown_background":"rgb(248, 248, 248)",
1374
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.31) ;",
1375
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
1376
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
1377
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
1378
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1379
+ "sort_button_padding":"||5px||5px||10px||10px||",
1380
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1381
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1382
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(0, 0, 0, 0.23) ;",
1383
+ "sort_button_arrow_show":"1",
1384
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
1385
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
1386
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
1387
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1388
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1389
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
1390
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(0, 0, 0, 0.25) ;",
1391
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
1392
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
1393
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
1394
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
1395
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
1396
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
1397
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
1398
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
1399
+ "isotope_type":"masonry",
1400
+ "isotope_item_width":"150px",
1401
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1402
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1403
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgba(0, 0, 0, 0.3) ;",
1404
+ "slick_item_width":"150px",
1405
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1406
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
1407
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgba(0, 0, 0, 0.23) ;",
1408
+ "transitioning_type":"fxFerris",
1409
+ "transitioning_image_position":"left",
1410
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
1411
+ "transitioning_height":"200px",
1412
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1413
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1414
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgba(0, 0, 0, 0.38) ;",
1415
+ "title_on_image":"0",
1416
+ "title_background_color":"rgba(100, 100, 100, 0)",
1417
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1418
+ "title_font_color_hover":"rgb(66, 117, 148)",
1419
+ "title_font_color_active":"rgb(66, 117, 148)",
1420
+ "item_area_clickable":"1",
1421
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1422
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1423
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1424
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
1425
+ },
1426
+ "Artsy Grey Transparent": {
1427
+ "container_width":"0",
1428
+ "container_margin":"||0px||0px||0px||0px||",
1429
+ "container_padding":"||5px||5px||5px||5px||",
1430
+ "container_background":"1-260-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
1431
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
1432
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
1433
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
1434
+ "container_title_margin":"||10px||7px||0px||9px||",
1435
+ "search_box_height":"auto",
1436
+ "search_box_margin":"||11px||11px||11px||11px||",
1437
+ "search_box_padding":"||0px||0px||0px||0px||",
1438
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1439
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
1440
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(0, 0, 0, 0.28) ;",
1441
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1442
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1443
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
1444
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
1445
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1446
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1447
+ "filter_button_padding":"||5px||5px||10px||10px||",
1448
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1449
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1450
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(0, 0, 0, 0.23) ;",
1451
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1452
+ "filter_dropdown_background":"rgb(248, 248, 248)",
1453
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.31) ;",
1454
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
1455
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
1456
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
1457
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1458
+ "sort_button_padding":"||5px||5px||10px||10px||",
1459
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1460
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1461
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(0, 0, 0, 0.23) ;",
1462
+ "sort_button_arrow_show":"1",
1463
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
1464
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
1465
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
1466
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1467
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1468
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
1469
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(0, 0, 0, 0.25) ;",
1470
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
1471
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
1472
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
1473
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
1474
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
1475
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
1476
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
1477
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
1478
+ "isotope_type":"masonry",
1479
+ "isotope_item_width":"150px",
1480
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1481
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1482
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgba(0, 0, 0, 0.3) ;",
1483
+ "slick_item_width":"150px",
1484
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1485
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
1486
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgba(0, 0, 0, 0.23) ;",
1487
+ "transitioning_type":"fxFerris",
1488
+ "transitioning_image_position":"left",
1489
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
1490
+ "transitioning_height":"200px",
1491
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1492
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1493
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgba(0, 0, 0, 0.38) ;",
1494
+ "title_on_image":"0",
1495
+ "title_background_color":"rgba(100, 100, 100, 0)",
1496
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1497
+ "title_font_color_hover":"rgb(66, 117, 148)",
1498
+ "title_font_color_active":"rgb(66, 117, 148)",
1499
+ "item_area_clickable":"1",
1500
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1501
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1502
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1503
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
1504
+ },
1505
+ "Artsy Blue": {
1506
+ "container_width":"0",
1507
+ "container_margin":"||0px||0px||0px||0px||",
1508
+ "container_padding":"||5px||5px||5px||5px||",
1509
+ "container_background":"1-260-rgb(233, 233, 233)-rgb(233, 233, 233)",
1510
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
1511
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
1512
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
1513
+ "container_title_margin":"||10px||7px||0px||9px||",
1514
+ "search_box_height":"auto",
1515
+ "search_box_margin":"||11px||11px||11px||11px||",
1516
+ "search_box_padding":"||0px||0px||0px||0px||",
1517
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1518
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
1519
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 121, 172, 0.28) ;",
1520
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1521
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1522
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
1523
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
1524
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1525
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1526
+ "filter_button_padding":"||5px||5px||10px||10px||",
1527
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1528
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1529
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 121, 172, 0.23) ;",
1530
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1531
+ "filter_dropdown_background":"rgb(248, 248, 248)",
1532
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(20, 121, 172, 0.23) ;",
1533
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
1534
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
1535
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
1536
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1537
+ "sort_button_padding":"||5px||5px||10px||10px||",
1538
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1539
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1540
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 121, 172, 0.23) ;",
1541
+ "sort_button_arrow_show":"1",
1542
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
1543
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
1544
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
1545
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1546
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1547
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
1548
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(20, 121, 172, 0.23) ;",
1549
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
1550
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
1551
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
1552
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
1553
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
1554
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
1555
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
1556
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
1557
+ "isotope_type":"masonry",
1558
+ "isotope_item_width":"150px",
1559
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1560
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1561
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 121, 172, 0.38) ;",
1562
+ "slick_item_width":"150px",
1563
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1564
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
1565
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 121, 172, 0.38) ;",
1566
+ "transitioning_type":"fxFerris",
1567
+ "transitioning_image_position":"left",
1568
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
1569
+ "transitioning_height":"200px",
1570
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1571
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1572
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 121, 172, 0.38) ;",
1573
+ "title_on_image":"0",
1574
+ "title_background_color":"rgba(100, 100, 100, 0)",
1575
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1576
+ "title_font_color_hover":"rgb(66, 117, 148)",
1577
+ "title_font_color_active":"rgb(66, 117, 148)",
1578
+ "item_area_clickable":"1",
1579
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1580
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1581
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1582
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
1583
+ },
1584
+ "Artsy Blue Transparent": {
1585
+ "container_width":"0",
1586
+ "container_margin":"||0px||0px||0px||0px||",
1587
+ "container_padding":"||5px||5px||5px||5px||",
1588
+ "container_background":"1-260-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
1589
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
1590
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
1591
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
1592
+ "container_title_margin":"||10px||7px||0px||9px||",
1593
+ "search_box_height":"auto",
1594
+ "search_box_margin":"||11px||11px||11px||11px||",
1595
+ "search_box_padding":"||0px||0px||0px||0px||",
1596
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1597
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
1598
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 121, 172, 0.28) ;",
1599
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1600
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1601
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
1602
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
1603
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1604
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1605
+ "filter_button_padding":"||5px||5px||10px||10px||",
1606
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1607
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1608
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 121, 172, 0.23) ;",
1609
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1610
+ "filter_dropdown_background":"rgb(248, 248, 248)",
1611
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(20, 121, 172, 0.23) ;",
1612
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
1613
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
1614
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
1615
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1616
+ "sort_button_padding":"||5px||5px||10px||10px||",
1617
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1618
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1619
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 121, 172, 0.23) ;",
1620
+ "sort_button_arrow_show":"1",
1621
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
1622
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
1623
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
1624
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1625
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1626
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
1627
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(20, 121, 172, 0.23) ;",
1628
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
1629
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
1630
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
1631
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
1632
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
1633
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
1634
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
1635
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
1636
+ "isotope_type":"masonry",
1637
+ "isotope_item_width":"150px",
1638
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1639
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1640
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 121, 172, 0.38) ;",
1641
+ "slick_item_width":"150px",
1642
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1643
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
1644
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 121, 172, 0.38) ;",
1645
+ "transitioning_type":"fxFerris",
1646
+ "transitioning_image_position":"left",
1647
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
1648
+ "transitioning_height":"200px",
1649
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1650
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1651
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 121, 172, 0.38) ;",
1652
+ "title_on_image":"0",
1653
+ "title_background_color":"rgba(100, 100, 100, 0)",
1654
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1655
+ "title_font_color_hover":"rgb(66, 117, 148)",
1656
+ "title_font_color_active":"rgb(66, 117, 148)",
1657
+ "item_area_clickable":"1",
1658
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1659
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1660
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1661
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
1662
+ },
1663
+ "Artsy Green": {
1664
+ "container_width":"0",
1665
+ "container_margin":"||0px||0px||0px||0px||",
1666
+ "container_padding":"||5px||5px||5px||5px||",
1667
+ "container_background":"0-30-rgb(233, 233, 233)-rgb(233, 233, 233)",
1668
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
1669
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
1670
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
1671
+ "container_title_margin":"||10px||7px||0px||9px||",
1672
+ "search_box_height":"auto",
1673
+ "search_box_margin":"||11px||11px||11px||11px||",
1674
+ "search_box_padding":"||0px||0px||0px||0px||",
1675
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1676
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
1677
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 172, 83, 0.28) ;",
1678
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1679
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1680
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
1681
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
1682
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1683
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1684
+ "filter_button_padding":"||5px||5px||10px||10px||",
1685
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1686
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1687
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 172, 83, 0.23) ;",
1688
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1689
+ "filter_dropdown_background":"rgb(248, 248, 248)",
1690
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(20, 172, 83, 0.23) ;",
1691
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
1692
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
1693
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
1694
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1695
+ "sort_button_padding":"||5px||5px||10px||10px||",
1696
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1697
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1698
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 172, 83, 0.23) ;",
1699
+ "sort_button_arrow_show":"1",
1700
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
1701
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
1702
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
1703
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1704
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1705
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
1706
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(20, 172, 83, 0.23) ;",
1707
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
1708
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
1709
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
1710
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
1711
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
1712
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
1713
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
1714
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
1715
+ "isotope_type":"masonry",
1716
+ "isotope_item_width":"150px",
1717
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1718
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1719
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 172, 83, 0.38) ;",
1720
+ "slick_item_width":"150px",
1721
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1722
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
1723
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 172, 83, 0.38) ;",
1724
+ "transitioning_type":"fxFerris",
1725
+ "transitioning_image_position":"left",
1726
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
1727
+ "transitioning_height":"200px",
1728
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1729
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1730
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 172, 83, 0.38) ;",
1731
+ "title_on_image":"0",
1732
+ "title_background_color":"rgba(100, 100, 100, 0)",
1733
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1734
+ "title_font_color_hover":"rgb(66, 117, 148)",
1735
+ "title_font_color_active":"rgb(66, 117, 148)",
1736
+ "item_area_clickable":"1",
1737
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1738
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1739
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1740
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
1741
+ },
1742
+ "Artsy Green Transparent": {
1743
+ "container_width":"0",
1744
+ "container_margin":"||0px||0px||0px||0px||",
1745
+ "container_padding":"||5px||5px||5px||5px||",
1746
+ "container_background":"0-30-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
1747
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
1748
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
1749
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
1750
+ "container_title_margin":"||10px||7px||0px||9px||",
1751
+ "search_box_height":"auto",
1752
+ "search_box_margin":"||11px||11px||11px||11px||",
1753
+ "search_box_padding":"||0px||0px||0px||0px||",
1754
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1755
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
1756
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 172, 83, 0.28) ;",
1757
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1758
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1759
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
1760
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
1761
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1762
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1763
+ "filter_button_padding":"||5px||5px||10px||10px||",
1764
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1765
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1766
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 172, 83, 0.23) ;",
1767
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1768
+ "filter_dropdown_background":"rgb(248, 248, 248)",
1769
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(20, 172, 83, 0.23) ;",
1770
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
1771
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
1772
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
1773
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1774
+ "sort_button_padding":"||5px||5px||10px||10px||",
1775
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1776
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1777
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 172, 83, 0.23) ;",
1778
+ "sort_button_arrow_show":"1",
1779
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
1780
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
1781
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
1782
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1783
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1784
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
1785
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(20, 172, 83, 0.23) ;",
1786
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
1787
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
1788
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
1789
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
1790
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
1791
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
1792
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
1793
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
1794
+ "isotope_type":"masonry",
1795
+ "isotope_item_width":"150px",
1796
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1797
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1798
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 172, 83, 0.38) ;",
1799
+ "slick_item_width":"150px",
1800
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1801
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
1802
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 172, 83, 0.38) ;",
1803
+ "transitioning_type":"fxFerris",
1804
+ "transitioning_image_position":"left",
1805
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
1806
+ "transitioning_height":"200px",
1807
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1808
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1809
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgba(20, 172, 83, 0.38) ;",
1810
+ "title_on_image":"0",
1811
+ "title_background_color":"rgba(100, 100, 100, 0)",
1812
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1813
+ "title_font_color_hover":"rgb(66, 117, 148)",
1814
+ "title_font_color_active":"rgb(66, 117, 148)",
1815
+ "item_area_clickable":"1",
1816
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1817
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1818
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1819
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
1820
+ },
1821
+ "Artsy Red": {
1822
+ "container_width":"0",
1823
+ "container_margin":"||0px||0px||0px||0px||",
1824
+ "container_padding":"||5px||5px||5px||5px||",
1825
+ "container_background":"0-30-rgb(233, 233, 233)-rgb(233, 233, 233)",
1826
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
1827
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
1828
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
1829
+ "container_title_margin":"||10px||7px||0px||9px||",
1830
+ "search_box_height":"auto",
1831
+ "search_box_margin":"||11px||11px||11px||11px||",
1832
+ "search_box_padding":"||0px||0px||0px||0px||",
1833
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1834
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
1835
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(172, 45, 20, 0.28) ;",
1836
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1837
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1838
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
1839
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
1840
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1841
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1842
+ "filter_button_padding":"||5px||5px||10px||10px||",
1843
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1844
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1845
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(172, 45, 20, 0.23) ;",
1846
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1847
+ "filter_dropdown_background":"rgb(248, 248, 248)",
1848
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(172, 45, 20, 0.23) ;",
1849
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
1850
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
1851
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
1852
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1853
+ "sort_button_padding":"||5px||5px||10px||10px||",
1854
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1855
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1856
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(172, 45, 20, 0.23) ;",
1857
+ "sort_button_arrow_show":"1",
1858
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
1859
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
1860
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
1861
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1862
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1863
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
1864
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(172, 45, 20, 0.23) ;",
1865
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
1866
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
1867
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
1868
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
1869
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
1870
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
1871
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
1872
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
1873
+ "isotope_type":"masonry",
1874
+ "isotope_item_width":"150px",
1875
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1876
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1877
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgba(172, 45, 20, 0.38) ;",
1878
+ "slick_item_width":"150px",
1879
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1880
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
1881
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgba(172, 45, 20, 0.38) ;",
1882
+ "transitioning_type":"fxFerris",
1883
+ "transitioning_image_position":"left",
1884
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
1885
+ "transitioning_height":"200px",
1886
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1887
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1888
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgba(172, 45, 20, 0.38) ;",
1889
+ "title_on_image":"0",
1890
+ "title_background_color":"rgba(100, 100, 100, 0)",
1891
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1892
+ "title_font_color_hover":"rgb(66, 117, 148)",
1893
+ "title_font_color_active":"rgb(66, 117, 148)",
1894
+ "item_area_clickable":"1",
1895
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1896
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1897
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1898
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
1899
+ },
1900
+ "Artsy Red Transparent": {
1901
+ "container_width":"0",
1902
+ "container_margin":"||0px||0px||0px||0px||",
1903
+ "container_padding":"||5px||5px||5px||5px||",
1904
+ "container_background":"0-30-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
1905
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
1906
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
1907
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
1908
+ "container_title_margin":"||10px||7px||0px||9px||",
1909
+ "search_box_height":"auto",
1910
+ "search_box_margin":"||11px||11px||11px||11px||",
1911
+ "search_box_padding":"||0px||0px||0px||0px||",
1912
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1913
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
1914
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(172, 45, 20, 0.28) ;",
1915
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1916
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1917
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
1918
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
1919
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1920
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1921
+ "filter_button_padding":"||5px||5px||10px||10px||",
1922
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1923
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1924
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(172, 45, 20, 0.23) ;",
1925
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1926
+ "filter_dropdown_background":"rgb(248, 248, 248)",
1927
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(172, 45, 20, 0.23) ;",
1928
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
1929
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
1930
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
1931
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1932
+ "sort_button_padding":"||5px||5px||10px||10px||",
1933
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1934
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
1935
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(172, 45, 20, 0.23) ;",
1936
+ "sort_button_arrow_show":"1",
1937
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
1938
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
1939
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
1940
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1941
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1942
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
1943
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(172, 45, 20, 0.23) ;",
1944
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
1945
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
1946
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
1947
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
1948
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
1949
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
1950
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
1951
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
1952
+ "isotope_type":"masonry",
1953
+ "isotope_item_width":"150px",
1954
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1955
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1956
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgba(172, 45, 20, 0.38) ;",
1957
+ "slick_item_width":"150px",
1958
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1959
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
1960
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgba(172, 45, 20, 0.38) ;",
1961
+ "transitioning_type":"fxFerris",
1962
+ "transitioning_image_position":"left",
1963
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
1964
+ "transitioning_height":"200px",
1965
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1966
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
1967
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgba(172, 45, 20, 0.38) ;",
1968
+ "title_on_image":"0",
1969
+ "title_background_color":"rgba(100, 100, 100, 0)",
1970
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1971
+ "title_font_color_hover":"rgb(66, 117, 148)",
1972
+ "title_font_color_active":"rgb(66, 117, 148)",
1973
+ "item_area_clickable":"1",
1974
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1975
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1976
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1977
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
1978
+ },
1979
+ "Artsy Orange": {
1980
+ "container_width":"0",
1981
+ "container_margin":"||0px||0px||0px||0px||",
1982
+ "container_padding":"||5px||5px||5px||5px||",
1983
+ "container_background":"0-30-rgb(233, 233, 233)-rgb(233, 233, 233)",
1984
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
1985
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
1986
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
1987
+ "container_title_margin":"||10px||7px||0px||9px||",
1988
+ "search_box_height":"auto",
1989
+ "search_box_margin":"||11px||11px||11px||11px||",
1990
+ "search_box_padding":"||0px||0px||0px||0px||",
1991
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
1992
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
1993
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(216, 120, 38, 0.28) ;",
1994
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1995
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
1996
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
1997
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
1998
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
1999
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2000
+ "filter_button_padding":"||5px||5px||10px||10px||",
2001
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2002
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2003
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(216, 120, 38, 0.23) ;",
2004
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2005
+ "filter_dropdown_background":"rgb(248, 248, 248)",
2006
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(216, 120, 38, 0.23) ;",
2007
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2008
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
2009
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2010
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2011
+ "sort_button_padding":"||5px||5px||10px||10px||",
2012
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2013
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2014
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(216, 120, 38, 0.23) ;",
2015
+ "sort_button_arrow_show":"1",
2016
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
2017
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
2018
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
2019
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2020
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2021
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
2022
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(216, 120, 38, 0.23) ;",
2023
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
2024
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
2025
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
2026
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
2027
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
2028
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
2029
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
2030
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
2031
+ "isotope_type":"masonry",
2032
+ "isotope_item_width":"150px",
2033
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2034
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2035
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgba(216, 120, 38, 0.38) ;",
2036
+ "slick_item_width":"150px",
2037
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2038
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
2039
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgba(216, 120, 38, 0.38) ;",
2040
+ "transitioning_type":"fxFerris",
2041
+ "transitioning_image_position":"left",
2042
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
2043
+ "transitioning_height":"200px",
2044
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2045
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2046
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgba(216, 120, 38, 0.38) ;",
2047
+ "title_on_image":"0",
2048
+ "title_background_color":"rgba(100, 100, 100, 0)",
2049
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2050
+ "title_font_color_hover":"rgb(66, 117, 148)",
2051
+ "title_font_color_active":"rgb(66, 117, 148)",
2052
+ "item_area_clickable":"1",
2053
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2054
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2055
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2056
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
2057
+ },
2058
+ "Artsy Orange Transparent": {
2059
+ "container_width":"0",
2060
+ "container_margin":"||0px||0px||0px||0px||",
2061
+ "container_padding":"||5px||5px||5px||5px||",
2062
+ "container_background":"0-30-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
2063
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
2064
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
2065
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
2066
+ "container_title_margin":"||10px||7px||0px||9px||",
2067
+ "search_box_height":"auto",
2068
+ "search_box_margin":"||11px||11px||11px||11px||",
2069
+ "search_box_padding":"||0px||0px||0px||0px||",
2070
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2071
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
2072
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(216, 120, 38, 0.28) ;",
2073
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2074
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2075
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
2076
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
2077
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2078
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2079
+ "filter_button_padding":"||5px||5px||10px||10px||",
2080
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2081
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2082
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(216, 120, 38, 0.23) ;",
2083
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2084
+ "filter_dropdown_background":"rgb(248, 248, 248)",
2085
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(216, 120, 38, 0.23) ;",
2086
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2087
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
2088
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2089
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2090
+ "sort_button_padding":"||5px||5px||10px||10px||",
2091
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2092
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2093
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(216, 120, 38, 0.23) ;",
2094
+ "sort_button_arrow_show":"1",
2095
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
2096
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
2097
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
2098
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2099
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2100
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
2101
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(216, 120, 38, 0.23) ;",
2102
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
2103
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
2104
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
2105
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
2106
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
2107
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
2108
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
2109
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
2110
+ "isotope_type":"masonry",
2111
+ "isotope_item_width":"150px",
2112
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2113
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2114
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgba(216, 120, 38, 0.38) ;",
2115
+ "slick_item_width":"150px",
2116
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2117
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
2118
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgba(216, 120, 38, 0.38) ;",
2119
+ "transitioning_type":"fxFerris",
2120
+ "transitioning_image_position":"left",
2121
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
2122
+ "transitioning_height":"200px",
2123
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2124
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2125
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgba(216, 120, 38, 0.38) ;",
2126
+ "title_on_image":"0",
2127
+ "title_background_color":"rgba(100, 100, 100, 0)",
2128
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2129
+ "title_font_color_hover":"rgb(66, 117, 148)",
2130
+ "title_font_color_active":"rgb(66, 117, 148)",
2131
+ "item_area_clickable":"1",
2132
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2133
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2134
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2135
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
2136
+ },
2137
+ "Artsy Pink": {
2138
+ "container_width":"0",
2139
+ "container_margin":"||0px||0px||0px||0px||",
2140
+ "container_padding":"||5px||5px||5px||5px||",
2141
+ "container_background":"0-30-rgb(233, 233, 233)-rgb(233, 233, 233)",
2142
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
2143
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
2144
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
2145
+ "container_title_margin":"||10px||7px||0px||9px||",
2146
+ "search_box_height":"auto",
2147
+ "search_box_margin":"||11px||11px||11px||11px||",
2148
+ "search_box_padding":"||0px||0px||0px||0px||",
2149
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2150
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
2151
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(153, 20, 172, 0.28) ;",
2152
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2153
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2154
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
2155
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
2156
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2157
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2158
+ "filter_button_padding":"||5px||5px||10px||10px||",
2159
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2160
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2161
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(153, 20, 172, 0.23) ;",
2162
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2163
+ "filter_dropdown_background":"rgb(248, 248, 248)",
2164
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(153, 20, 172, 0.23) ;",
2165
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2166
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
2167
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2168
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2169
+ "sort_button_padding":"||5px||5px||10px||10px||",
2170
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2171
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2172
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(153, 20, 172, 0.23) ;",
2173
+ "sort_button_arrow_show":"1",
2174
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
2175
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
2176
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
2177
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2178
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2179
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
2180
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(153, 20, 172, 0.23) ;",
2181
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
2182
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
2183
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
2184
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
2185
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
2186
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
2187
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
2188
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
2189
+ "isotope_type":"masonry",
2190
+ "isotope_item_width":"150px",
2191
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2192
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2193
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgba(153, 20, 172, 0.38) ;",
2194
+ "slick_item_width":"150px",
2195
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2196
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
2197
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgba(153, 20, 172, 0.38) ;",
2198
+ "transitioning_type":"fxFerris",
2199
+ "transitioning_image_position":"left",
2200
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
2201
+ "transitioning_height":"200px",
2202
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2203
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2204
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgba(153, 20, 172, 0.38) ;",
2205
+ "title_on_image":"0",
2206
+ "title_background_color":"rgba(100, 100, 100, 0)",
2207
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2208
+ "title_font_color_hover":"rgb(66, 117, 148)",
2209
+ "title_font_color_active":"rgb(66, 117, 148)",
2210
+ "item_area_clickable":"1",
2211
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2212
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2213
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2214
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
2215
+ },
2216
+ "Artsy Pink Transparent": {
2217
+ "container_width":"0",
2218
+ "container_margin":"||0px||0px||0px||0px||",
2219
+ "container_padding":"||5px||5px||5px||5px||",
2220
+ "container_background":"0-30-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
2221
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
2222
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
2223
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
2224
+ "container_title_margin":"||10px||7px||0px||9px||",
2225
+ "search_box_height":"auto",
2226
+ "search_box_margin":"||11px||11px||11px||11px||",
2227
+ "search_box_padding":"||0px||0px||0px||0px||",
2228
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2229
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
2230
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(153, 20, 172, 0.28) ;",
2231
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2232
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2233
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
2234
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
2235
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2236
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2237
+ "filter_button_padding":"||5px||5px||10px||10px||",
2238
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2239
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2240
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(153, 20, 172, 0.23) ;",
2241
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2242
+ "filter_dropdown_background":"rgb(248, 248, 248)",
2243
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(153, 20, 172, 0.23) ;",
2244
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2245
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
2246
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2247
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2248
+ "sort_button_padding":"||5px||5px||10px||10px||",
2249
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2250
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2251
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(153, 20, 172, 0.23) ;",
2252
+ "sort_button_arrow_show":"1",
2253
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
2254
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
2255
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
2256
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2257
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2258
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
2259
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(153, 20, 172, 0.23) ;",
2260
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
2261
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
2262
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
2263
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
2264
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
2265
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
2266
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
2267
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
2268
+ "isotope_type":"masonry",
2269
+ "isotope_item_width":"150px",
2270
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2271
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2272
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgba(153, 20, 172, 0.38) ;",
2273
+ "slick_item_width":"150px",
2274
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2275
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
2276
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgba(153, 20, 172, 0.38) ;",
2277
+ "transitioning_type":"fxFerris",
2278
+ "transitioning_image_position":"left",
2279
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
2280
+ "transitioning_height":"200px",
2281
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2282
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2283
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgba(153, 20, 172, 0.38) ;",
2284
+ "title_on_image":"0",
2285
+ "title_background_color":"rgba(100, 100, 100, 0)",
2286
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2287
+ "title_font_color_hover":"rgb(66, 117, 148)",
2288
+ "title_font_color_active":"rgb(66, 117, 148)",
2289
+ "item_area_clickable":"1",
2290
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2291
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2292
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2293
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
2294
+ },
2295
+ "Artsy Brown": {
2296
+ "container_width":"0",
2297
+ "container_margin":"||0px||0px||0px||0px||",
2298
+ "container_padding":"||5px||5px||5px||5px||",
2299
+ "container_background":"0-30-rgb(233, 233, 233)-rgb(233, 233, 233)",
2300
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
2301
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
2302
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
2303
+ "container_title_margin":"||10px||7px||0px||9px||",
2304
+ "search_box_height":"auto",
2305
+ "search_box_margin":"||11px||11px||11px||11px||",
2306
+ "search_box_padding":"||0px||0px||0px||0px||",
2307
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2308
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
2309
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(113, 75, 23, 0.28) ;",
2310
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2311
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2312
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
2313
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
2314
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2315
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2316
+ "filter_button_padding":"||5px||5px||10px||10px||",
2317
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2318
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2319
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(113, 75, 23, 0.23) ;",
2320
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2321
+ "filter_dropdown_background":"rgb(248, 248, 248)",
2322
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(113, 75, 23, 0.23) ;",
2323
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2324
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
2325
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2326
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2327
+ "sort_button_padding":"||5px||5px||10px||10px||",
2328
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2329
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2330
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(113, 75, 23, 0.23) ;",
2331
+ "sort_button_arrow_show":"1",
2332
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
2333
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
2334
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
2335
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2336
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2337
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
2338
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(113, 75, 23, 0.23) ;",
2339
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
2340
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
2341
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
2342
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
2343
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
2344
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
2345
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
2346
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
2347
+ "isotope_type":"masonry",
2348
+ "isotope_item_width":"150px",
2349
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2350
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2351
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgba(113, 75, 23, 0.38) ;",
2352
+ "slick_item_width":"150px",
2353
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2354
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
2355
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgba(113, 75, 23, 0.38) ;",
2356
+ "transitioning_type":"fxFerris",
2357
+ "transitioning_image_position":"left",
2358
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
2359
+ "transitioning_height":"200px",
2360
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2361
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2362
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgba(113, 75, 23, 0.38) ;",
2363
+ "title_on_image":"0",
2364
+ "title_background_color":"rgba(100, 100, 100, 0)",
2365
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2366
+ "title_font_color_hover":"rgb(66, 117, 148)",
2367
+ "title_font_color_active":"rgb(66, 117, 148)",
2368
+ "item_area_clickable":"1",
2369
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2370
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2371
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2372
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
2373
+ },
2374
+ "Artsy Brown Transparent": {
2375
+ "container_width":"0",
2376
+ "container_margin":"||0px||0px||0px||0px||",
2377
+ "container_padding":"||5px||5px||5px||5px||",
2378
+ "container_background":"0-30-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
2379
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
2380
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
2381
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
2382
+ "container_title_margin":"||10px||7px||0px||9px||",
2383
+ "search_box_height":"auto",
2384
+ "search_box_margin":"||11px||11px||11px||11px||",
2385
+ "search_box_padding":"||0px||0px||0px||0px||",
2386
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2387
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
2388
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(113, 75, 23, 0.28) ;",
2389
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2390
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2391
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
2392
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
2393
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2394
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2395
+ "filter_button_padding":"||5px||5px||10px||10px||",
2396
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2397
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2398
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(113, 75, 23, 0.23) ;",
2399
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2400
+ "filter_dropdown_background":"rgb(248, 248, 248)",
2401
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(113, 75, 23, 0.23) ;",
2402
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2403
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
2404
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2405
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2406
+ "sort_button_padding":"||5px||5px||10px||10px||",
2407
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2408
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2409
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(113, 75, 23, 0.23) ;",
2410
+ "sort_button_arrow_show":"1",
2411
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
2412
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
2413
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
2414
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2415
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2416
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
2417
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(113, 75, 23, 0.23) ;",
2418
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
2419
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
2420
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
2421
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
2422
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
2423
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
2424
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
2425
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
2426
+ "isotope_type":"masonry",
2427
+ "isotope_item_width":"150px",
2428
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2429
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2430
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgba(113, 75, 23, 0.38) ;",
2431
+ "slick_item_width":"150px",
2432
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2433
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
2434
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgba(113, 75, 23, 0.38) ;",
2435
+ "transitioning_type":"fxFerris",
2436
+ "transitioning_image_position":"left",
2437
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
2438
+ "transitioning_height":"200px",
2439
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2440
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2441
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgba(113, 75, 23, 0.38) ;",
2442
+ "title_on_image":"0",
2443
+ "title_background_color":"rgba(100, 100, 100, 0)",
2444
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2445
+ "title_font_color_hover":"rgb(66, 117, 148)",
2446
+ "title_font_color_active":"rgb(66, 117, 148)",
2447
+ "item_area_clickable":"1",
2448
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2449
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2450
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2451
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
2452
+ },
2453
+ "Artsy Yellow": {
2454
+ "container_width":"0",
2455
+ "container_margin":"||0px||0px||0px||0px||",
2456
+ "container_padding":"||5px||5px||5px||5px||",
2457
+ "container_background":"0-30-rgb(233, 233, 233)-rgb(233, 233, 233)",
2458
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
2459
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
2460
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
2461
+ "container_title_margin":"||10px||7px||0px||9px||",
2462
+ "search_box_height":"auto",
2463
+ "search_box_margin":"||11px||11px||11px||11px||",
2464
+ "search_box_padding":"||0px||0px||0px||0px||",
2465
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2466
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
2467
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(221, 211, 137, 0.8) ;",
2468
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2469
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2470
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
2471
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
2472
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2473
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2474
+ "filter_button_padding":"||5px||5px||10px||10px||",
2475
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2476
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2477
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(221, 211, 137, 0.8) ;",
2478
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2479
+ "filter_dropdown_background":"rgb(248, 248, 248)",
2480
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(221, 211, 137, 0.8) ;",
2481
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2482
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
2483
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2484
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2485
+ "sort_button_padding":"||5px||5px||10px||10px||",
2486
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2487
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2488
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(221, 211, 137, 0.8) ;",
2489
+ "sort_button_arrow_show":"1",
2490
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
2491
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
2492
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
2493
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2494
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2495
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
2496
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(221, 211, 137, 0.8) ;",
2497
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
2498
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
2499
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
2500
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
2501
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
2502
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
2503
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
2504
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
2505
+ "isotope_type":"masonry",
2506
+ "isotope_item_width":"150px",
2507
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2508
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2509
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgb(221, 211, 137) ;",
2510
+ "slick_item_width":"150px",
2511
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2512
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
2513
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgb(221, 211, 137) ;",
2514
+ "transitioning_type":"fxFerris",
2515
+ "transitioning_image_position":"left",
2516
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
2517
+ "transitioning_height":"200px",
2518
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2519
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2520
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgb(221, 211, 137) ;",
2521
+ "title_on_image":"0",
2522
+ "title_background_color":"rgba(100, 100, 100, 0)",
2523
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2524
+ "title_font_color_hover":"rgb(66, 117, 148)",
2525
+ "title_font_color_active":"rgb(66, 117, 148)",
2526
+ "item_area_clickable":"1",
2527
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2528
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2529
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2530
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
2531
+ },
2532
+ "Artsy Yellow Transparent": {
2533
+ "container_width":"0",
2534
+ "container_margin":"||0px||0px||0px||0px||",
2535
+ "container_padding":"||5px||5px||5px||5px||",
2536
+ "container_background":"0-30-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
2537
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
2538
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
2539
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
2540
+ "container_title_margin":"||10px||7px||0px||9px||",
2541
+ "search_box_height":"auto",
2542
+ "search_box_margin":"||11px||11px||11px||11px||",
2543
+ "search_box_padding":"||0px||0px||0px||0px||",
2544
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2545
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 5px 0px 5px;",
2546
+ "search_box_shadow":"box-shadow:2px 2px 0px 1px rgba(221, 211, 137, 0.8) ;",
2547
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2548
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2549
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
2550
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
2551
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2552
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
2553
+ "filter_button_padding":"||5px||5px||10px||10px||",
2554
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2555
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2556
+ "filter_button_shadow":"box-shadow:2px 2px 0px 1px rgba(221, 211, 137, 0.8) ;",
2557
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2558
+ "filter_dropdown_background":"rgb(248, 248, 248)",
2559
+ "filter_dropdown_shadow":"box-shadow:0px -2px 0px 0px rgba(221, 211, 137, 0.8) ;",
2560
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2561
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
2562
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2563
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2564
+ "sort_button_padding":"||5px||5px||10px||10px||",
2565
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2566
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 5px 0px 5px;",
2567
+ "sort_button_shadow":"box-shadow:2px 2px 0px 1px rgba(221, 211, 137, 0.8) ;",
2568
+ "sort_button_arrow_show":"1",
2569
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
2570
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
2571
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
2572
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2573
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2574
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
2575
+ "nav_buttons_shadow":"box-shadow:0px 3px 0px 0px rgba(221, 211, 137, 0.8) ;",
2576
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
2577
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
2578
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
2579
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
2580
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
2581
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
2582
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
2583
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
2584
+ "isotope_type":"masonry",
2585
+ "isotope_item_width":"150px",
2586
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2587
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2588
+ "isotope_item_shadow":"box-shadow:2px 2px 0px 1px rgb(221, 211, 137) ;",
2589
+ "slick_item_width":"150px",
2590
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2591
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 12px 0px 12px;",
2592
+ "slick_item_shadow":"box-shadow:2px 2px 0px 1px rgb(221, 211, 137) ;",
2593
+ "transitioning_type":"fxFerris",
2594
+ "transitioning_image_position":"left",
2595
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
2596
+ "transitioning_height":"200px",
2597
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
2598
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 12px 0px 12px;",
2599
+ "transitioning_item_shadow":"box-shadow:2px 2px 0px 1px rgb(221, 211, 137) ;",
2600
+ "title_on_image":"0",
2601
+ "title_background_color":"rgba(100, 100, 100, 0)",
2602
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2603
+ "title_font_color_hover":"rgb(66, 117, 148)",
2604
+ "title_font_color_active":"rgb(66, 117, 148)",
2605
+ "item_area_clickable":"1",
2606
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2607
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2608
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2609
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
2610
+ },
2611
+ "---Metro Themes---": false,
2612
+ "Metro Blue": {
2613
+ "container_width":"0",
2614
+ "container_margin":"||0px||0px||0px||0px||",
2615
+ "container_padding":"||10px||5px||5px||5px||",
2616
+ "container_background":"0-80-#1b58b8-#1b58b8",
2617
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2618
+ "container_shadow":"box-shadow:0px 0px 12px -6px rgb(0, 0, 0) inset;",
2619
+ "container_font":"font-weight:normal;font-family:--g--Lato;color:rgb(243, 243, 243);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2620
+ "container_title_margin":"||10px||0px||0px||10px||",
2621
+ "search_box_height":"auto",
2622
+ "search_box_margin":"||11px||11px||11px||11px||",
2623
+ "search_box_padding":"||0px||0px||0px||0px||",
2624
+ "search_box_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2625
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
2626
+ "search_box_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2627
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2628
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2629
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
2630
+ "search_box_magnifier_fill":"rgb(241, 241, 241)",
2631
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2632
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2633
+ "filter_button_padding":"||5px||5px||10px||10px||",
2634
+ "filter_button_background":"0-60-rgb(79, 123, 184)-rgb(79, 123, 184)",
2635
+ "filter_button_border":"border:0px solid rgba(237, 237, 237, 0.4);border-radius:0px 0px 0px 0px;",
2636
+ "filter_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
2637
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2638
+ "filter_dropdown_background":"rgb(79, 123, 184)",
2639
+ "filter_dropdown_shadow":"box-shadow:0px 0px 4px -2px #000000 ;",
2640
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2641
+ "filter_dropdown_button_border":"border:0px none rgb(180, 220, 237);border-radius:16px 16px 16px 16px;",
2642
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2643
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(108, 108, 108);font-size:11px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2644
+ "sort_button_padding":"||5px||5px||10px||10px||",
2645
+ "sort_button_background":"0-60-rgb(79, 123, 184)-rgb(79, 123, 184)",
2646
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2647
+ "sort_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
2648
+ "sort_button_arrow_show":"1",
2649
+ "sort_button_arrow_color":"rgb(113, 66, 172)",
2650
+ "sort_button_arrow_bg_color":"rgb(255, 255, 255)",
2651
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 2px -5px rgb(0, 0, 0) inset;",
2652
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2653
+ "nav_buttons_background":"0-60-rgb(79, 123, 184)-rgb(79, 123, 184)",
2654
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:18px 18px 18px 18px;",
2655
+ "nav_buttons_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
2656
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
2657
+ "nav_buttons_arrow_fill":"rgb(243, 243, 243)",
2658
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
2659
+ "nav_buttons_magn_fill":"rgb(243, 243, 243)",
2660
+ "nav_buttons_magn_active_fill":"rgb(178, 204, 255)",
2661
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
2662
+ "nav_buttons_list_fill":"rgb(243, 243, 243)",
2663
+ "nav_buttons_list_active_fill":"rgb(178, 204, 255)",
2664
+ "isotope_type":"masonry",
2665
+ "isotope_item_width":"150px",
2666
+ "isotope_item_background":"0-60-#16499a-#16499a",
2667
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2668
+ "isotope_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
2669
+ "slick_item_width":"150px",
2670
+ "slick_item_background":"0-60-#16499a-#16499a",
2671
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2672
+ "slick_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
2673
+ "transitioning_type":"fxFerris",
2674
+ "transitioning_image_position":"left",
2675
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
2676
+ "transitioning_height":"200px",
2677
+ "transitioning_item_background":"0-60-#16499a-#16499a",
2678
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2679
+ "transitioning_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
2680
+ "title_on_image":"1",
2681
+ "title_background_color":"rgba(31, 174, 255, 0.6)",
2682
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(241, 241, 241);font-size:16px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2683
+ "title_font_color_hover":"rgba(184, 229, 255, 0.8)",
2684
+ "title_font_color_active":"rgba(238, 249, 255, 0.69)",
2685
+ "item_area_clickable":"0",
2686
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.85);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2687
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2688
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2689
+ "custom_css_special":""
2690
+ },
2691
+ "Metro Light Blue": {
2692
+ "container_width":"0",
2693
+ "container_margin":"||0px||0px||0px||0px||",
2694
+ "container_padding":"||10px||5px||5px||5px||",
2695
+ "container_background":"0-80-#569ce3-#569ce3",
2696
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2697
+ "container_shadow":"box-shadow:0px 0px 12px -6px rgb(0, 0, 0) inset;",
2698
+ "container_font":"font-weight:normal;font-family:--g--Lato;color:rgb(243, 243, 243);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2699
+ "container_title_margin":"||10px||0px||0px||10px||",
2700
+ "search_box_height":"auto",
2701
+ "search_box_margin":"||11px||11px||11px||11px||",
2702
+ "search_box_padding":"||0px||0px||0px||0px||",
2703
+ "search_box_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2704
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
2705
+ "search_box_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2706
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2707
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2708
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
2709
+ "search_box_magnifier_fill":"rgb(241, 241, 241)",
2710
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2711
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2712
+ "filter_button_padding":"||5px||5px||10px||10px||",
2713
+ "filter_button_background":"0-60-#5788bf-#5788bf",
2714
+ "filter_button_border":"border:0px solid rgba(237, 237, 237, 0.4);border-radius:0px 0px 0px 0px;",
2715
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2716
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2717
+ "filter_dropdown_background":"#5788bf",
2718
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2719
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2720
+ "filter_dropdown_button_border":"border:0px none rgb(180, 220, 237);border-radius:16px 16px 16px 16px;",
2721
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2722
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(108, 108, 108);font-size:11px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2723
+ "sort_button_padding":"||5px||5px||10px||10px||",
2724
+ "sort_button_background":"0-60-#5788bf-#5788bf",
2725
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2726
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2727
+ "sort_button_arrow_show":"1",
2728
+ "sort_button_arrow_color":"#353535",
2729
+ "sort_button_arrow_bg_color":"rgb(255, 255, 255)",
2730
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 2px -5px rgb(0, 0, 0) inset;",
2731
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2732
+ "nav_buttons_background":"0-60-#5788bf-#5788bf",
2733
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2734
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2735
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
2736
+ "nav_buttons_arrow_fill":"rgb(243, 243, 243)",
2737
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
2738
+ "nav_buttons_magn_fill":"rgb(243, 243, 243)",
2739
+ "nav_buttons_magn_active_fill":"rgb(178, 204, 255)",
2740
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
2741
+ "nav_buttons_list_fill":"rgb(243, 243, 243)",
2742
+ "nav_buttons_list_active_fill":"rgb(178, 204, 255)",
2743
+ "isotope_type":"masonry",
2744
+ "isotope_item_width":"150px",
2745
+ "isotope_item_background":"0-60-#4294de-#4294de",
2746
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2747
+ "isotope_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2748
+ "slick_item_width":"150px",
2749
+ "slick_item_background":"0-60-#4294de-#4294de",
2750
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2751
+ "slick_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2752
+ "transitioning_type":"fxFerris",
2753
+ "transitioning_image_position":"left",
2754
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
2755
+ "transitioning_height":"200px",
2756
+ "transitioning_item_background":"0-60-#4294de-#4294de",
2757
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2758
+ "transitioning_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2759
+ "title_on_image":"1",
2760
+ "title_background_color":"rgba(86, 197, 255, 0.6)",
2761
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(241, 241, 241);font-size:16px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2762
+ "title_font_color_hover":"rgba(184, 229, 255, 0.8)",
2763
+ "title_font_color_active":"rgba(238, 249, 255, 0.69)",
2764
+ "item_area_clickable":"0",
2765
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.85);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2766
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2767
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2768
+ "custom_css_special":""
2769
+ },
2770
+ "Metro Persian Green": {
2771
+ "container_width":"0",
2772
+ "container_margin":"||0px||0px||0px||0px||",
2773
+ "container_padding":"||10px||5px||5px||5px||",
2774
+ "container_background":"0-80-#00aaaa-#00aaaa",
2775
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2776
+ "container_shadow":"box-shadow:0px 0px 12px -6px rgb(0, 0, 0) inset;",
2777
+ "container_font":"font-weight:normal;font-family:--g--Lato;color:rgb(243, 243, 243);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2778
+ "container_title_margin":"||10px||0px||0px||10px||",
2779
+ "search_box_height":"auto",
2780
+ "search_box_margin":"||11px||11px||11px||11px||",
2781
+ "search_box_padding":"||0px||0px||0px||0px||",
2782
+ "search_box_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2783
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
2784
+ "search_box_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2785
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2786
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2787
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
2788
+ "search_box_magnifier_fill":"rgb(241, 241, 241)",
2789
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2790
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2791
+ "filter_button_padding":"||5px||5px||10px||10px||",
2792
+ "filter_button_background":"0-60-#439d9a-#439d9a",
2793
+ "filter_button_border":"border:0px solid rgba(237, 237, 237, 0.4);border-radius:0px 0px 0px 0px;",
2794
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2795
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2796
+ "filter_dropdown_background":"#439d9a",
2797
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2798
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2799
+ "filter_dropdown_button_border":"border:0px none rgb(180, 220, 237);border-radius:16px 16px 16px 16px;",
2800
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2801
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(108, 108, 108);font-size:11px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2802
+ "sort_button_padding":"||5px||5px||10px||10px||",
2803
+ "sort_button_background":"0-60-#439d9a-#439d9a",
2804
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2805
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2806
+ "sort_button_arrow_show":"1",
2807
+ "sort_button_arrow_color":"rgb(53, 53, 53)",
2808
+ "sort_button_arrow_bg_color":"rgb(255, 255, 255)",
2809
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 2px -5px rgb(0, 0, 0) inset;",
2810
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2811
+ "nav_buttons_background":"0-60-#439d9a-#439d9a",
2812
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2813
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2814
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
2815
+ "nav_buttons_arrow_fill":"rgb(243, 243, 243)",
2816
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
2817
+ "nav_buttons_magn_fill":"rgb(243, 243, 243)",
2818
+ "nav_buttons_magn_active_fill":"#e7fffe",
2819
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
2820
+ "nav_buttons_list_fill":"rgb(243, 243, 243)",
2821
+ "nav_buttons_list_active_fill":"#e9fffe",
2822
+ "isotope_type":"masonry",
2823
+ "isotope_item_width":"150px",
2824
+ "isotope_item_background":"0-60-#008e8e-#008e8e",
2825
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2826
+ "isotope_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2827
+ "slick_item_width":"150px",
2828
+ "slick_item_background":"0-60-#008e8e-#008e8e",
2829
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2830
+ "slick_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2831
+ "transitioning_type":"fxFerris",
2832
+ "transitioning_image_position":"left",
2833
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
2834
+ "transitioning_height":"200px",
2835
+ "transitioning_item_background":"0-60-#008e8e-#008e8e",
2836
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2837
+ "transitioning_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2838
+ "title_on_image":"1",
2839
+ "title_background_color":"rgba(0, 216, 204, 0.6)",
2840
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(241, 241, 241);font-size:16px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2841
+ "title_font_color_hover":"#c1fffc",
2842
+ "title_font_color_active":"rgba(193, 255, 252, 0.68)",
2843
+ "item_area_clickable":"0",
2844
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.85);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2845
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2846
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2847
+ "custom_css_special":""
2848
+ },
2849
+ "Metro Lime": {
2850
+ "container_width":"0",
2851
+ "container_margin":"||0px||0px||0px||0px||",
2852
+ "container_padding":"||10px||5px||5px||5px||",
2853
+ "container_background":"0-80-#83ba1f-#83ba1f",
2854
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2855
+ "container_shadow":"box-shadow:0px 0px 12px -6px rgb(0, 0, 0) inset;",
2856
+ "container_font":"font-weight:normal;font-family:--g--Lato;color:rgb(243, 243, 243);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2857
+ "container_title_margin":"||10px||0px||0px||10px||",
2858
+ "search_box_height":"auto",
2859
+ "search_box_margin":"||11px||11px||11px||11px||",
2860
+ "search_box_padding":"||0px||0px||0px||0px||",
2861
+ "search_box_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2862
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
2863
+ "search_box_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2864
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2865
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2866
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
2867
+ "search_box_magnifier_fill":"rgb(241, 241, 241)",
2868
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2869
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2870
+ "filter_button_padding":"||5px||5px||10px||10px||",
2871
+ "filter_button_background":"0-60-#94bd4a-#94bd4a",
2872
+ "filter_button_border":"border:0px solid rgba(237, 237, 237, 0.4);border-radius:0px 0px 0px 0px;",
2873
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2874
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2875
+ "filter_dropdown_background":"#94bd4a",
2876
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2877
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2878
+ "filter_dropdown_button_border":"border:0px none rgb(180, 220, 237);border-radius:16px 16px 16px 16px;",
2879
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2880
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(108, 108, 108);font-size:11px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2881
+ "sort_button_padding":"||5px||5px||10px||10px||",
2882
+ "sort_button_background":"0-60-#94bd4a-#94bd4a",
2883
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2884
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2885
+ "sort_button_arrow_show":"1",
2886
+ "sort_button_arrow_color":"rgb(53, 53, 53)",
2887
+ "sort_button_arrow_bg_color":"rgb(255, 255, 255)",
2888
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 2px -5px rgb(0, 0, 0) inset;",
2889
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2890
+ "nav_buttons_background":"0-60-#94bd4a-#94bd4a",
2891
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2892
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2893
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
2894
+ "nav_buttons_arrow_fill":"rgb(243, 243, 243)",
2895
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
2896
+ "nav_buttons_magn_fill":"rgb(243, 243, 243)",
2897
+ "nav_buttons_magn_active_fill":"#e7fffe",
2898
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
2899
+ "nav_buttons_list_fill":"rgb(243, 243, 243)",
2900
+ "nav_buttons_list_active_fill":"#e9fffe",
2901
+ "isotope_type":"masonry",
2902
+ "isotope_item_width":"150px",
2903
+ "isotope_item_background":"0-60-#7bad18-#7bad18",
2904
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2905
+ "isotope_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2906
+ "slick_item_width":"150px",
2907
+ "slick_item_background":"0-60-#7bad18-#7bad18",
2908
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2909
+ "slick_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2910
+ "transitioning_type":"fxFerris",
2911
+ "transitioning_image_position":"left",
2912
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
2913
+ "transitioning_height":"200px",
2914
+ "transitioning_item_background":"0-60-#7bad18-#7bad18",
2915
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2916
+ "transitioning_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2917
+ "title_on_image":"1",
2918
+ "title_background_color":"rgba(145, 209, 0, 0.6)",
2919
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(241, 241, 241);font-size:16px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2920
+ "title_font_color_hover":"rgba(235, 255, 191, 0.85)",
2921
+ "title_font_color_active":"rgba(235, 255, 191, 0.55)",
2922
+ "item_area_clickable":"0",
2923
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.85);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2924
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2925
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2926
+ "custom_css_special":""
2927
+ },
2928
+ "Metro Orange Galliano": {
2929
+ "container_width":"0",
2930
+ "container_margin":"||0px||0px||0px||0px||",
2931
+ "container_padding":"||10px||5px||5px||5px||",
2932
+ "container_background":"0-80-#d39d09-#d39d09",
2933
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2934
+ "container_shadow":"box-shadow:0px 0px 12px -6px rgb(0, 0, 0) inset;",
2935
+ "container_font":"font-weight:normal;font-family:--g--Lato;color:rgb(243, 243, 243);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2936
+ "container_title_margin":"||10px||0px||0px||10px||",
2937
+ "search_box_height":"auto",
2938
+ "search_box_margin":"||11px||11px||11px||11px||",
2939
+ "search_box_padding":"||0px||0px||0px||0px||",
2940
+ "search_box_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2941
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
2942
+ "search_box_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2943
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2944
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2945
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
2946
+ "search_box_magnifier_fill":"rgb(241, 241, 241)",
2947
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2948
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2949
+ "filter_button_padding":"||5px||5px||10px||10px||",
2950
+ "filter_button_background":"0-60-rgb(206, 165, 57)-rgb(206, 165, 57)",
2951
+ "filter_button_border":"border:0px solid rgba(237, 237, 237, 0.4);border-radius:0px 0px 0px 0px;",
2952
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2953
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2954
+ "filter_dropdown_background":"#cea539",
2955
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2956
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
2957
+ "filter_dropdown_button_border":"border:0px none rgb(180, 220, 237);border-radius:16px 16px 16px 16px;",
2958
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2959
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(108, 108, 108);font-size:11px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2960
+ "sort_button_padding":"||5px||5px||10px||10px||",
2961
+ "sort_button_background":"0-60-#cea539-#cea539",
2962
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2963
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2964
+ "sort_button_arrow_show":"1",
2965
+ "sort_button_arrow_color":"rgb(53, 53, 53)",
2966
+ "sort_button_arrow_bg_color":"rgb(255, 255, 255)",
2967
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 2px -5px rgb(0, 0, 0) inset;",
2968
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2969
+ "nav_buttons_background":"0-60-#cea539-#cea539",
2970
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2971
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2972
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
2973
+ "nav_buttons_arrow_fill":"rgb(243, 243, 243)",
2974
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
2975
+ "nav_buttons_magn_fill":"rgb(243, 243, 243)",
2976
+ "nav_buttons_magn_active_fill":"rgb(178, 204, 255)",
2977
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
2978
+ "nav_buttons_list_fill":"rgb(243, 243, 243)",
2979
+ "nav_buttons_list_active_fill":"rgb(178, 204, 255)",
2980
+ "isotope_type":"masonry",
2981
+ "isotope_item_width":"150px",
2982
+ "isotope_item_background":"0-60-#c69408-#c69408",
2983
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2984
+ "isotope_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2985
+ "slick_item_width":"150px",
2986
+ "slick_item_background":"0-60-#c69408-#c69408",
2987
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2988
+ "slick_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2989
+ "transitioning_type":"fxFerris",
2990
+ "transitioning_image_position":"left",
2991
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
2992
+ "transitioning_height":"200px",
2993
+ "transitioning_item_background":"0-60-#c69408-#c69408",
2994
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
2995
+ "transitioning_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
2996
+ "title_on_image":"1",
2997
+ "title_background_color":"rgba(225, 183, 0, 0.62)",
2998
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(241, 241, 241);font-size:16px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
2999
+ "title_font_color_hover":"rgba(255, 242, 188, 0.84)",
3000
+ "title_font_color_active":"rgba(255, 242, 188, 0.64)",
3001
+ "item_area_clickable":"0",
3002
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.85);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3003
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3004
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3005
+ "custom_css_special":""
3006
+ },
3007
+ "Metro Pink": {
3008
+ "container_width":"0",
3009
+ "container_margin":"||0px||0px||0px||0px||",
3010
+ "container_padding":"||10px||5px||5px||5px||",
3011
+ "container_background":"0-80-#e064b7-#e064b7",
3012
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3013
+ "container_shadow":"box-shadow:0px 0px 12px -6px rgb(0, 0, 0) inset;",
3014
+ "container_font":"font-weight:normal;font-family:--g--Lato;color:rgb(243, 243, 243);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3015
+ "container_title_margin":"||10px||0px||0px||10px||",
3016
+ "search_box_height":"auto",
3017
+ "search_box_margin":"||11px||11px||11px||11px||",
3018
+ "search_box_padding":"||0px||0px||0px||0px||",
3019
+ "search_box_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3020
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
3021
+ "search_box_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3022
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3023
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3024
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
3025
+ "search_box_magnifier_fill":"rgb(241, 241, 241)",
3026
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3027
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3028
+ "filter_button_padding":"||5px||5px||10px||10px||",
3029
+ "filter_button_background":"0-60-#e773bd-#e773bd",
3030
+ "filter_button_border":"border:0px solid rgba(237, 237, 237, 0.4);border-radius:0px 0px 0px 0px;",
3031
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3032
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3033
+ "filter_dropdown_background":"#e773bd",
3034
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3035
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3036
+ "filter_dropdown_button_border":"border:0px none rgb(180, 220, 237);border-radius:16px 16px 16px 16px;",
3037
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3038
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(108, 108, 108);font-size:11px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3039
+ "sort_button_padding":"||5px||5px||10px||10px||",
3040
+ "sort_button_background":"0-60-#e773bd-#e773bd",
3041
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3042
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3043
+ "sort_button_arrow_show":"1",
3044
+ "sort_button_arrow_color":"rgb(53, 53, 53)",
3045
+ "sort_button_arrow_bg_color":"rgb(255, 255, 255)",
3046
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 2px -5px rgb(0, 0, 0) inset;",
3047
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3048
+ "nav_buttons_background":"0-60-#e773bd-#e773bd",
3049
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3050
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3051
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
3052
+ "nav_buttons_arrow_fill":"rgb(243, 243, 243)",
3053
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
3054
+ "nav_buttons_magn_fill":"rgb(243, 243, 243)",
3055
+ "nav_buttons_magn_active_fill":"#ffe3f5",
3056
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
3057
+ "nav_buttons_list_fill":"rgb(243, 243, 243)",
3058
+ "nav_buttons_list_active_fill":"#ffe3f5",
3059
+ "isotope_type":"masonry",
3060
+ "isotope_item_width":"150px",
3061
+ "isotope_item_background":"0-60-#de4aad-#de4aad",
3062
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3063
+ "isotope_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3064
+ "slick_item_width":"150px",
3065
+ "slick_item_background":"0-60-#de4aad-#de4aad",
3066
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3067
+ "slick_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3068
+ "transitioning_type":"fxFerris",
3069
+ "transitioning_image_position":"left",
3070
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
3071
+ "transitioning_height":"200px",
3072
+ "transitioning_item_background":"0-60-#de4aad-#de4aad",
3073
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3074
+ "transitioning_item_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3075
+ "title_on_image":"1",
3076
+ "title_background_color":"rgba(255, 118, 188, 0.6)",
3077
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(241, 241, 241);font-size:16px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3078
+ "title_font_color_hover":"rgba(255, 197, 227, 0.86)",
3079
+ "title_font_color_active":"rgba(255, 191, 224, 0.6)",
3080
+ "item_area_clickable":"0",
3081
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.85);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3082
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3083
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3084
+ "custom_css_special":""
3085
+ },
3086
+ "Metro Purple": {
3087
+ "container_width":"0",
3088
+ "container_margin":"||0px||0px||0px||0px||",
3089
+ "container_padding":"||10px||5px||5px||5px||",
3090
+ "container_background":"0-80-rgb(87, 22, 154)-rgb(87, 22, 154)",
3091
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3092
+ "container_shadow":"box-shadow:0px 0px 12px -6px rgb(0, 0, 0) inset;",
3093
+ "container_font":"font-weight:normal;font-family:--g--Lato;color:rgb(243, 243, 243);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3094
+ "container_title_margin":"||10px||0px||0px||10px||",
3095
+ "search_box_height":"auto",
3096
+ "search_box_margin":"||11px||11px||11px||11px||",
3097
+ "search_box_padding":"||0px||0px||0px||0px||",
3098
+ "search_box_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3099
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
3100
+ "search_box_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3101
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3102
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3103
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
3104
+ "search_box_magnifier_fill":"rgb(207, 183, 232)",
3105
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3106
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3107
+ "filter_button_padding":"||5px||5px||10px||10px||",
3108
+ "filter_button_background":"0-60-rgb(149, 117, 188)-rgb(149, 117, 188)",
3109
+ "filter_button_border":"border:0px solid rgba(237, 237, 237, 0.4);border-radius:0px 0px 0px 0px;",
3110
+ "filter_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3111
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3112
+ "filter_dropdown_background":"rgb(149, 117, 188)",
3113
+ "filter_dropdown_shadow":"box-shadow:0px 0px 4px -2px #000000 ;",
3114
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3115
+ "filter_dropdown_button_border":"border:0px none rgb(180, 220, 237);border-radius:16px 16px 16px 16px;",
3116
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3117
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3118
+ "sort_button_padding":"||5px||5px||10px||10px||",
3119
+ "sort_button_background":"0-60-rgb(149, 117, 188)-rgb(149, 117, 188)",
3120
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3121
+ "sort_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3122
+ "sort_button_arrow_show":"1",
3123
+ "sort_button_arrow_color":"rgb(113, 66, 172)",
3124
+ "sort_button_arrow_bg_color":"rgb(255, 255, 255)",
3125
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 2px -5px rgb(0, 0, 0) inset;",
3126
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3127
+ "nav_buttons_background":"0-60-rgb(149, 117, 188)-rgb(149, 117, 188)",
3128
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:18px 18px 18px 18px;",
3129
+ "nav_buttons_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3130
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
3131
+ "nav_buttons_arrow_fill":"rgb(243, 243, 243)",
3132
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
3133
+ "nav_buttons_magn_fill":"rgb(243, 243, 243)",
3134
+ "nav_buttons_magn_active_fill":"rgb(221, 178, 255)",
3135
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
3136
+ "nav_buttons_list_fill":"rgb(243, 243, 243)",
3137
+ "nav_buttons_list_active_fill":"rgb(221, 178, 255)",
3138
+ "isotope_type":"masonry",
3139
+ "isotope_item_width":"150px",
3140
+ "isotope_item_background":"0-60-rgb(105, 27, 184)-rgb(105, 27, 184)",
3141
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3142
+ "isotope_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3143
+ "slick_item_width":"150px",
3144
+ "slick_item_background":"0-60-rgb(105, 27, 184)-rgb(105, 27, 184)",
3145
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3146
+ "slick_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3147
+ "transitioning_type":"fxFerris",
3148
+ "transitioning_image_position":"left",
3149
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
3150
+ "transitioning_height":"200px",
3151
+ "transitioning_item_background":"0-60-rgb(105, 27, 184)-rgb(105, 27, 184)",
3152
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3153
+ "transitioning_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3154
+ "title_on_image":"1",
3155
+ "title_background_color":"rgba(170, 64, 255, 0.56)",
3156
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(241, 241, 241);font-size:16px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3157
+ "title_font_color_hover":"rgb(233, 206, 255)",
3158
+ "title_font_color_active":"rgb(245, 233, 255)",
3159
+ "item_area_clickable":"0",
3160
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.85);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3161
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3162
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3163
+ "custom_css_special":""
3164
+ },
3165
+ "Metro Dark Blue": {
3166
+ "container_width":"0",
3167
+ "container_margin":"||0px||0px||0px||0px||",
3168
+ "container_padding":"||10px||5px||5px||5px||",
3169
+ "container_background":"0-80-#001e4e-#001e4e",
3170
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3171
+ "container_shadow":"box-shadow:0px 0px 12px -6px rgb(0, 0, 0) inset;",
3172
+ "container_font":"font-weight:normal;font-family:--g--Lato;color:rgb(243, 243, 243);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3173
+ "container_title_margin":"||10px||0px||0px||10px||",
3174
+ "search_box_height":"auto",
3175
+ "search_box_margin":"||11px||11px||11px||11px||",
3176
+ "search_box_padding":"||0px||0px||0px||0px||",
3177
+ "search_box_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3178
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
3179
+ "search_box_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3180
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3181
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3182
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
3183
+ "search_box_magnifier_fill":"rgb(241, 241, 241)",
3184
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3185
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3186
+ "filter_button_padding":"||5px||5px||10px||10px||",
3187
+ "filter_button_background":"0-60-#2c4566-#2c4566",
3188
+ "filter_button_border":"border:0px solid rgba(237, 237, 237, 0.4);border-radius:0px 0px 0px 0px;",
3189
+ "filter_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3190
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3191
+ "filter_dropdown_background":"#2c4566",
3192
+ "filter_dropdown_shadow":"box-shadow:0px 0px 4px -2px #000000 ;",
3193
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3194
+ "filter_dropdown_button_border":"border:0px none rgb(180, 220, 237);border-radius:16px 16px 16px 16px;",
3195
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3196
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(108, 108, 108);font-size:11px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3197
+ "sort_button_padding":"||5px||5px||10px||10px||",
3198
+ "sort_button_background":"0-60-#2c4566-#2c4566",
3199
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3200
+ "sort_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3201
+ "sort_button_arrow_show":"1",
3202
+ "sort_button_arrow_color":"rgb(83, 83, 83)",
3203
+ "sort_button_arrow_bg_color":"rgb(255, 255, 255)",
3204
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 2px -5px rgb(0, 0, 0) inset;",
3205
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3206
+ "nav_buttons_background":"0-60-#2c4566-#2c4566",
3207
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:18px 18px 18px 18px;",
3208
+ "nav_buttons_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3209
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
3210
+ "nav_buttons_arrow_fill":"rgb(243, 243, 243)",
3211
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
3212
+ "nav_buttons_magn_fill":"rgb(243, 243, 243)",
3213
+ "nav_buttons_magn_active_fill":"rgba(144, 187, 243, 0.6)",
3214
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
3215
+ "nav_buttons_list_fill":"rgb(243, 243, 243)",
3216
+ "nav_buttons_list_active_fill":"rgba(144, 187, 243, 0.6)",
3217
+ "isotope_type":"masonry",
3218
+ "isotope_item_width":"150px",
3219
+ "isotope_item_background":"0-60-#001940-#001940",
3220
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3221
+ "isotope_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3222
+ "slick_item_width":"150px",
3223
+ "slick_item_background":"0-60-#001940-#001940",
3224
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3225
+ "slick_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3226
+ "transitioning_type":"fxFerris",
3227
+ "transitioning_image_position":"left",
3228
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
3229
+ "transitioning_height":"200px",
3230
+ "transitioning_item_background":"0-60-#001940-#001940",
3231
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3232
+ "transitioning_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3233
+ "title_on_image":"1",
3234
+ "title_background_color":"rgba(0, 106, 193, 0.62)",
3235
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(241, 241, 241);font-size:16px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3236
+ "title_font_color_hover":"rgba(199, 230, 255, 0.8)",
3237
+ "title_font_color_active":"rgba(199, 230, 255, 0.63)",
3238
+ "item_area_clickable":"0",
3239
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.85);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3240
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3241
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3242
+ "custom_css_special":""
3243
+ },
3244
+ "Metro Dark Green": {
3245
+ "container_width":"0",
3246
+ "container_margin":"||0px||0px||0px||0px||",
3247
+ "container_padding":"||10px||5px||5px||5px||",
3248
+ "container_background":"0-80-#004d60-#004d60",
3249
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3250
+ "container_shadow":"box-shadow:0px 0px 12px -6px rgb(0, 0, 0) inset;",
3251
+ "container_font":"font-weight:normal;font-family:--g--Lato;color:rgb(243, 243, 243);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3252
+ "container_title_margin":"||10px||0px||0px||10px||",
3253
+ "search_box_height":"auto",
3254
+ "search_box_margin":"||11px||11px||11px||11px||",
3255
+ "search_box_padding":"||0px||0px||0px||0px||",
3256
+ "search_box_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3257
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
3258
+ "search_box_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3259
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3260
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3261
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
3262
+ "search_box_magnifier_fill":"rgb(241, 241, 241)",
3263
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3264
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3265
+ "filter_button_padding":"||5px||5px||10px||10px||",
3266
+ "filter_button_background":"0-60-#306772-#306772",
3267
+ "filter_button_border":"border:0px solid rgba(237, 237, 237, 0.4);border-radius:0px 0px 0px 0px;",
3268
+ "filter_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3269
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3270
+ "filter_dropdown_background":"#306772",
3271
+ "filter_dropdown_shadow":"box-shadow:0px 0px 4px -2px #000000 ;",
3272
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3273
+ "filter_dropdown_button_border":"border:0px none rgb(180, 220, 237);border-radius:16px 16px 16px 16px;",
3274
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3275
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(108, 108, 108);font-size:11px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3276
+ "sort_button_padding":"||5px||5px||10px||10px||",
3277
+ "sort_button_background":"0-60-#306772-#306772",
3278
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3279
+ "sort_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3280
+ "sort_button_arrow_show":"1",
3281
+ "sort_button_arrow_color":"rgb(83, 83, 83)",
3282
+ "sort_button_arrow_bg_color":"rgb(255, 255, 255)",
3283
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 2px -5px rgb(0, 0, 0) inset;",
3284
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3285
+ "nav_buttons_background":"0-60-#306772-#306772",
3286
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:18px 18px 18px 18px;",
3287
+ "nav_buttons_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3288
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
3289
+ "nav_buttons_arrow_fill":"rgb(243, 243, 243)",
3290
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
3291
+ "nav_buttons_magn_fill":"rgb(243, 243, 243)",
3292
+ "nav_buttons_magn_active_fill":"rgba(144, 187, 243, 0.6)",
3293
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
3294
+ "nav_buttons_list_fill":"rgb(243, 243, 243)",
3295
+ "nav_buttons_list_active_fill":"rgba(144, 187, 243, 0.6)",
3296
+ "isotope_type":"masonry",
3297
+ "isotope_item_width":"150px",
3298
+ "isotope_item_background":"0-60-#004050-#004050",
3299
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3300
+ "isotope_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3301
+ "slick_item_width":"150px",
3302
+ "slick_item_background":"0-60-#004050-#004050",
3303
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3304
+ "slick_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3305
+ "transitioning_type":"fxFerris",
3306
+ "transitioning_image_position":"left",
3307
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
3308
+ "transitioning_height":"200px",
3309
+ "transitioning_item_background":"0-60-#004050-#004050",
3310
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3311
+ "transitioning_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3312
+ "title_on_image":"1",
3313
+ "title_background_color":"rgba(0, 130, 135, 0.6)",
3314
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(241, 241, 241);font-size:16px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3315
+ "title_font_color_hover":"rgba(199, 230, 255, 0.8)",
3316
+ "title_font_color_active":"rgba(199, 230, 255, 0.63)",
3317
+ "item_area_clickable":"0",
3318
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.85);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3319
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3320
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3321
+ "custom_css_special":""
3322
+ },
3323
+ "Metro Dark Lipstick": {
3324
+ "container_width":"0",
3325
+ "container_margin":"||0px||0px||0px||0px||",
3326
+ "container_padding":"||10px||5px||5px||5px||",
3327
+ "container_background":"0-80-#4e0038-#4e0038",
3328
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3329
+ "container_shadow":"box-shadow:0px 0px 12px -6px rgb(0, 0, 0) inset;",
3330
+ "container_font":"font-weight:normal;font-family:--g--Lato;color:rgb(243, 243, 243);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3331
+ "container_title_margin":"||10px||0px||0px||10px||",
3332
+ "search_box_height":"auto",
3333
+ "search_box_margin":"||11px||11px||11px||11px||",
3334
+ "search_box_padding":"||0px||0px||0px||0px||",
3335
+ "search_box_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3336
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
3337
+ "search_box_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3338
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3339
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3340
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
3341
+ "search_box_magnifier_fill":"rgb(241, 241, 241)",
3342
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3343
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3344
+ "filter_button_padding":"||5px||5px||10px||10px||",
3345
+ "filter_button_background":"0-60-#662c58-#662c58",
3346
+ "filter_button_border":"border:0px solid rgba(237, 237, 237, 0.4);border-radius:0px 0px 0px 0px;",
3347
+ "filter_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3348
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3349
+ "filter_dropdown_background":"#662c58",
3350
+ "filter_dropdown_shadow":"box-shadow:0px 0px 4px -2px #000000 ;",
3351
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3352
+ "filter_dropdown_button_border":"border:0px none rgb(180, 220, 237);border-radius:16px 16px 16px 16px;",
3353
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3354
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(108, 108, 108);font-size:11px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3355
+ "sort_button_padding":"||5px||5px||10px||10px||",
3356
+ "sort_button_background":"0-60-#662c58-#662c58",
3357
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3358
+ "sort_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3359
+ "sort_button_arrow_show":"1",
3360
+ "sort_button_arrow_color":"rgb(83, 83, 83)",
3361
+ "sort_button_arrow_bg_color":"rgb(255, 255, 255)",
3362
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 2px -5px rgb(0, 0, 0) inset;",
3363
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3364
+ "nav_buttons_background":"0-60-#662c58-#662c58",
3365
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:18px 18px 18px 18px;",
3366
+ "nav_buttons_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3367
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
3368
+ "nav_buttons_arrow_fill":"rgb(243, 243, 243)",
3369
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
3370
+ "nav_buttons_magn_fill":"rgb(243, 243, 243)",
3371
+ "nav_buttons_magn_active_fill":"rgba(255, 156, 227, 0.49)",
3372
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
3373
+ "nav_buttons_list_fill":"rgb(243, 243, 243)",
3374
+ "nav_buttons_list_active_fill":"rgba(255, 156, 227, 0.49)",
3375
+ "isotope_type":"masonry",
3376
+ "isotope_item_width":"150px",
3377
+ "isotope_item_background":"0-60-#40002e-#40002e",
3378
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3379
+ "isotope_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3380
+ "slick_item_width":"150px",
3381
+ "slick_item_background":"0-60-#40002e-#40002e",
3382
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3383
+ "slick_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3384
+ "transitioning_type":"fxFerris",
3385
+ "transitioning_image_position":"left",
3386
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
3387
+ "transitioning_height":"200px",
3388
+ "transitioning_item_background":"0-60-#40002e-#40002e",
3389
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3390
+ "transitioning_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3391
+ "title_on_image":"1",
3392
+ "title_background_color":"rgba(193, 0, 79, 0.6)",
3393
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(241, 241, 241);font-size:16px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3394
+ "title_font_color_hover":"rgba(255, 188, 215, 0.8)",
3395
+ "title_font_color_active":"rgba(255, 199, 222, 0.6)",
3396
+ "item_area_clickable":"0",
3397
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.85);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3398
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3399
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3400
+ "custom_css_special":""
3401
+ },
3402
+ "Metro Dark Red": {
3403
+ "container_width":"0",
3404
+ "container_margin":"||0px||0px||0px||0px||",
3405
+ "container_padding":"||10px||5px||5px||5px||",
3406
+ "container_background":"0-80-#4e0000-#4e0000",
3407
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3408
+ "container_shadow":"box-shadow:0px 0px 12px -6px rgb(0, 0, 0) inset;",
3409
+ "container_font":"font-weight:normal;font-family:--g--Lato;color:rgb(243, 243, 243);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3410
+ "container_title_margin":"||10px||0px||0px||10px||",
3411
+ "search_box_height":"auto",
3412
+ "search_box_margin":"||11px||11px||11px||11px||",
3413
+ "search_box_padding":"||0px||0px||0px||0px||",
3414
+ "search_box_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3415
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
3416
+ "search_box_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3417
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3418
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3419
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
3420
+ "search_box_magnifier_fill":"rgb(241, 241, 241)",
3421
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3422
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3423
+ "filter_button_padding":"||5px||5px||10px||10px||",
3424
+ "filter_button_background":"0-60-#61292b-#61292b",
3425
+ "filter_button_border":"border:0px solid rgba(237, 237, 237, 0.4);border-radius:0px 0px 0px 0px;",
3426
+ "filter_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3427
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3428
+ "filter_dropdown_background":"#61292b",
3429
+ "filter_dropdown_shadow":"box-shadow:0px 0px 4px -2px #000000 ;",
3430
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3431
+ "filter_dropdown_button_border":"border:0px none rgb(180, 220, 237);border-radius:16px 16px 16px 16px;",
3432
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3433
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(108, 108, 108);font-size:11px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3434
+ "sort_button_padding":"||5px||5px||10px||10px||",
3435
+ "sort_button_background":"0-60-#61292b-#61292b",
3436
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3437
+ "sort_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3438
+ "sort_button_arrow_show":"1",
3439
+ "sort_button_arrow_color":"rgb(83, 83, 83)",
3440
+ "sort_button_arrow_bg_color":"rgb(255, 255, 255)",
3441
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 2px -5px rgb(0, 0, 0) inset;",
3442
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3443
+ "nav_buttons_background":"0-60-#61292b-#61292b",
3444
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:18px 18px 18px 18px;",
3445
+ "nav_buttons_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3446
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
3447
+ "nav_buttons_arrow_fill":"rgb(243, 243, 243)",
3448
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
3449
+ "nav_buttons_magn_fill":"rgb(243, 243, 243)",
3450
+ "nav_buttons_magn_active_fill":"rgba(241, 151, 133, 0.59)",
3451
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
3452
+ "nav_buttons_list_fill":"rgb(243, 243, 243)",
3453
+ "nav_buttons_list_active_fill":"rgba(241, 151, 133, 0.59)",
3454
+ "isotope_type":"masonry",
3455
+ "isotope_item_width":"150px",
3456
+ "isotope_item_background":"0-60-#380000-#380000",
3457
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3458
+ "isotope_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3459
+ "slick_item_width":"150px",
3460
+ "slick_item_background":"0-60-#380000-#380000",
3461
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3462
+ "slick_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3463
+ "transitioning_type":"fxFerris",
3464
+ "transitioning_image_position":"left",
3465
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
3466
+ "transitioning_height":"200px",
3467
+ "transitioning_item_background":"0-60-#380000-#380000",
3468
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3469
+ "transitioning_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3470
+ "title_on_image":"1",
3471
+ "title_background_color":"rgba(176, 30, 0, 0.59)",
3472
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(241, 241, 241);font-size:16px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3473
+ "title_font_color_hover":"rgba(255, 202, 191, 0.81)",
3474
+ "title_font_color_active":"rgba(255, 207, 197, 0.59)",
3475
+ "item_area_clickable":"0",
3476
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.85);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3477
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3478
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3479
+ "custom_css_special":""
3480
+ },
3481
+ "Metro Dark Pink": {
3482
+ "container_width":"0",
3483
+ "container_margin":"||0px||0px||0px||0px||",
3484
+ "container_padding":"||10px||5px||5px||5px||",
3485
+ "container_background":"0-80-#2d004e-#2d004e",
3486
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3487
+ "container_shadow":"box-shadow:0px 0px 12px -6px rgb(0, 0, 0) inset;",
3488
+ "container_font":"font-weight:normal;font-family:--g--Lato;color:rgb(243, 243, 243);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3489
+ "container_title_margin":"||10px||0px||0px||10px||",
3490
+ "search_box_height":"auto",
3491
+ "search_box_margin":"||11px||11px||11px||11px||",
3492
+ "search_box_padding":"||0px||0px||0px||0px||",
3493
+ "search_box_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3494
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
3495
+ "search_box_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3496
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3497
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:16px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3498
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
3499
+ "search_box_magnifier_fill":"rgb(241, 241, 241)",
3500
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3501
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3502
+ "filter_button_padding":"||5px||5px||10px||10px||",
3503
+ "filter_button_background":"0-60-#4c2c66-#4c2c66",
3504
+ "filter_button_border":"border:0px solid rgba(237, 237, 237, 0.4);border-radius:0px 0px 0px 0px;",
3505
+ "filter_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3506
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3507
+ "filter_dropdown_background":"#4c2c66",
3508
+ "filter_dropdown_shadow":"box-shadow:0px 0px 4px -2px #000000 ;",
3509
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3510
+ "filter_dropdown_button_border":"border:0px none rgb(180, 220, 237);border-radius:16px 16px 16px 16px;",
3511
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3512
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(108, 108, 108);font-size:11px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3513
+ "sort_button_padding":"||5px||5px||10px||10px||",
3514
+ "sort_button_background":"0-60-#4c2c66-#4c2c66",
3515
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3516
+ "sort_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3517
+ "sort_button_arrow_show":"1",
3518
+ "sort_button_arrow_color":"rgb(83, 83, 83)",
3519
+ "sort_button_arrow_bg_color":"rgb(255, 255, 255)",
3520
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 2px -5px rgb(0, 0, 0) inset;",
3521
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(236, 236, 236);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3522
+ "nav_buttons_background":"0-60-#4c2c66-#4c2c66",
3523
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:18px 18px 18px 18px;",
3524
+ "nav_buttons_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
3525
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
3526
+ "nav_buttons_arrow_fill":"rgb(243, 243, 243)",
3527
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
3528
+ "nav_buttons_magn_fill":"rgb(243, 243, 243)",
3529
+ "nav_buttons_magn_active_fill":"rgba(255, 156, 227, 0.49)",
3530
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
3531
+ "nav_buttons_list_fill":"rgb(243, 243, 243)",
3532
+ "nav_buttons_list_active_fill":"rgba(255, 156, 227, 0.49)",
3533
+ "isotope_type":"masonry",
3534
+ "isotope_item_width":"150px",
3535
+ "isotope_item_background":"0-60-#250040-#250040",
3536
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3537
+ "isotope_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3538
+ "slick_item_width":"150px",
3539
+ "slick_item_background":"0-60-#250040-#250040",
3540
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3541
+ "slick_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3542
+ "transitioning_type":"fxFerris",
3543
+ "transitioning_image_position":"left",
3544
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
3545
+ "transitioning_height":"200px",
3546
+ "transitioning_item_background":"0-60-#250040-#250040",
3547
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3548
+ "transitioning_item_shadow":"box-shadow:0px 0px 17px -9px #000000 ;",
3549
+ "title_on_image":"1",
3550
+ "title_background_color":"rgba(114, 0, 172, 0.61)",
3551
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(241, 241, 241);font-size:16px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3552
+ "title_font_color_hover":"rgba(233, 191, 255, 0.8)",
3553
+ "title_font_color_active":"rgba(233, 191, 255, 0.61)",
3554
+ "item_area_clickable":"0",
3555
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.85);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3556
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3557
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3558
+ "custom_css_special":""
3559
+ },
3560
+ "---Neo Themes---": false,
3561
+ "Neo Lime": {
3562
+ "container_width":"0",
3563
+ "container_margin":"||0px||0px||0px||0px||",
3564
+ "container_padding":"||5px||5px||5px||5px||",
3565
+ "container_background":"1-260-rgb(115, 115, 115)-rgb(87, 87, 87)",
3566
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
3567
+ "container_shadow":"box-shadow:0px 0px 17px -3px rgb(0, 0, 0) inset;",
3568
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(243, 243, 243);font-size:19px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0);",
3569
+ "container_title_margin":"||10px||7px||0px||9px||",
3570
+ "search_box_height":"auto",
3571
+ "search_box_margin":"||11px||11px||11px||11px||",
3572
+ "search_box_padding":"||0px||0px||0px||0px||",
3573
+ "search_box_background":"0-60-#333333-#333333",
3574
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
3575
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
3576
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3577
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3578
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
3579
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
3580
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3581
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3582
+ "filter_button_padding":"||5px||5px||10px||10px||",
3583
+ "filter_button_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3584
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3585
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
3586
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3587
+ "filter_dropdown_background":"rgb(51, 51, 51)",
3588
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
3589
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3590
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
3591
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3592
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:10px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3593
+ "sort_button_padding":"||5px||5px||10px||10px||",
3594
+ "sort_button_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3595
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3596
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
3597
+ "sort_button_arrow_show":"1",
3598
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
3599
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
3600
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
3601
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3602
+ "nav_buttons_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3603
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
3604
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
3605
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
3606
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
3607
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
3608
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
3609
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
3610
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
3611
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
3612
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
3613
+ "isotope_type":"masonry",
3614
+ "isotope_item_width":"150px",
3615
+ "isotope_item_background":"0-275-rgb(208, 233, 143)-rgb(170, 215, 91)",
3616
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3617
+ "isotope_item_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
3618
+ "slick_item_width":"150px",
3619
+ "slick_item_background":"1-275-rgb(208, 233, 143)-rgb(170, 215, 91)",
3620
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
3621
+ "slick_item_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) inset;",
3622
+ "transitioning_type":"fxFerris",
3623
+ "transitioning_image_position":"left",
3624
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
3625
+ "transitioning_height":"200px",
3626
+ "transitioning_item_background":"0-265-rgb(208, 233, 143)-rgb(170, 215, 91)",
3627
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3628
+ "transitioning_item_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
3629
+ "title_on_image":"0",
3630
+ "title_background_color":"rgba(100, 100, 100, 0)",
3631
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:#333333;font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.55);",
3632
+ "title_font_color_hover":"rgb(66, 117, 148)",
3633
+ "title_font_color_active":"rgb(66, 117, 148)",
3634
+ "item_area_clickable":"1",
3635
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:#595959;font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3636
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:#717171;font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.61);",
3637
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:#717171;font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.61);",
3638
+ "custom_css_special":"[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
3639
+ },
3640
+ "Neo Green": {
3641
+ "container_width":"0",
3642
+ "container_margin":"||0px||0px||0px||0px||",
3643
+ "container_padding":"||5px||5px||5px||5px||",
3644
+ "container_background":"1-260-rgb(115, 115, 115)-rgb(87, 87, 87)",
3645
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
3646
+ "container_shadow":"box-shadow:0px 0px 17px -3px rgb(0, 0, 0) inset;",
3647
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(243, 243, 243);font-size:19px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0);",
3648
+ "container_title_margin":"||10px||7px||0px||9px||",
3649
+ "search_box_height":"auto",
3650
+ "search_box_margin":"||11px||11px||11px||11px||",
3651
+ "search_box_padding":"||0px||0px||0px||0px||",
3652
+ "search_box_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3653
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
3654
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
3655
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3656
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3657
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
3658
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
3659
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3660
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3661
+ "filter_button_padding":"||5px||5px||10px||10px||",
3662
+ "filter_button_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3663
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3664
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
3665
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3666
+ "filter_dropdown_background":"rgb(51, 51, 51)",
3667
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
3668
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3669
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
3670
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3671
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:10px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3672
+ "sort_button_padding":"||5px||5px||10px||10px||",
3673
+ "sort_button_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3674
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3675
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
3676
+ "sort_button_arrow_show":"1",
3677
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
3678
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
3679
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
3680
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3681
+ "nav_buttons_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3682
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
3683
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
3684
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
3685
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
3686
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
3687
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
3688
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
3689
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
3690
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
3691
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
3692
+ "isotope_type":"masonry",
3693
+ "isotope_item_width":"150px",
3694
+ "isotope_item_background":"0-275-#e5e98f-rgb(216, 216, 92)",
3695
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3696
+ "isotope_item_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
3697
+ "slick_item_width":"150px",
3698
+ "slick_item_background":"1-275-#a2e98f-rgb(118, 216, 92)",
3699
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
3700
+ "slick_item_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) inset;",
3701
+ "transitioning_type":"fxFerris",
3702
+ "transitioning_image_position":"left",
3703
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
3704
+ "transitioning_height":"200px",
3705
+ "transitioning_item_background":"0-265-#e98fc7-rgb(216, 92, 180)",
3706
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3707
+ "transitioning_item_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
3708
+ "title_on_image":"0",
3709
+ "title_background_color":"rgba(100, 100, 100, 0)",
3710
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(51, 51, 51);font-size:16px;line-height:24px;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.4);",
3711
+ "title_font_color_hover":"rgb(0, 0, 0)",
3712
+ "title_font_color_active":"rgb(0, 0, 0)",
3713
+ "item_area_clickable":"1",
3714
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(44, 44, 44);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3715
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(66, 66, 66);font-size:10px;line-height:initial;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.48);",
3716
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(66, 66, 66);font-size:10px;line-height:initial;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.5);",
3717
+ "custom_css_special":"[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
3718
+ },
3719
+ "Neo Blue": {
3720
+ "container_width":"0",
3721
+ "container_margin":"||0px||0px||0px||0px||",
3722
+ "container_padding":"||5px||5px||5px||5px||",
3723
+ "container_background":"1-260-rgb(115, 115, 115)-rgb(87, 87, 87)",
3724
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
3725
+ "container_shadow":"box-shadow:0px 0px 17px -3px rgb(0, 0, 0) inset;",
3726
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(243, 243, 243);font-size:19px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0);",
3727
+ "container_title_margin":"||10px||7px||0px||9px||",
3728
+ "search_box_height":"auto",
3729
+ "search_box_margin":"||11px||11px||11px||11px||",
3730
+ "search_box_padding":"||0px||0px||0px||0px||",
3731
+ "search_box_background":"0-60-rgba(51, 51, 51, 1)-rgba(51, 51, 51, 1)",
3732
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
3733
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
3734
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3735
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3736
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
3737
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
3738
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3739
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3740
+ "filter_button_padding":"||5px||5px||10px||10px||",
3741
+ "filter_button_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3742
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3743
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
3744
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3745
+ "filter_dropdown_background":"rgb(51, 51, 51)",
3746
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
3747
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3748
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
3749
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3750
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:10px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3751
+ "sort_button_padding":"||5px||5px||10px||10px||",
3752
+ "sort_button_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3753
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3754
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
3755
+ "sort_button_arrow_show":"1",
3756
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
3757
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
3758
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
3759
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3760
+ "nav_buttons_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3761
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
3762
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
3763
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
3764
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
3765
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
3766
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
3767
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
3768
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
3769
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
3770
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
3771
+ "isotope_type":"masonry",
3772
+ "isotope_item_width":"150px",
3773
+ "isotope_item_background":"0-275-rgb(143, 210, 233)-rgb(91, 184, 215)",
3774
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3775
+ "isotope_item_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
3776
+ "slick_item_width":"150px",
3777
+ "slick_item_background":"1-275-rgb(143, 210, 233)-rgb(91, 184, 215)",
3778
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
3779
+ "slick_item_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) inset;",
3780
+ "transitioning_type":"fxFerris",
3781
+ "transitioning_image_position":"left",
3782
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
3783
+ "transitioning_height":"200px",
3784
+ "transitioning_item_background":"0-265-rgb(143, 210, 233)-rgb(91, 184, 215)",
3785
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3786
+ "transitioning_item_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
3787
+ "title_on_image":"0",
3788
+ "title_background_color":"rgba(100, 100, 100, 0)",
3789
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgba(51, 51, 51, 1);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.45);",
3790
+ "title_font_color_hover":"rgb(66, 117, 148)",
3791
+ "title_font_color_active":"rgb(66, 117, 148)",
3792
+ "item_area_clickable":"1",
3793
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:#595959;font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3794
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(94, 94, 94);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.48);",
3795
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(94, 94, 94);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.5);",
3796
+ "custom_css_special":"[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
3797
+ },
3798
+ "Neo Pink": {
3799
+ "container_width":"0",
3800
+ "container_margin":"||0px||0px||0px||0px||",
3801
+ "container_padding":"||5px||5px||5px||5px||",
3802
+ "container_background":"1-260-rgb(115, 115, 115)-rgb(87, 87, 87)",
3803
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
3804
+ "container_shadow":"box-shadow:0px 0px 17px -3px rgb(0, 0, 0) inset;",
3805
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(243, 243, 243);font-size:19px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0);",
3806
+ "container_title_margin":"||10px||7px||0px||9px||",
3807
+ "search_box_height":"auto",
3808
+ "search_box_margin":"||11px||11px||11px||11px||",
3809
+ "search_box_padding":"||0px||0px||0px||0px||",
3810
+ "search_box_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3811
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
3812
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
3813
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3814
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3815
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
3816
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
3817
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3818
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3819
+ "filter_button_padding":"||5px||5px||10px||10px||",
3820
+ "filter_button_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3821
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3822
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
3823
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3824
+ "filter_dropdown_background":"rgb(51, 51, 51)",
3825
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
3826
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3827
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
3828
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3829
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:10px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3830
+ "sort_button_padding":"||5px||5px||10px||10px||",
3831
+ "sort_button_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3832
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3833
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
3834
+ "sort_button_arrow_show":"1",
3835
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
3836
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
3837
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
3838
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3839
+ "nav_buttons_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3840
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
3841
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
3842
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
3843
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
3844
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
3845
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
3846
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
3847
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
3848
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
3849
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
3850
+ "isotope_type":"masonry",
3851
+ "isotope_item_width":"150px",
3852
+ "isotope_item_background":"0-275-#b98fe9-rgb(162, 92, 216)",
3853
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3854
+ "isotope_item_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
3855
+ "slick_item_width":"150px",
3856
+ "slick_item_background":"1-275-#b98fe9-rgb(162, 92, 216)",
3857
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
3858
+ "slick_item_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) inset;",
3859
+ "transitioning_type":"fxFerris",
3860
+ "transitioning_image_position":"left",
3861
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
3862
+ "transitioning_height":"200px",
3863
+ "transitioning_item_background":"0-265-#b98fe9-rgb(162, 92, 216)",
3864
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3865
+ "transitioning_item_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
3866
+ "title_on_image":"0",
3867
+ "title_background_color":"rgba(100, 100, 100, 0)",
3868
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(51, 51, 51);font-size:16px;line-height:24px;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.4);",
3869
+ "title_font_color_hover":"rgb(0, 0, 0)",
3870
+ "title_font_color_active":"rgb(0, 0, 0)",
3871
+ "item_area_clickable":"1",
3872
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(44, 44, 44);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3873
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(66, 66, 66);font-size:10px;line-height:initial;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.48);",
3874
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(66, 66, 66);font-size:10px;line-height:initial;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.5);",
3875
+ "custom_css_special":"[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
3876
+ },
3877
+ "Neo Red": {
3878
+ "container_width":"0",
3879
+ "container_margin":"||0px||0px||0px||0px||",
3880
+ "container_padding":"||5px||5px||5px||5px||",
3881
+ "container_background":"1-260-rgb(115, 115, 115)-rgb(87, 87, 87)",
3882
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
3883
+ "container_shadow":"box-shadow:0px 0px 17px -3px rgb(0, 0, 0) inset;",
3884
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(243, 243, 243);font-size:19px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0);",
3885
+ "container_title_margin":"||10px||7px||0px||9px||",
3886
+ "search_box_height":"auto",
3887
+ "search_box_margin":"||11px||11px||11px||11px||",
3888
+ "search_box_padding":"||0px||0px||0px||0px||",
3889
+ "search_box_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3890
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
3891
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
3892
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3893
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3894
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
3895
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
3896
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3897
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3898
+ "filter_button_padding":"||5px||5px||10px||10px||",
3899
+ "filter_button_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3900
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3901
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
3902
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3903
+ "filter_dropdown_background":"rgb(51, 51, 51)",
3904
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
3905
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3906
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
3907
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3908
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:10px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3909
+ "sort_button_padding":"||5px||5px||10px||10px||",
3910
+ "sort_button_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3911
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3912
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
3913
+ "sort_button_arrow_show":"1",
3914
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
3915
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
3916
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
3917
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3918
+ "nav_buttons_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3919
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
3920
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
3921
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
3922
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
3923
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
3924
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
3925
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
3926
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
3927
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
3928
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
3929
+ "isotope_type":"masonry",
3930
+ "isotope_item_width":"150px",
3931
+ "isotope_item_background":"0-275-#e98f8f-rgb(216, 92, 92)",
3932
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3933
+ "isotope_item_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
3934
+ "slick_item_width":"150px",
3935
+ "slick_item_background":"1-275-#e98f8f-rgb(216, 92, 92)",
3936
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
3937
+ "slick_item_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) inset;",
3938
+ "transitioning_type":"fxFerris",
3939
+ "transitioning_image_position":"left",
3940
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
3941
+ "transitioning_height":"200px",
3942
+ "transitioning_item_background":"0-265-#e98f8f-rgb(216, 92, 92)",
3943
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3944
+ "transitioning_item_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
3945
+ "title_on_image":"0",
3946
+ "title_background_color":"rgba(100, 100, 100, 0)",
3947
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(51, 51, 51);font-size:16px;line-height:24px;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.4);",
3948
+ "title_font_color_hover":"rgb(0, 0, 0)",
3949
+ "title_font_color_active":"rgb(0, 0, 0)",
3950
+ "item_area_clickable":"1",
3951
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(44, 44, 44);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3952
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(66, 66, 66);font-size:10px;line-height:initial;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.48);",
3953
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(66, 66, 66);font-size:10px;line-height:initial;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.5);",
3954
+ "custom_css_special":"[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
3955
+ },
3956
+ "Neo Viking": {
3957
+ "container_width":"0",
3958
+ "container_margin":"||0px||0px||0px||0px||",
3959
+ "container_padding":"||5px||5px||5px||5px||",
3960
+ "container_background":"1-260-rgb(115, 115, 115)-rgb(87, 87, 87)",
3961
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
3962
+ "container_shadow":"box-shadow:0px 0px 17px -3px rgb(0, 0, 0) inset;",
3963
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(243, 243, 243);font-size:19px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0);",
3964
+ "container_title_margin":"||10px||7px||0px||9px||",
3965
+ "search_box_height":"auto",
3966
+ "search_box_margin":"||11px||11px||11px||11px||",
3967
+ "search_box_padding":"||0px||0px||0px||0px||",
3968
+ "search_box_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3969
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
3970
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
3971
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3972
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3973
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
3974
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
3975
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3976
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3977
+ "filter_button_padding":"||5px||5px||10px||10px||",
3978
+ "filter_button_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3979
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3980
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
3981
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3982
+ "filter_dropdown_background":"rgb(51, 51, 51)",
3983
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
3984
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
3985
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
3986
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
3987
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:10px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3988
+ "sort_button_padding":"||5px||5px||10px||10px||",
3989
+ "sort_button_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3990
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
3991
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
3992
+ "sort_button_arrow_show":"1",
3993
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
3994
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
3995
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
3996
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
3997
+ "nav_buttons_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
3998
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
3999
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
4000
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
4001
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
4002
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
4003
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
4004
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
4005
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
4006
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
4007
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
4008
+ "isotope_type":"masonry",
4009
+ "isotope_item_width":"150px",
4010
+ "isotope_item_background":"0-275-#8fe9e5-rgb(92, 216, 206)",
4011
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4012
+ "isotope_item_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4013
+ "slick_item_width":"150px",
4014
+ "slick_item_background":"1-275-#8fe9e5-rgb(92, 216, 206)",
4015
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
4016
+ "slick_item_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) inset;",
4017
+ "transitioning_type":"fxFerris",
4018
+ "transitioning_image_position":"left",
4019
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
4020
+ "transitioning_height":"200px",
4021
+ "transitioning_item_background":"0-265-#8fe9e5-rgb(92, 216, 206)",
4022
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4023
+ "transitioning_item_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
4024
+ "title_on_image":"0",
4025
+ "title_background_color":"rgba(100, 100, 100, 0)",
4026
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(51, 51, 51);font-size:16px;line-height:24px;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.4);",
4027
+ "title_font_color_hover":"rgb(0, 0, 0)",
4028
+ "title_font_color_active":"rgb(0, 0, 0)",
4029
+ "item_area_clickable":"1",
4030
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(44, 44, 44);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4031
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(66, 66, 66);font-size:10px;line-height:initial;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.48);",
4032
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(66, 66, 66);font-size:10px;line-height:initial;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.5);",
4033
+ "custom_css_special":"[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
4034
+ },
4035
+ "Neo Yellow": {
4036
+ "container_width":"0",
4037
+ "container_margin":"||0px||0px||0px||0px||",
4038
+ "container_padding":"||5px||5px||5px||5px||",
4039
+ "container_background":"1-260-rgb(115, 115, 115)-rgb(87, 87, 87)",
4040
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
4041
+ "container_shadow":"box-shadow:0px 0px 17px -3px rgb(0, 0, 0) inset;",
4042
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(243, 243, 243);font-size:19px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0);",
4043
+ "container_title_margin":"||10px||7px||0px||9px||",
4044
+ "search_box_height":"auto",
4045
+ "search_box_margin":"||11px||11px||11px||11px||",
4046
+ "search_box_padding":"||0px||0px||0px||0px||",
4047
+ "search_box_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
4048
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
4049
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
4050
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4051
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4052
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
4053
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
4054
+ "sort_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4055
+ "filter_caption_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(237, 237, 237);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4056
+ "filter_button_padding":"||5px||5px||10px||10px||",
4057
+ "filter_button_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
4058
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4059
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4060
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4061
+ "filter_dropdown_background":"rgb(51, 51, 51)",
4062
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
4063
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4064
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
4065
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
4066
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:10px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4067
+ "sort_button_padding":"||5px||5px||10px||10px||",
4068
+ "sort_button_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
4069
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4070
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4071
+ "sort_button_arrow_show":"1",
4072
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
4073
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
4074
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
4075
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4076
+ "nav_buttons_background":"0-60-rgb(51, 51, 51)-rgb(51, 51, 51)",
4077
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
4078
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
4079
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
4080
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
4081
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
4082
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
4083
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
4084
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
4085
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
4086
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
4087
+ "isotope_type":"masonry",
4088
+ "isotope_item_width":"150px",
4089
+ "isotope_item_background":"0-275-#e5e98f-rgb(216, 216, 92)",
4090
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4091
+ "isotope_item_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4092
+ "slick_item_width":"150px",
4093
+ "slick_item_background":"1-275-#e5e98f-rgb(216, 216, 92)",
4094
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
4095
+ "slick_item_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) inset;",
4096
+ "transitioning_type":"fxFerris",
4097
+ "transitioning_image_position":"left",
4098
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
4099
+ "transitioning_height":"200px",
4100
+ "transitioning_item_background":"0-265-#e5e98f-rgb(216, 216, 92)",
4101
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4102
+ "transitioning_item_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
4103
+ "title_on_image":"0",
4104
+ "title_background_color":"rgba(100, 100, 100, 0)",
4105
+ "title_font":"font-weight:normal;font-family:--g--Lato;color:rgb(51, 51, 51);font-size:16px;line-height:24px;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.4);",
4106
+ "title_font_color_hover":"rgb(0, 0, 0)",
4107
+ "title_font_color_active":"rgb(0, 0, 0)",
4108
+ "item_area_clickable":"1",
4109
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(44, 44, 44);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4110
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(66, 66, 66);font-size:10px;line-height:initial;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.48);",
4111
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(66, 66, 66);font-size:10px;line-height:initial;text-shadow:1px 1px 1px rgba(255, 255, 255, 0.5);",
4112
+ "custom_css_special":"[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
4113
+ },
4114
+ "---Magazine Themes---": false,
4115
+ "Magazine Orange": {
4116
+ "container_width":"0",
4117
+ "container_margin":"||0px||0px||0px||0px||",
4118
+ "container_padding":"||5px||5px||5px||5px||",
4119
+ "container_background":"1-260-rgb(243, 243, 243)-rgb(243, 243, 243)",
4120
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
4121
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
4122
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
4123
+ "container_title_margin":"||10px||7px||0px||9px||",
4124
+ "search_box_height":"auto",
4125
+ "search_box_margin":"||11px||11px||11px||11px||",
4126
+ "search_box_padding":"||0px||0px||0px||0px||",
4127
+ "search_box_background":"0-60-rgba(217, 136, 115, 1)-rgba(217, 136, 115, 1)",
4128
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
4129
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
4130
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4131
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4132
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
4133
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
4134
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4135
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4136
+ "filter_button_padding":"||5px||5px||10px||10px||",
4137
+ "filter_button_background":"0-60-rgba(217, 136, 115, 1)-rgba(217, 136, 115, 1)",
4138
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4139
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4140
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4141
+ "filter_dropdown_background":"rgba(218, 218, 218, 1)",
4142
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
4143
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4144
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
4145
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
4146
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4147
+ "sort_button_padding":"||5px||5px||10px||10px||",
4148
+ "sort_button_background":"0-60-rgba(217, 136, 115, 1)-rgba(217, 136, 115, 1)",
4149
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4150
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4151
+ "sort_button_arrow_show":"1",
4152
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
4153
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
4154
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
4155
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4156
+ "nav_buttons_background":"0-60-rgba(217, 136, 115, 1)-rgba(217, 136, 115, 1)",
4157
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4158
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
4159
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
4160
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
4161
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
4162
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
4163
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
4164
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
4165
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
4166
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
4167
+ "isotope_type":"masonry",
4168
+ "isotope_item_width":"150px",
4169
+ "isotope_item_background":"0-60-rgb(217, 136, 115)-rgb(217, 136, 115)",
4170
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4171
+ "isotope_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4172
+ "slick_item_width":"150px",
4173
+ "slick_item_background":"0-60-rgb(217, 136, 115)-rgb(217, 136, 115)",
4174
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
4175
+ "slick_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4176
+ "transitioning_type":"fxFerris",
4177
+ "transitioning_image_position":"left",
4178
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
4179
+ "transitioning_height":"200px",
4180
+ "transitioning_item_background":"0-60-rgb(217, 136, 115)-rgb(217, 136, 115)",
4181
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4182
+ "transitioning_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
4183
+ "title_on_image":"0",
4184
+ "title_background_color":"rgba(100, 100, 100, 0)",
4185
+ "title_font":"font-weight:bold;font-family:'Arial Black', Gadget, sans-serif;color:rgb(248, 248, 248);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4186
+ "title_font_color_hover":"rgb(66, 117, 148)",
4187
+ "title_font_color_active":"rgb(66, 117, 148)",
4188
+ "item_area_clickable":"1",
4189
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(248, 248, 248);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4190
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4191
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4192
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
4193
+ },
4194
+ "Magazine Orange Transparent": {
4195
+ "container_width":"0",
4196
+ "container_margin":"||0px||0px||0px||0px||",
4197
+ "container_padding":"||5px||5px||5px||5px||",
4198
+ "container_background":"1-260-rgba(243, 243, 243, 0)-rgba(243, 243, 243, 0)",
4199
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
4200
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
4201
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
4202
+ "container_title_margin":"||10px||7px||0px||9px||",
4203
+ "search_box_height":"auto",
4204
+ "search_box_margin":"||11px||11px||11px||11px||",
4205
+ "search_box_padding":"||0px||0px||0px||0px||",
4206
+ "search_box_background":"0-60-rgba(217, 136, 115, 1)-rgba(217, 136, 115, 1)",
4207
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
4208
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
4209
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4210
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4211
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
4212
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
4213
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4214
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4215
+ "filter_button_padding":"||5px||5px||10px||10px||",
4216
+ "filter_button_background":"0-60-rgba(217, 136, 115, 1)-rgba(217, 136, 115, 1)",
4217
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4218
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4219
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4220
+ "filter_dropdown_background":"rgba(218, 218, 218, 1)",
4221
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
4222
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4223
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
4224
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
4225
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4226
+ "sort_button_padding":"||5px||5px||10px||10px||",
4227
+ "sort_button_background":"0-60-rgba(217, 136, 115, 1)-rgba(217, 136, 115, 1)",
4228
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4229
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4230
+ "sort_button_arrow_show":"1",
4231
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
4232
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
4233
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
4234
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4235
+ "nav_buttons_background":"0-60-rgba(217, 136, 115, 1)-rgba(217, 136, 115, 1)",
4236
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4237
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
4238
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
4239
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
4240
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
4241
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
4242
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
4243
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
4244
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
4245
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
4246
+ "isotope_type":"masonry",
4247
+ "isotope_item_width":"150px",
4248
+ "isotope_item_background":"0-60-rgb(217, 136, 115)-rgb(217, 136, 115)",
4249
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4250
+ "isotope_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4251
+ "slick_item_width":"150px",
4252
+ "slick_item_background":"0-60-rgb(217, 136, 115)-rgb(217, 136, 115)",
4253
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
4254
+ "slick_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4255
+ "transitioning_type":"fxFerris",
4256
+ "transitioning_image_position":"left",
4257
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
4258
+ "transitioning_height":"200px",
4259
+ "transitioning_item_background":"0-60-rgb(217, 136, 115)-rgb(217, 136, 115)",
4260
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4261
+ "transitioning_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
4262
+ "title_on_image":"0",
4263
+ "title_background_color":"rgba(100, 100, 100, 0)",
4264
+ "title_font":"font-weight:bold;font-family:'Arial Black', Gadget, sans-serif;color:rgb(248, 248, 248);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4265
+ "title_font_color_hover":"rgb(66, 117, 148)",
4266
+ "title_font_color_active":"rgb(66, 117, 148)",
4267
+ "item_area_clickable":"1",
4268
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(248, 248, 248);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4269
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4270
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4271
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
4272
+ },
4273
+ "Magazine Blue": {
4274
+ "container_width":"0",
4275
+ "container_margin":"||0px||0px||0px||0px||",
4276
+ "container_padding":"||5px||5px||5px||5px||",
4277
+ "container_background":"1-260-rgb(243, 243, 243)-rgb(243, 243, 243)",
4278
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
4279
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
4280
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
4281
+ "container_title_margin":"||10px||7px||0px||9px||",
4282
+ "search_box_height":"auto",
4283
+ "search_box_margin":"||11px||11px||11px||11px||",
4284
+ "search_box_padding":"||0px||0px||0px||0px||",
4285
+ "search_box_background":"0-60-rgba(35, 84, 140, 1)-rgba(35, 84, 140, 1)",
4286
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
4287
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
4288
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4289
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4290
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
4291
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
4292
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4293
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4294
+ "filter_button_padding":"||5px||5px||10px||10px||",
4295
+ "filter_button_background":"0-60-rgba(35, 84, 140, 1)-rgba(35, 84, 140, 1)",
4296
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4297
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4298
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4299
+ "filter_dropdown_background":"rgba(218, 218, 218, 1)",
4300
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
4301
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4302
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
4303
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
4304
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4305
+ "sort_button_padding":"||5px||5px||10px||10px||",
4306
+ "sort_button_background":"0-60-rgba(35, 84, 140, 1)-rgba(35, 84, 140, 1)",
4307
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4308
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4309
+ "sort_button_arrow_show":"1",
4310
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
4311
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
4312
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
4313
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4314
+ "nav_buttons_background":"0-60-rgba(35, 84, 140, 1)-rgba(35, 84, 140, 1)",
4315
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4316
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
4317
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
4318
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
4319
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
4320
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
4321
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
4322
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
4323
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
4324
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
4325
+ "isotope_type":"masonry",
4326
+ "isotope_item_width":"150px",
4327
+ "isotope_item_background":"0-60-rgb(35, 84, 140)-rgb(35, 84, 140)",
4328
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4329
+ "isotope_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4330
+ "slick_item_width":"150px",
4331
+ "slick_item_background":"0-60-rgb(35, 84, 140)-rgb(35, 84, 140)",
4332
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
4333
+ "slick_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4334
+ "transitioning_type":"fxFerris",
4335
+ "transitioning_image_position":"left",
4336
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
4337
+ "transitioning_height":"200px",
4338
+ "transitioning_item_background":"0-60-rgb(35, 84, 140)-rgb(35, 84, 140)",
4339
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4340
+ "transitioning_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
4341
+ "title_on_image":"0",
4342
+ "title_background_color":"rgba(100, 100, 100, 0)",
4343
+ "title_font":"font-weight:bold;font-family:'Arial Black', Gadget, sans-serif;color:rgb(248, 248, 248);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4344
+ "title_font_color_hover":"rgb(66, 117, 148)",
4345
+ "title_font_color_active":"rgb(66, 117, 148)",
4346
+ "item_area_clickable":"1",
4347
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(248, 248, 248);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4348
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4349
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4350
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
4351
+ },
4352
+ "Magazine Blue Transparent": {
4353
+ "container_width":"0",
4354
+ "container_margin":"||0px||0px||0px||0px||",
4355
+ "container_padding":"||5px||5px||5px||5px||",
4356
+ "container_background":"1-260-rgba(243, 243, 243, 0)-rgba(243, 243, 243, 0)",
4357
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
4358
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
4359
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
4360
+ "container_title_margin":"||10px||7px||0px||9px||",
4361
+ "search_box_height":"auto",
4362
+ "search_box_margin":"||11px||11px||11px||11px||",
4363
+ "search_box_padding":"||0px||0px||0px||0px||",
4364
+ "search_box_background":"0-60-rgba(35, 84, 140, 1)-rgba(35, 84, 140, 1)",
4365
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
4366
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
4367
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4368
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4369
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
4370
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
4371
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4372
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4373
+ "filter_button_padding":"||5px||5px||10px||10px||",
4374
+ "filter_button_background":"0-60-rgba(35, 84, 140, 1)-rgba(35, 84, 140, 1)",
4375
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4376
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4377
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4378
+ "filter_dropdown_background":"rgba(218, 218, 218, 1)",
4379
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
4380
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4381
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
4382
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
4383
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4384
+ "sort_button_padding":"||5px||5px||10px||10px||",
4385
+ "sort_button_background":"0-60-rgba(35, 84, 140, 1)-rgba(35, 84, 140, 1)",
4386
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4387
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4388
+ "sort_button_arrow_show":"1",
4389
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
4390
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
4391
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
4392
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4393
+ "nav_buttons_background":"0-60-rgba(35, 84, 140, 1)-rgba(35, 84, 140, 1)",
4394
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4395
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
4396
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
4397
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
4398
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
4399
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
4400
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
4401
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
4402
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
4403
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
4404
+ "isotope_type":"masonry",
4405
+ "isotope_item_width":"150px",
4406
+ "isotope_item_background":"0-60-rgb(35, 84, 140)-rgb(35, 84, 140)",
4407
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4408
+ "isotope_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4409
+ "slick_item_width":"150px",
4410
+ "slick_item_background":"0-60-rgb(35, 84, 140)-rgb(35, 84, 140)",
4411
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
4412
+ "slick_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4413
+ "transitioning_type":"fxFerris",
4414
+ "transitioning_image_position":"left",
4415
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
4416
+ "transitioning_height":"200px",
4417
+ "transitioning_item_background":"0-60-rgb(35, 84, 140)-rgb(35, 84, 140)",
4418
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4419
+ "transitioning_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
4420
+ "title_on_image":"0",
4421
+ "title_background_color":"rgba(100, 100, 100, 0)",
4422
+ "title_font":"font-weight:bold;font-family:'Arial Black', Gadget, sans-serif;color:rgb(248, 248, 248);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4423
+ "title_font_color_hover":"rgb(66, 117, 148)",
4424
+ "title_font_color_active":"rgb(66, 117, 148)",
4425
+ "item_area_clickable":"1",
4426
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(248, 248, 248);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4427
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4428
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4429
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
4430
+ },
4431
+ "Magazine Red": {
4432
+ "container_width":"0",
4433
+ "container_margin":"||0px||0px||0px||0px||",
4434
+ "container_padding":"||5px||5px||5px||5px||",
4435
+ "container_background":"1-260-rgb(243, 243, 243)-rgb(243, 243, 243)",
4436
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
4437
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
4438
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
4439
+ "container_title_margin":"||10px||7px||0px||9px||",
4440
+ "search_box_height":"auto",
4441
+ "search_box_margin":"||11px||11px||11px||11px||",
4442
+ "search_box_padding":"||0px||0px||0px||0px||",
4443
+ "search_box_background":"0-60-rgba(210, 88, 87, 1)-rgba(210, 88, 87, 1)",
4444
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
4445
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
4446
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4447
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4448
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
4449
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
4450
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4451
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4452
+ "filter_button_padding":"||5px||5px||10px||10px||",
4453
+ "filter_button_background":"0-60-rgba(210, 88, 87, 1)-rgba(210, 88, 87, 1)",
4454
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4455
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4456
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4457
+ "filter_dropdown_background":"rgba(218, 218, 218, 1)",
4458
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
4459
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4460
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
4461
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
4462
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4463
+ "sort_button_padding":"||5px||5px||10px||10px||",
4464
+ "sort_button_background":"0-60-rgba(210, 88, 87, 1)-rgba(210, 88, 87, 1)",
4465
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4466
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4467
+ "sort_button_arrow_show":"1",
4468
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
4469
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
4470
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
4471
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4472
+ "nav_buttons_background":"0-60-rgba(210, 88, 87, 1)-rgba(210, 88, 87, 1)",
4473
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4474
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
4475
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
4476
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
4477
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
4478
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
4479
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
4480
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
4481
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
4482
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
4483
+ "isotope_type":"masonry",
4484
+ "isotope_item_width":"150px",
4485
+ "isotope_item_background":"0-60-rgb(210, 88, 87)-rgb(210, 88, 87)",
4486
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4487
+ "isotope_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4488
+ "slick_item_width":"150px",
4489
+ "slick_item_background":"0-60-rgb(210, 88, 87)-rgb(210, 88, 87)",
4490
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
4491
+ "slick_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4492
+ "transitioning_type":"fxFerris",
4493
+ "transitioning_image_position":"left",
4494
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
4495
+ "transitioning_height":"200px",
4496
+ "transitioning_item_background":"0-60-rgb(210, 88, 87)-rgb(210, 88, 87)",
4497
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4498
+ "transitioning_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
4499
+ "title_on_image":"0",
4500
+ "title_background_color":"rgba(100, 100, 100, 0)",
4501
+ "title_font":"font-weight:bold;font-family:'Arial Black', Gadget, sans-serif;color:rgb(248, 248, 248);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4502
+ "title_font_color_hover":"rgb(66, 117, 148)",
4503
+ "title_font_color_active":"rgb(66, 117, 148)",
4504
+ "item_area_clickable":"1",
4505
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(248, 248, 248);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4506
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4507
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4508
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
4509
+ },
4510
+ "Magazine Red Transparent": {
4511
+ "container_width":"0",
4512
+ "container_margin":"||0px||0px||0px||0px||",
4513
+ "container_padding":"||5px||5px||5px||5px||",
4514
+ "container_background":"1-260-rgba(243, 243, 243, 0)-rgba(243, 243, 243, 0)",
4515
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
4516
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
4517
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
4518
+ "container_title_margin":"||10px||7px||0px||9px||",
4519
+ "search_box_height":"auto",
4520
+ "search_box_margin":"||11px||11px||11px||11px||",
4521
+ "search_box_padding":"||0px||0px||0px||0px||",
4522
+ "search_box_background":"0-60-rgba(210, 88, 87, 1)-rgba(210, 88, 87, 1)",
4523
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
4524
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
4525
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4526
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4527
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
4528
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
4529
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4530
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4531
+ "filter_button_padding":"||5px||5px||10px||10px||",
4532
+ "filter_button_background":"0-60-rgba(210, 88, 87, 1)-rgba(210, 88, 87, 1)",
4533
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4534
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4535
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4536
+ "filter_dropdown_background":"rgba(218, 218, 218, 1)",
4537
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
4538
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4539
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
4540
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
4541
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4542
+ "sort_button_padding":"||5px||5px||10px||10px||",
4543
+ "sort_button_background":"0-60-rgba(210, 88, 87, 1)-rgba(210, 88, 87, 1)",
4544
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4545
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4546
+ "sort_button_arrow_show":"1",
4547
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
4548
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
4549
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
4550
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4551
+ "nav_buttons_background":"0-60-rgba(210, 88, 87, 1)-rgba(210, 88, 87, 1)",
4552
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4553
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
4554
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
4555
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
4556
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
4557
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
4558
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
4559
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
4560
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
4561
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
4562
+ "isotope_type":"masonry",
4563
+ "isotope_item_width":"150px",
4564
+ "isotope_item_background":"0-60-rgb(210, 88, 87)-rgb(210, 88, 87)",
4565
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4566
+ "isotope_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4567
+ "slick_item_width":"150px",
4568
+ "slick_item_background":"0-60-rgb(210, 88, 87)-rgb(210, 88, 87)",
4569
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
4570
+ "slick_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4571
+ "transitioning_type":"fxFerris",
4572
+ "transitioning_image_position":"left",
4573
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
4574
+ "transitioning_height":"200px",
4575
+ "transitioning_item_background":"0-60-rgb(210, 88, 87)-rgb(210, 88, 87)",
4576
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4577
+ "transitioning_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
4578
+ "title_on_image":"0",
4579
+ "title_background_color":"rgba(100, 100, 100, 0)",
4580
+ "title_font":"font-weight:bold;font-family:'Arial Black', Gadget, sans-serif;color:rgb(248, 248, 248);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4581
+ "title_font_color_hover":"rgb(66, 117, 148)",
4582
+ "title_font_color_active":"rgb(66, 117, 148)",
4583
+ "item_area_clickable":"1",
4584
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(248, 248, 248);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4585
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4586
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4587
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
4588
+ },
4589
+ "Magazine Opal": {
4590
+ "container_width":"0",
4591
+ "container_margin":"||0px||0px||0px||0px||",
4592
+ "container_padding":"||5px||5px||5px||5px||",
4593
+ "container_background":"1-260-rgb(243, 243, 243)-rgb(243, 243, 243)",
4594
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
4595
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
4596
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
4597
+ "container_title_margin":"||10px||7px||0px||9px||",
4598
+ "search_box_height":"auto",
4599
+ "search_box_margin":"||11px||11px||11px||11px||",
4600
+ "search_box_padding":"||0px||0px||0px||0px||",
4601
+ "search_box_background":"0-60-rgba(171, 196, 192, 1)-rgba(171, 196, 192, 1)",
4602
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
4603
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
4604
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4605
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4606
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
4607
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
4608
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4609
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4610
+ "filter_button_padding":"||5px||5px||10px||10px||",
4611
+ "filter_button_background":"0-60-rgba(171, 196, 192, 1)-rgba(171, 196, 192, 1)",
4612
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4613
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4614
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4615
+ "filter_dropdown_background":"rgba(218, 218, 218, 1)",
4616
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
4617
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4618
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
4619
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
4620
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4621
+ "sort_button_padding":"||5px||5px||10px||10px||",
4622
+ "sort_button_background":"0-60-rgba(171, 196, 192, 1)-rgba(171, 196, 192, 1)",
4623
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4624
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4625
+ "sort_button_arrow_show":"1",
4626
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
4627
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
4628
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
4629
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4630
+ "nav_buttons_background":"0-60-rgba(171, 196, 192, 1)-rgba(171, 196, 192, 1)",
4631
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4632
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
4633
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
4634
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
4635
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
4636
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
4637
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
4638
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
4639
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
4640
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
4641
+ "isotope_type":"masonry",
4642
+ "isotope_item_width":"150px",
4643
+ "isotope_item_background":"0-60-rgb(171, 196, 192)-rgb(171, 196, 192)",
4644
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4645
+ "isotope_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4646
+ "slick_item_width":"150px",
4647
+ "slick_item_background":"0-60-rgb(171, 196, 192)-rgb(171, 196, 192)",
4648
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
4649
+ "slick_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4650
+ "transitioning_type":"fxFerris",
4651
+ "transitioning_image_position":"left",
4652
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
4653
+ "transitioning_height":"200px",
4654
+ "transitioning_item_background":"0-60-rgb(171, 196, 192)-rgb(171, 196, 192)",
4655
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4656
+ "transitioning_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
4657
+ "title_on_image":"0",
4658
+ "title_background_color":"rgba(100, 100, 100, 0)",
4659
+ "title_font":"font-weight:bold;font-family:'Arial Black', Gadget, sans-serif;color:rgb(248, 248, 248);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4660
+ "title_font_color_hover":"rgb(66, 117, 148)",
4661
+ "title_font_color_active":"rgb(66, 117, 148)",
4662
+ "item_area_clickable":"1",
4663
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(248, 248, 248);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4664
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4665
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4666
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
4667
+ },
4668
+ "Magazine Opal Transparent": {
4669
+ "container_width":"0",
4670
+ "container_margin":"||0px||0px||0px||0px||",
4671
+ "container_padding":"||5px||5px||5px||5px||",
4672
+ "container_background":"1-260-rgba(243, 243, 243, 0)-rgba(243, 243, 243, 0)",
4673
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
4674
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
4675
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
4676
+ "container_title_margin":"||10px||7px||0px||9px||",
4677
+ "search_box_height":"auto",
4678
+ "search_box_margin":"||11px||11px||11px||11px||",
4679
+ "search_box_padding":"||0px||0px||0px||0px||",
4680
+ "search_box_background":"0-60-rgba(171, 196, 192, 1)-rgba(171, 196, 192, 1)",
4681
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
4682
+ "search_box_shadow":"box-shadow:0px -2px 0px 0px rgba(0, 0, 0, 0.28) inset;",
4683
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4684
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4685
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
4686
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
4687
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4688
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4689
+ "filter_button_padding":"||5px||5px||10px||10px||",
4690
+ "filter_button_background":"0-60-rgba(171, 196, 192, 1)-rgba(171, 196, 192, 1)",
4691
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4692
+ "filter_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4693
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4694
+ "filter_dropdown_background":"rgba(218, 218, 218, 1)",
4695
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
4696
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4697
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
4698
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
4699
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4700
+ "sort_button_padding":"||5px||5px||10px||10px||",
4701
+ "sort_button_background":"0-60-rgba(171, 196, 192, 1)-rgba(171, 196, 192, 1)",
4702
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4703
+ "sort_button_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.23) ;",
4704
+ "sort_button_arrow_show":"1",
4705
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
4706
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
4707
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
4708
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4709
+ "nav_buttons_background":"0-60-rgba(171, 196, 192, 1)-rgba(171, 196, 192, 1)",
4710
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4711
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 0px rgb(255, 255, 255) ;",
4712
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
4713
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
4714
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
4715
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
4716
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
4717
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
4718
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
4719
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
4720
+ "isotope_type":"masonry",
4721
+ "isotope_item_width":"150px",
4722
+ "isotope_item_background":"0-60-rgb(171, 196, 192)-rgb(171, 196, 192)",
4723
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4724
+ "isotope_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4725
+ "slick_item_width":"150px",
4726
+ "slick_item_background":"0-60-rgb(171, 196, 192)-rgb(171, 196, 192)",
4727
+ "slick_item_border":"border:0px solid rgb(221, 221, 221);border-radius:0px 0px 0px 0px;",
4728
+ "slick_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) inset;",
4729
+ "transitioning_type":"fxFerris",
4730
+ "transitioning_image_position":"left",
4731
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
4732
+ "transitioning_height":"200px",
4733
+ "transitioning_item_background":"0-60-rgb(171, 196, 192)-rgb(171, 196, 192)",
4734
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4735
+ "transitioning_item_shadow":"box-shadow:-3px 0px 0px 0px rgba(0, 0, 0, 0.2) ;",
4736
+ "title_on_image":"0",
4737
+ "title_background_color":"rgba(100, 100, 100, 0)",
4738
+ "title_font":"font-weight:bold;font-family:'Arial Black', Gadget, sans-serif;color:rgb(248, 248, 248);font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4739
+ "title_font_color_hover":"rgb(66, 117, 148)",
4740
+ "title_font_color_active":"rgb(66, 117, 148)",
4741
+ "item_area_clickable":"1",
4742
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(248, 248, 248);font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4743
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4744
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4745
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 0px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
4746
+ },
4747
+ "---Special Themes---": false,
4748
+ "Pinteresting": {
4749
+ "container_width":"0",
4750
+ "container_margin":"||0px||0px||0px||0px||",
4751
+ "container_padding":"||5px||5px||5px||5px||",
4752
+ "container_background":"1-260-rgb(233, 233, 233)-rgb(233, 233, 233)",
4753
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4754
+ "container_shadow":"box-shadow:0px 12px 3px -10px rgba(151, 151, 151, 0.17) inset;",
4755
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
4756
+ "container_title_margin":"||10px||7px||0px||9px||",
4757
+ "search_box_height":"auto",
4758
+ "search_box_margin":"||11px||11px||11px||11px||",
4759
+ "search_box_padding":"||0px||0px||0px||0px||",
4760
+ "search_box_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4761
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
4762
+ "search_box_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
4763
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4764
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4765
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
4766
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
4767
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:#777777;font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4768
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:#777777;font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4769
+ "filter_button_padding":"||5px||5px||10px||10px||",
4770
+ "filter_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4771
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:16px 16px 16px 16px;",
4772
+ "filter_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
4773
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4774
+ "filter_dropdown_background":"rgb(255, 255, 255)",
4775
+ "filter_dropdown_shadow":"box-shadow:0px 0px 4px -2px #000000 ;",
4776
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4777
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
4778
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
4779
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4780
+ "sort_button_padding":"||5px||5px||10px||10px||",
4781
+ "sort_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4782
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:16px 16px 16px 16px;",
4783
+ "sort_button_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
4784
+ "sort_button_arrow_show":"1",
4785
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
4786
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
4787
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
4788
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4789
+ "nav_buttons_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4790
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:18px 18px 18px 18px;",
4791
+ "nav_buttons_shadow":"box-shadow:0px 0px 10px -6px #000000 ;",
4792
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
4793
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
4794
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
4795
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
4796
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
4797
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
4798
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
4799
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
4800
+ "isotope_type":"masonry",
4801
+ "isotope_item_width":"150px",
4802
+ "isotope_item_background":"0-60-rgb(254, 254, 254)-rgb(254, 254, 254)",
4803
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:3px 3px 3px 3px;",
4804
+ "isotope_item_shadow":"box-shadow:0px 1px 1px 0px rgba(0, 0, 0, 0.18) ;",
4805
+ "slick_item_width":"150px",
4806
+ "slick_item_background":"0-60-rgb(254, 254, 254)-rgb(254, 254, 254)",
4807
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:3px 3px 3px 3px;",
4808
+ "slick_item_shadow":"box-shadow:0px 1px 1px 0px rgba(0, 0, 0, 0.18) ;",
4809
+ "transitioning_type":"fxFerris",
4810
+ "transitioning_image_position":"left",
4811
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
4812
+ "transitioning_height":"200px",
4813
+ "transitioning_item_background":"0-60-rgb(254, 254, 254)-rgb(254, 254, 254)",
4814
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:3px 3px 3px 3px;",
4815
+ "transitioning_item_shadow":"box-shadow:0px 1px 1px 0px rgba(0, 0, 0, 0.18) ;",
4816
+ "title_on_image":"0",
4817
+ "title_background_color":"rgba(100, 100, 100, 0)",
4818
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4819
+ "title_font_color_hover":"rgb(66, 117, 148)",
4820
+ "title_font_color_active":"rgb(66, 117, 148)",
4821
+ "item_area_clickable":"1",
4822
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4823
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4824
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4825
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}"
4826
+ },
4827
+ "Pinteresting Transparent": {
4828
+ "container_width":"0",
4829
+ "container_margin":"||0px||0px||0px||0px||",
4830
+ "container_padding":"||5px||5px||5px||5px||",
4831
+ "container_background":"1-260-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
4832
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4833
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
4834
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
4835
+ "container_title_margin":"||10px||7px||0px||9px||",
4836
+ "search_box_height":"auto",
4837
+ "search_box_margin":"||11px||11px||11px||11px||",
4838
+ "search_box_padding":"||0px||0px||0px||0px||",
4839
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4840
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:2px 2px 2px 2px;",
4841
+ "search_box_shadow":"box-shadow:0px 1px 3px 0px rgba(0, 0, 0, 0.28) inset;",
4842
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4843
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4844
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
4845
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
4846
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:#777777;font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4847
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:#777777;font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4848
+ "filter_button_padding":"||5px||5px||10px||10px||",
4849
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4850
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:16px 16px 16px 16px;",
4851
+ "filter_button_shadow":"box-shadow:0px 1px 2px 0px rgba(0, 0, 0, 0.23) ;",
4852
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4853
+ "filter_dropdown_background":"rgb(248, 248, 248)",
4854
+ "filter_dropdown_shadow":"box-shadow:0px 0px 1px 0px rgba(0, 0, 0, 0.31) ;",
4855
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4856
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
4857
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
4858
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4859
+ "sort_button_padding":"||5px||5px||10px||10px||",
4860
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4861
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:16px 16px 16px 16px;",
4862
+ "sort_button_shadow":"box-shadow:0px 1px 2px 0px rgba(0, 0, 0, 0.23) ;",
4863
+ "sort_button_arrow_show":"1",
4864
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
4865
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
4866
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
4867
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4868
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4869
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:18px 18px 18px 18px;",
4870
+ "nav_buttons_shadow":"box-shadow:0px 1px 2px 0px rgba(0, 0, 0, 0.3) ;",
4871
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
4872
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
4873
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
4874
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
4875
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
4876
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
4877
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
4878
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
4879
+ "isotope_type":"masonry",
4880
+ "isotope_item_width":"150px",
4881
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4882
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:3px 3px 3px 3px;",
4883
+ "isotope_item_shadow":"box-shadow:0px 1px 3px 0px rgba(0, 0, 0, 0.3) ;",
4884
+ "slick_item_width":"150px",
4885
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4886
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:3px 3px 3px 3px;",
4887
+ "slick_item_shadow":"box-shadow:0px 1px 3px 0px rgba(0, 0, 0, 0.3) ;",
4888
+ "transitioning_type":"fxFerris",
4889
+ "transitioning_image_position":"left",
4890
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
4891
+ "transitioning_height":"200px",
4892
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4893
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:2px 2px 2px 2px;",
4894
+ "transitioning_item_shadow":"box-shadow:0px 1px 3px 0px rgba(0, 0, 0, 0.38) ;",
4895
+ "title_on_image":"0",
4896
+ "title_background_color":"rgba(100, 100, 100, 0)",
4897
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4898
+ "title_font_color_hover":"rgb(66, 117, 148)",
4899
+ "title_font_color_active":"rgb(66, 117, 148)",
4900
+ "item_area_clickable":"1",
4901
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4902
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4903
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4904
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}"
4905
+ },
4906
+ "Pinteresting Transparent Straight": {
4907
+ "container_width":"0",
4908
+ "container_margin":"||0px||0px||0px||0px||",
4909
+ "container_padding":"||5px||5px||5px||5px||",
4910
+ "container_background":"1-260-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
4911
+ "container_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4912
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
4913
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
4914
+ "container_title_margin":"||10px||7px||0px||9px||",
4915
+ "search_box_height":"auto",
4916
+ "search_box_margin":"||11px||11px||11px||11px||",
4917
+ "search_box_padding":"||0px||0px||0px||0px||",
4918
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4919
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
4920
+ "search_box_shadow":"box-shadow:0px 1px 3px 0px rgba(0, 0, 0, 0.28) inset;",
4921
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4922
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4923
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
4924
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
4925
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:#777777;font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4926
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:#777777;font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
4927
+ "filter_button_padding":"||5px||5px||10px||10px||",
4928
+ "filter_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4929
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4930
+ "filter_button_shadow":"box-shadow:0px 1px 2px 0px rgba(0, 0, 0, 0.23) ;",
4931
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4932
+ "filter_dropdown_background":"rgb(248, 248, 248)",
4933
+ "filter_dropdown_shadow":"box-shadow:0px 0px 1px 0px rgba(0, 0, 0, 0.31) ;",
4934
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
4935
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
4936
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
4937
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4938
+ "sort_button_padding":"||5px||5px||10px||10px||",
4939
+ "sort_button_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4940
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4941
+ "sort_button_shadow":"box-shadow:0px 1px 2px 0px rgba(0, 0, 0, 0.23) ;",
4942
+ "sort_button_arrow_show":"1",
4943
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
4944
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
4945
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
4946
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4947
+ "nav_buttons_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4948
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4949
+ "nav_buttons_shadow":"box-shadow:0px 1px 2px 0px rgba(0, 0, 0, 0.3) ;",
4950
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
4951
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
4952
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
4953
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
4954
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
4955
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
4956
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
4957
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
4958
+ "isotope_type":"masonry",
4959
+ "isotope_item_width":"150px",
4960
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4961
+ "isotope_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4962
+ "isotope_item_shadow":"box-shadow:0px 1px 3px 0px rgba(0, 0, 0, 0.3) ;",
4963
+ "slick_item_width":"150px",
4964
+ "slick_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4965
+ "slick_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4966
+ "slick_item_shadow":"box-shadow:0px 1px 3px 0px rgba(0, 0, 0, 0.3) ;",
4967
+ "transitioning_type":"fxFerris",
4968
+ "transitioning_image_position":"left",
4969
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
4970
+ "transitioning_height":"200px",
4971
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4972
+ "transitioning_item_border":"border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px;",
4973
+ "transitioning_item_shadow":"box-shadow:0px 1px 3px 0px rgba(0, 0, 0, 0.38) ;",
4974
+ "title_on_image":"0",
4975
+ "title_background_color":"rgba(100, 100, 100, 0)",
4976
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4977
+ "title_font_color_hover":"rgb(66, 117, 148)",
4978
+ "title_font_color_active":"rgb(66, 117, 148)",
4979
+ "item_area_clickable":"1",
4980
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4981
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4982
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
4983
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 3px;}"
4984
+ },
4985
+ "Polaroid": {
4986
+ "container_width":"0",
4987
+ "container_margin":"||0px||0px||0px||0px||",
4988
+ "container_padding":"||5px||5px||5px||5px||",
4989
+ "container_background":"0-30-rgba(233, 233, 233, 0)-rgba(233, 233, 233, 0)",
4990
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
4991
+ "container_shadow":"box-shadow:0px 0px 0px 0px rgb(0, 0, 0) inset;",
4992
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(104, 104, 104);font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0.8);",
4993
+ "container_title_margin":"||10px||7px||0px||9px||",
4994
+ "search_box_height":"auto",
4995
+ "search_box_margin":"||11px||11px||11px||11px||",
4996
+ "search_box_padding":"||0px||0px||0px||0px||",
4997
+ "search_box_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
4998
+ "search_box_border":"border:5px solid rgb(255, 255, 255);border-radius:0px 0px 0px 0px;",
4999
+ "search_box_shadow":"box-shadow:2px 2px 14px -5px rgb(0, 0, 0) ;",
5000
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5001
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(170, 170, 170);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5002
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
5003
+ "search_box_magnifier_fill":"rgb(222, 222, 222)",
5004
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
5005
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0.8);",
5006
+ "filter_button_padding":"||5px||5px||10px||10px||",
5007
+ "filter_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
5008
+ "filter_button_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
5009
+ "filter_button_shadow":"box-shadow:0px 0px 6px -3px rgb(0, 0, 0) ;",
5010
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5011
+ "filter_dropdown_background":"rgb(248, 248, 248)",
5012
+ "filter_dropdown_shadow":"box-shadow:0px 0px 6px -3px rgb(0, 0, 0) ;",
5013
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
5014
+ "filter_dropdown_button_border":"border:1px solid rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
5015
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
5016
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5017
+ "sort_button_padding":"||5px||5px||10px||10px||",
5018
+ "sort_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
5019
+ "sort_button_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
5020
+ "sort_button_shadow":"box-shadow:0px 0px 6px -3px rgb(0, 0, 0) ;",
5021
+ "sort_button_arrow_show":"1",
5022
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
5023
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
5024
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 7px -5px rgb(0, 0, 0) inset;",
5025
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5026
+ "nav_buttons_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
5027
+ "nav_buttons_border":"border:0px none rgb(0, 0, 0);border-radius:20px 20px 20px 20px;",
5028
+ "nav_buttons_shadow":"box-shadow:0px 0px 6px -3px rgb(0, 0, 0) ;",
5029
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
5030
+ "nav_buttons_arrow_fill":"rgb(218, 218, 218)",
5031
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
5032
+ "nav_buttons_magn_fill":"rgb(218, 218, 218)",
5033
+ "nav_buttons_magn_active_fill":"rgb(162, 162, 162)",
5034
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
5035
+ "nav_buttons_list_fill":"rgb(218, 218, 218)",
5036
+ "nav_buttons_list_active_fill":"rgb(162, 162, 162)",
5037
+ "isotope_type":"masonry",
5038
+ "isotope_item_width":"150px",
5039
+ "isotope_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
5040
+ "isotope_item_border":"border:5px solid rgb(255, 255, 255);border-radius:0px 0px 0px 0px;",
5041
+ "isotope_item_shadow":"box-shadow:2px 2px 14px -5px rgb(0, 0, 0) ;",
5042
+ "slick_item_width":"150px",
5043
+ "slick_item_background":"0-60-rgb(240, 240, 240)-rgb(248, 248, 248)",
5044
+ "slick_item_border":"border:5px solid rgb(255, 255, 255);border-radius:0px 0px 0px 0px;",
5045
+ "slick_item_shadow":"box-shadow:2px 2px 14px -5px rgb(0, 0, 0) ;",
5046
+ "transitioning_type":"fxFerris",
5047
+ "transitioning_image_position":"left",
5048
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
5049
+ "transitioning_height":"200px",
5050
+ "transitioning_item_background":"0-60-rgb(248, 248, 248)-rgb(248, 248, 248)",
5051
+ "transitioning_item_border":"border:5px solid rgb(255, 255, 255);border-radius:0px 0px 0px 0px;",
5052
+ "transitioning_item_shadow":"box-shadow:2px 2px 14px -5px rgb(0, 0, 0) ;",
5053
+ "title_on_image":"0",
5054
+ "title_background_color":"rgba(100, 100, 100, 0)",
5055
+ "title_font":"font-weight:bold;font-family:--g--Lato;color:rgb(101, 150, 179);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5056
+ "title_font_color_hover":"rgb(66, 117, 148)",
5057
+ "title_font_color_active":"rgb(66, 117, 148)",
5058
+ "item_area_clickable":"1",
5059
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(119, 119, 119);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5060
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5061
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(165, 165, 165);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5062
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 2px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
5063
+ },
5064
+ "Vintage Blue-Brown": {
5065
+ "container_width":"0",
5066
+ "container_margin":"||0px||0px||0px||0px||",
5067
+ "container_padding":"||5px||5px||5px||5px||",
5068
+ "container_background":"1-260-rgb(136, 187, 190)-rgb(136, 187, 190)",
5069
+ "container_border":"border:0px none rgb(184, 184, 184);border-radius:0px 0px 0px 0px;",
5070
+ "container_shadow":"box-shadow:0px 0px 0px 0px #2e5e68 inset;",
5071
+ "container_font":"font-weight:normal;font-family:--g--Open Sans;color:#4c4a58;font-size:16px;line-height:16px;text-shadow:0px 1px 0px rgba(255, 255, 255, 0);",
5072
+ "container_title_margin":"||10px||7px||0px||9px||",
5073
+ "search_box_height":"auto",
5074
+ "search_box_margin":"||11px||11px||11px||11px||",
5075
+ "search_box_padding":"||0px||0px||0px||0px||",
5076
+ "search_box_background":"0-60-#3a6b73-#447d86",
5077
+ "search_box_border":"border:0px none rgb(5, 5, 5);border-radius:0px 0px 0px 0px;",
5078
+ "search_box_shadow":"box-shadow:0px 0px 0px 4px #a4d0d1 ;",
5079
+ "search_box_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5080
+ "search_box_def_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(255, 255, 255, 0.65);font-size:13px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5081
+ "search_box_image":"/related-posts-pro/img/magnifier/magn4.svg",
5082
+ "search_box_magnifier_fill":"rgb(255, 255, 255)",
5083
+ "sort_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:#4c4a58;font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5084
+ "filter_caption_font":"font-weight:bold;font-family:--g--Open Sans;color:#4c4a58;font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5085
+ "filter_button_padding":"||5px||5px||10px||10px||",
5086
+ "filter_button_background":"0-60-#3a6b73-#447d86",
5087
+ "filter_button_border":"border:1px solid rgb(225, 225, 225);border-radius:0px 0px 0px 0px;",
5088
+ "filter_button_shadow":"box-shadow:0px 0px 0px 4px #a4d0d1 ;",
5089
+ "filter_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5090
+ "filter_dropdown_background":"#3a6b73",
5091
+ "filter_dropdown_shadow":"box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.31) ;",
5092
+ "filter_dropdown_button_background":"0-60-rgb(255, 255, 255)-rgb(255, 255, 255)",
5093
+ "filter_dropdown_button_border":"border:0px none rgb(232, 232, 232);border-radius:16px 16px 16px 16px;",
5094
+ "filter_dropdown_button_shadow":"box-shadow:0px 0px 0px 0px #000000 ;",
5095
+ "filter_dropdown_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:normal;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5096
+ "sort_button_padding":"||5px||5px||10px||10px||",
5097
+ "sort_button_background":"0-60-#3a6b73-#447d86",
5098
+ "sort_button_border":"border:1px solid rgb(225, 225, 225);border-radius:0px 0px 0px 0px;",
5099
+ "sort_button_shadow":"box-shadow:0px 0px 0px 4px #a4d0d1 ;",
5100
+ "sort_button_arrow_show":"1",
5101
+ "sort_button_arrow_color":"rgb(68, 68, 68)",
5102
+ "sort_button_arrow_bg_color":"rgb(248, 248, 248)",
5103
+ "sort_button_arrow_bg_shadow":"box-shadow:1px 1px 3px -5px rgb(0, 0, 0) inset;",
5104
+ "sort_button_font":"font-weight:normal;font-family:--g--Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5105
+ "nav_buttons_background":"1-275-#3a6b73-#447d86",
5106
+ "nav_buttons_border":"border:1px solid rgb(225, 225, 225);border-radius:0px 0px 0px 0px;",
5107
+ "nav_buttons_shadow":"box-shadow:0px 0px 0px 4px #a4d0d1 ;",
5108
+ "nav_buttons_arrow_image":"related-posts-pro/img/arrows/arrow2.svg",
5109
+ "nav_buttons_arrow_fill":"rgb(255, 255, 255)",
5110
+ "nav_buttons_magn_image":"/related-posts-pro/img/magnifier/magn1.svg",
5111
+ "nav_buttons_magn_fill":"rgb(255, 255, 255)",
5112
+ "nav_buttons_magn_active_fill":"rgb(241, 241, 241)",
5113
+ "nav_buttons_list_image":"related-posts-pro/img/menu/menu6.svg",
5114
+ "nav_buttons_list_fill":"rgb(255, 255, 255)",
5115
+ "nav_buttons_list_active_fill":"rgb(241, 241, 241)",
5116
+ "isotope_type":"masonry",
5117
+ "isotope_item_width":"150px",
5118
+ "isotope_item_background":"0-270-#eac7ab-#dea16a",
5119
+ "isotope_item_border":"border:1px solid rgb(225, 225, 225);border-radius:0px 0px 0px 0px;",
5120
+ "isotope_item_shadow":"box-shadow:0px 0px 0px 5px #a4d0d1 ;",
5121
+ "slick_item_width":"150px",
5122
+ "slick_item_background":"0-275-#eac7ab-#dea16a",
5123
+ "slick_item_border":"border:1px solid rgb(225, 225, 225);border-radius:0px 0px 0px 0px;",
5124
+ "slick_item_shadow":"box-shadow:0px 0px 0px 5px #a4d0d1 ;",
5125
+ "transitioning_type":"fxFerris",
5126
+ "transitioning_image_position":"left",
5127
+ "transitioning_image_margin":"||10px||10px||10px||10px||",
5128
+ "transitioning_height":"200px",
5129
+ "transitioning_item_background":"0-270-#eac7ab-#dea16a",
5130
+ "transitioning_item_border":"border:1px solid rgb(225, 225, 225);border-radius:0px 0px 0px 0px;",
5131
+ "transitioning_item_shadow":"box-shadow:0px 0px 0px 5px #a4d0d1 ;",
5132
+ "title_on_image":"0",
5133
+ "title_background_color":"rgba(100, 100, 100, 0)",
5134
+ "title_font":"font-weight:bold;font-family:--g--Crushed;color:#4c4a58;font-size:16px;line-height:24px;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5135
+ "title_font_color_hover":"rgb(66, 117, 148)",
5136
+ "title_font_color_active":"rgb(66, 117, 148)",
5137
+ "item_area_clickable":"1",
5138
+ "content_font":"font-weight:normal;font-family:--g--Open Sans;color:#306166;font-size:11px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5139
+ "date_font":"font-weight:normal;font-family:--g--Open Sans;color:rgba(248, 248, 248, 0.88);font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5140
+ "author_font":"font-weight:normal;font-family:--g--Open Sans;color:#a6614c;font-size:10px;line-height:initial;text-shadow:1px 1px 0px rgba(255, 255, 255, 0);",
5141
+ "custom_css_special":"[instance]:not(.rpp_transition) .rpp_wrapper .rpp_item .rpp_title:after {width: 200%;content: '';border-bottom: 1px solid #e9e9e9;display: block;text-align: center;margin: 5px -50% 0px;}[instance] .rpp_container nav a {margin: 0 2px;}[instance] .rpp_buttons button {margin: 0 0px;}[instance] .rpp_cat_container {border-radius: 0;}[instance] .rpp_posttype_container {border-radius: 0;}"
5142
+ }
5143
+ }
backend/settings/types.inc.php ADDED
@@ -0,0 +1,166 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Includes resources for types
4
+ *
5
+ * @author Ernest Marcinko <ernest.marcinko@wp-dreams.com>
6
+ * @version 4.0
7
+ * @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
8
+ * @copyright Copyright (c) 2012, Ernest Marcinko
9
+ */
10
+
11
+ include(ASL_PATH."/backend/settings/functions.php");
12
+
13
+ // Include the types
14
+ include('class/type.class.php');
15
+ include('class/animations.class.php');
16
+ include('class/blogselect.class.php');
17
+ include('class/border.class.php');
18
+ include('class/borderradius.class.php');
19
+ include('class/boxshadow.class.php');
20
+ include('class/boxshadow-mini.class.php');
21
+ include('class/categories.class.php');
22
+ include('class/colorpicker.class.php');
23
+ include('class/colorpickerdummy.class.php');
24
+ include('class/customfields.class.php');
25
+ include('class/customposttypes.class.php');
26
+ include('class/customposttypeseditable.class.php');
27
+ include('class/customselect.class.php');
28
+ include('class/customfselect.class.php');
29
+ include('class/customtaxonomyterm.class.php');
30
+ include('class/four.class.php');
31
+ include('class/gradient.class.php');
32
+ include('class/hidden.class.php');
33
+ include('class/imageparser.class.php');
34
+ include('class/imageradio.class.php');
35
+ include('class/imagesettings.class.php');
36
+ include('class/labelposition.class.php');
37
+ include('class/languageselect.class.php');
38
+ include('class/numericunit.class.php');
39
+ include('class/onoff.class.php');
40
+ include('class/select.class.php');
41
+ include('class/text.class.php');
42
+ include('class/textarea.class.php');
43
+ include('class/textarea-isparam.class.php');
44
+ include('class/textsmall.class.php');
45
+ include('class/textshadow-mini.class.php');
46
+ include('class/themechooser.class.php');
47
+ include('class/upload.class.php');
48
+ include('class/uploadreset.class.php');
49
+ include('class/yesno.class.php');
50
+
51
+
52
+ add_action('admin_print_styles', 'admin_stylesV04');
53
+ add_action('admin_enqueue_scripts', 'admin_scriptsV04');
54
+ add_action('wp_ajax_wpdreams-ajaxinput', "wpdreams_ajaxinputcallback");
55
+ if (!function_exists("wpdreams_ajaxinputcallback")) {
56
+ function wpdreams_ajaxinputcallback() {
57
+ $param = $_POST;
58
+ echo call_user_func($_POST['wpdreams_callback'], $param);
59
+ exit;
60
+ }
61
+ }
62
+
63
+ if (!function_exists("admin_scriptsV04")) {
64
+ function admin_scriptsV04() {
65
+
66
+ wp_enqueue_media(); // For image uploader.
67
+ wp_enqueue_script('thickbox', false, array('jquery'));
68
+
69
+ wp_register_script('wpdreams-others', plugin_dir_url(__FILE__) . '/assets/others.js', array(
70
+ 'jquery'
71
+ ));
72
+ wp_enqueue_script('jquery-ui-core');
73
+ wp_enqueue_script('jquery-ui-slider', array('jquery'));
74
+ wp_enqueue_script('jquery-ui-tabs', array('jquery'));
75
+ wp_enqueue_script('jquery-ui-sortable', array('jquery'));
76
+ wp_enqueue_script('jquery-ui-draggable', array('jquery'));
77
+ wp_enqueue_script('jquery-ui-datepicker', array('jquery'));
78
+
79
+ wp_register_script('wpdreams-tabs', plugin_dir_url(__FILE__) . '/assets/tabs.js', array(
80
+ 'jquery'
81
+ ));
82
+ wp_enqueue_script('wpdreams-tabs');
83
+
84
+ wp_register_script('wpdreams-upload', plugin_dir_url(__FILE__) . '/assets/upload.js', array(
85
+ 'jquery',
86
+ 'media-upload',
87
+ 'thickbox'
88
+ ));
89
+ wp_enqueue_script('wpdreams-upload');
90
+ wp_register_script('wpdreams-spectrum', plugin_dir_url(__FILE__) . '/assets/js/spectrum/spectrum.js', array(
91
+ 'jquery'
92
+ ));
93
+ wp_register_script('wpdreams-fonts-jsapi', '//ajax.googleapis.com/ajax/libs/webfont/1.4.7/webfont.js');
94
+ wp_enqueue_script('wpdreams-fonts-jsapi');
95
+
96
+ wp_enqueue_script('wpdreams-spectrum');
97
+
98
+ wp_enqueue_script('wpdreams-others', array('jquery', 'jquery-ui-sortable'));
99
+
100
+ }
101
+ }
102
+
103
+ if (!function_exists("admin_stylesV04")) {
104
+ function admin_stylesV04() {
105
+ wp_register_style('wpdreams-style', plugin_dir_url(__FILE__) . '/assets/style.css', array('wpdreams-tabs'));
106
+ wp_enqueue_style('wpdreams-style');
107
+ wp_enqueue_style('thickbox');
108
+ wp_register_style('wpdreams-jqueryui', 'https://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css');
109
+ wp_enqueue_style('wpdreams-jqueryui');
110
+ wp_register_style('wpdreams-tabs', plugin_dir_url(__FILE__) . '/assets/tabs.css');
111
+ wp_enqueue_style('wpdreams-tabs');
112
+ wp_register_style('wpdreams-accordion', plugin_dir_url(__FILE__) . '/assets/accordion.css');
113
+ wp_enqueue_style('wpdreams-accordion');
114
+ wp_register_style('wpdreams-spectrum', plugin_dir_url(__FILE__) . '/assets/js/spectrum/spectrum.css');
115
+ wp_enqueue_style('wpdreams-spectrum');
116
+ wp_register_style('wpdreams-animations', plugin_dir_url(__FILE__) . '/assets/animations.css');
117
+ wp_enqueue_style('wpdreams-animations');
118
+ }
119
+ }
120
+
121
+ /* Extra Functions */
122
+ if (!function_exists("isEmpty")) {
123
+ function isEmpty($v) {
124
+ if (trim($v) != "")
125
+ return false;
126
+ else
127
+ return true;
128
+ }
129
+ }
130
+
131
+ if (!function_exists("in_array_r")) {
132
+ function in_array_r($needle, $haystack, $strict = true) {
133
+ foreach ($haystack as $item) {
134
+ if (($strict ? $item === $needle : $item == $needle) || (is_array($item) && in_array_r($needle, $item, $strict))) {
135
+ return true;
136
+ }
137
+ }
138
+
139
+ return false;
140
+ }
141
+ }
142
+
143
+ if (!function_exists("wpdreams_get_blog_list")) {
144
+ function wpdreams_get_blog_list( $start = 0, $num = 10, $deprecated = '' ) {
145
+
146
+ global $wpdb;
147
+ if (!isset($wpdb->blogs)) return array();
148
+ $blogs = $wpdb->get_results( $wpdb->prepare("SELECT blog_id, domain, path FROM $wpdb->blogs WHERE site_id = %d AND public = '1' AND archived = '0' AND mature = '0' AND spam = '0' AND deleted = '0' ORDER BY registered DESC", $wpdb->siteid), ARRAY_A );
149
+
150
+ foreach ( (array) $blogs as $details ) {
151
+ $blog_list[ $details['blog_id'] ] = $details;
152
+ $blog_list[ $details['blog_id'] ]['postcount'] = $wpdb->get_var( "SELECT COUNT(ID) FROM " . $wpdb->get_blog_prefix( $details['blog_id'] ). "posts WHERE post_status='publish' AND post_type='post'" );
153
+ }
154
+ unset( $blogs );
155
+ $blogs = $blog_list;
156
+
157
+ if ( false == is_array( $blogs ) )
158
+ return array();
159
+
160
+ if ( $num == 'all' )
161
+ return array_slice( $blogs, $start, count( $blogs ) );
162
+ else
163
+ return array_slice( $blogs, $start, $num );
164
+ }
165
+ }
166
+ ?>
backend/tabs/instance/advanced_options.php ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item">
2
+ <?php
3
+ $o = new wpdreamsCustomFSelect("titlefield", "Title Field", array(
4
+ 'selects'=>wpdreams_setval_or_getoption($sd, 'titlefield_def', $_dk),
5
+ 'value'=>wpdreams_setval_or_getoption($sd, 'titlefield', $_dk)
6
+ ));
7
+ $params[$o->getName()] = $o->getData();
8
+ ?>
9
+ </div>
10
+ <div class="item">
11
+ <?php
12
+ $o = new wpdreamsCustomFSelect("descriptionfield", "Description Field", array(
13
+ 'selects'=>wpdreams_setval_or_getoption($sd, 'descriptionfield_def', $_dk),
14
+ 'value'=>wpdreams_setval_or_getoption($sd, 'descriptionfield', $_dk)
15
+ ));
16
+ $params[$o->getName()] = $o->getData();
17
+ ?>
18
+ </div>
19
+ <div class="item">
20
+ <?php
21
+ $o = new wpdreamsCategories("excludecategories", "Exclude categories", wpdreams_setval_or_getoption($sd, 'excludecategories', $_dk));
22
+ $params[$o->getName()] = $o->getData();
23
+ $params['selected-'.$o->getName()] = $o->getSelected();
24
+ ?>
25
+ </div>
26
+ <div class="item">
27
+ <?php
28
+ $o = new wpdreamsTextarea("excludeposts", "Exclude Posts by ID's (comma separated post ID-s)", wpdreams_setval_or_getoption($sd, 'excludeposts', $_dk));
29
+ $params[$o->getName()] = $o->getData();
30
+ ?>
31
+ </div>
32
+ <div class="item">
33
+ <?php
34
+ $o = new wpdreamsYesNo("wpml_compatibility", "WPML compatibility", wpdreams_setval_or_getoption($sd, 'wpml_compatibility', $_dk));
35
+ $params[$o->getName()] = $o->getData();
36
+ ?>
37
+ </div>
38
+ <div class="item">
39
+ <input type="hidden" name='asl_submit' value=1 />
40
+ <input name="submit_asl" type="submit" value="Save options!" />
41
+ </div>
backend/tabs/instance/frontend_options.php ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item">
2
+ <?php
3
+ $o = new wpdreamsYesNo("show_frontend_search_settings", "Show search settings on the frontend?", wpdreams_setval_or_getoption($sd, 'show_frontend_search_settings', $_dk));
4
+ $params[$o->getName()] = $o->getData();
5
+ ?>
6
+ </div>
7
+ <div class="item" style="text-align:center;">
8
+ The default values of the checkboxes on the frontend are the values set above.
9
+ </div>
10
+ <div class="item">
11
+ <?php
12
+ $o = new wpdreamsYesNo("showexactmatches", "Show exact matches selector?", wpdreams_setval_or_getoption($sd, 'showexactmatches', $_dk));
13
+ $params[$o->getName()] = $o->getData();
14
+ $o = new wpdreamsText("exactmatchestext", "Text", wpdreams_setval_or_getoption($sd, 'exactmatchestext', $_dk));
15
+ $params[$o->getName()] = $o->getData();
16
+ ?>
17
+ </div>
18
+ <div class="item">
19
+ <?php
20
+ $o = new wpdreamsYesNo("showsearchinposts", "Show search in posts selector?", wpdreams_setval_or_getoption($sd, 'showsearchinposts', $_dk));
21
+ $params[$o->getName()] = $o->getData();
22
+ $o = new wpdreamsText("searchinpoststext", "Text", wpdreams_setval_or_getoption($sd, 'searchinpoststext', $_dk));
23
+ $params[$o->getName()] = $o->getData();
24
+ ?></div>
25
+ <div class="item">
26
+ <?php
27
+ $o = new wpdreamsYesNo("showsearchinpages", "Show search in pages selector?", wpdreams_setval_or_getoption($sd, 'showsearchinpages', $_dk));
28
+ $params[$o->getName()] = $o->getData();
29
+ $o = new wpdreamsText("searchinpagestext", "Text", wpdreams_setval_or_getoption($sd, 'searchinpagestext', $_dk));
30
+ $params[$o->getName()] = $o->getData();
31
+ ?></div>
32
+ <div class="item">
33
+ <?php
34
+ $o = new wpdreamsYesNo("showsearchintitle", "Show search in title selector?", wpdreams_setval_or_getoption($sd, 'showsearchintitle', $_dk));
35
+ $params[$o->getName()] = $o->getData();
36
+ $o = new wpdreamsText("searchintitletext", "Text", wpdreams_setval_or_getoption($sd, 'searchintitletext', $_dk));
37
+ $params[$o->getName()] = $o->getData();
38
+ ?></div>
39
+ <div class="item">
40
+ <?php
41
+ $o = new wpdreamsYesNo("showsearchincontent", "Show search in content selector?", wpdreams_setval_or_getoption($sd, 'showsearchincontent', $_dk));
42
+ $params[$o->getName()] = $o->getData();
43
+ $o = new wpdreamsText("searchincontenttext", "Text", wpdreams_setval_or_getoption($sd, 'searchincontenttext', $_dk));
44
+ $params[$o->getName()] = $o->getData();
45
+ ?></div>
46
+ <div class="item"><?php
47
+ $o = new wpdreamsCustomPostTypesEditable("showcustomtypes", "Show search in custom post types selectors", wpdreams_setval_or_getoption($sd, 'showcustomtypes', $_dk));
48
+ $params[$o->getName()] = $o->getData();
49
+ $params['selected-'.$o->getName()] = $o->getSelected();
50
+ ?></div>
51
+ <div class="item">
52
+ <p class='infoMsg'>Nor recommended if you have more than 500 categories! (the HTML output will get too big)</p>
53
+ <?php
54
+ $o = new wpdreamsYesNo("showsearchincategories", "Show the categories selectors?", wpdreams_setval_or_getoption($sd, 'showsearchincategories', $_dk));
55
+ $params[$o->getName()] = $o->getData();
56
+ ?></div>
57
+ <div class="item">
58
+ <?php
59
+ $o = new wpdreamsYesNo("showuncategorised", "Show the uncategorised category?", wpdreams_setval_or_getoption($sd, 'showuncategorised', $_dk));
60
+ $params[$o->getName()] = $o->getData();
61
+ ?></div>
62
+ <div class="item"><?php
63
+ $o = new wpdreamsCategories("exsearchincategories", "Select which categories exclude", wpdreams_setval_or_getoption($sd, 'exsearchincategories', $_dk));
64
+ $params[$o->getName()] = $o->getData();
65
+ $params['selected-'.$o->getName()] = $o->getSelected();
66
+ ?>
67
+ </div>
68
+ <div class="item">
69
+ <?php
70
+ $o = new wpdreamsText("exsearchincategoriestext", "Categories filter box header text", wpdreams_setval_or_getoption($sd, 'exsearchincategoriestext', $_dk));
71
+ $params[$o->getName()] = $o->getData();
72
+ ?>
73
+ </div>
74
+ <div class="item">
75
+ <input type="hidden" name='asl_submit' value=1 />
76
+ <input name="submit_asl" type="submit" value="Save options!" />
77
+ </div>
backend/tabs/instance/general/behaviour.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item">
2
+ <?php
3
+ $o = new wpdreamsYesNo("keywordsuggestions", "Keyword suggestions on no results?",
4
+ wpdreams_setval_or_getoption($sd, 'keywordsuggestions', $_dk));
5
+ $params[$o->getName()] = $o->getData();
6
+ ?>
7
+ </div>
8
+ <div class="item"><?php
9
+ $o = new wpdreamsLanguageSelect("keywordsuggestionslang", "Keyword suggestions language",
10
+ wpdreams_setval_or_getoption($sd, 'keywordsuggestionslang', $_dk));
11
+ $params[$o->getName()] = $o->getData();
12
+ ?>
13
+ </div>
backend/tabs/instance/general/sources.php ADDED
File without changes
backend/tabs/instance/general_options.php ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $themes = array(
3
+ array('option'=>'Simple Red', 'value'=>'simple-red'),
4
+ array('option'=>'Simple Blue', 'value'=>'simple-blue'),
5
+ array('option'=>'Simple Grey', 'value'=>'simple-grey'),
6
+ array('option'=>'Classic Blue', 'value'=>'classic-blue'),
7
+ array('option'=>'Underline White', 'value'=>'underline')
8
+ );
9
+ ?>
10
+ <div class="item">
11
+ <?php
12
+ $o = new wpdreamsCustomSelect("theme", "Theme", array(
13
+ 'selects'=>$themes,
14
+ 'value'=>wpdreams_setval_or_getoption($sd, 'theme', $_dk)
15
+ ));
16
+ $params[$o->getName()] = $o->getData();
17
+ ?>
18
+ </div>
19
+ <div class="item">
20
+ <?php
21
+ $o = new wpdreamsYesNo("searchinposts", "Search in posts?",
22
+ wpdreams_setval_or_getoption($sd, "searchinposts", $_dk));
23
+ $params[$o->getName()] = $o->getData();
24
+ ?>
25
+ </div>
26
+ <div class="item">
27
+ <?php
28
+ $o = new wpdreamsYesNo("searchinpages", "Search in pages?",
29
+ wpdreams_setval_or_getoption($sd, 'searchinpages', $_dk));
30
+ $params[$o->getName()] = $o->getData();
31
+ ?>
32
+ </div>
33
+ <div class="item"><?php
34
+ $o = new wpdreamsCustomPostTypes("customtypes", "Search in custom post types",
35
+ wpdreams_setval_or_getoption($sd, 'customtypes', $_dk));
36
+ $params[$o->getName()] = $o->getData();
37
+ $params['selected-'.$o->getName()] = $o->getSelected();
38
+ ?></div>
39
+ <div class="item">
40
+ <?php
41
+ $o = new wpdreamsYesNo("searchintitle", "Search in title?",
42
+ wpdreams_setval_or_getoption($sd, 'searchintitle', $_dk));
43
+ $params[$o->getName()] = $o->getData();
44
+ ?>
45
+ </div>
46
+ <div class="item">
47
+ <?php
48
+ $o = new wpdreamsYesNo("searchincontent", "Search in content?",
49
+ wpdreams_setval_or_getoption($sd, 'searchincontent', $_dk));
50
+ $params[$o->getName()] = $o->getData();
51
+ ?>
52
+ </div>
53
+ <div class="item">
54
+ <?php
55
+ $o = new wpdreamsYesNo("searchinexcerpt", "Search in post excerpts?",
56
+ wpdreams_setval_or_getoption($sd, 'searchinexcerpt', $_dk));
57
+ $params[$o->getName()] = $o->getData();
58
+ ?>
59
+ </div>
60
+ <div class="item"><?php
61
+ $o = new wpdreamsCustomFields("customfields", "Search in custom fields",
62
+ wpdreams_setval_or_getoption($sd, 'customfields', $_dk));
63
+ $params[$o->getName()] = $o->getData();
64
+ $params['selected-'.$o->getName()] = $o->getSelected();
65
+ ?>
66
+ </div>
67
+ <div class="item">
68
+ <?php
69
+ $o = new wpdreamsYesNo("exactonly", "Show exact matches only?",
70
+ wpdreams_setval_or_getoption($sd, 'exactonly', $_dk));
71
+ $params[$o->getName()] = $o->getData();
72
+ ?>
73
+ </div>
74
+ <div class="item">
75
+ <?php
76
+ $o = new wpdreamsYesNo("searchinterms", "Search in terms? (categories, tags)",
77
+ wpdreams_setval_or_getoption($sd, 'searchinterms', $_dk));
78
+ $params[$o->getName()] = $o->getData();
79
+ ?>
80
+ </div>
81
+ <div class="item"><?php
82
+ $o = new wpdreamsCustomSelect("orderby", "Result ordering",
83
+ array(
84
+ 'selects' => wpdreams_setval_or_getoption($sd, 'orderby_def', $_dk),
85
+ 'value' => wpdreams_setval_or_getoption($sd, 'orderby', $_dk)
86
+ ));
87
+ $params[$o->getName()] = $o->getData();
88
+ ?></div>
89
+ <div class="item">
90
+ <?php
91
+ $o = new wpdreamsYesNo("triggeronclick", "Trigger search when clicking on search icon?",
92
+ wpdreams_setval_or_getoption($sd, 'triggeronclick', $_dk));
93
+ $params[$o->getName()] = $o->getData();
94
+ ?>
95
+ </div>
96
+ <div class="item">
97
+ <?php
98
+ $o = new wpdreamsYesNo("redirectonclick", "<b>Redirect</b> to search results page when clicking on search icon?",
99
+ wpdreams_setval_or_getoption($sd, 'redirectonclick', $_dk));
100
+ $params[$o->getName()] = $o->getData();
101
+ ?>
102
+ </div>
103
+ <div class="item">
104
+ <?php
105
+ $o = new wpdreamsYesNo("triggerontype", "Trigger search when typing?",
106
+ wpdreams_setval_or_getoption($sd, 'triggerontype', $_dk));
107
+ $params[$o->getName()] = $o->getData();
108
+ ?>
109
+ </div>
110
+ <div class="item">
111
+ <?php
112
+ $o = new wpdreamsTextSmall("charcount", "Minimal character count to trigger search",
113
+ wpdreams_setval_or_getoption($sd, 'charcount', $_dk), array(array("func" => "ctype_digit", "op" => "eq", "val" => true)));
114
+ $params[$o->getName()] = $o->getData();
115
+ ?>
116
+ </div>
117
+ <div class="item">
118
+ <?php
119
+ $o = new wpdreamsTextSmall("maxresults", "Max. results", wpdreams_setval_or_getoption($sd, 'maxresults', $_dk), array(array("func" => "ctype_digit", "op" => "eq", "val" => true)));
120
+ $params[$o->getName()] = $o->getData();
121
+ ?>
122
+ </div>
123
+ <div class="item"><?php
124
+ $o = new wpdreamsTextSmall("itemscount", "Results box viewport (in item numbers)", wpdreams_setval_or_getoption($sd, 'itemscount', $_dk), array(array("func" => "ctype_digit", "op" => "eq", "val" => true)));
125
+ $params[$o->getName()] = $o->getData();
126
+ ?>
127
+ </div>
128
+ <div class="item">
129
+ <input type="hidden" name='asl_submit' value=1 />
130
+ <input name="submit_asl" type="submit" value="Save options!" />
131
+ </div>
backend/tabs/instance/image_options.php ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item">
2
+ <?php
3
+ $option_name = "show_images";
4
+ $option_desc = "Show images in results?";
5
+ $o = new wpdreamsYesNo($option_name, $option_desc,
6
+ wpdreams_setval_or_getoption($sd, $option_name, $_dk));
7
+ $params[$o->getName()] = $o->getData();
8
+ ?>
9
+ </div>
10
+ <div class="item">
11
+ <?php
12
+ $option_name = "image_width";
13
+ $option_desc = "Image width";
14
+ $o = new wpdreamsTextSmall($option_name, $option_desc,
15
+ wpdreams_setval_or_getoption($sd, $option_name, $_dk));
16
+ $params[$o->getName()] = $o->getData();
17
+ ?>
18
+ </div>
19
+ <div class="item">
20
+ <?php
21
+ $option_name = "image_height";
22
+ $option_desc = "Image height";
23
+ $o = new wpdreamsTextSmall($option_name, $option_desc,
24
+ wpdreams_setval_or_getoption($sd, $option_name, $_dk));
25
+ $params[$o->getName()] = $o->getData();
26
+ ?>
27
+ </div>
28
+ <fieldset>
29
+ <legend>Image source settings</legend>
30
+ <div class="item">
31
+ <?php
32
+ $option_name = "image_source1";
33
+ $option_desc = "Primary image source";
34
+ $o = new wpdreamsCustomSelect($option_name, $option_desc, array(
35
+ 'selects'=>wpdreams_setval_or_getoption($sd, 'image_sources', $_dk),
36
+ 'value'=>wpdreams_setval_or_getoption($sd, $option_name, $_dk)
37
+ ));
38
+ $params[$o->getName()] = $o->getData();
39
+ ?>
40
+ </div>
41
+ <div class="item">
42
+ <?php
43
+ $option_name = "image_source2";
44
+ $option_desc = "Alternative image source 1";
45
+ $o = new wpdreamsCustomSelect($option_name, $option_desc, array(
46
+ 'selects'=>wpdreams_setval_or_getoption($sd, 'image_sources', $_dk),
47
+ 'value'=>wpdreams_setval_or_getoption($sd, $option_name, $_dk)
48
+ ));
49
+ $params[$o->getName()] = $o->getData();
50
+ ?>
51
+ </div>
52
+ <div class="item">
53
+ <?php
54
+ $option_name = "image_source3";
55
+ $option_desc = "Alternative image source 2";
56
+ $o = new wpdreamsCustomSelect($option_name, $option_desc, array(
57
+ 'selects'=>wpdreams_setval_or_getoption($sd, 'image_sources', $_dk),
58
+ 'value'=>wpdreams_setval_or_getoption($sd, $option_name, $_dk)
59
+ ));
60
+ $params[$o->getName()] = $o->getData();
61
+ ?>
62
+ </div>
63
+ <div class="item">
64
+ <?php
65
+ $option_name = "image_source4";
66
+ $option_desc = "Alternative image source 3";
67
+ $o = new wpdreamsCustomSelect($option_name, $option_desc, array(
68
+ 'selects'=>wpdreams_setval_or_getoption($sd, 'image_sources', $_dk),
69
+ 'value'=>wpdreams_setval_or_getoption($sd, $option_name, $_dk)
70
+ ));
71
+ $params[$o->getName()] = $o->getData();
72
+ ?>
73
+ </div>
74
+ <div class="item">
75
+ <?php
76
+ $option_name = "image_source5";
77
+ $option_desc = "Alternative image source 4";
78
+ $o = new wpdreamsCustomSelect($option_name, $option_desc, array(
79
+ 'selects'=>wpdreams_setval_or_getoption($sd, 'image_sources', $_dk),
80
+ 'value'=>wpdreams_setval_or_getoption($sd, $option_name, $_dk)
81
+ ));
82
+ $params[$o->getName()] = $o->getData();
83
+ ?>
84
+ </div>
85
+ <div class="item">
86
+ <?php
87
+ $option_name = "image_default";
88
+ $option_desc = "Default image url";
89
+ $o = new wpdreamsUpload($option_name, $option_desc,
90
+ wpdreams_setval_or_getoption($sd, $option_name, $_dk));
91
+ $params[$o->getName()] = $o->getData();
92
+ ?>
93
+ </div>
94
+ <div class="item">
95
+ <?php
96
+ $option_name = "image_custom_field";
97
+ $option_desc = "Custom field containing the image";
98
+ $o = new wpdreamsText($option_name, $option_desc,
99
+ wpdreams_setval_or_getoption($sd, $option_name, $_dk));
100
+ $params[$o->getName()] = $o->getData();
101
+ ?>
102
+ </div>
103
+ </fieldset>
104
+ <div class="item">
105
+ <input type="hidden" name='asl_submit' value=1 />
106
+ <input name="submit_asl" type="submit" value="Save options!" />
107
+ </div>
backend/tabs/instance/layout/results_behaviour.php ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item">
2
+ <?php
3
+ $o = new wpdreamsYesNo("scroll_to_results", "Sroll the window to the result list?", wpdreams_setval_or_getoption($sd, 'scroll_to_results', $_dk));
4
+ $params[$o->getName()] = $o->getData();
5
+ ?>
6
+ </div>
7
+ <div class="item">
8
+ <?php
9
+ $o = new wpdreamsYesNo("resultareaclickable", "Make the whole result area clickable?", wpdreams_setval_or_getoption($sd, 'resultareaclickable', $_dk));
10
+ $params[$o->getName()] = $o->getData();
11
+ ?>
12
+ </div>
13
+ <div class="item">
14
+ <?php
15
+ $o = new wpdreamsYesNo("close_on_document_click", "Close result list on document click?", wpdreams_setval_or_getoption($sd, 'close_on_document_click', $_dk));
16
+ $params[$o->getName()] = $o->getData();
17
+ ?>
18
+ </div>
19
+ <div class="item">
20
+ <?php
21
+ $o = new wpdreamsYesNo("show_close_icon", "Show the close icon?", wpdreams_setval_or_getoption($sd, 'show_close_icon', $_dk));
22
+ $params[$o->getName()] = $o->getData();
23
+ ?>
24
+ </div>
25
+ <div class="item"><?php
26
+ $o = new wpdreamsText("noresultstext", "No results text", wpdreams_setval_or_getoption($sd, 'noresultstext', $_dk));
27
+ $params[$o->getName()] = $o->getData();
28
+ ?></div>
29
+ <div class="item"><?php
30
+ $o = new wpdreamsText("didyoumeantext", "Did you mean text", wpdreams_setval_or_getoption($sd, 'didyoumeantext', $_dk));
31
+ $params[$o->getName()] = $o->getData();
32
+ ?></div>
backend/tabs/instance/layout/results_layout.php ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item">
2
+ <?php
3
+ $o = new wpdreamsText("defaultsearchtext", "Placeholder text", wpdreams_setval_or_getoption($sd, 'defaultsearchtext', $_dk));
4
+ $params[$o->getName()] = $o->getData();
5
+ ?>
6
+ </div>
7
+ <div class="item">
8
+ <?php
9
+ $o = new wpdreamsYesNo("showmoreresults", "Show 'More results..' text in the bottom of the search box?", wpdreams_setval_or_getoption($sd, 'showmoreresults', $_dk));
10
+ $params[$o->getName()] = $o->getData();
11
+ ?>
12
+ </div>
13
+ <div class="item">
14
+ <?php
15
+ $o = new wpdreamsText("showmoreresultstext", "' Show more results..' text", wpdreams_setval_or_getoption($sd, 'showmoreresultstext', $_dk));
16
+ $params[$o->getName()] = $o->getData();
17
+ ?>
18
+ </div>
19
+ <div class="item">
20
+ <?php
21
+ $o = new wpdreamsYesNo("showauthor", "Show author in results?", wpdreams_setval_or_getoption($sd, 'showauthor', $_dk));
22
+ $params[$o->getName()] = $o->getData();
23
+ ?>
24
+ </div>
25
+ <div class="item">
26
+ <?php
27
+ $o = new wpdreamsYesNo("showdate", "Show date in results?", wpdreams_setval_or_getoption($sd, 'showdate', $_dk));
28
+ $params[$o->getName()] = $o->getData();
29
+ ?>
30
+ </div>
31
+ <div class="item">
32
+ <?php
33
+ $o = new wpdreamsYesNo("showdescription", "Show description in results?", wpdreams_setval_or_getoption($sd, 'showdescription', $_dk));
34
+ $params[$o->getName()] = $o->getData();
35
+ ?>
36
+ </div>
37
+ <div class="item">
38
+ <?php
39
+ $o = new wpdreamsTextSmall("descriptionlength", "Description length", wpdreams_setval_or_getoption($sd, 'descriptionlength', $_dk));
40
+ $params[$o->getName()] = $o->getData();
41
+ ?>
42
+ </div>
backend/tabs/instance/layout_options.php ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <ul id="subtabs" class='tabs'>
2
+ <li><a tabid="201" class='subtheme current'>Results layout</a></li>
3
+ <li><a tabid="202" class='subtheme'>Results Behaviour</a></li>
4
+ </ul>
5
+ <div class='tabscontent'>
6
+ <div tabid="201">
7
+ <fieldset>
8
+ <legend>Results layout</legend>
9
+ <?php include(ASL_PATH."backend/tabs/instance/layout/results_layout.php"); ?>
10
+ </fieldset>
11
+ </div>
12
+ <div tabid="202">
13
+ <fieldset>
14
+ <legend>Results Behaviour</legend>
15
+ <?php include(ASL_PATH."backend/tabs/instance/layout/results_behaviour.php"); ?>
16
+ </fieldset>
17
+ </div>
18
+ </div>
19
+ <div class="item">
20
+ <input type="hidden" name='asl_submit' value=1 />
21
+ <input name="submit_asl" type="submit" value="Save options!" />
22
+ </div>
backend/tabs/instance/theme/custom_css.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p class='infoMsg'>
2
+ This css will be added before the plugin as inline CSS so it has a precedence
3
+ over plugin CSS. (you can override existing rules)
4
+ </p>
5
+ <div class="item">
6
+ <?php
7
+ $option_name = "custom_css";
8
+ $option_desc = "Custom CSS";
9
+ $o = new wpdreamsTextareaBase64($option_name, $option_desc, wpdreams_setval_or_getoption($sd, $option_name, $_dk));
10
+ $params[$o->getName()] = $o->getData();
11
+ ?>
12
+ </div>
backend/tabs/instance/theme/horizontal_res.php ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item">
2
+ <?php
3
+ $o = new wpdreamsYesNo("hhidedesc", "Hide description if images are available", wpdreams_setval_or_getoption($sd, 'hhidedesc', $_dk));
4
+ $params[$o->getName()] = $o->getData();
5
+ ?>
6
+ </div>
7
+ <div class="item"><?php
8
+ $o = new wpdreamsNumericUnit("hreswidth", "Result width", array(
9
+ 'value' => wpdreams_setval_or_getoption($sd, 'hreswidth', $_dk),
10
+ 'units'=>array('px'=>'px')));
11
+ $params[$o->getName()] = $o->getData();
12
+ ?>
13
+ </div>
14
+ <div class="item"><?php
15
+ $o = new wpdreamsNumericUnit("hresheight", "Result height", array(
16
+ 'value' => wpdreams_setval_or_getoption($sd, 'hresheight', $_dk),
17
+ 'units'=>array('px'=>'px')));
18
+ $params[$o->getName()] = $o->getData();
19
+ ?>
20
+ </div>
21
+ <div class="item"><?php
22
+ $o = new wpdreamsNumericUnit("hressidemargin", "Result side margin", array(
23
+ 'value' => wpdreams_setval_or_getoption($sd, 'hressidemargin', $_dk),
24
+ 'units'=>array('px'=>'px')));
25
+ $params[$o->getName()] = $o->getData();
26
+ ?>
27
+ </div>
28
+ <div class="item"><?php
29
+ $o = new wpdreamsNumericUnit("hrespadding", "Result padding", array(
30
+ 'value' => wpdreams_setval_or_getoption($sd, 'hrespadding', $_dk),
31
+ 'units'=>array('px'=>'px')));
32
+ $params[$o->getName()] = $o->getData();
33
+ ?>
34
+ </div>
35
+ <div class="item"><?php
36
+ $o = new wpdreamsGradient("hboxbg", "Result container background gradient", wpdreams_setval_or_getoption($sd, 'hboxbg', $_dk));
37
+ $params[$o->getName()] = $o->getData();
38
+ ?>
39
+ </div>
40
+ <div class="item">
41
+ <?php
42
+ $o = new wpdreamsBorder("hboxborder", "Results container border", wpdreams_setval_or_getoption($sd, 'hboxborder', $_dk));
43
+ $params[$o->getName()] = $o->getData();
44
+ ?>
45
+ </div>
46
+ <div class="item">
47
+ <?php
48
+ $o = new wpdreamsBoxShadow("hboxshadow", "Results container box shadow", wpdreams_setval_or_getoption($sd, 'hboxshadow', $_dk));
49
+ $params[$o->getName()] = $o->getData();
50
+ ?>
51
+ </div>
52
+ <div class="item"><?php
53
+ $o = new wpdreamsAnimations("hresultinanim", "Result item incoming animation", wpdreams_setval_or_getoption($sd, 'hresultinanim', $_dk));
54
+ $params[$o->getName()] = $o->getData();
55
+ ?>
56
+ </div>
57
+ <div class="item"><?php
58
+ $o = new wpdreamsGradient("hresultbg", "Result item background gradient", wpdreams_setval_or_getoption($sd, 'hresultbg', $_dk));
59
+ $params[$o->getName()] = $o->getData();
60
+ ?>
61
+ </div>
62
+ <div class="item"><?php
63
+ $o = new wpdreamsGradient("hresulthbg", "Result item mouse hover background gradient", wpdreams_setval_or_getoption($sd, 'hresulthbg', $_dk));
64
+ $params[$o->getName()] = $o->getData();
65
+ ?>
66
+ </div>
67
+ <div class="item">
68
+ <?php
69
+ $o = new wpdreamsBorder("hresultborder", "Results item border", wpdreams_setval_or_getoption($sd, 'hresultborder', $_dk));
70
+ $params[$o->getName()] = $o->getData();
71
+ ?>
72
+ </div>
73
+ <div class="item">
74
+ <?php
75
+ $o = new wpdreamsBoxShadow("hresultshadow", "Results item box shadow", wpdreams_setval_or_getoption($sd, 'hresultshadow', $_dk));
76
+ $params[$o->getName()] = $o->getData();
77
+ ?>
78
+ </div>
79
+ <div class="item">
80
+ <?php
81
+ $o = new wpdreamsBorder("hresultimageborder", "Results image border", wpdreams_setval_or_getoption($sd, 'hresultimageborder', $_dk));
82
+ $params[$o->getName()] = $o->getData();
83
+ ?>
84
+ </div>
85
+ <div class="item">
86
+ <?php
87
+ $o = new wpdreamsBoxShadow("hresultimageshadow", "Results image box shadow", wpdreams_setval_or_getoption($sd, 'hresultimageshadow', $_dk));
88
+ $params[$o->getName()] = $o->getData();
89
+ ?>
90
+ </div>
91
+ <div class="item"><?php
92
+ $o = new wpdreamsColorPicker("harrowcolor","Resultbar arrow color", wpdreams_setval_or_getoption($sd, 'harrowcolor', $_dk));
93
+ $params[$o->getName()] = $o->getData();
94
+ ?></div>
95
+ <div class="item"><?php
96
+ $o = new wpdreamsColorPicker("hoverflowcolor","Resultbar overflow color", wpdreams_setval_or_getoption($sd, 'hoverflowcolor', $_dk));
97
+ $params[$o->getName()] = $o->getData();
98
+ ?></div>
backend/tabs/instance/theme/input_field.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item"><?php
2
+ $o = new wpdreamsGradient("inputbackground", "Search input field background gradient", wpdreams_setval_or_getoption($sd, 'inputbackground', $_dk));
3
+ $params[$o->getName()] = $o->getData();
4
+ ?></div>
5
+ <div class="item">
6
+ <?php
7
+ $o = new wpdreamsBorder("inputborder", "Search input field border", wpdreams_setval_or_getoption($sd, 'inputborder', $_dk));
8
+ $params[$o->getName()] = $o->getData();
9
+ ?>
10
+ </div>
11
+ <div class="item">
12
+ <?php
13
+ $o = new wpdreamsBoxShadow("inputshadow", "Search input field Shadow", wpdreams_setval_or_getoption($sd, 'inputshadow', $_dk));
14
+ $params[$o->getName()] = $o->getData();
15
+ ?>
16
+ </div>
17
+ <div class="item"><?php
18
+ $o = new wpdreamsFontComplete("inputfont", "Search input font", wpdreams_setval_or_getoption($sd, 'inputfont', $_dk));
19
+ $params[$o->getName()] = $o->getData();
20
+ ?>
21
+ </div>
backend/tabs/instance/theme/isotopic_nav.php ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item"><?php
2
+ $o = new wpdreamsCustomSelect("i_pagination_position", "Navigation position", array(
3
+ 'selects'=>wpdreams_setval_or_getoption($sd, 'i_pagination_position_def', $_dk),
4
+ 'value'=>wpdreams_setval_or_getoption($sd, 'i_pagination_position', $_dk)
5
+ ));
6
+ $params[$o->getName()] = $o->getData();
7
+ ?>
8
+ </div>
9
+ <div class="item"><?php
10
+ $o = new wpdreamsColorPicker("i_pagination_background", "Pagination background", wpdreams_setval_or_getoption($sd, 'i_pagination_background', $_dk));
11
+ $params[$o->getName()] = $o->getData();
12
+ ?>
13
+ </div>
14
+ <div class="item">
15
+ <?php
16
+ $o = new wpdreamsImageRadio("i_pagination_arrow", "Arrow image", array(
17
+ 'images' => wpdreams_setval_or_getoption($sd, 'i_pagination_arrow_selects', $_dk),
18
+ 'value'=> wpdreams_setval_or_getoption($sd, 'i_pagination_arrow', $_dk)
19
+ )
20
+ );
21
+ $params[$o->getName()] = $o->getData();
22
+ ?>
23
+ </div>
24
+ <div class="item"><?php
25
+ $o = new wpdreamsColorPicker("i_pagination_arrow_background", "Arrow background color", wpdreams_setval_or_getoption($sd, 'i_pagination_arrow_background', $_dk));
26
+ $params[$o->getName()] = $o->getData();
27
+ ?>
28
+ </div>
29
+ <div class="item"><?php
30
+ $o = new wpdreamsColorPicker("i_pagination_arrow_color", "Arrow color", wpdreams_setval_or_getoption($sd, 'i_pagination_arrow_color', $_dk));
31
+ $params[$o->getName()] = $o->getData();
32
+ ?>
33
+ </div>
34
+ <div class="item"><?php
35
+ $o = new wpdreamsColorPicker("i_pagination_page_background", "Active page background color", wpdreams_setval_or_getoption($sd, 'i_pagination_page_background', $_dk));
36
+ $params[$o->getName()] = $o->getData();
37
+ ?>
38
+ </div>
39
+ <div class="item"><?php
40
+ $o = new wpdreamsColorPicker("i_pagination_font_color", "Font color", wpdreams_setval_or_getoption($sd, 'i_pagination_font_color', $_dk));
41
+ $params[$o->getName()] = $o->getData();
42
+ ?>
43
+ </div>
backend/tabs/instance/theme/isotopic_res.php ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <style>
2
+ .wpdreamsTextSmall {
3
+ display: inline-block;
4
+ }
5
+ </style>
6
+ <div class="item"><?php
7
+ $o = new wpdreamsCustomSelect("i_ifnoimage", "If no image found", array(
8
+ 'selects'=>wpdreams_setval_or_getoption($sd, 'i_ifnoimage_def', $_dk),
9
+ 'value'=>wpdreams_setval_or_getoption($sd, 'i_ifnoimage', $_dk)
10
+ ));
11
+ $params[$o->getName()] = $o->getData();
12
+ ?>
13
+ </div>
14
+ <div class="item"><?php
15
+ $o = new wpdreamsTextSmall("i_item_width", "Result width", wpdreams_setval_or_getoption($sd, 'i_item_width', $_dk));
16
+ $params[$o->getName()] = $o->getData();
17
+ ?>px
18
+ <p class="descMsg">The search will try to stick close to this value when filling the width of the results list.</p>
19
+ </div>
20
+ <div class="item"><?php
21
+ $o = new wpdreamsTextSmall("i_item_height", "Result height", wpdreams_setval_or_getoption($sd, 'i_item_height', $_dk));
22
+ $params[$o->getName()] = $o->getData();
23
+ ?>px
24
+ </div>
25
+ <div class="item"><?php
26
+ $o = new wpdreamsColorPicker("i_res_item_content_background", "Result content background", wpdreams_setval_or_getoption($sd, 'i_res_item_content_background', $_dk));
27
+ $params[$o->getName()] = $o->getData();
28
+ ?>
29
+ </div>
30
+ <div class="item">
31
+ <?php
32
+ $o = new wpdreamsYesNo("i_overlay", "Show overlay on mouseover?", wpdreams_setval_or_getoption($sd, 'i_overlay', $_dk));
33
+ $params[$o->getName()] = $o->getData();
34
+ ?>
35
+ </div>
36
+ <div class="item">
37
+ <?php
38
+ $o = new wpdreamsYesNo("i_overlay_blur", "Blur overlay image on mouseover?", wpdreams_setval_or_getoption($sd, 'i_overlay_blur', $_dk));
39
+ $params[$o->getName()] = $o->getData();
40
+ ?>
41
+ </div>
42
+ <div class="item">
43
+ <?php
44
+ $o = new wpdreamsYesNo("i_hide_content", "Hide the content when overlay is active?", wpdreams_setval_or_getoption($sd, 'i_hide_content', $_dk));
45
+ $params[$o->getName()] = $o->getData();
46
+ ?>
47
+ </div>
48
+ <div class="item">
49
+ <?php
50
+ $o = new wpdreamsAnimations("i_animation", "Display animation", wpdreams_setval_or_getoption($sd, 'i_animation', $_dk));
51
+ $params[$o->getName()] = $o->getData();
52
+ ?>
53
+ </div>
54
+ <div class="item"><?php
55
+ $o = new wpdreamsTextSmall("i_rows", "Rows count", wpdreams_setval_or_getoption($sd, 'i_rows', $_dk));
56
+ $params[$o->getName()] = $o->getData();
57
+ ?>
58
+ <p class="descMsg">If the item would exceed the row limit, it gets placed to a new page.</p>
59
+ </div>
60
+ <div class="item">
61
+ <?php
62
+ $option_name = "i_res_container_padding";
63
+ $option_desc = "Result container padding";
64
+ $option_expl = "Include the unit as well, example: 10px or 1em or 90%";
65
+ $o = new wpdreamsFour($option_name, $option_desc,
66
+ array(
67
+ "desc" => $option_expl,
68
+ "value" => wpdreams_setval_or_getoption($sd, $option_name, $_dk)
69
+ )
70
+ );
71
+ $params[$o->getName()] = $o->getData();
72
+ ?>
73
+ </div>
74
+ <div class="item">
75
+ <?php
76
+ $option_name = "i_res_container_margin";
77
+ $option_desc = "Result container margin";
78
+ $option_expl = "Include the unit as well, example: 10px or 1em or 90%";
79
+ $o = new wpdreamsFour($option_name, $option_desc,
80
+ array(
81
+ "desc" => $option_expl,
82
+ "value" => wpdreams_setval_or_getoption($sd, $option_name, $_dk)
83
+ )
84
+ );
85
+ $params[$o->getName()] = $o->getData();
86
+ ?>
87
+ </div>
88
+ <div class="item"><?php
89
+ $o = new wpdreamsColorPicker("i_res_container_bg", "Result box background", wpdreams_setval_or_getoption($sd, 'i_res_container_bg', $_dk));
90
+ $params[$o->getName()] = $o->getData();
91
+ ?>
92
+ </div>
backend/tabs/instance/theme/magn_load.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item">
2
+ <?php
3
+ $o = new wpdreamsImageRadio("magnifierimage", "Magnifier image", array(
4
+ 'images' => wpdreams_setval_or_getoption($sd, 'magnifierimage_selects', $_dk),
5
+ 'value'=> wpdreams_setval_or_getoption($sd, 'magnifierimage', $_dk)
6
+ )
7
+ );
8
+ $params[$o->getName()] = $o->getData();
9
+ ?>
10
+ </div>
11
+ <div class="item"><?php
12
+ $o = new wpdreamsColorPicker("magnifierimage_color", "Magnifier icon color", wpdreams_setval_or_getoption($sd, 'magnifierimage_color', $_dk));
13
+ $params[$o->getName()] = $o->getData();
14
+ ?>
15
+ </div>
16
+ <div class="item"><?php
17
+ $o = new wpdreamsUpload("magnifierimage_custom", "Custom magnifier icon", wpdreams_setval_or_getoption($sd, 'magnifierimage_custom', $_dk));
18
+ $params[$o->getName()] = $o->getData();
19
+ ?>
20
+ </div>
21
+ <div class="item"><?php
22
+ $o = new wpdreamsGradient("magnifierbackground", "Magnifier background gradient", wpdreams_setval_or_getoption($sd, 'magnifierbackground', $_dk));
23
+ $params[$o->getName()] = $o->getData();
24
+ ?>
25
+ </div>
26
+ <div class="item">
27
+ <?php
28
+ $o = new wpdreamsBorder("magnifierbackgroundborder", "Magnifier-icon border", wpdreams_setval_or_getoption($sd, 'magnifierbackgroundborder', $_dk));
29
+ $params[$o->getName()] = $o->getData();
30
+ ?>
31
+ </div>
32
+ <div class="item">
33
+ <?php
34
+ $o = new wpdreamsBoxShadow("magnifierboxshadow", "Magnifier-icon box-shadow", wpdreams_setval_or_getoption($sd, 'magnifierboxshadow', $_dk));
35
+ $params[$o->getName()] = $o->getData();
36
+ ?>
37
+ </div>
38
+ <div class="item">
39
+ <?php
40
+ $o = new wpdreamsImageRadio("loadingimage", "Loading image", array(
41
+ 'images' => wpdreams_setval_or_getoption($sd, 'loadingimage_selects', $_dk),
42
+ 'value'=> wpdreams_setval_or_getoption($sd, 'loadingimage', $_dk)
43
+ )
44
+ );
45
+ $params[$o->getName()] = $o->getData();
46
+ ?>
47
+ </div>
48
+ <div class="item"><?php
49
+ $o = new wpdreamsColorPicker("loadingimage_color", "Loader color", wpdreams_setval_or_getoption($sd, 'loadingimage_color', $_dk));
50
+ $params[$o->getName()] = $o->getData();
51
+ ?>
52
+ </div>
53
+ <div class="item"><?php
54
+ $o = new wpdreamsUpload("loadingimage_custom", "Custom magnifier icon", wpdreams_setval_or_getoption($sd, 'loadingimage_custom', $_dk));
55
+ $params[$o->getName()] = $o->getData();
56
+ ?>
57
+ </div>
backend/tabs/instance/theme/overall_box.php ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item">
2
+ <?php
3
+ $o = new wpdreamsThemeChooser("themes", "Theme Chooser", $_themes);
4
+ //$params[$o->getName()] = $o->getData();
5
+ ?>
6
+ </div>
7
+ <div class="item"><?php
8
+ $o = new wpdreamsNumericUnit("boxheight", "Search box height", array(
9
+ 'value' => wpdreams_setval_or_getoption($sd, 'boxheight', $_dk),
10
+ 'units'=>array('px'=>'px')
11
+ ));
12
+ $params[$o->getName()] = $o->getData();
13
+ ?>
14
+ </div>
15
+ <div class="item"><?php
16
+ $o = new wpdreamsNumericUnit("boxmargin", "Search box margin", array(
17
+ 'value' => wpdreams_setval_or_getoption($sd, 'boxmargin', $_dk),
18
+ 'units'=>array('px'=>'px', '%'=>'%')
19
+ ));
20
+ $params[$o->getName()] = $o->getData();
21
+ ?>
22
+ </div>
23
+ <div class="item"><?php
24
+ $o = new wpdreamsGradient("boxbackground", "Search box background gradient", wpdreams_setval_or_getoption($sd, 'boxbackground', $_dk));
25
+ $params[$o->getName()] = $o->getData();
26
+ ?>
27
+ </div>
28
+ <div class="item">
29
+ <?php
30
+ $o = new wpdreamsBorder("boxborder", "Search box border", wpdreams_setval_or_getoption($sd, 'boxborder', $_dk));
31
+ $params[$o->getName()] = $o->getData();
32
+ ?>
33
+ </div>
34
+ <div class="item">
35
+ <?php
36
+ $o = new wpdreamsBoxShadow("boxshadow", "Search box Shadow", wpdreams_setval_or_getoption($sd, 'boxshadow', $_dk));
37
+ $params[$o->getName()] = $o->getData();
38
+ ?>
39
+ </div>
backend/tabs/instance/theme/polaroid_res.php ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item"><?php
2
+ $o = new wpdreamsCustomSelect("pifnoimage", "If no image found", array(
3
+ 'selects'=>wpdreams_setval_or_getoption($sd, 'pifnoimage_def', $_dk),
4
+ 'value'=>wpdreams_setval_or_getoption($sd, 'pifnoimage', $_dk)
5
+ ));
6
+ $params[$o->getName()] = $o->getData();
7
+ ?>
8
+ </div>
9
+ <div class="item">
10
+ <?php
11
+ $o = new wpdreamsYesNo("pshowdesc", "Show descripton on the back of the polaroid", wpdreams_setval_or_getoption($sd, 'pshowdesc', $_dk));
12
+ $params[$o->getName()] = $o->getData();
13
+ ?>
14
+ </div>
15
+ <div class="item"><?php
16
+ $o = new wpdreamsNumericUnit("prescontainerheight", "Container height", array(
17
+ 'value' => wpdreams_setval_or_getoption($sd, 'prescontainerheight', $_dk),
18
+ 'units'=>array('px'=>'px')));
19
+ $params[$o->getName()] = $o->getData();
20
+ ?>
21
+ </div>
22
+ <div class="item"><?php
23
+ $o = new wpdreamsNumericUnit("preswidth", "Result width", array(
24
+ 'value' => wpdreams_setval_or_getoption($sd, 'preswidth', $_dk),
25
+ 'units'=>array('px'=>'px')));
26
+ $params[$o->getName()] = $o->getData();
27
+ ?>
28
+ </div>
29
+ <div class="item"><?php
30
+ $o = new wpdreamsNumericUnit("presheight", "Result height", array(
31
+ 'value' => wpdreams_setval_or_getoption($sd, 'presheight', $_dk),
32
+ 'units'=>array('px'=>'px')));
33
+ $params[$o->getName()] = $o->getData();
34
+ ?>
35
+ </div>
36
+ <div class="item"><?php
37
+ $o = new wpdreamsNumericUnit("prespadding", "Result padding", array(
38
+ 'value' => wpdreams_setval_or_getoption($sd, 'prespadding', $_dk),
39
+ 'units'=>array('px'=>'px')));
40
+ $params[$o->getName()] = $o->getData();
41
+ ?>
42
+ </div>
43
+ <div class="item">
44
+ <?php
45
+ $o = new wpdreamsYesNo("pshowsubtitle", "Show date/author", wpdreams_setval_or_getoption($sd, 'pshowsubtitle', $_dk));
46
+ $params[$o->getName()] = $o->getData();
47
+ ?>
48
+ </div>
49
+ <div class="item"><?php
50
+ $o = new wpdreamsFontComplete("prestitlefont", "Result title font", wpdreams_setval_or_getoption($sd, 'prestitlefont', $_dk));
51
+ $params[$o->getName()] = $o->getData();
52
+ ?>
53
+ </div>
54
+ <div class="item"><?php
55
+ $o = new wpdreamsFontComplete("pressubtitlefont", "Result sub-title font", wpdreams_setval_or_getoption($sd, 'pressubtitlefont', $_dk));
56
+ $params[$o->getName()] = $o->getData();
57
+ ?>
58
+ </div>
59
+
60
+ <div class="item"><?php
61
+ $o = new wpdreamsFontComplete("presdescfont", "Result description font", wpdreams_setval_or_getoption($sd, 'presdescfont', $_dk));
62
+ $params[$o->getName()] = $o->getData();
63
+ ?>
64
+ </div>
65
+ <div class="item"><?php
66
+ $o = new wpdreamsGradient("prescontainerbg", "Container background", wpdreams_setval_or_getoption($sd, 'prescontainerbg', $_dk));
67
+ $params[$o->getName()] = $o->getData();
68
+ ?>
69
+ </div>
70
+ <div class="item"><?php
71
+ $o = new wpdreamsGradient("pdotssmallcolor", "Nav dot colors", wpdreams_setval_or_getoption($sd, 'pdotssmallcolor', $_dk));
72
+ $params[$o->getName()] = $o->getData();
73
+ ?>
74
+ </div>
75
+ <div class="item"><?php
76
+ $o = new wpdreamsGradient("pdotscurrentcolor", "Nav active dot color", wpdreams_setval_or_getoption($sd, 'pdotscurrentcolor', $_dk));
77
+ $params[$o->getName()] = $o->getData();
78
+ ?>
79
+ </div>
80
+ <div class="item"><?php
81
+ $o = new wpdreamsGradient("pdotsflippedcolor", "Nav flipped dot color", wpdreams_setval_or_getoption($sd, 'pdotsflippedcolor', $_dk));
82
+ $params[$o->getName()] = $o->getData();
83
+ ?>
84
+ </div>
backend/tabs/instance/theme/sett_dropdown.php ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item">
2
+ <?php
3
+ $o = new wpdreamsCustomSelect("settingsimagepos", "Settings icon position", array(
4
+ 'selects'=>wpdreams_setval_or_getoption($sd, 'settingsimagepos_def', $_dk),
5
+ 'value'=>wpdreams_setval_or_getoption($sd, 'settingsimagepos', $_dk)
6
+ ));
7
+ $params[$o->getName()] = $o->getData();
8
+ ?>
9
+ </div>
10
+ <div class="item">
11
+ <?php
12
+ $o = new wpdreamsImageRadio("settingsimage", "Settings icon", array(
13
+ 'images' => wpdreams_setval_or_getoption($sd, 'settingsimage_selects', $_dk),
14
+ 'value'=> wpdreams_setval_or_getoption($sd, 'settingsimage', $_dk)
15
+ )
16
+ );
17
+ $params[$o->getName()] = $o->getData();
18
+ ?>
19
+ </div>
20
+ <div class="item"><?php
21
+ $o = new wpdreamsColorPicker("settingsimage_color", "Settings icon color", wpdreams_setval_or_getoption($sd, 'settingsimage_color', $_dk));
22
+ $params[$o->getName()] = $o->getData();
23
+ ?>
24
+ </div>
25
+ <div class="item"><?php
26
+ $o = new wpdreamsUpload("settingsimage_custom", "Custom settings icon", wpdreams_setval_or_getoption($sd, 'settingsimage_custom', $_dk));
27
+ $params[$o->getName()] = $o->getData();
28
+ ?>
29
+ </div>
30
+ <div class="item"><?php
31
+ $o = new wpdreamsGradient("settingsbackground", "Settings-icon background gradient", wpdreams_setval_or_getoption($sd, 'settingsbackground', $_dk));
32
+ $params[$o->getName()] = $o->getData();
33
+ ?></div>
34
+ <div class="item">
35
+ <?php
36
+ $o = new wpdreamsBorder("settingsbackgroundborder", "Settings-icon border", wpdreams_setval_or_getoption($sd, 'settingsbackgroundborder', $_dk));
37
+ $params[$o->getName()] = $o->getData();
38
+ ?>
39
+ </div>
40
+ <div class="item">
41
+ <?php
42
+ $o = new wpdreamsBoxShadow("settingsboxshadow", "Settings-icon box-shadow", wpdreams_setval_or_getoption($sd, 'settingsboxshadow', $_dk));
43
+ $params[$o->getName()] = $o->getData();
44
+ ?>
45
+ </div>
46
+ <div class="item"><?php
47
+ $o = new wpdreamsGradient("settingsdropbackground", "Settings drop-down background gradient", wpdreams_setval_or_getoption($sd, 'settingsdropbackground', $_dk));
48
+ $params[$o->getName()] = $o->getData();
49
+ ?></div>
50
+ <div class="item">
51
+ <?php
52
+ $o = new wpdreamsBoxShadow("settingsdropboxshadow", "Settings drop-down box-shadow", wpdreams_setval_or_getoption($sd, 'settingsdropboxshadow', $_dk));
53
+ $params[$o->getName()] = $o->getData();
54
+ ?>
55
+ </div>
56
+ <div class="item"><?php
57
+ $o = new wpdreamsFontComplete("settingsdropfont", "Settings drop down font", wpdreams_setval_or_getoption($sd, 'settingsdropfont', $_dk));
58
+ $params[$o->getName()] = $o->getData();
59
+ ?>
60
+ </div>
61
+ <div class="item"><?php
62
+ $o = new wpdreamsFontComplete("exsearchincategoriestextfont", "Settings box header text font", wpdreams_setval_or_getoption($sd, 'exsearchincategoriestextfont', $_dk));
63
+ $params[$o->getName()] = $o->getData();
64
+ ?>
65
+ </div>
66
+ <div class="item"><?php
67
+ $o = new wpdreamsColorPicker("settingsdroptickcolor","Settings drop-down tick color", wpdreams_setval_or_getoption($sd, 'settingsdroptickcolor', $_dk));
68
+ $params[$o->getName()] = $o->getData();
69
+ ?></div>
70
+ <div class="item"><?php
71
+ $o = new wpdreamsGradient("settingsdroptickbggradient", "Settings drop-down tick background", wpdreams_setval_or_getoption($sd, 'settingsdroptickbggradient', $_dk));
72
+ $params[$o->getName()] = $o->getData();
73
+ ?>
74
+ </div>
backend/tabs/instance/theme/typography.php ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item"><?php
2
+ $o = new wpdreamsFontComplete("titlefont", "Results title link font", wpdreams_setval_or_getoption($sd, 'titlefont', $_dk));
3
+ $params[$o->getName()] = $o->getData();
4
+ ?>
5
+ </div>
6
+ <div class="item"><?php
7
+ $o = new wpdreamsFontComplete("titlehoverfont", "Results title hover link font", wpdreams_setval_or_getoption($sd, 'titlehoverfont', $_dk));
8
+ $params[$o->getName()] = $o->getData();
9
+ ?>
10
+ </div>
11
+ <div class="item"><?php
12
+ $o = new wpdreamsFontComplete("authorfont", "Author text font", wpdreams_setval_or_getoption($sd, 'authorfont', $_dk));
13
+ $params[$o->getName()] = $o->getData();
14
+ ?>
15
+ </div>
16
+ <div class="item"><?php
17
+ $o = new wpdreamsFontComplete("datefont", "Date text font", wpdreams_setval_or_getoption($sd, 'datefont', $_dk));
18
+ $params[$o->getName()] = $o->getData();
19
+ ?>
20
+ </div>
21
+ <div class="item"><?php
22
+ $o = new wpdreamsFontComplete("descfont", "Description text font", wpdreams_setval_or_getoption($sd, 'descfont', $_dk));
23
+ $params[$o->getName()] = $o->getData();
24
+ ?>
25
+ </div>
26
+ <div class="item"><?php
27
+ $o = new wpdreamsColorPicker("exsearchincategoriesboxcolor","Grouping box header background color", wpdreams_setval_or_getoption($sd, 'exsearchincategoriesboxcolor', $_dk));
28
+ $params[$o->getName()] = $o->getData();
29
+ ?></div>
30
+ <div class="item"><?php
31
+ $o = new wpdreamsColorPicker("groupingbordercolor","Grouping box border color", wpdreams_setval_or_getoption($sd, 'groupingbordercolor', $_dk));
32
+ $params[$o->getName()] = $o->getData();
33
+ ?></div>
34
+ <div class="item"><?php
35
+ $o = new wpdreamsFontComplete("groupbytextfont", "Grouping font color", wpdreams_setval_or_getoption($sd, 'groupbytextfont', $_dk));
36
+ $params[$o->getName()] = $o->getData();
37
+ ?>
38
+ </div>
39
+ <div class="item"><?php
40
+ $o = new wpdreamsFontComplete("showmorefont", "Show more font", wpdreams_setval_or_getoption($sd, 'showmorefont', $_dk));
41
+ $params[$o->getName()] = $o->getData();
42
+ ?>
43
+ </div>
backend/tabs/instance/theme/vertical_res.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="item">
2
+ <?php
3
+ $o = new wpdreamsBorder("resultsborder", "Results box border", wpdreams_setval_or_getoption($sd, 'resultsborder', $_dk));
4
+ $params[$o->getName()] = $o->getData();
5
+ ?>
6
+ </div>
7
+ <div class="item">
8
+ <?php
9
+ $o = new wpdreamsBoxShadow("resultshadow", "Results box Shadow", wpdreams_setval_or_getoption($sd, 'resultshadow', $_dk));
10
+ $params[$o->getName()] = $o->getData();
11
+ ?>
12
+ </div>
13
+ <div class="item"><?php
14
+ $o = new wpdreamsAnimations("vresultinanim", "Result item incoming animation", wpdreams_setval_or_getoption($sd, 'vresultinanim', $_dk));
15
+ $params[$o->getName()] = $o->getData();
16
+ ?>
17
+ </div>
18
+ <div class="item"><?php
19
+ $o = new wpdreamsNumericUnit("resultitemheight", "One result item height", array(
20
+ 'value' => wpdreams_setval_or_getoption($sd, 'resultitemheight', $_dk),
21
+ 'units'=>array('px'=>'px')));
22
+ $params[$o->getName()] = $o->getData();
23
+ ?></div>
24
+ <div class="item"><?php
25
+ $o = new wpdreamsColorPicker("resultsbackground","Results box background color", wpdreams_setval_or_getoption($sd, 'resultsbackground', $_dk));
26
+ $params[$o->getName()] = $o->getData();
27
+ ?></div>
28
+ <div class="item"><?php
29
+ $o = new wpdreamsColorPicker("resultscontainerbackground","Result items container box background color", wpdreams_setval_or_getoption($sd, 'resultscontainerbackground', $_dk));
30
+ $params[$o->getName()] = $o->getData();
31
+ ?></div>
32
+ <div class="item"><?php
33
+ $o = new wpdreamsGradient("vresulthbg", "Result item mouse hover box background gradient", wpdreams_setval_or_getoption($sd, 'vresulthbg', $_dk));
34
+ $params[$o->getName()] = $o->getData();
35
+ ?>
36
+ </div>
37
+ <div class="item"><?php
38
+ $o = new wpdreamsColorPicker("spacercolor","Spacer color between results", wpdreams_setval_or_getoption($sd, 'spacercolor', $_dk));
39
+ $params[$o->getName()] = $o->getData();
40
+ ?></div>
41
+ <div class="item"><?php
42
+ $o = new wpdreamsColorPicker("arrowcolor","Resultbar arrow color", wpdreams_setval_or_getoption($sd, 'arrowcolor', $_dk));
43
+ $params[$o->getName()] = $o->getData();
44
+ ?></div>
45
+ <div class="item"><?php
46
+ $o = new wpdreamsColorPicker("overflowcolor","Resultbar overflow color", wpdreams_setval_or_getoption($sd, 'overflowcolor', $_dk));
47
+ $params[$o->getName()] = $o->getData();
48
+ ?>
49
+ </div>
backend/tinymce/buttons.js ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function() {
2
+ if (typeof(wpdreams_asl_mce_button_menu)!="undefined") {
3
+ tinymce.PluginManager.add('wpdreams_asl_mce_button', function( editor, url ) {
4
+ eval("var asl_menus = [" + wpdreams_asl_mce_button_menu + "]");
5
+ eval("var asl_res_menus = [" + wpdreams_asl_res_mce_button_menu + "]");
6
+ editor.addButton( 'wpdreams_asl_mce_button', {
7
+ text: 'ASP',
8
+ icon: false,
9
+ type: 'menubutton',
10
+ menu: [
11
+ {
12
+ text: 'Search box',
13
+ menu: asl_menus
14
+ },
15
+ {
16
+ text: 'Result box',
17
+ menu: asl_res_menus
18
+ }
19
+ ]
20
+ });
21
+ });
22
+ }
23
+ })();
backend/tinymce/buttons.php ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ return;
3
+ // Hooks your functions into the correct filters
4
+ add_action('admin_head', 'wpdreams_asl_add_mce_button');
5
+ function wpdreams_asl_add_mce_button() {
6
+ // check user permissions
7
+ if ( !current_user_can( 'edit_posts' ) && !current_user_can( 'edit_pages' ) ) {
8
+ return;
9
+ }
10
+ // check if WYSIWYG is enabled
11
+ if ( 'true' == get_user_option( 'rich_editing' ) ) {
12
+ add_filter( 'mce_external_plugins', 'wpdreams_asl_add_tinymce_plugin' );
13
+ add_filter( 'mce_buttons', 'wpdreams_asl_register_mce_button' );
14
+ }
15
+ }
16
+ add_action('admin_head', 'wpdreams_asl_add_mce_button');
17
+
18
+ // Declare script for new button
19
+ function wpdreams_asl_add_tinymce_plugin( $plugin_array ) {
20
+ $plugin_array['wpdreams_asl_mce_button'] = plugins_url()."/ajax-search-lite/backend/tinymce/buttons.js";
21
+ return $plugin_array;
22
+ }
23
+
24
+ // Register new button in the editor
25
+ function wpdreams_asl_register_mce_button( $buttons ) {
26
+ array_push( $buttons, 'wpdreams_asl_mce_button' );
27
+ return $buttons;
28
+ }
29
+
30
+ // Generate the buttons JS variable
31
+ add_action('admin_head', 'wpdreams_asl_mce_generate_variable');
32
+ function wpdreams_asl_mce_generate_variable($settings) {
33
+ global $wpdb;
34
+ $asl_instances = $wpdb->get_results("SELECT * FROM ".$wpdb->base_prefix."ajaxsearchlite", ARRAY_A);
35
+ $menu_items = array();
36
+ $menu_result_items = array();
37
+ if (is_array($asl_instances)) {
38
+ foreach ($asl_instances as $x => $instance) {
39
+ $id = $instance['id'];
40
+ $menu_items[] = "{text: 'Search $id (".preg_replace("/[^\w\d ]/ui", '', $instance['name']).")',onclick: function() {editor.insertContent('[wpdreams_ajaxsearchlite id=$id]');}}";
41
+ $menu_result_items[] = "{text: 'Results $id (".preg_replace("/[^\w\d ]/ui", '', $instance['name']).")',onclick: function() {editor.insertContent('[wpdreams_ajaxsearchlite_results id=$id element=div]');}}";
42
+ }
43
+ }
44
+ ?>
45
+
46
+ <?php if (count($menu_items)>0): ?>
47
+ <?php $menu_items = implode(", ", $menu_items); ?>
48
+ <?php $menu_result_items = implode(", ", $menu_result_items); ?>
49
+ <script type="text/javascript">
50
+ wpdreams_asl_mce_button_menu = "<?php echo $menu_items; ?>";
51
+ wpdreams_asl_res_mce_button_menu = "<?php echo $menu_result_items; ?>";
52
+ </script>
53
+ <?php endif;
54
+ return $settings;
55
+ }
56
+ ?>
css/img/settings/settings1.png DELETED
Binary file
css/style-classic-blue.css ADDED
@@ -0,0 +1,279 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ div[id*="ajaxsearchlite"] {
4
+ width: 100%;
5
+ height: auto;
6
+ border-radius: 5px;
7
+ background: #d1eaff;
8
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(219, 233, 238), rgb(219, 233, 238));
9
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(219, 233, 238), rgb(219, 233, 238));
10
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(219, 233, 238), rgb(219, 233, 238));
11
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(219, 233, 238), rgb(219, 233, 238));
12
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(219, 233, 238), rgb(219, 233, 238));
13
+ background-image: radial-gradient(ellipse at center, rgb(219, 233, 238), rgb(219, 233, 238));
14
+ ;
15
+ overflow: hidden;
16
+ border:0px none rgb(0, 0, 0);border-radius:5px 5px 5px 5px; box-shadow:0px 10px 18px -13px #000000 ;}
17
+
18
+ div[id*="ajaxsearchlite"] .probox {
19
+ margin: 4px;
20
+ height: 28px;
21
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
22
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(255, 255, 255), rgb(255, 255, 255));
23
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
24
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
25
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
26
+ background-image: radial-gradient(ellipse at center, rgb(255, 255, 255), rgb(255, 255, 255));
27
+ ;
28
+ border:1px solid rgb(104, 174, 199);border-radius:3px 3px 3px 3px; box-shadow:1px 0px 6px -3px rgb(181, 181, 181) inset;}
29
+
30
+ div[id*="ajaxsearchlite"] .probox .proinput {
31
+ font-weight:normal;font-family:Open Sans;color:rgb(0, 0, 0);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
32
+
33
+ div[id*="ajaxsearchlite"] .probox .proinput input {
34
+ font-weight:normal;font-family:Open Sans;color:rgb(0, 0, 0);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0); border: 0;
35
+ box-shadow: none;
36
+ }
37
+
38
+ div[id*="ajaxsearchlite"] .probox .proinput input.autocomplete {
39
+ font-weight:normal;font-family:Open Sans;color:rgb(0, 0, 0);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
40
+
41
+
42
+ div[id*="ajaxsearchlite"] .probox .proloading,
43
+ div[id*="ajaxsearchlite"] .probox .proclose,
44
+ div[id*="ajaxsearchlite"] .probox .promagnifier,
45
+ div[id*="ajaxsearchlite"] .probox .prosettings {
46
+ width: 28px;
47
+ height: 28px;
48
+ }
49
+
50
+ div[id*="ajaxsearchlite"] .probox .promagnifier .innericon svg {
51
+ fill: rgb(54, 54, 54);
52
+ }
53
+
54
+ div[id*="ajaxsearchlite"] .probox .proloading svg {
55
+ fill: rgb(54, 54, 54);
56
+ }
57
+
58
+ div[id*="ajaxsearchlite"] .probox .prosettings .innericon svg {
59
+ fill: rgb(54, 54, 54);
60
+ }
61
+
62
+
63
+
64
+ div[id*="ajaxsearchlite"] .probox .promagnifier {
65
+
66
+ width: 28px;
67
+ height: 28px;
68
+ background-image: -o-linear-gradient(180deg, rgb(132, 197, 220), rgb(108, 209, 245));
69
+ background-image: -ms-linear-gradient(180deg, rgb(132, 197, 220), rgb(108, 209, 245));
70
+ background-image: -webkit-linear-gradient(180deg, rgb(132, 197, 220), rgb(108, 209, 245));
71
+ background-image: linear-gradient(180deg, rgb(132, 197, 220), rgb(108, 209, 245));
72
+ background-position:center center;
73
+ background-repeat: no-repeat;
74
+
75
+ border:0px solid rgb(104, 174, 199);border-radius:0px 0px 0px 0px; box-shadow:-1px 1px 0px 0px rgba(255, 255, 255, 0.61) inset; cursor: pointer;
76
+ background-size: 100% 100%;
77
+
78
+ background-position:center center;
79
+ background-repeat: no-repeat;
80
+ cursor: pointer;
81
+ }
82
+
83
+
84
+
85
+ div[id*="ajaxsearchlite"] .probox .prosettings {
86
+
87
+ width: 28px;
88
+ height: 28px;
89
+ background-image: -o-linear-gradient(185deg, rgb(104, 174, 199), rgb(108, 209, 245));
90
+ background-image: -ms-linear-gradient(185deg, rgb(104, 174, 199), rgb(108, 209, 245));
91
+ background-image: -webkit-linear-gradient(185deg, rgb(104, 174, 199), rgb(108, 209, 245));
92
+ background-image: linear-gradient(185deg, rgb(104, 174, 199), rgb(108, 209, 245));
93
+ background-position:center center;
94
+ background-repeat: no-repeat;
95
+ float: left;
96
+ border:0px solid rgb(104, 174, 199);border-radius:0px 0px 0px 0px; box-shadow:1px 1px 0px 0px rgba(255, 255, 255, 0.63) inset; cursor: pointer;
97
+ background-size: 100% 100%;
98
+ }
99
+
100
+
101
+ div[id*="ajaxsearchliteres"] {
102
+ position: absolute;
103
+ z-index:1100;
104
+ }
105
+
106
+ div[id*="ajaxsearchliteres"].vertical {
107
+ padding: 4px;
108
+ background: rgb(153, 218, 241);
109
+ border-radius: 3px;
110
+ border:0px none rgb(0, 0, 0);border-radius:3px 3px 3px 3px; box-shadow:0px 0px 0px 0px #000000 ; visibility: hidden;
111
+ display: none;
112
+ }
113
+
114
+
115
+ div[id*="ajaxsearchliteres"] .results .nores .keyword{
116
+ padding: 0 6px;
117
+ cursor: pointer;
118
+ font-weight:normal;font-family:Open Sans;color:rgb(74, 74, 74);font-size:13px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0); font-weight: bold;
119
+ }
120
+
121
+ div[id*="ajaxsearchliteres"] .results .item {
122
+ height: 70px;
123
+ background: rgb(255, 255, 255);
124
+ }
125
+
126
+ div[id*="ajaxsearchliteres"].vertical .results .item:after {
127
+ background: rgb(204, 204, 204);
128
+ }
129
+
130
+
131
+ div[id*="ajaxsearchliteres"] .results .item.hovered {
132
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(235, 250, 255), rgb(235, 250, 255));
133
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(235, 250, 255), rgb(235, 250, 255));
134
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(235, 250, 255), rgb(235, 250, 255));
135
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(235, 250, 255), rgb(235, 250, 255));
136
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(235, 250, 255), rgb(235, 250, 255));
137
+ background-image: radial-gradient(ellipse at center, rgb(235, 250, 255), rgb(235, 250, 255));
138
+ ;
139
+ }
140
+
141
+
142
+ div[id*="ajaxsearchliteres"] .results .item .image {
143
+ width: 70px;
144
+ height: 70px;
145
+ }
146
+
147
+
148
+
149
+
150
+ div[id*="ajaxsearchliteres"] .results .item .content {
151
+ overflow: hidden;
152
+ width: 50%;
153
+ height: 70px;
154
+ background: transparent;
155
+ margin: 0;
156
+ padding: 0 10px;
157
+ }
158
+
159
+ div[id*="ajaxsearchliteres"] .results .item .content h3 {
160
+ margin: 0;
161
+ padding: 0;
162
+ line-height: inherit;
163
+ font-weight:bold;font-family:Open Sans;color:rgb(20, 84, 169);font-size:14px;line-height:20px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
164
+
165
+ div[id*="ajaxsearchliteres"] .results .item .content h3 a {
166
+ margin: 0;
167
+ padding: 0;
168
+ line-height: inherit;
169
+ font-weight:bold;font-family:Open Sans;color:rgb(20, 84, 169);font-size:14px;line-height:20px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
170
+
171
+ div[id*="ajaxsearchliteres"] .results .item .content h3 a:hover {
172
+ font-weight:bold;font-family:--g--Open Sans;color:rgb(46, 107, 188);font-size:14px;line-height:20px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
173
+
174
+ div[id*="ajaxsearchliteres"] .results .item div.etc {
175
+ padding: 0;
176
+ line-height: 10px;
177
+ font-weight:bold;font-family:Open Sans;color:rgb(161, 161, 161);font-size:12px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
178
+
179
+ div[id*="ajaxsearchliteres"] .results .item .etc .author {
180
+ padding: 0;
181
+ font-weight:bold;font-family:Open Sans;color:rgb(161, 161, 161);font-size:12px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
182
+
183
+ div[id*="ajaxsearchliteres"] .results .item .etc .date {
184
+ margin: 0 0 0 10px;
185
+ padding: 0;
186
+ font-weight:normal;font-family:Open Sans;color:rgb(173, 173, 173);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
187
+
188
+ div[id*="ajaxsearchliteres"] .results .item p.desc {
189
+ margin: 2px 0px;
190
+ padding: 0;
191
+ font-weight:normal;font-family:Open Sans;color:rgb(74, 74, 74);font-size:13px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
192
+
193
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
194
+ background:#fff; /* rgba fallback */
195
+ background:rgba(rgb(255, 255, 255),0.9);
196
+ filter:"alpha(opacity=90)"; -ms-filter:"alpha(opacity=90)"; /* old ie */
197
+ }
198
+
199
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
200
+ background:rgba(rgb(255, 255, 255),0.95);
201
+ filter:"alpha(opacity=95)"; -ms-filter:"alpha(opacity=95)"; /* old ie */
202
+ }
203
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
204
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
205
+ background:rgba(rgb(255, 255, 255),1);
206
+ filter:"alpha(opacity=100)"; -ms-filter:"alpha(opacity=100)"; /* old ie */
207
+ }
208
+
209
+ div[id*="ajaxsearchliteres"].horizontal .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
210
+ div[id*="ajaxsearchliteres"].horizontal .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
211
+ background: rgb(250, 250, 250);
212
+ filter:"alpha(opacity=100)"; -ms-filter:"alpha(opacity=100)"; /* old ie */
213
+ }
214
+
215
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_buttonDown:after { border-color: rgba(136, 183, 213, 0); border-top-color: rgb(10, 63, 77); border-width: 6px; left: 50%; margin-left: -6px; }
216
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_buttonUp:after { border-color: rgba(136, 183, 213, 0); border-bottom-color: rgb(10, 63, 77); border-width: 6px; left: 50%; margin-left: -6px; }
217
+
218
+ div[id*="ajaxsearchliteres"] span.highlighted{
219
+ font-weight: bold;
220
+ color: #d9312b;
221
+ background-color: #eee;
222
+ color: rgba(217, 49, 43, 1);
223
+ background-color: rgba(238, 238, 238, 1);
224
+ }
225
+
226
+ div[id*="ajaxsearchliteres"] p.showmore {
227
+ text-align: center;
228
+ padding: 0;
229
+ margin: 0;
230
+ font-weight:normal;font-family:Open Sans;color:rgb(5, 94, 148);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
231
+
232
+ div[id*="ajaxsearchliteres"] p.showmore a{
233
+ font-weight:normal;font-family:Open Sans;color:rgb(5, 94, 148);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
234
+
235
+ /* Search settings */
236
+
237
+ div[id*="ajaxsearchlitesettings"].searchsettings {
238
+ background: background-image: linear-gradient(185deg, rgb(109, 204, 237), rgb(104, 174, 199));
239
+ background-image: -webkit-linear-gradient(185deg, rgb(109, 204, 237), rgb(104, 174, 199));
240
+ background-image: -moz-linear-gradient(185deg, rgb(109, 204, 237), rgb(104, 174, 199));
241
+ background-image: -o-linear-gradient(185deg, rgb(109, 204, 237), rgb(104, 174, 199));
242
+ background-image: -ms-linear-gradient(185deg, rgb(109, 204, 237), rgb(104, 174, 199));
243
+ background-image: linear-gradient(185deg, rgb(109, 204, 237), rgb(104, 174, 199));
244
+ background-image: -webkit-linear-gradient(185deg, rgb(109, 204, 237), rgb(104, 174, 199));
245
+ background-image: -moz-linear-gradient(185deg, rgb(109, 204, 237), rgb(104, 174, 199));
246
+ background-image: -o-linear-gradient(185deg, rgb(109, 204, 237), rgb(104, 174, 199));
247
+ background-image: -ms-linear-gradient(185deg, rgb(109, 204, 237), rgb(104, 174, 199));
248
+ ;
249
+ box-shadow:2px 2px 3px -1px rgb(0, 0, 0) ;;
250
+ }
251
+
252
+ div[id*="ajaxsearchlitesettings"].searchsettings .label {
253
+ font-weight:bold;font-family:Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
254
+
255
+
256
+ div[id*="ajaxsearchlitesettings"].searchsettings .option label {
257
+ background-image: linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
258
+ background-image: -webkit-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
259
+ background-image: -moz-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
260
+ background-image: -o-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
261
+ background-image: -ms-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
262
+ ;
263
+ }
264
+
265
+ div[id*="ajaxsearchlitesettings"].searchsettings .option label:after {
266
+ border: 3px solid rgb(255, 255, 255);
267
+ border-right: none;
268
+ border-top: none;
269
+ }
270
+
271
+ div[id*="ajaxsearchlitesettings"].searchsettings fieldset .categoryfilter {
272
+ max-height: 200px;
273
+ overflow: auto;
274
+ }
275
+
276
+ div[id*="ajaxsearchlitesettings"].searchsettings fieldset legend {
277
+ padding: 5px 0 0 10px;
278
+ margin: 0;
279
+ font-weight:normal;font-family:--g--Open Sans;color:rgb(31, 31, 31);font-size:13px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
css/style-dashedblue.css DELETED
@@ -1,550 +0,0 @@
1
- .clear {
2
- clear: both;
3
- }
4
-
5
- .hiddend {
6
- display:none;
7
- }
8
-
9
- #ajaxsearchlite textarea:focus,
10
- #ajaxsearchlite input:focus{
11
- outline: none;
12
- }
13
-
14
- #ajaxsearchlite {
15
- width: 100%;
16
- height: 40px;
17
- border-radius: 5px;
18
- background: #d1eaff;
19
- background: #b4e0f4;
20
- overflow: hidden;
21
- border:1px dashed #000000;border-radius:5px 5px 5px 5px; box-shadow:0px 8px 10px -7px #949494 ;}
22
-
23
- #ajaxsearchlite .probox {
24
- width: auto;
25
- margin: 4px;
26
- height: 30px;
27
- border-radius: 5px;
28
- background: #FFF;
29
- overflow: hidden;
30
- border: 1px solid #FFF;
31
- box-shadow: 1px 0 3px #CCCCCC inset;
32
- background: #ffffff;
33
- border:1px dashed #b4e0f4;border-radius:0px 0px 0px 0px; box-shadow:1px 0px 3px 1px #bcd6e1 inset;}
34
-
35
- #ajaxsearchlite .probox .proinput {
36
- width: auto;
37
- height: 100%;
38
- margin: 2px 0px 0px 10px;
39
- padding: 5px;
40
- float: left;
41
- box-shadow: none;
42
- font-weight:normal;font-family:\'Arial\', Helvetica, sans-serif;color:#212121;font-size:12px;line-height:13px;}
43
-
44
- #ajaxsearchlite .probox .proinput input {
45
- border: 0px;
46
- background: transparent;
47
- width: 100%;
48
- box-shadow: none;
49
- margin: 0;
50
- padding: 0;
51
- font-weight:normal;font-family:\'Arial\', Helvetica, sans-serif;color:#212121;font-size:12px;line-height:13px;}
52
-
53
- #ajaxsearchlite .probox .proinput.iepaddingfix {
54
- padding-top: 0;
55
- }
56
-
57
- #ajaxsearchlite .probox .proinput .loading {
58
- width: 32px;
59
- background: #000;
60
- height: 100%;
61
- box-shadow: none;
62
- }
63
-
64
- #ajaxsearchlite .probox .proloading,
65
- #ajaxsearchlite .probox .promagnifier,
66
- #ajaxsearchlite .probox .prosettings {
67
- width: 32px;
68
- height: 32px;
69
- background: none;
70
- float: right;
71
- box-shadow: none;
72
- margin: 0;
73
- padding: 0;
74
- }
75
-
76
- #ajaxsearchlite .probox .proloading {
77
- background: url("img/loading/loading3.gif") no-repeat;
78
- background-position:center center;
79
- visibility: hidden;
80
- }
81
-
82
- #ajaxsearchlite .probox .promagnifier {
83
- background: url("img/magnifiers/magn3.png") no-repeat #b4e0f4;
84
- background-position:center center;
85
- cursor: pointer;
86
- }
87
-
88
-
89
- #ajaxsearchlite .probox .prosettings {
90
- background: url("img/settings/settings1.png") no-repeat #b4e0f4;
91
- background-position:center center;
92
- cursor: pointer;
93
- }
94
-
95
- #ajaxsearchliteres {
96
- padding: 4px;
97
- background: #D1EAFF;
98
- background: #b4e0f4;
99
- border-radius: 3px;
100
- border:1px dashed #000000;border-radius:3px 3px 3px 3px; box-shadow:0px 8px 10px -7px #949494 ; position: absolute;
101
- visibility: hidden;
102
- z-index:1100;
103
- }
104
-
105
- #ajaxsearchliteres .results .nores {
106
- overflow: hidden;
107
- width: auto;
108
- height: 100%;
109
- line-height: auto;
110
- text-align: center;
111
- margin: 0;
112
- background: #FFF;
113
- }
114
-
115
- #ajaxsearchliteres .results .nores .keyword{
116
- padding: 0 6px;
117
- cursor: pointer;
118
- font-weight:normal;font-family:\'Arial\', Helvetica, sans-serif;color:#4a4a4a;font-size:13px;line-height:14px; font-weight: bold;
119
- }
120
-
121
- #ajaxsearchliteres .results {
122
- overflow: hidden;
123
- width: auto;
124
- height: 0;
125
- margin: 0;
126
- padding: 0;
127
- }
128
-
129
- #ajaxsearchliteres .results .item {
130
- overflow: hidden;
131
- width: auto;
132
- height: 70px;
133
- margin: 0;
134
- margin-bottom: -3px;
135
- padding: 3px;
136
- position: relative;
137
- background: #f4f4f4;
138
- background: #ffffff;
139
- border-radius: 3px;
140
- }
141
-
142
- #ajaxsearchliteres .results .item:last-child {
143
- margin-bottom: 0px;
144
- }
145
-
146
-
147
- #ajaxsearchliteres .results .item .image {
148
- overflow: hidden;
149
- width: 70px;
150
- height: 70px;
151
- background: #000;
152
- background: #ffffff;
153
- margin: 0;
154
- padding: 0;
155
- float: left;
156
- }
157
-
158
- #ajaxsearchliteres .results .item .content {
159
- overflow: hidden;
160
- width: 50%;
161
- height: 70px;
162
- background: #fff;
163
- background: #ffffff;
164
- margin: 0;
165
- padding: 0 10px;
166
- float: right;
167
- }
168
-
169
- #ajaxsearchliteres .results .item .content h3 {
170
- margin: 0;
171
- padding: 0;
172
- line-height: inherit;
173
- font-weight:bold;font-family:\'Arial\', Helvetica, sans-serif;color:#1454a9;font-size:14px;line-height:15px;}
174
-
175
- #ajaxsearchliteres .results .item .content h3 a span.overlap {
176
- position:absolute;
177
- width:100%;
178
- height:100%;
179
- top:0;
180
- left: 0;
181
- z-index: 1;
182
- background-image: url('empty.gif');
183
- }
184
-
185
- #ajaxsearchliteres .results .item .content h3 a {
186
- margin: 0;
187
- padding: 0;
188
- line-height: inherit;
189
- font-weight:bold;font-family:\'Arial\', Helvetica, sans-serif;color:#1454a9;font-size:14px;line-height:15px;}
190
-
191
- #ajaxsearchliteres .results .item .content h3 a:hover {
192
- font-weight:bold;font-family:\'Arial\', Helvetica, sans-serif;color:#1454a9;font-size:14px;line-height:15px;}
193
-
194
- #ajaxsearchliteres .results .item div.etc {
195
- margin: 2px 3px;
196
- padding: 0;
197
- line-height: 10px;
198
- font-weight:bold;font-family:\'Arial\', Helvetica, sans-serif;color:#a1a1a1;font-size:12px;line-height:13px;}
199
- #ajaxsearchliteres .results .item .etc .author {
200
- padding: 0;
201
- font-weight:bold;font-family:\'Arial\', Helvetica, sans-serif;color:#a1a1a1;font-size:12px;line-height:13px;}
202
- #ajaxsearchliteres .results .item .etc .date {
203
- margin: 0 0 0 10px;
204
- padding: 0;
205
- font-weight:normal;font-family:\'Arial\', Helvetica, sans-serif;color:#adadad;font-size:12px;line-height:13px;
206
- }
207
- #ajaxsearchliteres .resdrg {
208
- height: auto;
209
- }
210
-
211
- #ajaxsearchliteres .results .item p.desc {
212
- margin: 2px 0px;
213
- padding: 0;
214
- font-weight:normal;font-family:\'Arial\', Helvetica, sans-serif;color:#4a4a4a;font-size:13px;line-height:14px;}
215
-
216
- #ajaxsearchliteres .mCSB_container{
217
- width:auto;
218
- margin-right:20px;
219
- overflow:hidden;
220
- }
221
- #ajaxsearchliteres .mCSB_container.mCS_no_scrollbar{
222
- margin-right:0;
223
- }
224
- #ajaxsearchliteres .mCustomScrollBox .mCSB_scrollTools{
225
- width:16px;
226
- height:100%;
227
- top:0;
228
- right:0;
229
- }
230
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_draggerContainer{
231
- height:100%;
232
- -webkit-box-sizing:border-box;
233
- -moz-box-sizing:border-box;
234
- box-sizing:border-box;
235
- }
236
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp+.mCSB_draggerContainer{
237
- padding-bottom:40px;
238
- }
239
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_draggerRail{
240
- width:10px;
241
- height:100%;
242
- margin:0 auto;
243
- -webkit-border-radius:10px;
244
- -moz-border-radius:10px;
245
- border-radius:10px;
246
- }
247
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_dragger{
248
- cursor:pointer;
249
- width:100%;
250
- height:30px;
251
- }
252
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
253
- width:10px;
254
- height:100%;
255
- margin:0 auto;
256
- -webkit-border-radius:10px;
257
- -moz-border-radius:10px;
258
- border-radius:10px;
259
- text-align:center;
260
- }
261
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp,
262
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown{
263
- height:20px;
264
- -overflow:hidden;
265
- margin:0 auto;
266
- cursor:pointer;
267
- }
268
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown{
269
- bottom:0;
270
- margin-top:-40px;
271
- }
272
-
273
- #ajaxsearchliteres .mCSB_horizontal .mCSB_container{
274
- height:auto;
275
- margin-right:0;
276
- margin-bottom:30px;
277
- overflow:hidden;
278
- }
279
- #ajaxsearchliteres .mCSB_horizontal .mCSB_container.mCS_no_scrollbar{
280
- margin-bottom:0;
281
- }
282
- #ajaxsearchliteres .mCSB_horizontal.mCustomScrollBox .mCSB_scrollTools{
283
- width:100%;
284
- height:16px;
285
- top:auto;
286
- right:auto;
287
- bottom:0;
288
- left:0;
289
- overflow:hidden;
290
- }
291
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_draggerContainer{
292
- height:100%;
293
- width:auto;
294
- -webkit-box-sizing:border-box;
295
- -moz-box-sizing:border-box;
296
- box-sizing:border-box;
297
- overflow:hidden;
298
- }
299
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_buttonLeft+.mCSB_draggerContainer{
300
- padding-bottom:0;
301
- padding-right:20px;
302
- }
303
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_draggerRail{
304
- width:100%;
305
- height:2px;
306
- margin:7px 0;
307
- -webkit-border-radius:10px;
308
- -moz-border-radius:10px;
309
- border-radius:10px;
310
- }
311
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_dragger{
312
- width:30px;
313
- height:100%;
314
- }
315
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
316
- width:100%;
317
- height:4px;
318
- margin:6px auto;
319
- -webkit-border-radius:10px;
320
- -moz-border-radius:10px;
321
- border-radius:10px;
322
- }
323
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_buttonLeft,
324
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_buttonRight{
325
- width:20px;
326
- height:100%;
327
- overflow:hidden;
328
- margin:0 auto;
329
- cursor:pointer;
330
- float:left;
331
- }
332
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_buttonRight{
333
- right:0;
334
- bottom:auto;
335
- margin-left:-40px;
336
- margin-top:-16px;
337
- float:right;
338
- }
339
-
340
-
341
- #ajaxsearchliteres .mCustomScrollBox .mCSB_scrollTools{
342
- opacity:0.75;
343
- }
344
- #ajaxsearchliteres .mCustomScrollBox:hover .mCSB_scrollTools{
345
- opacity:1;
346
- }
347
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_draggerRail{
348
- background:#000; /* rgba fallback */
349
- background:rgba(0,0,0,0.4);
350
- filter:"alpha(opacity=40)"; -ms-filter:"alpha(opacity=40)"; /* old ie */
351
- }
352
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
353
- background:#fff; /* rgba fallback */
354
- background:rgba(255, 255, 255,0.9);
355
- filter:"alpha(opacity=90)"; -ms-filter:"alpha(opacity=90)"; /* old ie */
356
- }
357
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
358
- background:rgba(255, 255, 255,0.95);
359
- filter:"alpha(opacity=95)"; -ms-filter:"alpha(opacity=95)"; /* old ie */
360
- }
361
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
362
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
363
- background:rgba(255, 255, 255,1);
364
- filter:"alpha(opacity=100)"; -ms-filter:"alpha(opacity=100)"; /* old ie */
365
- }
366
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp,
367
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown,
368
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonLeft,
369
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonRight{
370
- padding: 10px 0 0 0;
371
- background:0;
372
- opacity:0.4;
373
- filter:"alpha(opacity=40)"; -ms-filter:"alpha(opacity=40)"; /* old ie */
374
- }
375
-
376
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown { height:0;position: relative; }
377
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown:after { top: 100%; border: solid transparent; content: " "; height: 0; width: 0; position: absolute;}
378
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown:after { border-color: rgba(136, 183, 213, 0); border-top-color: #0a3f4d; border-width: 8px; left: 50%; margin-left: -8px; }
379
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp { position: relative; margin:10px 0 0 0; height: 0; }
380
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp:after { bottom: 100%; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; }
381
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp:after { border-color: rgba(136, 183, 213, 0); border-bottom-color: #0a3f4d; border-width: 8px; left: 50%; margin-left: -8px; }
382
-
383
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp{
384
- background-position:0 0;
385
- /*
386
- sprites locations are 0 0/-16px 0/-32px 0/-48px 0 (light) and -80px 0/-96px 0/-112px 0/-128px 0 (dark)
387
- */
388
- }
389
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown{
390
- background-position:0 -20px;
391
- /*
392
- sprites locations are 0 -20px/-16px -20px/-32px -20px/-48px -20px (light) and -80px -20px/-96px -20px/-112px -20px/-128px -20px (dark)
393
- */
394
- }
395
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonLeft{
396
- background-position:0 -40px;
397
- /*
398
- sprites locations are 0 -40px/-20px -40px/-40px -40px/-60px -40px (light) and -80px -40px/-100px -40px/-120px -40px/-140px -40px (dark)
399
- */
400
- }
401
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonRight{
402
- background-position:0 -56px;
403
- /*
404
- sprites locations are 0 -56px/-20px -56px/-40px -56px/-60px -56px (light) and -80px -56px/-100px -56px/-120px -56px/-140px -56px (dark)
405
- */
406
- }
407
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp:hover,
408
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown:hover,
409
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonLeft:hover,
410
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonRight:hover{
411
- opacity:0.75;
412
- filter:"alpha(opacity=75)"; -ms-filter:"alpha(opacity=75)"; /* old ie */
413
- }
414
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp:active,
415
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown:active,
416
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonLeft:active,
417
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonRight:active{
418
- opacity:0.9;
419
- filter:"alpha(opacity=90)"; -ms-filter:"alpha(opacity=90)"; /* old ie */
420
- }
421
-
422
- #ajaxsearchliteres span.highlighted{
423
- font-weight: bold;
424
- color: #d9312b;
425
- background-color: #eee;
426
- color: #d9312b;
427
- background-color: #eee;
428
- }
429
-
430
- #ajaxsearchlitesettings.searchsettings {
431
- width: 200px;
432
- height: auto;
433
- background: #b4e0f4;
434
- position: absolute;
435
- display: none;
436
- z-index: 1101;
437
- border-radius: 0 0 3px 3px;
438
- box-shadow: 2px 2px 3px -1px #AAAAAA;
439
- visibility: hidden;
440
- padding: 0 0 8px 0;
441
- }
442
-
443
- #ajaxsearchlitesettings.searchsettings .option {
444
- margin: 10px;
445
- *padding-bottom: 10px;
446
- }
447
-
448
- #ajaxsearchlitesettings.searchsettings.ie78 .option {
449
- margin-bottom: 0 !important;
450
- padding-bottom: 0 !important;
451
- }
452
-
453
- #ajaxsearchlitesettings.searchsettings .label {
454
- float: left;
455
- font-size: 14px;
456
- line-height: 24px;
457
- margin: 6px 10px 0 0;
458
- width: 143px;
459
- color: #333;
460
- }
461
-
462
- /* SQUARED THREE */
463
- #ajaxsearchlitesettings.searchsettings .option input[type=checkbox] {
464
- display:none;
465
- }
466
-
467
- #ajaxsearchlitesettings.searchsettings.ie78 .option input[type=checkbox] {
468
- display:block;
469
- }
470
-
471
- #ajaxsearchlitesettings.searchsettings.ie78 .label {
472
- float:right !important;
473
- }
474
-
475
- #ajaxsearchlitesettings.searchsettings .option {
476
- width: 20px;
477
- position: relative;
478
- float: left;
479
- }
480
-
481
- #ajaxsearchlitesettings.searchsettings .option label {
482
- cursor: pointer;
483
- position: absolute;
484
- width: 20px;
485
- height: 20px;
486
- top: 0;
487
- border-radius: 4px;
488
- -webkit-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,.4);
489
- -moz-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,.4);
490
- box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,.4);
491
- background: #45484d;
492
- background: -webkit-linear-gradient(top, #222222 0%, #45484d 100%);
493
- background: -moz-linear-gradient(top, #222222 0%, #45484d 100%);
494
- background: -o-linear-gradient(top, #222222 0%, #45484d 100%);
495
- background: -ms-linear-gradient(top, #222222 0%, #45484d 100%);
496
- background: linear-gradient(top, #222222 0%, #45484d 100%);
497
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222', endColorstr='#45484d',GradientType=0 );
498
- }
499
-
500
- #ajaxsearchlitesettings.searchsettings.ie78 .option label {
501
- display:none;
502
- }
503
-
504
- #ajaxsearchlitesettings.searchsettings .option label:after {
505
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
506
- filter: alpha(opacity=0);
507
- opacity: 0;
508
- content: '';
509
- position: absolute;
510
- width: 9px;
511
- height: 5px;
512
- background: transparent;
513
- top: 4px;
514
- left: 4px;
515
- border: 3px solid #fcfff4;
516
- border-top: none;
517
- border-right: none;
518
-
519
- -webkit-transform: rotate(-45deg);
520
- -moz-transform: rotate(-45deg);
521
- -o-transform: rotate(-45deg);
522
- -ms-transform: rotate(-45deg);
523
- transform: rotate(-45deg);
524
- }
525
-
526
- #ajaxsearchlitesettings.searchsettings.ie78 .option label:after {
527
- display:none;
528
- }
529
-
530
- #ajaxsearchlitesettings.searchsettings .option label:hover::after {
531
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
532
- filter: alpha(opacity=30);
533
- opacity: 0.3;
534
- }
535
-
536
- #ajaxsearchlitesettings.searchsettings .option input[type=checkbox]:checked + label:after {
537
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
538
- filter: alpha(opacity=100);
539
- opacity: 1;
540
- }
541
-
542
- #ajaxsearchliteres .thumb .end,
543
- #ajaxsearchliteres .thumb { background-color: #B4E0F4; border-radius: 20px; }
544
- #ajaxsearchliteres .scrollbar { position: relative; float: right; width: 15px; border-radius: 0px; background: #FFF;}
545
- #ajaxsearchliteres .track { background-color: #FFF; height: 100%; width:13px; position: relative; padding: 0 1px; border-radius: 0px; }
546
- #ajaxsearchliteres .thumb { height: 20px; width: 13px; cursor: pointer; overflow: hidden; position: absolute; top: 0; }
547
- #ajaxsearchliteres .thumb .end { overflow: hidden; height: 5px; width: 13px; }
548
- #ajaxsearchliteres .disable{ display: none; }
549
- #ajaxsearchliteres .viewport { position: relative; }
550
- #ajaxsearchliteres .overview { left: 0; top: 0; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/style-simple-blue.css ADDED
@@ -0,0 +1,277 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ div[id*="ajaxsearchlite"] {
2
+ width: 100%;
3
+ height: auto;
4
+ border-radius: 5px;
5
+ background: #d1eaff;
6
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(92, 183, 225), rgb(92, 183, 225));
7
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(92, 183, 225), rgb(92, 183, 225));
8
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(92, 183, 225), rgb(92, 183, 225));
9
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(92, 183, 225), rgb(92, 183, 225));
10
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(92, 183, 225), rgb(92, 183, 225));
11
+ background-image: radial-gradient(ellipse at center, rgb(92, 183, 225), rgb(92, 183, 225));
12
+ ;
13
+ overflow: hidden;
14
+ border:0px none rgb(141, 213, 239);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px #000000 ;}
15
+
16
+ div[id*="ajaxsearchlite"] .probox {
17
+ margin: 0px;
18
+ height: 34px;
19
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(92, 183, 225), rgb(92, 183, 225));
20
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(92, 183, 225), rgb(92, 183, 225));
21
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(92, 183, 225), rgb(92, 183, 225));
22
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(92, 183, 225), rgb(92, 183, 225));
23
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(92, 183, 225), rgb(92, 183, 225));
24
+ background-image: radial-gradient(ellipse at center, rgb(92, 183, 225), rgb(92, 183, 225));
25
+ ;
26
+ border:0px solid rgb(104, 174, 199);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px rgb(181, 181, 181) inset;}
27
+
28
+ div[id*="ajaxsearchlite"] .probox .proinput {
29
+ font-weight:normal;font-family:Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
30
+
31
+ div[id*="ajaxsearchlite"] .probox .proinput input {
32
+ font-weight:normal;font-family:Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0); border: 0;
33
+ box-shadow: none;
34
+ }
35
+
36
+ div[id*="ajaxsearchlite"] .probox .proinput input.autocomplete {
37
+ font-weight:normal;font-family:Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
38
+
39
+
40
+ div[id*="ajaxsearchlite"] .probox .proloading,
41
+ div[id*="ajaxsearchlite"] .probox .proclose,
42
+ div[id*="ajaxsearchlite"] .probox .promagnifier,
43
+ div[id*="ajaxsearchlite"] .probox .prosettings {
44
+ width: 34px;
45
+ height: 34px;
46
+ }
47
+
48
+ div[id*="ajaxsearchlite"] .probox .promagnifier .innericon svg {
49
+ fill: rgb(255, 255, 255);
50
+ }
51
+
52
+ div[id*="ajaxsearchlite"] .probox .proloading svg {
53
+ fill: rgb(255, 255, 255);
54
+ }
55
+
56
+ div[id*="ajaxsearchlite"] .probox .prosettings .innericon svg {
57
+ fill: rgb(255, 255, 255);
58
+ }
59
+
60
+
61
+
62
+ div[id*="ajaxsearchlite"] .probox .promagnifier {
63
+
64
+ width: 34px;
65
+ height: 34px;
66
+ background-image: -o-linear-gradient(180deg, rgb(70, 142, 190), rgb(70, 142, 190));
67
+ background-image: -ms-linear-gradient(180deg, rgb(70, 142, 190), rgb(70, 142, 190));
68
+ background-image: -webkit-linear-gradient(180deg, rgb(70, 142, 190), rgb(70, 142, 190));
69
+ background-image: linear-gradient(180deg, rgb(70, 142, 190), rgb(70, 142, 190));
70
+ background-position:center center;
71
+ background-repeat: no-repeat;
72
+
73
+ border:0px solid rgb(0, 0, 0);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px rgba(255, 255, 255, 0.61) ; cursor: pointer;
74
+ background-size: 100% 100%;
75
+
76
+ background-position:center center;
77
+ background-repeat: no-repeat;
78
+ cursor: pointer;
79
+ }
80
+
81
+
82
+
83
+ div[id*="ajaxsearchlite"] .probox .prosettings {
84
+
85
+ width: 34px;
86
+ height: 34px;
87
+ background-image: -o-linear-gradient(185deg, rgb(70, 142, 190), rgb(70, 142, 190));
88
+ background-image: -ms-linear-gradient(185deg, rgb(70, 142, 190), rgb(70, 142, 190));
89
+ background-image: -webkit-linear-gradient(185deg, rgb(70, 142, 190), rgb(70, 142, 190));
90
+ background-image: linear-gradient(185deg, rgb(70, 142, 190), rgb(70, 142, 190));
91
+ background-position:center center;
92
+ background-repeat: no-repeat;
93
+ float: right;
94
+ border:0px solid rgb(104, 174, 199);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px rgba(255, 255, 255, 0.63) ; cursor: pointer;
95
+ background-size: 100% 100%;
96
+ }
97
+
98
+
99
+ div[id*="ajaxsearchliteres"] {
100
+ position: absolute;
101
+ z-index:1100;
102
+ }
103
+
104
+ div[id*="ajaxsearchliteres"].vertical {
105
+ padding: 4px;
106
+ background: rgb(92, 183, 225);
107
+ border-radius: 3px;
108
+ border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px #000000 ; visibility: hidden;
109
+ display: none;
110
+ }
111
+
112
+
113
+ div[id*="ajaxsearchliteres"] .results .nores .keyword{
114
+ padding: 0 6px;
115
+ cursor: pointer;
116
+ font-weight:normal;font-family:Open Sans;color:rgb(74, 74, 74);font-size:13px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0); font-weight: bold;
117
+ }
118
+
119
+ div[id*="ajaxsearchliteres"] .results .item {
120
+ height: 70px;
121
+ background: rgb(255, 255, 255);
122
+ }
123
+
124
+ div[id*="ajaxsearchliteres"].vertical .results .item:after {
125
+ background: rgb(204, 204, 204);
126
+ }
127
+
128
+
129
+ div[id*="ajaxsearchliteres"] .results .item.hovered {
130
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
131
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(245, 245, 245), rgb(245, 245, 245));
132
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
133
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
134
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
135
+ background-image: radial-gradient(ellipse at center, rgb(245, 245, 245), rgb(245, 245, 245));
136
+ ;
137
+ }
138
+
139
+
140
+ div[id*="ajaxsearchliteres"] .results .item .image {
141
+ width: 70px;
142
+ height: 70px;
143
+ }
144
+
145
+
146
+
147
+
148
+ div[id*="ajaxsearchliteres"] .results .item .content {
149
+ overflow: hidden;
150
+ width: 50%;
151
+ height: 70px;
152
+ background: transparent;
153
+ margin: 0;
154
+ padding: 0 10px;
155
+ }
156
+
157
+ div[id*="ajaxsearchliteres"] .results .item .content h3 {
158
+ margin: 0;
159
+ padding: 0;
160
+ line-height: inherit;
161
+ font-weight:normal;font-family:Open Sans;color:rgb(20, 84, 169);font-size:15px;line-height:20px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
162
+
163
+ div[id*="ajaxsearchliteres"] .results .item .content h3 a {
164
+ margin: 0;
165
+ padding: 0;
166
+ line-height: inherit;
167
+ font-weight:normal;font-family:Open Sans;color:rgb(20, 84, 169);font-size:15px;line-height:20px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
168
+
169
+ div[id*="ajaxsearchliteres"] .results .item .content h3 a:hover {
170
+ font-weight:normal;font-family:--g--Open Sans;color:rgb(46, 107, 188);font-size:15px;line-height:20px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
171
+
172
+ div[id*="ajaxsearchliteres"] .results .item div.etc {
173
+ padding: 0;
174
+ line-height: 10px;
175
+ font-weight:bold;font-family:Open Sans;color:rgb(161, 161, 161);font-size:12px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
176
+
177
+ div[id*="ajaxsearchliteres"] .results .item .etc .author {
178
+ padding: 0;
179
+ font-weight:bold;font-family:Open Sans;color:rgb(161, 161, 161);font-size:12px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
180
+
181
+ div[id*="ajaxsearchliteres"] .results .item .etc .date {
182
+ margin: 0 0 0 10px;
183
+ padding: 0;
184
+ font-weight:normal;font-family:Open Sans;color:rgb(173, 173, 173);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
185
+
186
+ div[id*="ajaxsearchliteres"] .results .item p.desc {
187
+ margin: 2px 0px;
188
+ padding: 0;
189
+ font-weight:normal;font-family:Open Sans;color:rgb(74, 74, 74);font-size:13px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
190
+
191
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
192
+ background:#fff; /* rgba fallback */
193
+ background:rgba(rgb(255, 255, 255),0.9);
194
+ filter:"alpha(opacity=90)"; -ms-filter:"alpha(opacity=90)"; /* old ie */
195
+ }
196
+
197
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
198
+ background:rgba(rgb(255, 255, 255),0.95);
199
+ filter:"alpha(opacity=95)"; -ms-filter:"alpha(opacity=95)"; /* old ie */
200
+ }
201
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
202
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
203
+ background:rgba(rgb(255, 255, 255),1);
204
+ filter:"alpha(opacity=100)"; -ms-filter:"alpha(opacity=100)"; /* old ie */
205
+ }
206
+
207
+ div[id*="ajaxsearchliteres"].horizontal .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
208
+ div[id*="ajaxsearchliteres"].horizontal .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
209
+ background: rgb(250, 250, 250);
210
+ filter:"alpha(opacity=100)"; -ms-filter:"alpha(opacity=100)"; /* old ie */
211
+ }
212
+
213
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_buttonDown:after { border-color: rgba(136, 183, 213, 0); border-top-color: rgb(255, 255, 255); border-width: 6px; left: 50%; margin-left: -6px; }
214
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_buttonUp:after { border-color: rgba(136, 183, 213, 0); border-bottom-color: rgb(255, 255, 255); border-width: 6px; left: 50%; margin-left: -6px; }
215
+
216
+ div[id*="ajaxsearchliteres"] span.highlighted{
217
+ font-weight: bold;
218
+ color: #d9312b;
219
+ background-color: #eee;
220
+ color: rgba(217, 49, 43, 1);
221
+ background-color: rgba(238, 238, 238, 1);
222
+ }
223
+
224
+ div[id*="ajaxsearchliteres"] p.showmore {
225
+ text-align: center;
226
+ padding: 0;
227
+ margin: 0;
228
+ font-weight:normal;font-family:Open Sans;color:rgb(5, 94, 148);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
229
+
230
+ div[id*="ajaxsearchliteres"] p.showmore a{
231
+ font-weight:normal;font-family:Open Sans;color:rgb(5, 94, 148);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
232
+
233
+ /* Search settings */
234
+
235
+ div[id*="ajaxsearchlitesettings"].searchsettings {
236
+ background: background-image: linear-gradient(185deg, rgb(70, 142, 190), rgb(70, 142, 190));
237
+ background-image: -webkit-linear-gradient(185deg, rgb(70, 142, 190), rgb(70, 142, 190));
238
+ background-image: -moz-linear-gradient(185deg, rgb(70, 142, 190), rgb(70, 142, 190));
239
+ background-image: -o-linear-gradient(185deg, rgb(70, 142, 190), rgb(70, 142, 190));
240
+ background-image: -ms-linear-gradient(185deg, rgb(70, 142, 190), rgb(70, 142, 190));
241
+ background-image: linear-gradient(185deg, rgb(70, 142, 190), rgb(70, 142, 190));
242
+ background-image: -webkit-linear-gradient(185deg, rgb(70, 142, 190), rgb(70, 142, 190));
243
+ background-image: -moz-linear-gradient(185deg, rgb(70, 142, 190), rgb(70, 142, 190));
244
+ background-image: -o-linear-gradient(185deg, rgb(70, 142, 190), rgb(70, 142, 190));
245
+ background-image: -ms-linear-gradient(185deg, rgb(70, 142, 190), rgb(70, 142, 190));
246
+ ;
247
+ box-shadow:0px 0px 0px 0px rgb(0, 0, 0) ;;
248
+ }
249
+
250
+ div[id*="ajaxsearchlitesettings"].searchsettings .label {
251
+ font-weight:bold;font-family:Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
252
+
253
+
254
+ div[id*="ajaxsearchlitesettings"].searchsettings .option label {
255
+ background-image: linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
256
+ background-image: -webkit-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
257
+ background-image: -moz-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
258
+ background-image: -o-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
259
+ background-image: -ms-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
260
+ ;
261
+ }
262
+
263
+ div[id*="ajaxsearchlitesettings"].searchsettings .option label:after {
264
+ border: 3px solid rgb(255, 255, 255);
265
+ border-right: none;
266
+ border-top: none;
267
+ }
268
+
269
+ div[id*="ajaxsearchlitesettings"].searchsettings fieldset .categoryfilter {
270
+ max-height: 200px;
271
+ overflow: auto;
272
+ }
273
+
274
+ div[id*="ajaxsearchlitesettings"].searchsettings fieldset legend {
275
+ padding: 5px 0 0 10px;
276
+ margin: 0;
277
+ font-weight:normal;font-family:--g--Open Sans;color:rgb(31, 31, 31);font-size:13px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
css/style-simple-grey.css ADDED
@@ -0,0 +1,279 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ div[id*="ajaxsearchlite"] {
4
+ width: 100%;
5
+ height: auto;
6
+ border-radius: 5px;
7
+ background: #d1eaff;
8
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(229, 229, 229), rgb(229, 229, 229));
9
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(229, 229, 229), rgb(229, 229, 229));
10
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(229, 229, 229), rgb(229, 229, 229));
11
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(229, 229, 229), rgb(229, 229, 229));
12
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(229, 229, 229), rgb(229, 229, 229));
13
+ background-image: radial-gradient(ellipse at center, rgb(229, 229, 229), rgb(229, 229, 229));
14
+ ;
15
+ overflow: hidden;
16
+ border:0px none rgb(141, 213, 239);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px #000000 ;}
17
+
18
+ div[id*="ajaxsearchlite"] .probox {
19
+ margin: 0px;
20
+ height: 34px;
21
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(210, 210, 210), rgb(210, 210, 210));
22
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(210, 210, 210), rgb(210, 210, 210));
23
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(210, 210, 210), rgb(210, 210, 210));
24
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(210, 210, 210), rgb(210, 210, 210));
25
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(210, 210, 210), rgb(210, 210, 210));
26
+ background-image: radial-gradient(ellipse at center, rgb(210, 210, 210), rgb(210, 210, 210));
27
+ ;
28
+ border:0px solid rgb(104, 174, 199);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px rgb(181, 181, 181) inset;}
29
+
30
+ div[id*="ajaxsearchlite"] .probox .proinput {
31
+ font-weight:normal;font-family:Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
32
+
33
+ div[id*="ajaxsearchlite"] .probox .proinput input {
34
+ font-weight:normal;font-family:Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0); border: 0;
35
+ box-shadow: none;
36
+ }
37
+
38
+ div[id*="ajaxsearchlite"] .probox .proinput input.autocomplete {
39
+ font-weight:normal;font-family:Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
40
+
41
+
42
+ div[id*="ajaxsearchlite"] .probox .proloading,
43
+ div[id*="ajaxsearchlite"] .probox .proclose,
44
+ div[id*="ajaxsearchlite"] .probox .promagnifier,
45
+ div[id*="ajaxsearchlite"] .probox .prosettings {
46
+ width: 34px;
47
+ height: 34px;
48
+ }
49
+
50
+ div[id*="ajaxsearchlite"] .probox .promagnifier .innericon svg {
51
+ fill: rgb(255, 255, 255);
52
+ }
53
+
54
+ div[id*="ajaxsearchlite"] .probox .proloading svg {
55
+ fill: rgb(255, 255, 255);
56
+ }
57
+
58
+ div[id*="ajaxsearchlite"] .probox .prosettings .innericon svg {
59
+ fill: rgb(255, 255, 255);
60
+ }
61
+
62
+
63
+
64
+ div[id*="ajaxsearchlite"] .probox .promagnifier {
65
+
66
+ width: 34px;
67
+ height: 34px;
68
+ background-image: -o-linear-gradient(180deg, rgb(182, 182, 182), rgb(182, 182, 182));
69
+ background-image: -ms-linear-gradient(180deg, rgb(182, 182, 182), rgb(182, 182, 182));
70
+ background-image: -webkit-linear-gradient(180deg, rgb(182, 182, 182), rgb(182, 182, 182));
71
+ background-image: linear-gradient(180deg, rgb(182, 182, 182), rgb(182, 182, 182));
72
+ background-position:center center;
73
+ background-repeat: no-repeat;
74
+
75
+ border:0px solid rgb(0, 0, 0);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px rgba(255, 255, 255, 0.61) ; cursor: pointer;
76
+ background-size: 100% 100%;
77
+
78
+ background-position:center center;
79
+ background-repeat: no-repeat;
80
+ cursor: pointer;
81
+ }
82
+
83
+
84
+
85
+ div[id*="ajaxsearchlite"] .probox .prosettings {
86
+
87
+ width: 34px;
88
+ height: 34px;
89
+ background-image: -o-linear-gradient(185deg, rgb(182, 182, 182), rgb(182, 182, 182));
90
+ background-image: -ms-linear-gradient(185deg, rgb(182, 182, 182), rgb(182, 182, 182));
91
+ background-image: -webkit-linear-gradient(185deg, rgb(182, 182, 182), rgb(182, 182, 182));
92
+ background-image: linear-gradient(185deg, rgb(182, 182, 182), rgb(182, 182, 182));
93
+ background-position:center center;
94
+ background-repeat: no-repeat;
95
+ float: right;
96
+ border:0px solid rgb(104, 174, 199);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px rgba(255, 255, 255, 0.63) ; cursor: pointer;
97
+ background-size: 100% 100%;
98
+ }
99
+
100
+
101
+ div[id*="ajaxsearchliteres"] {
102
+ position: absolute;
103
+ z-index:1100;
104
+ }
105
+
106
+ div[id*="ajaxsearchliteres"].vertical {
107
+ padding: 4px;
108
+ background: rgba(118, 118, 118, 0.8);
109
+ border-radius: 3px;
110
+ border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px #000000 ; visibility: hidden;
111
+ display: none;
112
+ }
113
+
114
+
115
+ div[id*="ajaxsearchliteres"] .results .nores .keyword{
116
+ padding: 0 6px;
117
+ cursor: pointer;
118
+ font-weight:normal;font-family:Open Sans;color:rgb(74, 74, 74);font-size:13px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0); font-weight: bold;
119
+ }
120
+
121
+ div[id*="ajaxsearchliteres"] .results .item {
122
+ height: 70px;
123
+ background: rgb(255, 255, 255);
124
+ }
125
+
126
+ div[id*="ajaxsearchliteres"].vertical .results .item:after {
127
+ background: rgb(204, 204, 204);
128
+ }
129
+
130
+
131
+ div[id*="ajaxsearchliteres"] .results .item.hovered {
132
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
133
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(245, 245, 245), rgb(245, 245, 245));
134
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
135
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
136
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
137
+ background-image: radial-gradient(ellipse at center, rgb(245, 245, 245), rgb(245, 245, 245));
138
+ ;
139
+ }
140
+
141
+
142
+ div[id*="ajaxsearchliteres"] .results .item .image {
143
+ width: 70px;
144
+ height: 70px;
145
+ }
146
+
147
+
148
+
149
+
150
+ div[id*="ajaxsearchliteres"] .results .item .content {
151
+ overflow: hidden;
152
+ width: 50%;
153
+ height: 70px;
154
+ background: transparent;
155
+ margin: 0;
156
+ padding: 0 10px;
157
+ }
158
+
159
+ div[id*="ajaxsearchliteres"] .results .item .content h3 {
160
+ margin: 0;
161
+ padding: 0;
162
+ line-height: inherit;
163
+ font-weight:normal;font-family:Open Sans;color:rgb(20, 84, 169);font-size:15px;line-height:20px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
164
+
165
+ div[id*="ajaxsearchliteres"] .results .item .content h3 a {
166
+ margin: 0;
167
+ padding: 0;
168
+ line-height: inherit;
169
+ font-weight:normal;font-family:Open Sans;color:rgb(20, 84, 169);font-size:15px;line-height:20px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
170
+
171
+ div[id*="ajaxsearchliteres"] .results .item .content h3 a:hover {
172
+ font-weight:normal;font-family:--g--Open Sans;color:rgb(46, 107, 188);font-size:15px;line-height:20px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
173
+
174
+ div[id*="ajaxsearchliteres"] .results .item div.etc {
175
+ padding: 0;
176
+ line-height: 10px;
177
+ font-weight:bold;font-family:Open Sans;color:rgb(161, 161, 161);font-size:12px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
178
+
179
+ div[id*="ajaxsearchliteres"] .results .item .etc .author {
180
+ padding: 0;
181
+ font-weight:bold;font-family:Open Sans;color:rgb(161, 161, 161);font-size:12px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
182
+
183
+ div[id*="ajaxsearchliteres"] .results .item .etc .date {
184
+ margin: 0 0 0 10px;
185
+ padding: 0;
186
+ font-weight:normal;font-family:Open Sans;color:rgb(173, 173, 173);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
187
+
188
+ div[id*="ajaxsearchliteres"] .results .item p.desc {
189
+ margin: 2px 0px;
190
+ padding: 0;
191
+ font-weight:normal;font-family:Open Sans;color:rgb(74, 74, 74);font-size:13px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
192
+
193
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
194
+ background:#fff; /* rgba fallback */
195
+ background:rgba(rgb(255, 255, 255),0.9);
196
+ filter:"alpha(opacity=90)"; -ms-filter:"alpha(opacity=90)"; /* old ie */
197
+ }
198
+
199
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
200
+ background:rgba(rgb(255, 255, 255),0.95);
201
+ filter:"alpha(opacity=95)"; -ms-filter:"alpha(opacity=95)"; /* old ie */
202
+ }
203
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
204
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
205
+ background:rgba(rgb(255, 255, 255),1);
206
+ filter:"alpha(opacity=100)"; -ms-filter:"alpha(opacity=100)"; /* old ie */
207
+ }
208
+
209
+ div[id*="ajaxsearchliteres"].horizontal .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
210
+ div[id*="ajaxsearchliteres"].horizontal .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
211
+ background: rgb(250, 250, 250);
212
+ filter:"alpha(opacity=100)"; -ms-filter:"alpha(opacity=100)"; /* old ie */
213
+ }
214
+
215
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_buttonDown:after { border-color: rgba(136, 183, 213, 0); border-top-color: rgb(255, 255, 255); border-width: 6px; left: 50%; margin-left: -6px; }
216
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_buttonUp:after { border-color: rgba(136, 183, 213, 0); border-bottom-color: rgb(255, 255, 255); border-width: 6px; left: 50%; margin-left: -6px; }
217
+
218
+ div[id*="ajaxsearchliteres"] span.highlighted{
219
+ font-weight: bold;
220
+ color: #d9312b;
221
+ background-color: #eee;
222
+ color: rgba(217, 49, 43, 1);
223
+ background-color: rgba(238, 238, 238, 1);
224
+ }
225
+
226
+ div[id*="ajaxsearchliteres"] p.showmore {
227
+ text-align: center;
228
+ padding: 0;
229
+ margin: 0;
230
+ font-weight:normal;font-family:Open Sans;color:rgb(5, 94, 148);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
231
+
232
+ div[id*="ajaxsearchliteres"] p.showmore a{
233
+ font-weight:normal;font-family:Open Sans;color:rgb(5, 94, 148);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
234
+
235
+ /* Search settings */
236
+
237
+ div[id*="ajaxsearchlitesettings"].searchsettings {
238
+ background: background-image: linear-gradient(185deg, rgb(182, 182, 182), rgb(182, 182, 182));
239
+ background-image: -webkit-linear-gradient(185deg, rgb(182, 182, 182), rgb(182, 182, 182));
240
+ background-image: -moz-linear-gradient(185deg, rgb(182, 182, 182), rgb(182, 182, 182));
241
+ background-image: -o-linear-gradient(185deg, rgb(182, 182, 182), rgb(182, 182, 182));
242
+ background-image: -ms-linear-gradient(185deg, rgb(182, 182, 182), rgb(182, 182, 182));
243
+ background-image: linear-gradient(185deg, rgb(182, 182, 182), rgb(182, 182, 182));
244
+ background-image: -webkit-linear-gradient(185deg, rgb(182, 182, 182), rgb(182, 182, 182));
245
+ background-image: -moz-linear-gradient(185deg, rgb(182, 182, 182), rgb(182, 182, 182));
246
+ background-image: -o-linear-gradient(185deg, rgb(182, 182, 182), rgb(182, 182, 182));
247
+ background-image: -ms-linear-gradient(185deg, rgb(182, 182, 182), rgb(182, 182, 182));
248
+ ;
249
+ box-shadow:0px 0px 0px 0px rgb(0, 0, 0) ;;
250
+ }
251
+
252
+ div[id*="ajaxsearchlitesettings"].searchsettings .label {
253
+ font-weight:bold;font-family:Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
254
+
255
+
256
+ div[id*="ajaxsearchlitesettings"].searchsettings .option label {
257
+ background-image: linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
258
+ background-image: -webkit-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
259
+ background-image: -moz-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
260
+ background-image: -o-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
261
+ background-image: -ms-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
262
+ ;
263
+ }
264
+
265
+ div[id*="ajaxsearchlitesettings"].searchsettings .option label:after {
266
+ border: 3px solid rgb(255, 255, 255);
267
+ border-right: none;
268
+ border-top: none;
269
+ }
270
+
271
+ div[id*="ajaxsearchlitesettings"].searchsettings fieldset .categoryfilter {
272
+ max-height: 200px;
273
+ overflow: auto;
274
+ }
275
+
276
+ div[id*="ajaxsearchlitesettings"].searchsettings fieldset legend {
277
+ padding: 5px 0 0 10px;
278
+ margin: 0;
279
+ font-weight:normal;font-family:--g--Open Sans;color:rgb(45, 45, 45);font-size:14px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
css/style-simple-red.css ADDED
@@ -0,0 +1,491 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ div[id*="ajaxsearchlite"] {
2
+ width: 100%;
3
+ height: auto;
4
+ border-radius: 5px;
5
+ background: #d1eaff;
6
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(225, 99, 92), rgb(225, 99, 92));
7
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(225, 99, 92), rgb(225, 99, 92));
8
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(225, 99, 92), rgb(225, 99, 92));
9
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(225, 99, 92), rgb(225, 99, 92));
10
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(225, 99, 92), rgb(225, 99, 92));
11
+ background-image: radial-gradient(ellipse at center, rgb(225, 99, 92), rgb(225, 99, 92));
12
+ ;
13
+ overflow: hidden;
14
+ border:0px none rgb(141, 213, 239);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px #000000 ;}
15
+
16
+ div[id*="ajaxsearchlite"] .probox {
17
+ margin: 0px;
18
+ height: 34px;
19
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(225, 99, 92), rgb(225, 99, 92));
20
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(225, 99, 92), rgb(225, 99, 92));
21
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(225, 99, 92), rgb(225, 99, 92));
22
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(225, 99, 92), rgb(225, 99, 92));
23
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(225, 99, 92), rgb(225, 99, 92));
24
+ background-image: radial-gradient(ellipse at center, rgb(225, 99, 92), rgb(225, 99, 92));
25
+ ;
26
+ border:0px solid rgb(104, 174, 199);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px rgb(181, 181, 181) inset;}
27
+
28
+ div[id*="ajaxsearchlite"] .probox .proinput {
29
+ font-weight:normal;font-family:Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
30
+
31
+ div[id*="ajaxsearchlite"] .probox .proinput input {
32
+ font-weight:normal;font-family:Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0); border: 0;
33
+ box-shadow: none;
34
+ }
35
+
36
+ div[id*="ajaxsearchlite"] .probox .proinput input.autocomplete {
37
+ font-weight:normal;font-family:Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
38
+
39
+
40
+ div[id*="ajaxsearchlite"] .probox .proloading,
41
+ div[id*="ajaxsearchlite"] .probox .proclose,
42
+ div[id*="ajaxsearchlite"] .probox .promagnifier,
43
+ div[id*="ajaxsearchlite"] .probox .prosettings {
44
+ width: 34px;
45
+ height: 34px;
46
+ }
47
+
48
+ div[id*="ajaxsearchlite"] .probox .promagnifier .innericon svg {
49
+ fill: rgb(255, 255, 255);
50
+ }
51
+
52
+ div[id*="ajaxsearchlite"] .probox .proloading svg {
53
+ fill: rgb(255, 255, 255);
54
+ }
55
+
56
+ div[id*="ajaxsearchlite"] .probox .prosettings .innericon svg {
57
+ fill: rgb(255, 255, 255);
58
+ }
59
+
60
+ div[id*="ajaxsearchlite"] .probox .promagnifier {
61
+
62
+ width: 34px;
63
+ height: 34px;
64
+ background-image: -o-linear-gradient(180deg, rgb(190, 76, 70), rgb(190, 76, 70));
65
+ background-image: -ms-linear-gradient(180deg, rgb(190, 76, 70), rgb(190, 76, 70));
66
+ background-image: -webkit-linear-gradient(180deg, rgb(190, 76, 70), rgb(190, 76, 70));
67
+ background-image: linear-gradient(180deg, rgb(190, 76, 70), rgb(190, 76, 70));
68
+ background-position:center center;
69
+ background-repeat: no-repeat;
70
+
71
+ border:0px solid rgb(0, 0, 0);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px rgba(255, 255, 255, 0.61) ; cursor: pointer;
72
+ background-size: 100% 100%;
73
+
74
+ background-position:center center;
75
+ background-repeat: no-repeat;
76
+ cursor: pointer;
77
+ }
78
+
79
+
80
+
81
+ div[id*="ajaxsearchlite"] .probox .prosettings {
82
+
83
+ width: 34px;
84
+ height: 34px;
85
+ background-image: -o-linear-gradient(185deg, rgb(190, 76, 70), rgb(190, 76, 70));
86
+ background-image: -ms-linear-gradient(185deg, rgb(190, 76, 70), rgb(190, 76, 70));
87
+ background-image: -webkit-linear-gradient(185deg, rgb(190, 76, 70), rgb(190, 76, 70));
88
+ background-image: linear-gradient(185deg, rgb(190, 76, 70), rgb(190, 76, 70));
89
+ background-position:center center;
90
+ background-repeat: no-repeat;
91
+ float: right;
92
+ border:0px solid rgb(104, 174, 199);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px rgba(255, 255, 255, 0.63) ; cursor: pointer;
93
+ background-size: 100% 100%;
94
+ }
95
+
96
+
97
+ div[id*="ajaxsearchliteres"] {
98
+ position: absolute;
99
+ z-index:1100;
100
+ }
101
+
102
+ div[id*="ajaxsearchliteres"].vertical {
103
+ padding: 4px;
104
+ background: rgb(225, 99, 92);
105
+ border-radius: 3px;
106
+ border:0px none rgb(0, 0, 0);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px #000000 ; visibility: hidden;
107
+ display: none;
108
+ }
109
+
110
+ div[id*="ajaxsearchliteres"].horizontal {
111
+ background-image: linear-gradient(60deg, rgba(19, 19, 19, 0.2), rgba(19, 19, 19, 0.2));
112
+ background-image: -webkit-linear-gradient(60deg, rgba(19, 19, 19, 0.2), rgba(19, 19, 19, 0.2));
113
+ background-image: -moz-linear-gradient(60deg, rgba(19, 19, 19, 0.2), rgba(19, 19, 19, 0.2));
114
+ background-image: -o-linear-gradient(60deg, rgba(19, 19, 19, 0.2), rgba(19, 19, 19, 0.2));
115
+ background-image: -ms-linear-gradient(60deg, rgba(19, 19, 19, 0.2), rgba(19, 19, 19, 0.2));
116
+ ;
117
+ border:0px solid rgb(219, 233, 238);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 2px -3px rgb(0, 0, 0) inset;-webkit-box-shadow:0px 0px 4px -3px rgb(0, 0, 0) inset;-ms-box-shadow:0px 0px 4px -3px rgb(0, 0, 0) inset; margin-top: 12px;
118
+ }
119
+
120
+ div[id*="ajaxsearchliteres"] .results .nores .keyword{
121
+ padding: 0 6px;
122
+ cursor: pointer;
123
+ font-weight:normal;font-family:Open Sans;color:rgb(74, 74, 74);font-size:13px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0); font-weight: bold;
124
+ }
125
+
126
+ div[id*="ajaxsearchliteres"] .results .item {
127
+ height: 70px;
128
+ background: rgb(255, 255, 255);
129
+ }
130
+
131
+ div[id*="ajaxsearchliteres"].vertical .results .item:after {
132
+ background: rgb(204, 204, 204);
133
+ }
134
+
135
+
136
+ div[id*="ajaxsearchliteres"] .results .item.hovered {
137
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
138
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(245, 245, 245), rgb(245, 245, 245));
139
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
140
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
141
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
142
+ background-image: radial-gradient(ellipse at center, rgb(245, 245, 245), rgb(245, 245, 245));
143
+ ;
144
+ }
145
+
146
+ div[id*="ajaxsearchliteres"].horizontal .results .item {
147
+ height: 174px;
148
+ width: 150px;
149
+ margin: 10px 8px;
150
+ padding: 7px;
151
+ float: left;
152
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
153
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(255, 255, 255), rgb(255, 255, 255));
154
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
155
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
156
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
157
+ background-image: radial-gradient(ellipse at center, rgb(255, 255, 255), rgb(255, 255, 255));
158
+ ;
159
+ border:0px none rgb(250, 250, 250);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 4px -3px rgb(0, 0, 0) ;-webkit-box-shadow:0px 0px 6px -3px rgb(0, 0, 0) ;-ms-box-shadow:0px 0px 6px -3px rgb(0, 0, 0) ;}
160
+
161
+ div[id*="ajaxsearchliteres"].horizontal .results .item:hover {
162
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
163
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(245, 245, 245), rgb(245, 245, 245));
164
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
165
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
166
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(245, 245, 245), rgb(245, 245, 245));
167
+ background-image: radial-gradient(ellipse at center, rgb(245, 245, 245), rgb(245, 245, 245));
168
+ ;
169
+ }
170
+
171
+ div[id*="ajaxsearchliteres"] .results .item .image {
172
+ width: 70px;
173
+ height: 70px;
174
+ }
175
+
176
+ div[id*="ajaxsearchliteres"].horizontal .results .item .image {
177
+ margin: 0 auto;
178
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
179
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(255, 255, 255), rgb(255, 255, 255));
180
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
181
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
182
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
183
+ background-image: radial-gradient(ellipse at center, rgb(255, 255, 255), rgb(255, 255, 255));
184
+ ;
185
+ }
186
+
187
+
188
+ div[id*="ajaxsearchliteres"].horizontal .results .item .image {
189
+ width: 150px;
190
+ height: 150px;
191
+ border:0px none rgb(250, 250, 250);border-radius:2px 2px 2px 2px; float: none;
192
+ margin: 0 auto 6px;
193
+ position: relative;
194
+ }
195
+
196
+ div[id*="ajaxsearchliteres"].horizontal .results .item .image img + div {
197
+ box-shadow:0px 0px 2px -1px rgb(0, 0, 0) inset; position: absolute;
198
+ width: 150px;
199
+ height: 150px;
200
+ top: 0;
201
+ left: 0;
202
+ }
203
+
204
+ div[id*="ajaxsearchliteres"] .results .item .content {
205
+ overflow: hidden;
206
+ width: 50%;
207
+ height: 70px;
208
+ background: transparent;
209
+ margin: 0;
210
+ padding: 0 10px;
211
+ }
212
+
213
+ div[id*="ajaxsearchliteres"] .results .item .content h3 {
214
+ margin: 0;
215
+ padding: 0;
216
+ line-height: inherit;
217
+ font-weight:normal;font-family:Open Sans;color:rgb(20, 84, 169);font-size:15px;line-height:20px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
218
+
219
+ div[id*="ajaxsearchliteres"].horizontal .results .item .content h3 a {
220
+ text-align: center;
221
+ }
222
+
223
+ div[id*="ajaxsearchliteres"] .results .item .content h3 a {
224
+ margin: 0;
225
+ padding: 0;
226
+ line-height: inherit;
227
+ font-weight:normal;font-family:Open Sans;color:rgb(20, 84, 169);font-size:15px;line-height:20px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
228
+
229
+ div[id*="ajaxsearchliteres"] .results .item .content h3 a:hover {
230
+ font-weight:normal;font-family:--g--Open Sans;color:rgb(46, 107, 188);font-size:15px;line-height:20px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
231
+
232
+ div[id*="ajaxsearchliteres"] .results .item div.etc {
233
+ padding: 0;
234
+ line-height: 10px;
235
+ font-weight:bold;font-family:Open Sans;color:rgb(161, 161, 161);font-size:12px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
236
+
237
+ div[id*="ajaxsearchliteres"] .results .item .etc .author {
238
+ padding: 0;
239
+ font-weight:bold;font-family:Open Sans;color:rgb(161, 161, 161);font-size:12px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
240
+
241
+ div[id*="ajaxsearchliteres"] .results .item .etc .date {
242
+ margin: 0 0 0 10px;
243
+ padding: 0;
244
+ font-weight:normal;font-family:Open Sans;color:rgb(173, 173, 173);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
245
+
246
+ div[id*="ajaxsearchliteres"] .results .item p.desc {
247
+ margin: 2px 0px;
248
+ padding: 0;
249
+ font-weight:normal;font-family:Open Sans;color:rgb(74, 74, 74);font-size:13px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
250
+
251
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
252
+ background:#fff; /* rgba fallback */
253
+ background:rgba(rgb(255, 255, 255),0.9);
254
+ filter:"alpha(opacity=90)"; -ms-filter:"alpha(opacity=90)"; /* old ie */
255
+ }
256
+
257
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
258
+ background:rgba(rgb(255, 255, 255),0.95);
259
+ filter:"alpha(opacity=95)"; -ms-filter:"alpha(opacity=95)"; /* old ie */
260
+ }
261
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
262
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
263
+ background:rgba(rgb(255, 255, 255),1);
264
+ filter:"alpha(opacity=100)"; -ms-filter:"alpha(opacity=100)"; /* old ie */
265
+ }
266
+
267
+ div[id*="ajaxsearchliteres"].horizontal .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
268
+ background:#fff; /* rgba fallback */
269
+ background:rgb(250, 250, 250);
270
+ opacity: 0.9;
271
+ filter:"alpha(opacity=90)"; -ms-filter:"alpha(opacity=90)"; /* old ie */
272
+ }
273
+ div[id*="ajaxsearchliteres"].horizontal .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
274
+ background:rgb(250, 250, 250);
275
+ opacilty: 0.95;
276
+ filter:"alpha(opacity=95)"; -ms-filter:"alpha(opacity=95)"; /* old ie */
277
+ }
278
+
279
+ div[id*="ajaxsearchliteres"].horizontal .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
280
+ div[id*="ajaxsearchliteres"].horizontal .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
281
+ background: rgb(250, 250, 250);
282
+ filter:"alpha(opacity=100)"; -ms-filter:"alpha(opacity=100)"; /* old ie */
283
+ }
284
+
285
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_buttonDown:after { border-color: rgba(136, 183, 213, 0); border-top-color: rgb(255, 255, 255); border-width: 6px; left: 50%; margin-left: -6px; }
286
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_buttonUp:after { border-color: rgba(136, 183, 213, 0); border-bottom-color: rgb(255, 255, 255); border-width: 6px; left: 50%; margin-left: -6px; }
287
+
288
+ div[id*="ajaxsearchliteres"] span.highlighted{
289
+ font-weight: bold;
290
+ color: #d9312b;
291
+ background-color: #eee;
292
+ color: rgba(217, 49, 43, 1);
293
+ background-color: rgba(238, 238, 238, 1);
294
+ }
295
+
296
+ div[id*="ajaxsearchliteres"] p.showmore {
297
+ text-align: center;
298
+ padding: 0;
299
+ margin: 0;
300
+ font-weight:normal;font-family:Open Sans;color:rgb(5, 94, 148);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
301
+
302
+ div[id*="ajaxsearchliteres"] p.showmore a{
303
+ font-weight:normal;font-family:Open Sans;color:rgb(5, 94, 148);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
304
+
305
+ div[id*="ajaxsearchliteres"] .group {
306
+ background: #DDDDDD;
307
+ background: rgb(246, 246, 246);
308
+ border-radius: 3px 3px 0 0;
309
+ border-top: 1px solid rgb(248, 248, 248);
310
+ border-left: 1px solid rgb(248, 248, 248);
311
+ border-right: 1px solid rgb(248, 248, 248);
312
+ margin: 10px 0 -3px;
313
+ padding: 7px 0 7px 10px;
314
+ position: relative;
315
+ z-index: 1000;
316
+ font-weight:bold;font-family:Open Sans;color:rgb(5, 94, 148);font-size:11px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
317
+
318
+ div[id*="ajaxsearchliteres"].isotopic {
319
+ margin: 0px 0px 0px 0px;
320
+ padding: 0px 0px 0px 0px;
321
+ background: rgba(255, 255, 255, 0);;
322
+ }
323
+
324
+ div[id*="ajaxsearchliteres"].isotopic .results .item {
325
+ width: 200px;
326
+ height: 200px;
327
+ }
328
+
329
+ div[id*="ajaxsearchliteres"].isotopic .results .item .content {
330
+ background: rgba(0, 0, 0, 0.28);;
331
+ }
332
+
333
+ /* Isotopic navigation */
334
+ div[id*="ajaxsearchliteres"].isotopic>nav,
335
+ div[id*="ajaxsearchliteres"].isotopic nav.asp_navigation {
336
+ background: rgb(228, 228, 228);;
337
+ }
338
+
339
+ div[id*="ajaxsearchliteres"].isotopic nav.asp_navigation a.asp_prev,
340
+ div[id*="ajaxsearchliteres"].isotopic nav.asp_navigation a.asp_next {
341
+ background: rgb(76, 76, 76);;
342
+ }
343
+
344
+ div[id*="ajaxsearchliteres"].isotopic nav.asp_navigation a.asp_prev svg,
345
+ div[id*="ajaxsearchliteres"].isotopic nav.asp_navigation a.asp_next svg {
346
+ fill: rgb(255, 255, 255);;
347
+ }
348
+
349
+ div[id*="ajaxsearchliteres"].isotopic nav.asp_navigation ul li.asp_active {
350
+ background: rgb(76, 76, 76);;
351
+ }
352
+
353
+ div[id*="ajaxsearchliteres"].isotopic nav.asp_navigation ul li:hover {
354
+ background: rgb(76, 76, 76);;
355
+ }
356
+
357
+ div[id*="ajaxsearchliteres"].isotopic nav.asp_navigation ul li.asp_active {
358
+ background: rgb(244, 244, 244);;
359
+ }
360
+
361
+ div[id*="ajaxsearchliteres"].isotopic nav.asp_navigation ul li:hover {
362
+ background: rgb(244, 244, 244);;
363
+ }
364
+
365
+ div[id*="ajaxsearchliteres"].isotopic nav.asp_navigation ul li span {
366
+ color: rgb(126, 126, 126);;
367
+ }
368
+
369
+
370
+ /* Search settings */
371
+
372
+ div[id*="ajaxsearchlitesettings"].searchsettings {
373
+ background: background-image: linear-gradient(185deg, rgb(190, 76, 70), rgb(190, 76, 70));
374
+ background-image: -webkit-linear-gradient(185deg, rgb(190, 76, 70), rgb(190, 76, 70));
375
+ background-image: -moz-linear-gradient(185deg, rgb(190, 76, 70), rgb(190, 76, 70));
376
+ background-image: -o-linear-gradient(185deg, rgb(190, 76, 70), rgb(190, 76, 70));
377
+ background-image: -ms-linear-gradient(185deg, rgb(190, 76, 70), rgb(190, 76, 70));
378
+ background-image: linear-gradient(185deg, rgb(190, 76, 70), rgb(190, 76, 70));
379
+ background-image: -webkit-linear-gradient(185deg, rgb(190, 76, 70), rgb(190, 76, 70));
380
+ background-image: -moz-linear-gradient(185deg, rgb(190, 76, 70), rgb(190, 76, 70));
381
+ background-image: -o-linear-gradient(185deg, rgb(190, 76, 70), rgb(190, 76, 70));
382
+ background-image: -ms-linear-gradient(185deg, rgb(190, 76, 70), rgb(190, 76, 70));
383
+ ;
384
+ box-shadow:0px 0px 0px 0px rgb(0, 0, 0) ;;
385
+ }
386
+
387
+ div[id*="ajaxsearchlitesettings"].searchsettings .label {
388
+ font-weight:bold;font-family:Open Sans;color:rgb(255, 255, 255);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
389
+
390
+
391
+ div[id*="ajaxsearchlitesettings"].searchsettings .option label {
392
+ background-image: linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
393
+ background-image: -webkit-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
394
+ background-image: -moz-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
395
+ background-image: -o-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
396
+ background-image: -ms-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
397
+ ;
398
+ }
399
+
400
+ div[id*="ajaxsearchlitesettings"].searchsettings .option label:after {
401
+ border: 3px solid rgb(255, 255, 255);
402
+ border-right: none;
403
+ border-top: none;
404
+ }
405
+
406
+ div[id*="ajaxsearchlitesettings"].searchsettings fieldset .categoryfilter {
407
+ max-height: 200px;
408
+ overflow: auto;
409
+ }
410
+
411
+ div[id*="ajaxsearchlitesettings"].searchsettings fieldset legend {
412
+ padding: 5px 0 0 10px;
413
+ margin: 0;
414
+ font-weight:normal;font-family:--g--Open Sans;color:rgb(31, 31, 31);font-size:13px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
415
+
416
+ div[id*="ajaxsearchliteres"].horizontal .results .mCSB_scrollTools .mCSB_buttonLeft:after { border-color: rgba(136, 183, 213, 0); border-right-color: rgb(255, 255, 255); border-width: 7px; top: 50%; margin-top: -7px; left: 5px; }
417
+ div[id*="ajaxsearchliteres"].horizontal .results .mCSB_scrollTools .mCSB_buttonRight:after { border-color: rgba(136, 183, 213, 0); border-left-color: rgb(255, 255, 255); border-width: 7px; top: 50%; margin-top: -7px; left: 5px; }
418
+
419
+
420
+ div[id*="ajaxsearchliteres"] .photostack {
421
+ background-image: -moz-radial-gradient(center, ellipse cover, rgba(221, 221, 221, 1), rgba(221, 221, 221, 1));
422
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgba(221, 221, 221, 1), rgba(221, 221, 221, 1));
423
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgba(221, 221, 221, 1), rgba(221, 221, 221, 1));
424
+ background-image: -o-radial-gradient(center, ellipse cover, rgba(221, 221, 221, 1), rgba(221, 221, 221, 1));
425
+ background-image: -ms-radial-gradient(center, ellipse cover, rgba(221, 221, 221, 1), rgba(221, 221, 221, 1));
426
+ background-image: radial-gradient(ellipse at center, rgba(221, 221, 221, 1), rgba(221, 221, 221, 1));
427
+ ;
428
+ }
429
+
430
+ div[id*="ajaxsearchliteres"] .photostack figure {
431
+ width: 200px;
432
+ height: 240px;
433
+ position: relative;
434
+ display: inline-block;
435
+ background: #fff;
436
+ padding: 25px;
437
+ text-align: center;
438
+ margin: 5px;
439
+ }
440
+
441
+ div[id*="ajaxsearchliteres"] .photostack figcaption h2 {
442
+ margin: 20px 0 0 0;
443
+ font-weight:normal;font-family:Lato;color:rgba(167, 160, 162, 1);font-size:16px;line-height:20px;;
444
+ }
445
+
446
+ div[id*="ajaxsearchliteres"] .photostack figcaption h2 a {
447
+ font-weight:normal;font-family:Lato;color:rgba(167, 160, 162, 1);font-size:16px;line-height:20px;;
448
+ }
449
+ div[id*="ajaxsearchliteres"] .photostack .etc {
450
+ font-weight:normal;font-family:Open Sans;color:rgba(133, 133, 133, 1);font-size:13px;line-height:18px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);;
451
+ }
452
+
453
+ div[id*="ajaxsearchliteres"] .photostack-img {
454
+ width: 150px;
455
+ height: 150px;
456
+ font-weight:normal;font-family:Open Sans;color:rgba(133, 133, 133, 1);font-size:13px;line-height:18px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);;
457
+ }
458
+
459
+ div[id*="ajaxsearchliteres"] .photostack-back {
460
+ font-weight:normal;font-family:Open Sans;color:rgba(167, 160, 162, 1);font-size:14px;line-height:17px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);;
461
+ }
462
+
463
+ div[id*="ajaxsearchliteres"] .photostack nav span {
464
+ background-image: -moz-radial-gradient(center, ellipse cover, rgba(170, 170, 170, 1), rgba(170, 170, 170, 1));
465
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgba(170, 170, 170, 1), rgba(170, 170, 170, 1));
466
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgba(170, 170, 170, 1), rgba(170, 170, 170, 1));
467
+ background-image: -o-radial-gradient(center, ellipse cover, rgba(170, 170, 170, 1), rgba(170, 170, 170, 1));
468
+ background-image: -ms-radial-gradient(center, ellipse cover, rgba(170, 170, 170, 1), rgba(170, 170, 170, 1));
469
+ background-image: radial-gradient(ellipse at center, rgba(170, 170, 170, 1), rgba(170, 170, 170, 1));
470
+ ;
471
+ }
472
+
473
+ div[id*="ajaxsearchliteres"] .photostack nav span.current {
474
+ background-image: -moz-radial-gradient(center, ellipse cover, rgba(136, 136, 136, 1), rgba(136, 136, 136, 1));
475
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgba(136, 136, 136, 1), rgba(136, 136, 136, 1));
476
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgba(136, 136, 136, 1), rgba(136, 136, 136, 1));
477
+ background-image: -o-radial-gradient(center, ellipse cover, rgba(136, 136, 136, 1), rgba(136, 136, 136, 1));
478
+ background-image: -ms-radial-gradient(center, ellipse cover, rgba(136, 136, 136, 1), rgba(136, 136, 136, 1));
479
+ background-image: radial-gradient(ellipse at center, rgba(136, 136, 136, 1), rgba(136, 136, 136, 1));
480
+ ;
481
+ }
482
+
483
+ div[id*="ajaxsearchliteres"] .photostack nav span.current.flip {
484
+ background-image: -moz-radial-gradient(center, ellipse cover, rgba(85, 85, 85, 1), rgba(85, 85, 85, 1));
485
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgba(85, 85, 85, 1), rgba(85, 85, 85, 1));
486
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgba(85, 85, 85, 1), rgba(85, 85, 85, 1));
487
+ background-image: -o-radial-gradient(center, ellipse cover, rgba(85, 85, 85, 1), rgba(85, 85, 85, 1));
488
+ background-image: -ms-radial-gradient(center, ellipse cover, rgba(85, 85, 85, 1), rgba(85, 85, 85, 1));
489
+ background-image: radial-gradient(ellipse at center, rgba(85, 85, 85, 1), rgba(85, 85, 85, 1));
490
+ ;
491
+ }
css/style-underline.css ADDED
@@ -0,0 +1,279 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ div[id*="ajaxsearchlite"] {
4
+ width: 100%;
5
+ height: auto;
6
+ border-radius: 5px;
7
+ background: #d1eaff;
8
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
9
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(255, 255, 255), rgb(255, 255, 255));
10
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
11
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
12
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
13
+ background-image: radial-gradient(ellipse at center, rgb(255, 255, 255), rgb(255, 255, 255));
14
+ ;
15
+ overflow: hidden;
16
+ border:0px solid rgb(181, 181, 181);border-radius:0px 0px 0px 0px; box-shadow:0px 1px 0px 0px #e4e4e4 ;}
17
+
18
+ div[id*="ajaxsearchlite"] .probox {
19
+ margin: 0px;
20
+ height: 28px;
21
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
22
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(255, 255, 255), rgb(255, 255, 255));
23
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
24
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
25
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(255, 255, 255), rgb(255, 255, 255));
26
+ background-image: radial-gradient(ellipse at center, rgb(255, 255, 255), rgb(255, 255, 255));
27
+ ;
28
+ border:0px none rgb(255, 255, 255);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px rgb(181, 181, 181) inset;}
29
+
30
+ div[id*="ajaxsearchlite"] .probox .proinput {
31
+ font-weight:normal;font-family:Open Sans;color:rgb(0, 0, 0);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
32
+
33
+ div[id*="ajaxsearchlite"] .probox .proinput input {
34
+ font-weight:normal;font-family:Open Sans;color:rgb(0, 0, 0);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0); border: 0;
35
+ box-shadow: none;
36
+ }
37
+
38
+ div[id*="ajaxsearchlite"] .probox .proinput input.autocomplete {
39
+ font-weight:normal;font-family:Open Sans;color:rgb(0, 0, 0);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
40
+
41
+
42
+ div[id*="ajaxsearchlite"] .probox .proloading,
43
+ div[id*="ajaxsearchlite"] .probox .proclose,
44
+ div[id*="ajaxsearchlite"] .probox .promagnifier,
45
+ div[id*="ajaxsearchlite"] .probox .prosettings {
46
+ width: 28px;
47
+ height: 28px;
48
+ }
49
+
50
+ div[id*="ajaxsearchlite"] .probox .promagnifier .innericon svg {
51
+ fill: rgb(54, 54, 54);
52
+ }
53
+
54
+ div[id*="ajaxsearchlite"] .probox .proloading svg {
55
+ fill: rgb(0, 0, 0);
56
+ }
57
+
58
+ div[id*="ajaxsearchlite"] .probox .prosettings .innericon svg {
59
+ fill: rgb(54, 54, 54);
60
+ }
61
+
62
+
63
+
64
+ div[id*="ajaxsearchlite"] .probox .promagnifier {
65
+
66
+ width: 28px;
67
+ height: 28px;
68
+ background-image: -o-linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
69
+ background-image: -ms-linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
70
+ background-image: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
71
+ background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
72
+ background-position:center center;
73
+ background-repeat: no-repeat;
74
+
75
+ border:0px solid rgb(255, 255, 255);border-radius:0px 0px 0px 0px; box-shadow:-1px 1px 0px 0px rgba(255, 255, 255, 0.64) inset; cursor: pointer;
76
+ background-size: 100% 100%;
77
+
78
+ background-position:center center;
79
+ background-repeat: no-repeat;
80
+ cursor: pointer;
81
+ }
82
+
83
+
84
+
85
+ div[id*="ajaxsearchlite"] .probox .prosettings {
86
+
87
+ width: 28px;
88
+ height: 28px;
89
+ background-image: -o-linear-gradient(175deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
90
+ background-image: -ms-linear-gradient(175deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
91
+ background-image: -webkit-linear-gradient(175deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
92
+ background-image: linear-gradient(175deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
93
+ background-position:center center;
94
+ background-repeat: no-repeat;
95
+ float: right;
96
+ border:0px solid rgb(255, 255, 255);border-radius:0px 0px 0px 0px; box-shadow:0px 1px 0px 0px rgba(255, 255, 255, 0.64) inset; cursor: pointer;
97
+ background-size: 100% 100%;
98
+ }
99
+
100
+
101
+ div[id*="ajaxsearchliteres"] {
102
+ position: absolute;
103
+ z-index:1100;
104
+ }
105
+
106
+ div[id*="ajaxsearchliteres"].vertical {
107
+ padding: 4px;
108
+ background: rgb(255, 255, 255);
109
+ border-radius: 3px;
110
+ border:0px solid rgb(181, 181, 181);border-radius:0px 0px 0px 0px; box-shadow:0px 0px 9px -7px #000000 inset; visibility: hidden;
111
+ display: none;
112
+ }
113
+
114
+
115
+ div[id*="ajaxsearchliteres"] .results .nores .keyword{
116
+ padding: 0 6px;
117
+ cursor: pointer;
118
+ font-weight:normal;font-family:Open Sans;color:rgb(74, 74, 74);font-size:13px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0); font-weight: bold;
119
+ }
120
+
121
+ div[id*="ajaxsearchliteres"] .results .item {
122
+ height: 70px;
123
+ background: rgb(255, 255, 255);
124
+ }
125
+
126
+ div[id*="ajaxsearchliteres"].vertical .results .item:after {
127
+ background: rgb(204, 204, 204);
128
+ }
129
+
130
+
131
+ div[id*="ajaxsearchliteres"] .results .item.hovered {
132
+ background-image: -moz-radial-gradient(center, ellipse cover, rgb(244, 244, 244), rgb(246, 246, 246));
133
+ background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, rgb(244, 244, 244), rgb(246, 246, 246));
134
+ background-image: -webkit-radial-gradient(center, ellipse cover, rgb(244, 244, 244), rgb(246, 246, 246));
135
+ background-image: -o-radial-gradient(center, ellipse cover, rgb(244, 244, 244), rgb(246, 246, 246));
136
+ background-image: -ms-radial-gradient(center, ellipse cover, rgb(244, 244, 244), rgb(246, 246, 246));
137
+ background-image: radial-gradient(ellipse at center, rgb(244, 244, 244), rgb(246, 246, 246));
138
+ ;
139
+ }
140
+
141
+
142
+ div[id*="ajaxsearchliteres"] .results .item .image {
143
+ width: 70px;
144
+ height: 70px;
145
+ }
146
+
147
+
148
+
149
+
150
+ div[id*="ajaxsearchliteres"] .results .item .content {
151
+ overflow: hidden;
152
+ width: 50%;
153
+ height: 70px;
154
+ background: transparent;
155
+ margin: 0;
156
+ padding: 0 10px;
157
+ }
158
+
159
+ div[id*="ajaxsearchliteres"] .results .item .content h3 {
160
+ margin: 0;
161
+ padding: 0;
162
+ line-height: inherit;
163
+ font-weight:normal;font-family:Open Sans;color:rgb(20, 104, 169);font-size:14px;line-height:22px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
164
+
165
+ div[id*="ajaxsearchliteres"] .results .item .content h3 a {
166
+ margin: 0;
167
+ padding: 0;
168
+ line-height: inherit;
169
+ font-weight:normal;font-family:Open Sans;color:rgb(20, 104, 169);font-size:14px;line-height:22px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
170
+
171
+ div[id*="ajaxsearchliteres"] .results .item .content h3 a:hover {
172
+ font-weight:normal;font-family:--g--Open Sans;color:rgb(46, 107, 188);font-size:14px;line-height:20px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
173
+
174
+ div[id*="ajaxsearchliteres"] .results .item div.etc {
175
+ padding: 0;
176
+ line-height: 10px;
177
+ font-weight:bold;font-family:Open Sans;color:rgb(161, 161, 161);font-size:12px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
178
+
179
+ div[id*="ajaxsearchliteres"] .results .item .etc .author {
180
+ padding: 0;
181
+ font-weight:bold;font-family:Open Sans;color:rgb(161, 161, 161);font-size:12px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
182
+
183
+ div[id*="ajaxsearchliteres"] .results .item .etc .date {
184
+ margin: 0 0 0 10px;
185
+ padding: 0;
186
+ font-weight:normal;font-family:Open Sans;color:rgb(173, 173, 173);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
187
+
188
+ div[id*="ajaxsearchliteres"] .results .item p.desc {
189
+ margin: 2px 0px;
190
+ padding: 0;
191
+ font-weight:normal;font-family:Open Sans;color:rgb(74, 74, 74);font-size:13px;line-height:13px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
192
+
193
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
194
+ background:#fff; /* rgba fallback */
195
+ background:rgba(rgb(255, 255, 255),0.9);
196
+ filter:"alpha(opacity=90)"; -ms-filter:"alpha(opacity=90)"; /* old ie */
197
+ }
198
+
199
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
200
+ background:rgba(rgb(255, 255, 255),0.95);
201
+ filter:"alpha(opacity=95)"; -ms-filter:"alpha(opacity=95)"; /* old ie */
202
+ }
203
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
204
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
205
+ background:rgba(rgb(255, 255, 255),1);
206
+ filter:"alpha(opacity=100)"; -ms-filter:"alpha(opacity=100)"; /* old ie */
207
+ }
208
+
209
+ div[id*="ajaxsearchliteres"].horizontal .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
210
+ div[id*="ajaxsearchliteres"].horizontal .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
211
+ background: rgb(250, 250, 250);
212
+ filter:"alpha(opacity=100)"; -ms-filter:"alpha(opacity=100)"; /* old ie */
213
+ }
214
+
215
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_buttonDown:after { border-color: rgba(136, 183, 213, 0); border-top-color: rgb(62, 62, 62); border-width: 6px; left: 50%; margin-left: -6px; }
216
+ div[id*="ajaxsearchliteres"] .mCSB_scrollTools .mCSB_buttonUp:after { border-color: rgba(136, 183, 213, 0); border-bottom-color: rgb(62, 62, 62); border-width: 6px; left: 50%; margin-left: -6px; }
217
+
218
+ div[id*="ajaxsearchliteres"] span.highlighted{
219
+ font-weight: bold;
220
+ color: #d9312b;
221
+ background-color: #eee;
222
+ color: rgba(217, 49, 43, 1);
223
+ background-color: rgba(238, 238, 238, 1);
224
+ }
225
+
226
+ div[id*="ajaxsearchliteres"] p.showmore {
227
+ text-align: center;
228
+ padding: 0;
229
+ margin: 0;
230
+ font-weight:normal;font-family:Open Sans;color:rgb(5, 94, 148);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
231
+
232
+ div[id*="ajaxsearchliteres"] p.showmore a{
233
+ font-weight:normal;font-family:Open Sans;color:rgb(5, 94, 148);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
234
+
235
+ /* Search settings */
236
+
237
+ div[id*="ajaxsearchlitesettings"].searchsettings {
238
+ background: background-image: linear-gradient(185deg, rgb(255, 255, 255), rgb(255, 255, 255));
239
+ background-image: -webkit-linear-gradient(185deg, rgb(255, 255, 255), rgb(255, 255, 255));
240
+ background-image: -moz-linear-gradient(185deg, rgb(255, 255, 255), rgb(255, 255, 255));
241
+ background-image: -o-linear-gradient(185deg, rgb(255, 255, 255), rgb(255, 255, 255));
242
+ background-image: -ms-linear-gradient(185deg, rgb(255, 255, 255), rgb(255, 255, 255));
243
+ background-image: linear-gradient(185deg, rgb(255, 255, 255), rgb(255, 255, 255));
244
+ background-image: -webkit-linear-gradient(185deg, rgb(255, 255, 255), rgb(255, 255, 255));
245
+ background-image: -moz-linear-gradient(185deg, rgb(255, 255, 255), rgb(255, 255, 255));
246
+ background-image: -o-linear-gradient(185deg, rgb(255, 255, 255), rgb(255, 255, 255));
247
+ background-image: -ms-linear-gradient(185deg, rgb(255, 255, 255), rgb(255, 255, 255));
248
+ ;
249
+ box-shadow:0px 0px 0px 1px rgb(181, 181, 181) inset;;
250
+ }
251
+
252
+ div[id*="ajaxsearchlitesettings"].searchsettings .label {
253
+ font-weight:bold;font-family:Open Sans;color:rgb(43, 43, 43);font-size:12px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
254
+
255
+
256
+ div[id*="ajaxsearchlitesettings"].searchsettings .option label {
257
+ background-image: linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
258
+ background-image: -webkit-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
259
+ background-image: -moz-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
260
+ background-image: -o-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
261
+ background-image: -ms-linear-gradient(180deg, rgb(34, 34, 34), rgb(69, 72, 77));
262
+ ;
263
+ }
264
+
265
+ div[id*="ajaxsearchlitesettings"].searchsettings .option label:after {
266
+ border: 3px solid rgb(255, 255, 255);
267
+ border-right: none;
268
+ border-top: none;
269
+ }
270
+
271
+ div[id*="ajaxsearchlitesettings"].searchsettings fieldset .categoryfilter {
272
+ max-height: 200px;
273
+ overflow: auto;
274
+ }
275
+
276
+ div[id*="ajaxsearchlitesettings"].searchsettings fieldset legend {
277
+ padding: 5px 0 0 10px;
278
+ margin: 0;
279
+ font-weight:normal;font-family:--g--Open Sans;color:rgb(71, 71, 71);font-size:13px;line-height:15px;text-shadow:0px 0px 0px rgba(255, 255, 255, 0);}
css/style.basic.css ADDED
@@ -0,0 +1,1437 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url(https://fonts.googleapis.com/css?family=Open+Sans:300|Open+Sans:400|Open+Sans:700);
2
+
3
+ /* General css reset */
4
+
5
+ div[id*='ajaxsearchlite'],
6
+ div[id*='ajaxsearchlite'] *,
7
+ div[id*='ajaxsearchliteres'],
8
+ div[id*='ajaxsearchliteres'] *,
9
+ div[id*='ajaxsearchlitesettings'],
10
+ div[id*='ajaxsearchlitesettings'] * {
11
+ -webkit-box-sizing: content-box; /* Safari/Chrome, other WebKit */
12
+ -moz-box-sizing: content-box; /* Firefox, other Gecko */
13
+ -ms-box-sizing: content-box;
14
+ -o-box-sizing: content-box;
15
+ box-sizing: content-box;
16
+ padding: 0;
17
+ margin: 0;
18
+ border: 0;
19
+ border-radius: 0;
20
+ text-transform: none;
21
+ text-shadow: none;
22
+ box-shadown: none;
23
+ text-decoration: none;
24
+ text-align: left;
25
+ letter-spacing: normal;
26
+ }
27
+
28
+ div[id*='ajaxsearchliteres'],
29
+ div[id*='ajaxsearchliteres'] * {
30
+ -webkit-touch-callout: none;
31
+ -webkit-user-select: none;
32
+ -khtml-user-select: none;
33
+ -moz-user-select: none;
34
+ -ms-user-select: none;
35
+ user-select: none;
36
+ }
37
+
38
+ div[id*='ajaxsearchlite'] input[type=text]::-ms-clear { display: none; width : 0; height: 0; }
39
+ div[id*='ajaxsearchlite'] input[type=text]::-ms-reveal { display: none; width : 0; height: 0; }
40
+
41
+ div[id*='ajaxsearchlite'] input[type="search"]::-webkit-search-decoration,
42
+ div[id*='ajaxsearchlite'] input[type="search"]::-webkit-search-cancel-button,
43
+ div[id*='ajaxsearchlite'] input[type="search"]::-webkit-search-results-button,
44
+ div[id*='ajaxsearchlite'] input[type="search"]::-webkit-search-results-decoration { display: none; }
45
+
46
+ .clear {
47
+ clear: both;
48
+ }
49
+
50
+ .hiddend {
51
+ display: none;
52
+ }
53
+
54
+ div[id*='ajaxsearchlite'] textarea:focus,
55
+ div[id*='ajaxsearchlite'] input:focus {
56
+ outline: none;
57
+ }
58
+
59
+ div[id*='ajaxsearchlite'] {
60
+ width: 100%;
61
+ height: auto;
62
+ border-radius: 0;
63
+ background: rgba(255, 255, 255, 0);
64
+ overflow: hidden;
65
+ }
66
+
67
+ div[id*='ajaxsearchlite'] .probox {
68
+ width: auto;
69
+ border-radius: 5px;
70
+ background: #FFF;
71
+ overflow: hidden;
72
+ border: 1px solid #FFF;
73
+ box-shadow: 1px 0 3px #CCCCCC inset;
74
+ }
75
+
76
+ div[id*='ajaxsearchlite'] .probox .proinput {
77
+ width: auto;
78
+ height: 100%;
79
+ margin: 2px 0px 0px 10px;
80
+ padding: 0 5px;
81
+ float: left;
82
+ box-shadow: none;
83
+ position: relative;
84
+ }
85
+
86
+ div[id*='ajaxsearchlite'] .probox .proinput input {
87
+ height: 100%;
88
+ border: 0px;
89
+ background: transparent;
90
+ width: 100%;
91
+ box-shadow: none;
92
+ margin: -1px;
93
+ padding: 0;
94
+ left: 0;
95
+ }
96
+
97
+ div[id*='ajaxsearchlite'] .probox .proinput input.autocomplete {
98
+ border: 0px;
99
+ background: transparent;
100
+ width: 100%;
101
+ box-shadow: none;
102
+ margin: -1px;
103
+ padding: 0;
104
+ left: 0;
105
+ }
106
+
107
+ div[id*='ajaxsearchlite'] .probox .proinput.iepaddingfix {
108
+ padding-top: 0;
109
+ }
110
+
111
+ div[id*='ajaxsearchlite'] .probox .proinput .loading {
112
+ width: 32px;
113
+ background: #000;
114
+ height: 100%;
115
+ box-shadow: none;
116
+ }
117
+
118
+ div[id*='ajaxsearchlite'] .probox .proloading,
119
+ div[id*='ajaxsearchlite'] .probox .proclose,
120
+ div[id*='ajaxsearchlite'] .probox .promagnifier,
121
+ div[id*='ajaxsearchlite'] .probox .prosettings {
122
+ width: 20px;
123
+ height: 20px;
124
+ background: none;
125
+ background-size: 20px 20px;
126
+ float: right;
127
+ box-shadow: none;
128
+ margin: 0;
129
+ padding: 0;
130
+ text-align: center;
131
+ }
132
+
133
+ div[id*='ajaxsearchlite'] .probox .proloading,
134
+ div[id*='ajaxsearchlite'] .probox .proclose {
135
+ background-position: center center;
136
+ display: none;
137
+ background-size: auto;
138
+ background-repeat: no-repeat;
139
+ background-color: transparent;
140
+ }
141
+
142
+ div[id*='ajaxsearchlite'] .probox .proclose {
143
+ position: relative;
144
+ cursor: pointer;
145
+ }
146
+
147
+ div[id*='ajaxsearchlite'] .probox .promagnifier .innericon,
148
+ div[id*='ajaxsearchlite'] .probox .prosettings .innericon,
149
+ div[id*='ajaxsearchlite'] .probox .proclose .innericon {
150
+ background-size: 20px 20px;
151
+ background-position: center center;
152
+ background-repeat: no-repeat;
153
+ background-color: transparent;
154
+ width: 100%;
155
+ height: 100%;
156
+ text-align: center;
157
+ overflow: hidden;
158
+ }
159
+
160
+
161
+
162
+ div[id*='ajaxsearchlite'] .probox .promagnifier .innericon svg,
163
+ div[id*='ajaxsearchlite'] .probox .prosettings .innericon svg,
164
+ div[id*='ajaxsearchlite'] .probox .proloading svg {
165
+ height: 100%;
166
+ width: 22px;
167
+ vertical-align: baseline;
168
+ display: inline-block;
169
+ }
170
+
171
+ div[id*='ajaxsearchlite'] .probox .proloading.asl_msie svg {
172
+ height: 0;
173
+ width: 0;
174
+ display: none;
175
+ }
176
+
177
+
178
+ div[id*='ajaxsearchlite'] .probox .proclose svg {
179
+ background: #333333;
180
+ border-radius: 50%;
181
+ position: absolute;
182
+ top: 50%;
183
+ width: 20px;
184
+ height: 20px;
185
+ margin-top: -10px;
186
+ left: 50%;
187
+ margin-left: -10px;
188
+ fill: #fefefe;
189
+ padding: 4px;
190
+ box-sizing: border-box;
191
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9);
192
+ }
193
+
194
+
195
+ div[id*='ajaxsearchliteres'] * {
196
+ text-decoration: none;
197
+ text-shadow: none;
198
+ }
199
+
200
+ div[id*='ajaxsearchliteres'] .results .nores {
201
+ overflow: hidden;
202
+ width: auto;
203
+ height: 100%;
204
+ line-height: initial;
205
+ text-align: center;
206
+ margin: 0;
207
+ background: #FFF;
208
+ padding: 10px 3px;
209
+ color: #222;
210
+ }
211
+
212
+ div[id*='ajaxsearchliteres'].horizontal {
213
+ padding: 2px 0 10px;
214
+ }
215
+
216
+ div[id*='ajaxsearchliteres'].horizontal .results .nores {
217
+ background: transparent;
218
+ }
219
+
220
+ div[id*='ajaxsearchliteres'] .results {
221
+ overflow: hidden;
222
+ width: auto;
223
+ height: 0;
224
+ margin: 0;
225
+ padding: 0;
226
+ }
227
+
228
+ div[id*='ajaxsearchliteres'].horizontal .results {
229
+ height: auto;
230
+ width: auto;
231
+ }
232
+
233
+ div[id*='ajaxsearchliteres'] .results .item {
234
+ overflow: hidden;
235
+ width: auto;
236
+ margin: 0;
237
+ padding: 3px;
238
+ position: relative;
239
+ background: #f4f4f4;
240
+ border-left: 1px solid rgba(255, 255, 255, 0.6);
241
+ border-right: 1px solid rgba(255, 255, 255, 0.4);
242
+ animation-delay: 0s;
243
+ animation-duration: 1s;
244
+ animation-fill-mode: both;
245
+ animation-timing-function: ease;
246
+ backface-visibility: hidden;
247
+ -webkit-animation-delay: 0s;
248
+ -webkit-animation-duration: 1s;
249
+ -webkit-animation-fill-mode: both;
250
+ -webkit-animation-timing-function: ease;
251
+ -webkit-backface-visibility: hidden;
252
+ }
253
+
254
+ div[id*='ajaxsearchliteres'].vertical .results .item:first-child {
255
+ border-radius: 3px 3px 0 0;
256
+ }
257
+
258
+ div[id*='ajaxsearchliteres'].vertical .results .item:last-child {
259
+ border-radius: 0 0 3px 3px;
260
+ margin-bottom: 0px;
261
+ }
262
+
263
+ div[id*='ajaxsearchliteres'].vertical .results .item:after {
264
+ background: none repeat scroll 0 0 #CCCCCC;
265
+ content: "";
266
+ display: block;
267
+ height: 2px;
268
+ margin: 2px -10px;
269
+ width: 10000px;
270
+ }
271
+
272
+ div[id*='ajaxsearchliteres'].vertical .results .item:last-child:after {
273
+ height: 0;
274
+ margin: 0;
275
+ width: 0;
276
+ }
277
+
278
+ div[id*='ajaxsearchliteres'] .results .item .image {
279
+ overflow: hidden;
280
+ background: transparent;
281
+ margin: 1px auto 0px -3px;
282
+ padding: 0;
283
+ float: left;
284
+ }
285
+
286
+ div[id*='ajaxsearchliteres'] .results .item .image img {
287
+ width: 100%;
288
+ height: 100%;
289
+ }
290
+
291
+ div[id*='ajaxsearchliteres'].horizontal .results .item .content {
292
+ height: auto;
293
+ width: 100%;
294
+ padding: 0;
295
+ }
296
+
297
+ div[id*='ajaxsearchliteres'] .results a span.overlap {
298
+ position: absolute;
299
+ width: 100%;
300
+ height: 100%;
301
+ top: 0;
302
+ left: 0;
303
+ z-index: 1;
304
+ }
305
+
306
+ div[id*='ajaxsearchliteres'] .resdrg {
307
+ height: auto;
308
+ }
309
+
310
+ div[id*='ajaxsearchliteres'].horizontal .resdrg {
311
+ height: auto;
312
+ width: auto;
313
+ }
314
+
315
+ div[id*='ajaxsearchlite'] .mCSB_container {
316
+ width: auto;
317
+ margin-right: 20px;
318
+ overflow: hidden;
319
+ }
320
+
321
+ div[id*='ajaxsearchlite'] .mCSB_container.mCS_no_scrollbar {
322
+ margin-right: 0;
323
+ }
324
+
325
+ div[id*='ajaxsearchlite'] .mCustomScrollBox .mCSB_scrollTools {
326
+ width: 16px;
327
+ height: 100%;
328
+ top: 0;
329
+ right: 0;
330
+ }
331
+
332
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_draggerContainer {
333
+ height: 100%;
334
+ -webkit-box-sizing: border-box;
335
+ -moz-box-sizing: border-box;
336
+ box-sizing: border-box;
337
+ }
338
+
339
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonUp + .mCSB_draggerContainer {
340
+ padding-bottom: 40px;
341
+ margin-top: 20px;
342
+ }
343
+
344
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_draggerRail {
345
+ width: 2px;
346
+ height: 100%;
347
+ margin: 0 auto;
348
+ -webkit-border-radius: 10px;
349
+ -moz-border-radius: 10px;
350
+ border-radius: 10px;
351
+ }
352
+
353
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_dragger {
354
+ cursor: pointer;
355
+ width: 100%;
356
+ height: 30px;
357
+ }
358
+
359
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
360
+ width: 6px;
361
+ box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
362
+ height: 100%;
363
+ margin: 0 auto;
364
+ -webkit-border-radius: 10px;
365
+ -moz-border-radius: 10px;
366
+ border-radius: 10px;
367
+ text-align: center;
368
+ }
369
+
370
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonUp,
371
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonDown {
372
+ height: 20px;
373
+ -overflow: hidden;
374
+ margin: 0 auto;
375
+ cursor: pointer;
376
+ }
377
+
378
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonDown {
379
+ bottom: 0;
380
+ margin-top: -40px;
381
+ }
382
+
383
+ div[id*='ajaxsearchlite'] .mCSB_horizontal .mCSB_container {
384
+ height: auto;
385
+ margin-right: 0;
386
+ margin-bottom: 20px;
387
+ overflow: hidden;
388
+ }
389
+
390
+ div[id*='ajaxsearchlite'] .mCSB_horizontal .mCSB_container.mCS_no_scrollbar {
391
+ margin-bottom: 0;
392
+ }
393
+
394
+ div[id*='ajaxsearchlite'] .mCSB_horizontal.mCustomScrollBox .mCSB_scrollTools {
395
+ width: 100%;
396
+ height: 26px;
397
+ top: auto;
398
+ right: auto;
399
+ bottom: 0;
400
+ left: 0;
401
+ overflow: hidden;
402
+ }
403
+
404
+ div[id*='ajaxsearchlite'] .mCSB_horizontal .mCSB_scrollTools .mCSB_draggerContainer {
405
+ height: 23px;
406
+ width: auto;
407
+ -webkit-box-sizing: border-box;
408
+ -moz-box-sizing: border-box;
409
+ box-sizing: border-box;
410
+ overflow: hidden;
411
+ }
412
+
413
+ div[id*='ajaxsearchlite'] .mCSB_horizontal .mCSB_scrollTools .mCSB_buttonLeft + .mCSB_draggerContainer {
414
+ padding-bottom: 0;
415
+ padding-right: 20px;
416
+ }
417
+
418
+ div[id*='ajaxsearchlite'] .mCSB_horizontal .mCSB_scrollTools .mCSB_draggerRail {
419
+ width: 100%;
420
+ height: 2px;
421
+ margin: 7px 0;
422
+ -webkit-border-radius: 10px;
423
+ -moz-border-radius: 10px;
424
+ border-radius: 10px;
425
+ }
426
+
427
+ div[id*='ajaxsearchlite'] .mCSB_horizontal .mCSB_scrollTools .mCSB_dragger {
428
+ width: 30px;
429
+ height: 100%;
430
+ }
431
+
432
+ div[id*='ajaxsearchlite'] .mCSB_horizontal .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
433
+ width: 100%;
434
+ height: 4px;
435
+ margin: 6px auto;
436
+ -webkit-border-radius: 10px;
437
+ -moz-border-radius: 10px;
438
+ border-radius: 10px;
439
+ }
440
+
441
+ div[id*='ajaxsearchlite'] .mCSB_horizontal .mCSB_scrollTools .mCSB_buttonLeft,
442
+ div[id*='ajaxsearchlite'] .mCSB_horizontal .mCSB_scrollTools .mCSB_buttonRight {
443
+ width: 20px;
444
+ height: 100%;
445
+ overflow: hidden;
446
+ margin: 0 auto;
447
+ cursor: pointer;
448
+ float: left;
449
+ }
450
+
451
+ div[id*='ajaxsearchlite'] .mCSB_horizontal .mCSB_scrollTools .mCSB_buttonRight {
452
+ right: 0;
453
+ bottom: auto;
454
+ margin-left: -40px;
455
+ margin-top: -16px;
456
+ float: right;
457
+ }
458
+
459
+ div[id*='ajaxsearchlite'] .mCustomScrollBox .mCSB_scrollTools {
460
+ opacity: 0.75;
461
+ }
462
+
463
+ div[id*='ajaxsearchlite'] .mCustomScrollBox:hover .mCSB_scrollTools {
464
+ opacity: 1;
465
+ }
466
+
467
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_draggerRail {
468
+ background: #000; /* rgba fallback */
469
+ background: rgba(0, 0, 0, 0.4);
470
+ filter: "alpha(opacity=40)";
471
+ -ms-filter: "alpha(opacity=40)"; /* old ie */
472
+ }
473
+
474
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonUp,
475
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonDown,
476
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonLeft,
477
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonRight {
478
+ padding: 10px 0 0 0;
479
+ background: 0;
480
+ opacity: 0.4;
481
+ filter: "alpha(opacity=40)";
482
+ -ms-filter: "alpha(opacity=40)"; /* old ie */
483
+ }
484
+
485
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonDown {
486
+ height: 0;
487
+ position: relative;
488
+ }
489
+
490
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonDown:after {
491
+ top: 100%;
492
+ border: solid transparent;
493
+ content: " ";
494
+ height: 0;
495
+ width: 0;
496
+ position: absolute;
497
+ }
498
+
499
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonUp {
500
+ position: relative;
501
+ margin: 10px 0 0 0;
502
+ height: 0;
503
+ }
504
+
505
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonUp:after {
506
+ bottom: 100%;
507
+ border: solid transparent;
508
+ content: " ";
509
+ height: 0;
510
+ width: 0;
511
+ position: absolute;
512
+ }
513
+
514
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonUp {
515
+ background-position: 0 0;
516
+ /*
517
+ sprites locations are 0 0/-16px 0/-32px 0/-48px 0 (light) and -80px 0/-96px 0/-112px 0/-128px 0 (dark)
518
+ */
519
+ }
520
+
521
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonDown {
522
+ background-position: 0 -20px;
523
+ /*
524
+ sprites locations are 0 -20px/-16px -20px/-32px -20px/-48px -20px (light) and -80px -20px/-96px -20px/-112px -20px/-128px -20px (dark)
525
+ */
526
+ }
527
+
528
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonLeft {
529
+ background-position: 0 -40px;
530
+ /*
531
+ sprites locations are 0 -40px/-20px -40px/-40px -40px/-60px -40px (light) and -80px -40px/-100px -40px/-120px -40px/-140px -40px (dark)
532
+ */
533
+ }
534
+
535
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonRight {
536
+ background-position: 0 -56px;
537
+ /*
538
+ sprites locations are 0 -56px/-20px -56px/-40px -56px/-60px -56px (light) and -80px -56px/-100px -56px/-120px -56px/-140px -56px (dark)
539
+ */
540
+ }
541
+
542
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonUp:hover,
543
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonDown:hover,
544
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonLeft:hover,
545
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonRight:hover {
546
+ opacity: 0.75;
547
+ filter: "alpha(opacity=75)";
548
+ -ms-filter: "alpha(opacity=75)"; /* old ie */
549
+ }
550
+
551
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonUp:active,
552
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonDown:active,
553
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonLeft:active,
554
+ div[id*='ajaxsearchlite'] .mCSB_scrollTools .mCSB_buttonRight:active {
555
+ opacity: 0.9;
556
+ filter: "alpha(opacity=90)";
557
+ -ms-filter: "alpha(opacity=90)"; /* old ie */
558
+ }
559
+
560
+ div[id*='ajaxsearchlite'] .group:first-of-type {
561
+ margin: 0px 0 -3px;
562
+ }
563
+
564
+ div[id*='ajaxsearchlitesettings'].searchsettings {
565
+ width: 200px;
566
+ height: auto;
567
+ position: absolute;
568
+ display: none;
569
+ z-index: 1101;
570
+ border-radius: 0 0 3px 3px;
571
+ visibility: hidden;
572
+ padding: 0 0 8px 0;
573
+ }
574
+
575
+ div[id*='ajaxsearchlitesettings'].searchsettings .option {
576
+ margin: 10px;
577
+ *padding-bottom: 10px;
578
+ }
579
+
580
+ div[id*='ajaxsearchlitesettings'].searchsettings.ie78 .option {
581
+ margin-bottom: 0 !important;
582
+ padding-bottom: 0 !important;
583
+ }
584
+
585
+ div[id*='ajaxsearchlitesettings'].searchsettings .label {
586
+ font-size: 14px;
587
+ line-height: 21px !important;
588
+ margin: -29px 10px 0 38px;
589
+ width: 150px;
590
+ text-shadow: none;
591
+ padding: 0;
592
+ min-height: 20px;
593
+ border: none;
594
+ background: transparent;
595
+ float: left;
596
+ }
597
+
598
+ /* SQUARED THREE */
599
+ div[id*='ajaxsearchlitesettings'].searchsettings .option input[type=checkbox] {
600
+ display: none;
601
+ }
602
+
603
+ div[id*='ajaxsearchlitesettings'].searchsettings.ie78 .option input[type=checkbox] {
604
+ display: block;
605
+ }
606
+
607
+ div[id*='ajaxsearchlitesettings'].searchsettings.ie78 .label {
608
+ float: right !important;
609
+ }
610
+
611
+ div[id*='ajaxsearchlitesettings'].searchsettings .option {
612
+ width: 17px;
613
+ height: 17px;
614
+ position: relative;
615
+ }
616
+
617
+ div[id*='ajaxsearchlitesettings'].searchsettings .option label {
618
+ cursor: pointer;
619
+ position: absolute;
620
+ width: 17px;
621
+ height: 17px;
622
+ top: 0;
623
+ padding: 0;
624
+ border-radius: 4px;
625
+ -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, .4);
626
+ -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, .4);
627
+ box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, .4);
628
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222222', endColorstr='#45484d', GradientType=0);
629
+ }
630
+
631
+ div[id*='ajaxsearchlitesettings'].searchsettings.ie78 .option label {
632
+ display: none;
633
+ }
634
+
635
+ div[id*='ajaxsearchlitesettings'].searchsettings .option label:after {
636
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
637
+ filter: alpha(opacity=0);
638
+ opacity: 0;
639
+ content: "";
640
+ position: absolute;
641
+ background: transparent;
642
+ border-top: none;
643
+ border-right: none;
644
+ box-sizing: content-box;
645
+
646
+ height: 3px;
647
+ left: 4px;
648
+ top: 5px;
649
+ width: 6px;
650
+
651
+ -webkit-transform: rotate(-45deg);
652
+ -moz-transform: rotate(-45deg);
653
+ -o-transform: rotate(-45deg);
654
+ -ms-transform: rotate(-45deg);
655
+ transform: rotate(-45deg);
656
+ }
657
+
658
+ div[id*='ajaxsearchlitesettings'].searchsettings.ie78 .option label:after {
659
+ display: none;
660
+ }
661
+
662
+ div[id*='ajaxsearchlitesettings'].searchsettings .option label:hover::after {
663
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
664
+ filter: alpha(opacity=30);
665
+ opacity: 0.3;
666
+ }
667
+
668
+ div[id*='ajaxsearchlitesettings'].searchsettings .option input[type=checkbox]:checked + label:after {
669
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
670
+ filter: alpha(opacity=100);
671
+ opacity: 1;
672
+ }
673
+
674
+ div[id*='ajaxsearchlitesettings'].searchsettings fieldset {
675
+ position: relative;
676
+ float: left;
677
+ }
678
+
679
+ div[id*='ajaxsearchlitesettings'].searchsettings fieldset {
680
+ background: transparent;
681
+ font-size: 0.9em;
682
+ margin: 5px 0 0;
683
+ padding: 0px;
684
+ width: 192px;
685
+ }
686
+
687
+ div[id*='ajaxsearchlitesettings'].searchsettings fieldset .label {
688
+ width: 130px;
689
+ }
690
+
691
+ /* basic scrollbar styling */
692
+ /* vertical scrollbar */
693
+ .results .mCSB_container {
694
+ width: auto;
695
+ margin-right: 30px;
696
+ overflow: hidden;
697
+ }
698
+
699
+ .results .mCSB_container.mCS_no_scrollbar {
700
+ margin-right: 0;
701
+ }
702
+
703
+ .results .mCS_disabled > .mCustomScrollBox > .mCSB_container.mCS_no_scrollbar,
704
+ .results .mCS_destroyed > .mCustomScrollBox > .mCSB_container.mCS_no_scrollbar {
705
+ margin-right: 30px;
706
+ }
707
+
708
+ .results .mCustomScrollBox > .mCSB_scrollTools {
709
+ width: 16px;
710
+ height: 100%;
711
+ top: 0;
712
+ right: 0;
713
+ }
714
+
715
+ .results .mCSB_scrollTools .mCSB_draggerContainer {
716
+ position: absolute;
717
+ top: 0;
718
+ left: 0;
719
+ bottom: 0;
720
+ right: 0;
721
+ height: auto;
722
+ }
723
+
724
+ .results .mCSB_scrollTools a + .mCSB_draggerContainer {
725
+ margin: 20px 0;
726
+ }
727
+
728
+ .results .mCSB_scrollTools .mCSB_draggerRail {
729
+ width: 2px;
730
+ height: 100%;
731
+ margin: 0 auto;
732
+ -webkit-border-radius: 10px;
733
+ -moz-border-radius: 10px;
734
+ border-radius: 10px;
735
+ }
736
+
737
+ .results .mCSB_scrollTools .mCSB_dragger {
738
+ cursor: pointer;
739
+ width: 100%;
740
+ height: 30px;
741
+ }
742
+
743
+ .results .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
744
+ width: 4px;
745
+ height: 100%;
746
+ margin: 0 auto;
747
+ -webkit-border-radius: 10px;
748
+ -moz-border-radius: 10px;
749
+ border-radius: 10px;
750
+ text-align: center;
751
+ }
752
+
753
+ .results .mCSB_scrollTools .mCSB_buttonUp,
754
+ .results .mCSB_scrollTools .mCSB_buttonDown {
755
+ display: block;
756
+ }
757
+
758
+ .results .mCSB_scrollTools .mCSB_buttonDown {
759
+ top: 100%;
760
+ margin-top: -40px;
761
+ }
762
+
763
+ /* horizontal scrollbar */
764
+ .results .mCSB_horizontal > .mCSB_container {
765
+ height: auto;
766
+ margin-right: 0;
767
+ margin-bottom: 30px;
768
+ overflow: hidden;
769
+ }
770
+
771
+ .results .mCSB_horizontal > .mCSB_container.mCS_no_scrollbar {
772
+ margin-bottom: 0;
773
+ }
774
+
775
+ .results .mCS_disabled > .mCSB_horizontal > .mCSB_container.mCS_no_scrollbar,
776
+ .results .mCS_destroyed > .mCSB_horizontal > .mCSB_container.mCS_no_scrollbar {
777
+ margin-right: 0;
778
+ margin-bottom: 30px;
779
+ }
780
+
781
+ .results .mCSB_horizontal.mCustomScrollBox > .mCSB_scrollTools {
782
+ width: 100%;
783
+ height: 16px;
784
+ top: auto;
785
+ right: auto;
786
+ bottom: 0;
787
+ left: 0;
788
+ overflow: hidden;
789
+ }
790
+
791
+ .results .mCSB_horizontal > .mCSB_scrollTools a + .mCSB_draggerContainer {
792
+ margin: 0 20px;
793
+ }
794
+
795
+ .results .mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
796
+ width: 100%;
797
+ height: 2px;
798
+ margin: 7px 0;
799
+ -webkit-border-radius: 10px;
800
+ -moz-border-radius: 10px;
801
+ border-radius: 10px;
802
+ }
803
+
804
+ .results .mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger {
805
+ width: 30px;
806
+ height: 100%;
807
+ }
808
+
809
+ .results .mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
810
+ width: 100%;
811
+ height: 4px;
812
+ margin: 6px auto;
813
+ -webkit-border-radius: 10px;
814
+ -moz-border-radius: 10px;
815
+ border-radius: 10px;
816
+ }
817
+
818
+ .results .mCSB_horizontal > .mCSB_scrollTools .mCSB_buttonLeft,
819
+ .results .mCSB_horizontal > .mCSB_scrollTools .mCSB_buttonRight {
820
+ display: block;
821
+ position: relative;
822
+ width: 20px;
823
+ height: 100%;
824
+ overflow: hidden;
825
+ margin: 0 auto;
826
+ cursor: pointer;
827
+ float: left;
828
+ }
829
+
830
+ .results .mCSB_horizontal > .mCSB_scrollTools .mCSB_buttonRight {
831
+ margin-left: -40px;
832
+ float: right;
833
+ }
834
+
835
+ .results .mCustomScrollBox {
836
+ -ms-touch-action: none; /*MSPointer events - direct all pointer events to js*/
837
+ }
838
+
839
+ /* default scrollbar colors and backgrounds (default theme) */
840
+ .results .mCustomScrollBox > .mCSB_scrollTools {
841
+ opacity: 0.75;
842
+ filter: "alpha(opacity=75)";
843
+ -ms-filter: "alpha(opacity=75)"; /* old ie */
844
+ }
845
+
846
+ div[id*='ajaxsearchlitesettings'] .mCustomScrollBox:hover > .mCSB_scrollTools,
847
+ .results .mCustomScrollBox:hover > .mCSB_scrollTools {
848
+ opacity: 1;
849
+ filter: "alpha(opacity=100)";
850
+ -ms-filter: "alpha(opacity=100)"; /* old ie */
851
+ }
852
+
853
+ div[id*='ajaxsearchlitesettings'] .mCSB_scrollTools .mCSB_draggerRail,
854
+ .results .mCSB_scrollTools .mCSB_draggerRail {
855
+ background: #000; /* rgba fallback */
856
+ background: rgba(0, 0, 0, 0.4);
857
+ filter: "alpha(opacity=40)";
858
+ -ms-filter: "alpha(opacity=40)"; /* old ie */
859
+ }
860
+
861
+ div[id*='ajaxsearchlitesettings'] .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
862
+ .results .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
863
+ background: #fff; /* rgba fallback */
864
+ background: rgba(255, 255, 255, 1);
865
+ filter: "alpha(opacity=100)";
866
+ -ms-filter: "alpha(opacity=100)"; /* old ie */
867
+ }
868
+
869
+ .results .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
870
+ background: rgba(255, 255, 255, 0.85);
871
+ filter: "alpha(opacity=85)";
872
+ -ms-filter: "alpha(opacity=85)"; /* old ie */
873
+ }
874
+
875
+ .results .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
876
+ .results .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
877
+ background: rgba(255, 255, 255, 0.9);
878
+ filter: "alpha(opacity=90)";
879
+ -ms-filter: "alpha(opacity=90)"; /* old ie */
880
+ }
881
+
882
+ .results .mCSB_scrollTools .mCSB_buttonUp {
883
+ background-position: 0 0;
884
+ /*
885
+ sprites locations are 0 0/-16px 0/-32px 0/-48px 0 (light) and -80px 0/-96px 0/-112px 0/-128px 0 (dark)
886
+ */
887
+ }
888
+
889
+ .results .mCSB_scrollTools .mCSB_buttonDown {
890
+ background-position: 0 -20px;
891
+ /*
892
+ sprites locations are 0 -20px/-16px -20px/-32px -20px/-48px -20px (light) and -80px -20px/-96px -20px/-112px -20px/-128px -20px (dark)
893
+ */
894
+ }
895
+
896
+ .results .mCSB_scrollTools .mCSB_buttonLeft {
897
+ /*
898
+ background-position:0 -40px;
899
+
900
+ sprites locations are 0 -40px/-20px -40px/-40px -40px/-60px -40px (light) and -80px -40px/-100px -40px/-120px -40px/-140px -40px (dark)
901
+ */
902
+ }
903
+
904
+ div[id*='ajaxsearchliteres'] {
905
+ position: absolute !important;
906
+ }
907
+
908
+ div[id*="ajaxsearchlite"] .probox .proloading.asl_msie {
909
+ background-image: url("../img/ie.gif");
910
+ }
911
+
912
+ div[id*='ajaxsearchliteres'].isotopic>nav,
913
+ div[id*='ajaxsearchliteres'].isotopic nav.asl_navigation {
914
+ display: none;
915
+ background: rgba(255, 255, 255, 0.6);
916
+ margin: 2px 3px;
917
+ }
918
+
919
+ div[id*='ajaxsearchliteres'].isotopic nav.asl_navigation a svg {
920
+ -webkit-backface-visibility: hidden;
921
+ }
922
+
923
+ div[id*='ajaxsearchliteres'].isotopic nav.asl_navigation a.asl_prev,
924
+ div[id*='ajaxsearchliteres'].isotopic nav.asl_navigation a.asl_next {
925
+ background: #3F3F3F;
926
+ height: 36px;
927
+ padding: 0 10px;
928
+ cursor: pointer;
929
+ }
930
+
931
+ div[id*='ajaxsearchliteres'].isotopic nav.asl_navigation a.asl_prev,
932
+ div[id*='ajaxsearchliteres'].isotopic nav.asl_navigation ul {
933
+ float: left;
934
+ }
935
+
936
+ div[id*='ajaxsearchliteres'].isotopic nav.asl_navigation a.asl_next {
937
+ float: right;
938
+ }
939
+
940
+ div[id*='ajaxsearchliteres'].isotopic nav.asl_navigation a.asl_prev svg,
941
+ div[id*='ajaxsearchliteres'].isotopic nav.asl_navigation a.asl_next svg {
942
+ fill: #eee;
943
+ height: 100%;
944
+ width: 18px;
945
+ }
946
+
947
+ div[id*='ajaxsearchliteres'].isotopic nav.asl_navigation a.asl_prev svg {
948
+ -moz-transform: scale(-1, 1);
949
+ -webkit-transform: scale(-1, 1);
950
+ -o-transform: scale(-1, 1);
951
+ -ms-transform: scale(-1, 1);
952
+ transform: scale(-1, 1);
953
+ }
954
+
955
+
956
+
957
+ div[id*='ajaxsearchliteres'].isotopic nav.asl_navigation ul li {
958
+ display: inline-block;
959
+ list-style-type: none;
960
+ margin: 0;
961
+ height: 36px;
962
+ width: 36px;
963
+ cursor: pointer;
964
+ text-align: center;
965
+ }
966
+
967
+ div[id*='ajaxsearchliteres'].isotopic nav.asl_navigation ul li.asl_active {
968
+ background: rgba(255, 255, 255, 0.6);
969
+ }
970
+
971
+ div[id*='ajaxsearchliteres'].isotopic nav.asl_navigation ul li:hover {
972
+ background: rgba(255, 255, 255, 0.6);
973
+ }
974
+
975
+ div[id*='ajaxsearchliteres'].isotopic nav.asl_navigation ul li span {
976
+ font-family: sans-serif;
977
+ font-size: 11px;
978
+ vertical-align: middle;
979
+ color: #333;
980
+ line-height: 36px;
981
+ font-weight: bold;
982
+ text-shadow: none;
983
+ }
984
+
985
+ div[id*='ajaxsearchliteres'].horizontal .results .mCSB_scrollTools .mCSB_buttonLeft,
986
+ div[id*='ajaxsearchlitesettings'] .mCSB_scrollTools .mCSB_buttonLeft {
987
+ position: relative;
988
+ background: transparent;
989
+ margin-left: 9px;
990
+ }
991
+
992
+ div[id*='ajaxsearchliteres'].horizontal .results .mCSB_scrollTools .mCSB_buttonLeft:after,
993
+ div[id*='ajaxsearchlitesettings'] .mCSB_scrollTools .mCSB_buttonLeft:after {
994
+ border: solid transparent;
995
+ content: " ";
996
+ height: 0;
997
+ width: 0;
998
+ position: absolute;
999
+ pointer-events: none;
1000
+ }
1001
+
1002
+ div[id*='ajaxsearchliteres'].horizontal .results .mCSB_scrollTools .mCSB_buttonRight,
1003
+ div[id*='ajaxsearchlitesettings'] .mCSB_scrollTools .mCSB_buttonRight {
1004
+ position: relative;
1005
+ background: transparent;
1006
+ margin-right: 9px;
1007
+ margin-top: 0px;
1008
+ }
1009
+
1010
+ div[id*='ajaxsearchliteres'].horizontal .results .mCSB_scrollTools .mCSB_buttonRight:after,
1011
+ div[id*='ajaxsearchlitesettings'] .mCSB_scrollTools .mCSB_buttonRight:after {
1012
+ border: solid transparent;
1013
+ content: " ";
1014
+ height: 0;
1015
+ width: 0;
1016
+ position: absolute;
1017
+ pointer-events: none;
1018
+ }
1019
+
1020
+ div[id*='ajaxsearchliteres'] .results .mCSB_horizontal > .mCSB_scrollTools a + .mCSB_draggerContainer {
1021
+ margin: 10px 12px 0 36px
1022
+ }
1023
+
1024
+ .results .mCSB_scrollTools .mCSB_buttonRight {
1025
+ background-position: 0 -56px;
1026
+ /*
1027
+ sprites locations are 0 -56px/-20px -56px/-40px -56px/-60px -56px (light) and -80px -56px/-100px -56px/-120px -56px/-140px -56px (dark)
1028
+ */
1029
+ }
1030
+
1031
+ div[id*='ajaxsearchlitesettings'] .mCSB_scrollTools .mCSB_buttonUp:hover,
1032
+ div[id*='ajaxsearchlitesettings'] .mCSB_scrollTools .mCSB_buttonDown:hover,
1033
+ div[id*='ajaxsearchlitesettings'] .mCSB_scrollTools .mCSB_buttonLeft:hover,
1034
+ div[id*='ajaxsearchlitesettings'] .mCSB_scrollTools .mCSB_buttonRight:hover,
1035
+ .results .mCSB_scrollTools .mCSB_buttonUp:hover,
1036
+ .results .mCSB_scrollTools .mCSB_buttonDown:hover,
1037
+ .results .mCSB_scrollTools .mCSB_buttonLeft:hover,
1038
+ .results .mCSB_scrollTools .mCSB_buttonRight:hover {
1039
+ opacity: 0.75;
1040
+ filter: "alpha(opacity=75)";
1041
+ -ms-filter: "alpha(opacity=75)"; /* old ie */
1042
+ }
1043
+
1044
+ div[id*='ajaxsearchlitesettings'] .mCSB_scrollTools .mCSB_buttonUp:active,
1045
+ div[id*='ajaxsearchlitesettings'] .mCSB_scrollTools .mCSB_buttonDown:active,
1046
+ div[id*='ajaxsearchlitesettings'] .mCSB_scrollTools .mCSB_buttonLeft:active,
1047
+ div[id*='ajaxsearchlitesettings'] .mCSB_scrollTools .mCSB_buttonRight:active,
1048
+ .results .mCSB_scrollTools .mCSB_buttonUp:active,
1049
+ .results .mCSB_scrollTools .mCSB_buttonDown:active,
1050
+ .results .mCSB_scrollTools .mCSB_buttonLeft:active,
1051
+ .results .mCSB_scrollTools .mCSB_buttonRight:active {
1052
+ opacity: 0.9;
1053
+ filter: "alpha(opacity=90)";
1054
+ -ms-filter: "alpha(opacity=90)"; /* old ie */
1055
+ }
1056
+
1057
+ /* Isotopic styles */
1058
+ div[id*='ajaxsearchliteres'].isotopic .results .item {
1059
+ width: 193px;
1060
+ height: 193px;
1061
+ margin: 3px;
1062
+ background-size: 100% 100%;
1063
+ border: 0;
1064
+ backface-visibility: visible;
1065
+ -webkit-backface-visibility: visible;
1066
+ }
1067
+
1068
+ div[id*='ajaxsearchliteres'].isotopic .results .item .content {
1069
+ width: 100%;
1070
+ height: 100%;
1071
+ position: absolute;
1072
+ top: 0;
1073
+ left: 0;
1074
+ background: rgba(255, 255, 255, 0.8);
1075
+ border: 0;
1076
+ backface-visibility: visible;
1077
+ -webkit-backface-visibility: visible;
1078
+ box-sizing: border-box;
1079
+ z-index: 3;
1080
+ padding: 4px 6px;
1081
+ }
1082
+
1083
+ div[id*='ajaxsearchliteres'].isotopic .results .item .asl_item_img+.content {
1084
+ height: auto;
1085
+ top: auto;
1086
+ bottom: 0;
1087
+ }
1088
+
1089
+ div[id*='ajaxsearchliteres'].isotopic .results .item .asl_item_img {
1090
+ width: 100%;
1091
+ height: 100%;
1092
+ position: absolute;
1093
+ top: 0;
1094
+ left: 0;
1095
+ z-index: 1;
1096
+ backface-visibility: hidden;
1097
+ -webkit-backface-visibility: hidden;
1098
+ }
1099
+
1100
+ div[id*='ajaxsearchliteres'].isotopic .results .item .asl_item_overlay_img {
1101
+ width: 100%;
1102
+ height: 100%;
1103
+ position: absolute;
1104
+ top: 0;
1105
+ left: 0;
1106
+ z-index: 3;
1107
+ filter: url('#aslblur');
1108
+ -moz-filter: url('#aslblur');
1109
+ -webkit-filter: url('#aslblur');
1110
+ -ms-filter: url('#aslblur');
1111
+ -o-filter: url('#aslblur');
1112
+ display: none;
1113
+ cursor: pointer;
1114
+ }
1115
+
1116
+ #asl_hidden_data,
1117
+ #asl_hidden_data * {
1118
+ display: none;
1119
+ }
1120
+
1121
+ div[id*='ajaxsearchliteres'].isotopic .results .item .asl_item_overlay,
1122
+ div[id*='ajaxsearchliteres'].isotopic .results .item .asl_item_overlay_m{
1123
+ width: 100%;
1124
+ height: 100%;
1125
+ position: absolute;
1126
+ text-align: center;
1127
+ background: rgba(0, 0, 0, 0.2);
1128
+ top: 0;
1129
+ left: 0;
1130
+ display: none;
1131
+ z-index: 4;
1132
+ cursor: pointer;
1133
+ }
1134
+
1135
+ div[id*='ajaxsearchliteres'].isotopic .results .item .asl_item_overlay_m {
1136
+ display: block;
1137
+ background: transparent;
1138
+ }
1139
+
1140
+ div[id*='ajaxsearchliteres'].isotopic .results .item .asl_item_inner {
1141
+ position: absolute;
1142
+ top: 50%;
1143
+ left: 50%;
1144
+ width: 70px;
1145
+ height: 70px;
1146
+ margin: -35px 0 0 -35px;
1147
+ background: #ddd;
1148
+ box-sizing: padding-box;
1149
+ border-radius: 50%;
1150
+ background: rgba(0, 0, 0, 0.7);
1151
+ text-align: center;
1152
+ z-index: 2;
1153
+ }
1154
+
1155
+ div[id*='ajaxsearchliteres'].isotopic .results .item .asl_item_inner svg {
1156
+ height: 100%;
1157
+ width: 32px;
1158
+ fill: #fff;
1159
+ }
1160
+
1161
+
1162
+ /* Polaroid stlyes */
1163
+ div[id*='ajaxsearchliteres'] .photostack,
1164
+ div[id*='ajaxsearchliteres'] .photostack * {
1165
+ -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
1166
+ -moz-box-sizing: border-box; /* Firefox, other Gecko */
1167
+ -ms-box-sizing: border-box;
1168
+ -o-box-sizing: border-box;
1169
+ box-sizing: border-box;
1170
+ }
1171
+
1172
+ div[id*='ajaxsearchliteres'] .photostack {
1173
+ background: transparent;
1174
+ position: relative;
1175
+ text-align: center;
1176
+ overflow: hidden;
1177
+ }
1178
+
1179
+ div[id*='ajaxsearchliteres'] .photostack-start {
1180
+ cursor: pointer;
1181
+ }
1182
+
1183
+ div[id*='ajaxsearchliteres'] .photostack > div {
1184
+ width: 100%;
1185
+ height: 100%;
1186
+ margin: 0 auto;
1187
+ }
1188
+
1189
+ .js div[id*='ajaxsearchliteres'] .photostack figure {
1190
+ position: absolute;
1191
+ display: block;
1192
+ margin: 0;
1193
+ }
1194
+
1195
+ div[id*='ajaxsearchliteres'] .photostack-img {
1196
+ outline: none;
1197
+ display: block;
1198
+ background: #f9f9f9;
1199
+ }
1200
+
1201
+ div[id*='ajaxsearchliteres'] .photostack-img img {
1202
+ width: 100%;
1203
+ height: 100%;
1204
+ }
1205
+
1206
+ div[id*='ajaxsearchliteres'] .photostack-back {
1207
+ display: none;
1208
+ position: absolute;
1209
+ width: 100%;
1210
+ height: 100%;
1211
+ top: 0;
1212
+ left: 0;
1213
+ background: #fff;
1214
+ padding: 50px 40px;
1215
+ text-align: left;
1216
+ }
1217
+
1218
+ div[id*='ajaxsearchliteres'] .photostack-back p {
1219
+ margin: 0;
1220
+ }
1221
+
1222
+ div[id*='ajaxsearchliteres'] .photostack-back p span {
1223
+ text-decoration: line-through;
1224
+ }
1225
+
1226
+ /* Navigation dots */
1227
+ div[id*='ajaxsearchliteres'] .photostack nav {
1228
+ position: absolute;
1229
+ width: 100%;
1230
+ bottom: 30px;
1231
+ z-index: 90;
1232
+ text-align: center;
1233
+ left: 0;
1234
+ -webkit-transition: opacity 0.3s;
1235
+ transition: opacity 0.3s;
1236
+ }
1237
+
1238
+ div[id*='ajaxsearchliteres'] .photostack-start nav {
1239
+ opacity: 0;
1240
+ }
1241
+
1242
+ div[id*='ajaxsearchliteres'] .photostack nav span {
1243
+ position: relative;
1244
+ display: inline-block;
1245
+ margin: 0 5px;
1246
+ width: 30px;
1247
+ height: 30px;
1248
+ cursor: pointer;
1249
+ background: #aaa;
1250
+ border-radius: 50%;
1251
+ text-align: center;
1252
+ -webkit-transition: -webkit-transform 0.6s ease-in-out, background 0.3s;
1253
+ transition: transform 0.6s ease-in-out, background 0.3s;
1254
+ -webkit-transform: scale(0.48);
1255
+ transform: scale(0.48);
1256
+ }
1257
+
1258
+ div[id*='ajaxsearchliteres'] .photostack nav span:last-child {
1259
+ margin-right: 0;
1260
+ }
1261
+
1262
+ div[id*='ajaxsearchliteres'] .photostack nav span::after {
1263
+ content: "\e600";
1264
+ font-family: 'icons';
1265
+ font-size: 80%;
1266
+ speak: none;
1267
+ display: inline-block;
1268
+ vertical-align: top;
1269
+ font-style: normal;
1270
+ font-weight: normal;
1271
+ font-variant: normal;
1272
+ text-transform: none;
1273
+ line-height: 30px;
1274
+ color: #fff;
1275
+ opacity: 0;
1276
+ -webkit-font-smoothing: antialiased;
1277
+ -moz-osx-font-smoothing: grayscale;
1278
+ -webkit-transition: opacity 0.3s;
1279
+ transition: opacity 0.3s;
1280
+ }
1281
+
1282
+ div[id*='ajaxsearchliteres'] .photostack nav span.current {
1283
+ background: #888;
1284
+ -webkit-transform: scale(1);
1285
+ transform: scale(1);
1286
+ }
1287
+
1288
+ div[id*='ajaxsearchliteres'] .photostack nav span.current.flip {
1289
+ -webkit-transform: scale(1) rotateY(-180deg) translateZ(-1px);
1290
+ transform: scale(1) rotateY(-180deg) translateZ(-1px);
1291
+ background: #555;
1292
+ }
1293
+
1294
+ div[id*='ajaxsearchliteres'] .photostack nav span.flippable::after {
1295
+ opacity: 1;
1296
+ -webkit-transition-delay: 0.4s;
1297
+ transition-delay: 0.4s;
1298
+ }
1299
+
1300
+ .js div[id*='ajaxsearchliteres'] .photostack::before {
1301
+ content: '';
1302
+ position: absolute;
1303
+ width: 100%;
1304
+ height: 100%;
1305
+ background: rgba(0, 0, 0, 0.5);
1306
+ top: 0;
1307
+ left: 0;
1308
+ z-index: 100;
1309
+ -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
1310
+ transition: opacity 0.3s, visibility 0s 0.3s;
1311
+ }
1312
+
1313
+ .js div[id*='ajaxsearchliteres'] .photostack-start::before {
1314
+ -webkit-transition: opacity 0.3s;
1315
+ transition: opacity 0.3s;
1316
+ }
1317
+
1318
+ /* Button on photostack container */
1319
+ .js div[id*='ajaxsearchliteres'] .photostack::after {
1320
+ content: 'View Gallery';
1321
+ font-weight: 400;
1322
+ position: absolute;
1323
+ border: 3px solid #fff;
1324
+ text-align: center;
1325
+ white-space: nowrap;
1326
+ left: 50%;
1327
+ top: 50%;
1328
+ -webkit-transform: translateY(-50%) translateX(-50%);
1329
+ transform: translateY(-50%) translateX(-50%);
1330
+ padding: 10px 20px;
1331
+ color: #fff;
1332
+ text-transform: uppercase;
1333
+ letter-spacing: 1px;
1334
+ cursor: pointer;
1335
+ z-index: 101;
1336
+ }
1337
+
1338
+ .js div[id*='ajaxsearchliteres'] .photostack::before,
1339
+ .js div[id*='ajaxsearchliteres'] .photostack::after {
1340
+ opacity: 0;
1341
+ visibility: hidden;
1342
+ }
1343
+
1344
+ .js div[id*='ajaxsearchliteres'] .photostack-start::before,
1345
+ .js div[id*='ajaxsearchliteres'] .photostack-start:hover::after,
1346
+ .touch .photostack-start::after {
1347
+ opacity: 1;
1348
+ visibility: visible;
1349
+ }
1350
+
1351
+ div[id*='ajaxsearchliteres'] .photostack figure::after {
1352
+ content: '';
1353
+ position: absolute;
1354
+ width: 100%;
1355
+ height: 100%;
1356
+ top: 0;
1357
+ left: 0;
1358
+ visibility: visible;
1359
+ opacity: 1;
1360
+ background: rgba(0, 0, 0, 0.05);
1361
+ -webkit-transition: opacity 0.6s;
1362
+ transition: opacity 0.6s;
1363
+ }
1364
+
1365
+ /* Hide figure overlay when it becomes current */
1366
+ div[id*='ajaxsearchliteres'] figure.photostack-current::after {
1367
+ -webkit-transition: opacity 0.6s, visibility 0s 0.6s;
1368
+ transition: opacity 0.6s, visibility 0s 0.6s;
1369
+ opacity: 0;
1370
+ visibility: hidden;
1371
+ }
1372
+
1373
+ /* Special classes for transitions and perspective */
1374
+ div[id*='ajaxsearchliteres'] .photostack-transition figure {
1375
+ -webkit-transition: -webkit-transform 0.6s ease-in-out;
1376
+ transition: transform 0.6s ease-in-out;
1377
+ }
1378
+
1379
+ div[id*='ajaxsearchliteres'] .photostack-perspective {
1380
+ -webkit-perspective: 1800px;
1381
+ perspective: 1800px;
1382
+ }
1383
+
1384
+ div[id*='ajaxsearchliteres'] .photostack-perspective > div,
1385
+ div[id*='ajaxsearchliteres'] .photostack-perspective figure {
1386
+ -webkit-transform-style: preserve-3d;
1387
+ transform-style: preserve-3d;
1388
+ }
1389
+
1390
+ div[id*='ajaxsearchliteres'] .photostack-perspective figure,
1391
+ div[id*='ajaxsearchliteres'] .photostack-perspective figure div {
1392
+ -webkit-backface-visibility: hidden;
1393
+ backface-visibility: hidden;
1394
+ }
1395
+
1396
+ div[id*='ajaxsearchliteres'] .photostack-perspective figure.photostack-flip {
1397
+ -webkit-transform-origin: 0% 50%;
1398
+ transform-origin: 0% 50%;
1399
+ }
1400
+
1401
+ .csstransformspreserve3d figure.photostack-flip .photostack-back {
1402
+ -webkit-transform: rotateY(180deg) !important;
1403
+ transform: rotateY(180deg) !important;
1404
+ display: block !important;
1405
+ }
1406
+
1407
+ .no-csstransformspreserve3d figure.photostack-showback .photostack-back {
1408
+ display: block !important;
1409
+ }
1410
+
1411
+ /* The no-JS fallback look does not need to be boring ;) */
1412
+ .no-js .photostack figure {
1413
+ box-shadow: -2px 2px 0 rgba(0, 0, 0, 0.05) !important;
1414
+ }
1415
+
1416
+ .no-js .photostack figure::after {
1417
+ display: none !important;
1418
+ }
1419
+
1420
+ .no-js .photostack figure:nth-child(3n) {
1421
+ -webkit-transform: translateX(-10%) rotate(5deg) !important;
1422
+ transform: translateX(-10%) rotate(5deg) !important;
1423
+ }
1424
+
1425
+ .no-js .photostack figure:nth-child(3n-2) {
1426
+ -webkit-transform: translateY(10%) rotate(-3deg) !important;
1427
+ transform: translateY(10%) rotate(-3deg) !important;
1428
+ }
1429
+
1430
+ /* Some custom styles for the demo */
1431
+
1432
+ /* Since we don't have back sides for the first photo stack, we don't want the current dot to become too big */
1433
+ #photostack-1 nav span.current {
1434
+ background: #888;
1435
+ -webkit-transform: scale(0.61);
1436
+ transform: scale(0.61);
1437
+ }
css/style.css DELETED
@@ -1,624 +0,0 @@
1
- .clear {
2
- clear: both;
3
- }
4
-
5
- .hiddend {
6
- display:none;
7
- }
8
-
9
- #ajaxsearchlite textarea:focus,
10
- #ajaxsearchlite input:focus{
11
- outline: none;
12
- }
13
-
14
- #ajaxsearchlite {
15
- width: 100%;
16
- height: 40px;
17
- border-radius: 5px;
18
- background: #d1eaff;
19
- background: #ebebeb;
20
- overflow: hidden;
21
- border:0px solid #ebebeb;border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px #858585 ;}
22
-
23
- #ajaxsearchlite .probox {
24
- width: auto;
25
- margin: 4px;
26
- height: 30px;
27
- border-radius: 5px;
28
- background: #FFF;
29
- overflow: hidden;
30
- border: 1px solid #FFF;
31
- box-shadow: 1px 0 3px #CCCCCC inset;
32
- background: #ffffff;
33
- border:1px solid #d6d6d6;border-radius:0px 0px 0px 0px; box-shadow:0px 0px 0px 0px #ccc inset;}
34
-
35
- #ajaxsearchlite .probox .proinput {
36
- width: auto;
37
- height: 100%;
38
- margin: 2px 0px 0px 10px;
39
- padding: 5px;
40
- float: left;
41
- box-shadow: none;
42
- position: relative;
43
- font-weight:normal;font-family:\'Arial\', Helvetica, sans-serif;color:#212121;font-size:12px;line-height:13px;}
44
-
45
- #ajaxsearchlite .probox .proinput input {
46
- border: 0px;
47
- background: transparent;
48
- width: 100%;
49
- box-shadow: none;
50
- margin: 0;
51
- padding: 0;
52
- font-weight:normal;font-family:\'Arial\', Helvetica, sans-serif;color:#212121;font-size:12px;line-height:13px;}
53
-
54
- #ajaxsearchlite .probox .proinput input.autocomplete {
55
- border: 0px;
56
- background: transparent;
57
- width: 100%;
58
- box-shadow: none;
59
- margin: 0;
60
- padding: 0;
61
- font-weight:normal;font-family:\'Arial\', Helvetica, sans-serif;color:#212121;font-size:12px;line-height:13px;}
62
-
63
- #ajaxsearchlite .probox .proinput.iepaddingfix {
64
- padding-top: 0;
65
- }
66
-
67
- #ajaxsearchlite .probox .proinput .loading {
68
- width: 32px;
69
- background: #000;
70
- height: 100%;
71
- box-shadow: none;
72
- }
73
-
74
- #ajaxsearchlite .probox .proloading,
75
- #ajaxsearchlite .probox .promagnifier,
76
- #ajaxsearchlite .probox .prosettings {
77
- width: 32px;
78
- height: 32px;
79
- background: none;
80
- float: right;
81
- box-shadow: none;
82
- margin: 0;
83
- padding: 0;
84
- }
85
-
86
- #ajaxsearchlite .probox .proloading {
87
- background: url("img/loading/loading3.gif") no-repeat;
88
- background-position:center center;
89
- visibility: hidden;
90
- }
91
-
92
- #ajaxsearchlite .probox .promagnifier {
93
- background: url("img/magnifiers/magn3.png") no-repeat #ffffff;
94
- background-position:center center;
95
- cursor: pointer;
96
- }
97
-
98
-
99
- #ajaxsearchlite .probox .prosettings {
100
- background: url("img/settings/settings1.png") no-repeat #ffffff;
101
- background-position:center center;
102
- cursor: pointer;
103
- }
104
-
105
- #ajaxsearchliteres {
106
- padding: 4px;
107
- background: #D1EAFF;
108
- background: #ffffff;
109
- border-radius: 3px;
110
- border:1px solid #e0e0e0;border-radius:0px 0px 0px 0px; box-shadow:0px 0px 1px 0px #d9d9d9 ; position: absolute;
111
- visibility: hidden;
112
- z-index:1100;
113
- }
114
-
115
- #ajaxsearchliteres .results .nores {
116
- overflow: hidden;
117
- width: auto;
118
- height: 100%;
119
- line-height: auto;
120
- text-align: center;
121
- margin: 0;
122
- background: #FFF;
123
- }
124
-
125
- #ajaxsearchliteres .results .nores .keyword{
126
- padding: 0 6px;
127
- cursor: pointer;
128
- font-weight:normal;font-family:\'Arial\', Helvetica, sans-serif;color:#4a4a4a;font-size:13px;line-height:14px; font-weight: bold;
129
- }
130
-
131
- #ajaxsearchliteres .results {
132
- overflow: hidden;
133
- width: auto;
134
- height: 0;
135
- margin: 0;
136
- padding: 0;
137
- }
138
-
139
- #ajaxsearchliteres .results .item {
140
- overflow: hidden;
141
- width: auto;
142
- height: 70px;
143
- margin: 0;
144
- margin-bottom: -3px;
145
- padding: 3px;
146
- position: relative;
147
- background: #f4f4f4;
148
- background: #ffffff;
149
- border-radius: 3px;
150
- border-left: 1px solid rgba(255, 255, 255, 0.6);
151
- border-right: 1px solid rgba(255, 255, 255, 0.4);
152
- }
153
-
154
- #ajaxsearchliteres .results .item:last-child {
155
- margin-bottom: 0px;
156
- }
157
-
158
-
159
- #ajaxsearchliteres .results .item .image {
160
- overflow: hidden;
161
- width: 70px;
162
- height: 70px;
163
- background: #000;
164
- background: #ffffff;
165
- margin: 0;
166
- padding: 0;
167
- float: left;
168
- }
169
-
170
- #ajaxsearchliteres .results .item .content {
171
- overflow: hidden;
172
- width: 50%;
173
- height: 70px;
174
- background: #fff;
175
- background: #ffffff;
176
- margin: 0;
177
- padding: 0 10px;
178
- float: right;
179
- }
180
-
181
- #ajaxsearchliteres .results .item .content h3 {
182
- margin: 0;
183
- padding: 0;
184
- line-height: inherit;
185
- font-weight:bold;font-family:\'Arial\', Helvetica, sans-serif;color:#1454a9;font-size:14px;line-height:15px;}
186
-
187
- #ajaxsearchliteres .results .item .content h3 a span.overlap {
188
- position:absolute;
189
- width:100%;
190
- height:100%;
191
- top:0;
192
- left: 0;
193
- z-index: 1;
194
- background-image: url('empty.gif');
195
- }
196
-
197
- #ajaxsearchliteres .results .item .content h3 a {
198
- margin: 0;
199
- padding: 0;
200
- line-height: inherit;
201
- font-weight:bold;font-family:\'Arial\', Helvetica, sans-serif;color:#1454a9;font-size:14px;line-height:15px;}
202
-
203
- #ajaxsearchliteres .results .item .content h3 a:hover {
204
- font-weight:bold;font-family:\'Arial\', Helvetica, sans-serif;color:#1454a9;font-size:14px;line-height:15px;}
205
-
206
- #ajaxsearchliteres .results .item div.etc {
207
- margin: 2px 3px;
208
- padding: 0;
209
- line-height: 10px;
210
- font-weight:bold;font-family:\'Arial\', Helvetica, sans-serif;color:#a1a1a1;font-size:12px;line-height:13px;}
211
- #ajaxsearchliteres .results .item .etc .author {
212
- padding: 0;
213
- font-weight:bold;font-family:\'Arial\', Helvetica, sans-serif;color:#a1a1a1;font-size:12px;line-height:13px;}
214
- #ajaxsearchliteres .results .item .etc .date {
215
- margin: 0 0 0 10px;
216
- padding: 0;
217
- font-weight:normal;font-family:\'Arial\', Helvetica, sans-serif;color:#adadad;font-size:12px;line-height:13px;
218
- }
219
- #ajaxsearchliteres .resdrg {
220
- height: auto;
221
- }
222
-
223
- #ajaxsearchliteres .results .item p.desc {
224
- margin: 2px 0px;
225
- padding: 0;
226
- font-weight:normal;font-family:\'Arial\', Helvetica, sans-serif;color:#4a4a4a;font-size:13px;line-height:14px;}
227
-
228
- #ajaxsearchliteres .mCSB_container{
229
- width:auto;
230
- margin-right:20px;
231
- overflow:hidden;
232
- }
233
- #ajaxsearchliteres .mCSB_container.mCS_no_scrollbar{
234
- margin-right:0;
235
- }
236
- #ajaxsearchliteres .mCustomScrollBox .mCSB_scrollTools{
237
- width:16px;
238
- height:100%;
239
- top:0;
240
- right:0;
241
- }
242
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_draggerContainer{
243
- height:100%;
244
- -webkit-box-sizing:border-box;
245
- -moz-box-sizing:border-box;
246
- box-sizing:border-box;
247
- }
248
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp+.mCSB_draggerContainer{
249
- padding-bottom:40px;
250
- }
251
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_draggerRail{
252
- width:10px;
253
- height:100%;
254
- margin:0 auto;
255
- -webkit-border-radius:10px;
256
- -moz-border-radius:10px;
257
- border-radius:10px;
258
- }
259
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_dragger{
260
- cursor:pointer;
261
- width:100%;
262
- height:30px;
263
- }
264
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
265
- width:10px;
266
- height:100%;
267
- margin:0 auto;
268
- -webkit-border-radius:10px;
269
- -moz-border-radius:10px;
270
- border-radius:10px;
271
- text-align:center;
272
- }
273
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp,
274
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown{
275
- height:20px;
276
- -overflow:hidden;
277
- margin:0 auto;
278
- cursor:pointer;
279
- }
280
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown{
281
- bottom:0;
282
- margin-top:-40px;
283
- }
284
-
285
- #ajaxsearchliteres .mCSB_horizontal .mCSB_container{
286
- height:auto;
287
- margin-right:0;
288
- margin-bottom:30px;
289
- overflow:hidden;
290
- }
291
- #ajaxsearchliteres .mCSB_horizontal .mCSB_container.mCS_no_scrollbar{
292
- margin-bottom:0;
293
- }
294
- #ajaxsearchliteres .mCSB_horizontal.mCustomScrollBox .mCSB_scrollTools{
295
- width:100%;
296
- height:16px;
297
- top:auto;
298
- right:auto;
299
- bottom:0;
300
- left:0;
301
- overflow:hidden;
302
- }
303
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_draggerContainer{
304
- height:100%;
305
- width:auto;
306
- -webkit-box-sizing:border-box;
307
- -moz-box-sizing:border-box;
308
- box-sizing:border-box;
309
- overflow:hidden;
310
- }
311
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_buttonLeft+.mCSB_draggerContainer{
312
- padding-bottom:0;
313
- padding-right:20px;
314
- }
315
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_draggerRail{
316
- width:100%;
317
- height:2px;
318
- margin:7px 0;
319
- -webkit-border-radius:10px;
320
- -moz-border-radius:10px;
321
- border-radius:10px;
322
- }
323
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_dragger{
324
- width:30px;
325
- height:100%;
326
- }
327
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
328
- width:100%;
329
- height:4px;
330
- margin:6px auto;
331
- -webkit-border-radius:10px;
332
- -moz-border-radius:10px;
333
- border-radius:10px;
334
- }
335
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_buttonLeft,
336
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_buttonRight{
337
- width:20px;
338
- height:100%;
339
- overflow:hidden;
340
- margin:0 auto;
341
- cursor:pointer;
342
- float:left;
343
- }
344
- #ajaxsearchliteres .mCSB_horizontal .mCSB_scrollTools .mCSB_buttonRight{
345
- right:0;
346
- bottom:auto;
347
- margin-left:-40px;
348
- margin-top:-16px;
349
- float:right;
350
- }
351
-
352
-
353
- #ajaxsearchliteres .mCustomScrollBox .mCSB_scrollTools{
354
- opacity:0.75;
355
- }
356
- #ajaxsearchliteres .mCustomScrollBox:hover .mCSB_scrollTools{
357
- opacity:1;
358
- }
359
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_draggerRail{
360
- background:#000; /* rgba fallback */
361
- background:rgba(0,0,0,0.4);
362
- filter:"alpha(opacity=40)"; -ms-filter:"alpha(opacity=40)"; /* old ie */
363
- }
364
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
365
- background:#fff; /* rgba fallback */
366
- background:rgba(255, 255, 255,0.9);
367
- filter:"alpha(opacity=90)"; -ms-filter:"alpha(opacity=90)"; /* old ie */
368
- }
369
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
370
- background:rgba(255, 255, 255,0.95);
371
- filter:"alpha(opacity=95)"; -ms-filter:"alpha(opacity=95)"; /* old ie */
372
- }
373
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
374
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
375
- background:rgba(255, 255, 255,1);
376
- filter:"alpha(opacity=100)"; -ms-filter:"alpha(opacity=100)"; /* old ie */
377
- }
378
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp,
379
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown,
380
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonLeft,
381
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonRight{
382
- padding: 10px 0 0 0;
383
- background:0;
384
- opacity:0.4;
385
- filter:"alpha(opacity=40)"; -ms-filter:"alpha(opacity=40)"; /* old ie */
386
- }
387
-
388
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown { height:0;position: relative; }
389
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown:after { top: 100%; border: solid transparent; content: " "; height: 0; width: 0; position: absolute;}
390
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown:after { border-color: rgba(136, 183, 213, 0); border-top-color: #0a3f4d; border-width: 8px; left: 50%; margin-left: -8px; }
391
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp { position: relative; margin:10px 0 0 0; height: 0; }
392
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp:after { bottom: 100%; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; }
393
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp:after { border-color: rgba(136, 183, 213, 0); border-bottom-color: #0a3f4d; border-width: 8px; left: 50%; margin-left: -8px; }
394
-
395
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp{
396
- background-position:0 0;
397
- /*
398
- sprites locations are 0 0/-16px 0/-32px 0/-48px 0 (light) and -80px 0/-96px 0/-112px 0/-128px 0 (dark)
399
- */
400
- }
401
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown{
402
- background-position:0 -20px;
403
- /*
404
- sprites locations are 0 -20px/-16px -20px/-32px -20px/-48px -20px (light) and -80px -20px/-96px -20px/-112px -20px/-128px -20px (dark)
405
- */
406
- }
407
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonLeft{
408
- background-position:0 -40px;
409
- /*
410
- sprites locations are 0 -40px/-20px -40px/-40px -40px/-60px -40px (light) and -80px -40px/-100px -40px/-120px -40px/-140px -40px (dark)
411
- */
412
- }
413
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonRight{
414
- background-position:0 -56px;
415
- /*
416
- sprites locations are 0 -56px/-20px -56px/-40px -56px/-60px -56px (light) and -80px -56px/-100px -56px/-120px -56px/-140px -56px (dark)
417
- */
418
- }
419
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp:hover,
420
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown:hover,
421
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonLeft:hover,
422
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonRight:hover{
423
- opacity:0.75;
424
- filter:"alpha(opacity=75)"; -ms-filter:"alpha(opacity=75)"; /* old ie */
425
- }
426
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonUp:active,
427
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonDown:active,
428
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonLeft:active,
429
- #ajaxsearchliteres .mCSB_scrollTools .mCSB_buttonRight:active{
430
- opacity:0.9;
431
- filter:"alpha(opacity=90)"; -ms-filter:"alpha(opacity=90)"; /* old ie */
432
- }
433
-
434
- #ajaxsearchliteres span.highlighted{
435
- font-weight: bold;
436
- color: #d9312b;
437
- background-color: #eee;
438
- color: #d9312b;
439
- background-color: #eee;
440
- }
441
-
442
- #ajaxsearchliteres p.showmore {
443
- text-align: center;
444
- padding: 0;
445
- margin: 0;
446
- font-weight:normal;font-family:\'Arial\', Helvetica, sans-serif;color:#055e94;font-size:12px;line-height:15px;
447
- }
448
-
449
- #ajaxsearchliteres p.showmore a{
450
- font-weight:normal;font-family:\'Arial\', Helvetica, sans-serif;color:#055e94;font-size:12px;line-height:15px;
451
- }
452
-
453
- #ajaxsearchliteres .group {
454
- background: #DDDDDD;
455
- background: #EFEFEF;
456
- border-radius: 3px 3px 0 0;
457
- border-top: 1px solid rgba(255, 255, 255, 0.7);
458
- border-left: 1px solid rgba(255, 255, 255, 0.7);
459
- border-right: 1px solid rgba(255, 255, 255, 0.7);
460
- margin: 10px 0 -3px;
461
- padding: 7px 0 7px 10px;
462
- position: relative;
463
- z-index: 1000;
464
- font-weight:bold;font-family:\'Arial\', Helvetica, sans-serif;color:#055E94;font-size:11px;line-height:13px;
465
- }
466
-
467
- #ajaxsearchliteres .group:first-of-type {
468
- margin: 0px 0 -3px;
469
- }
470
-
471
- #ajaxsearchlitesettings.searchsettings {
472
- width: 200px;
473
- height: auto;
474
- background: #ffffff;
475
- position: absolute;
476
- display: none;
477
- z-index: 1101;
478
- border-radius: 0 0 3px 3px;
479
- box-shadow: 2px 2px 3px -1px #AAAAAA;
480
- visibility: hidden;
481
- padding: 0 0 8px 0;
482
- }
483
-
484
- #ajaxsearchlitesettings.searchsettings .option {
485
- margin: 10px;
486
- *padding-bottom: 10px;
487
- }
488
-
489
- #ajaxsearchlitesettings.searchsettings.ie78 .option {
490
- margin-bottom: 0 !important;
491
- padding-bottom: 0 !important;
492
- }
493
-
494
- #ajaxsearchlitesettings.searchsettings .label {
495
- float: left;
496
- font-size: 14px;
497
- line-height: 24px;
498
- margin: 6px 10px 0 0;
499
- width: 143px;
500
- text-shadow: none;
501
- padding: 0;
502
- border: none;
503
- background: transparent;
504
- color: #333;
505
- }
506
-
507
- /* SQUARED THREE */
508
- #ajaxsearchlitesettings.searchsettings .option input[type=checkbox] {
509
- display:none;
510
- }
511
-
512
- #ajaxsearchlitesettings.searchsettings.ie78 .option input[type=checkbox] {
513
- display:block;
514
- }
515
-
516
- #ajaxsearchlitesettings.searchsettings.ie78 .label {
517
- float:right !important;
518
- }
519
-
520
- #ajaxsearchlitesettings.searchsettings .option {
521
- width: 20px;
522
- position: relative;
523
- float: left;
524
- }
525
-
526
- #ajaxsearchlitesettings.searchsettings .option label {
527
- cursor: pointer;
528
- position: absolute;
529
- width: 20px;
530
- height: 20px;
531
- top: 0;
532
- padding: 0;
533
- border-radius: 4px;
534
- -webkit-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,.4);
535
- -moz-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,.4);
536
- box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,.4);
537
- background: #45484d;
538
- background: -webkit-linear-gradient(top, #222222 0%, #45484d 100%);
539
- background: -moz-linear-gradient(top, #222222 0%, #45484d 100%);
540
- background: -o-linear-gradient(top, #222222 0%, #45484d 100%);
541
- background: -ms-linear-gradient(top, #222222 0%, #45484d 100%);
542
- background: linear-gradient(top, #222222 0%, #45484d 100%);
543
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222', endColorstr='#45484d',GradientType=0 );
544
- }
545
-
546
- #ajaxsearchlitesettings.searchsettings.ie78 .option label {
547
- display:none;
548
- }
549
-
550
- #ajaxsearchlitesettings.searchsettings .option label:after {
551
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
552
- filter: alpha(opacity=0);
553
- opacity: 0;
554
- content: '';
555
- position: absolute;
556
- width: 9px;
557
- height: 5px;
558
- background: transparent;
559
- top: 4px;
560
- left: 4px;
561
- border: 3px solid #fcfff4;
562
- border-top: none;
563
- border-right: none;
564
-
565
- -webkit-transform: rotate(-45deg);
566
- -moz-transform: rotate(-45deg);
567
- -o-transform: rotate(-45deg);
568
- -ms-transform: rotate(-45deg);
569
- transform: rotate(-45deg);
570
- }
571
-
572
- #ajaxsearchlitesettings.searchsettings.ie78 .option label:after {
573
- display:none;
574
- }
575
-
576
- #ajaxsearchlitesettings.searchsettings .option label:hover::after {
577
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
578
- filter: alpha(opacity=30);
579
- opacity: 0.3;
580
- }
581
-
582
- #ajaxsearchlitesettings.searchsettings .option input[type=checkbox]:checked + label:after {
583
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
584
- filter: alpha(opacity=100);
585
- opacity: 1;
586
- }
587
-
588
- #ajaxsearchlitesettings.searchsettings fieldset {
589
- position:relative;
590
- float:left;
591
- }
592
-
593
- #ajaxsearchlitesettings.searchsettings fieldset .categoryfilter {
594
- max-height: 200px;
595
- overflow: auto;
596
- }
597
-
598
- #ajaxsearchlitesettings.searchsettings fieldset {
599
- background: transparent;
600
- font-size: 0.9em;
601
- margin: 5px 0 0;
602
- padding