Social Media Flying Icons | Floating Social Media Icon - Version 4.0

Version Description

  • Total Programming Logic Changes
  • Perfomance Improvements
  • Addon Support
  • Optimized Speed
  • Improved and Solid Structure
  • Stable Release
Download this release

Release Info

Developer Acurax
Plugin Icon 128x128 Social Media Flying Icons | Floating Social Media Icon
Version 4.0
Comparing to
See all releases

Code changes from version 3.0 to 4.0

acurax-social-icon.php CHANGED
@@ -4,8 +4,8 @@ Plugin Name: Floating Social Media Icon
4
  Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
5
  Description: An easy to use plugin to show social media icons which floats on your browsers right bottom, which links to your social media profiles, You have option in plugin settings to configure social media profile urls and also can select icon style,order and size.
6
  Author: Acurax
7
- Version: 3.0
8
- Author URI: http://www.acurax.com
9
  License: GPLv2 or later
10
  */
11
 
@@ -27,19 +27,14 @@ You should have received a copy of the GNU General Public License
27
  along with this program; if not, write to the Free Software
28
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
29
  */
30
- define('ACX_SOCIALMEDIA_TOTAL_THEMES', 24);
31
- define('ACX_FSMI_TOTAL_STATIC_SERVICES', 7);
32
- define('ACX_FSMI_C_VERSION', 3.0);
33
- ?>
34
- <?php
35
- //*************** Include JS in Header ********
36
- function enqueue_acx_social_icon_script()
37
- {
38
- wp_enqueue_script ( 'jquery' );
39
- } add_action( 'get_header', 'enqueue_acx_social_icon_script' );
40
- //*************** Include JS in Header Ends Here ********
41
-
42
-
43
  //*********** Include Additional Menu ********************
44
  function AcuraxLinks($links, $file) {
45
  $plugin = plugin_basename(__FILE__);
@@ -60,55 +55,48 @@ function AcuraxLinks($links, $file) {
60
  return $links;
61
  } add_filter('plugin_row_meta', 'AcuraxLinks', 10, 2 );
62
  //*********************************************************
63
-
64
- include('function.php');
65
- include_once('includes/hooks.php');
66
- include_once('includes/hook_functions.php');
67
- //*************** Admin function ***************
68
- function acx_social_icon_admin()
69
  {
70
- include('social-icon.php');
71
  }
72
- function acx_social_icon_help()
73
  {
74
- include('social-help.php');
75
  }
76
-
77
- function acx_social_icon_premium()
78
  {
79
- include('premium.php');
80
  }
81
 
82
- function acx_social_icon_troubleshoot()
83
  {
84
- include('troubleshoot.php');
85
  }
86
 
87
- function acx_social_icon_misc()
88
  {
89
- include('fsmi-misc.php');
90
  }
91
-
92
- $acx_si_fsmi_hide_expert_support_menu = get_option('acx_si_fsmi_hide_expert_support_menu');
93
- if ($acx_si_fsmi_hide_expert_support_menu == "") { $acx_si_fsmi_hide_expert_support_menu = "no"; }
94
- function acx_social_icon_admin_actions()
95
  {
96
- global $acx_si_fsmi_hide_expert_support_menu;
97
- add_menu_page( 'Acurax Social Icon Plugin Configuration', 'Floating Social Media Settings', 'manage_options', 'Acurax-Social-Icons-Settings','acx_social_icon_admin',plugin_dir_url( __FILE__ ).'/images/admin.png' ); // 8 for admin
 
 
98
 
99
- add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Social Icon Premium', 'Premium', 'manage_options', 'Acurax-Social-Icons-Premium' ,'acx_social_icon_premium');
100
 
101
- add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Social Icon Misc Settings', 'Misc', 'manage_options', 'Acurax-Social-Icons-Misc' ,'acx_social_icon_misc');
102
 
103
- add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Troubleshooter', 'Troubleshoot', 'manage_options', 'Acurax-Social-Icons-Troubleshooter' ,'acx_social_icon_troubleshoot');
104
  if($acx_si_fsmi_hide_expert_support_menu == "no") {
105
- add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Expert Support', 'Expert Support', 'manage_options', 'Acurax-Social-Icons-Expert-Support' ,'acx_social_icon_troubleshoot');
106
  }
107
- add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Social Icon Help and Support', 'Help', 'manage_options', 'Acurax-Social-Icons-Help' ,'acx_social_icon_help');
108
- }
109
-
110
- if ( is_admin() )
111
- {
112
- add_action('admin_menu', 'acx_social_icon_admin_actions');
113
  }
 
 
 
 
114
  ?>
4
  Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
5
  Description: An easy to use plugin to show social media icons which floats on your browsers right bottom, which links to your social media profiles, You have option in plugin settings to configure social media profile urls and also can select icon style,order and size.
6
  Author: Acurax
7
+ Version: 4.0
8
+ Author URI: http://www.acurax.com/home.php
9
  License: GPLv2 or later
10
  */
11
 
27
  along with this program; if not, write to the Free Software
28
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
29
  */
30
+ define("ACX_FSMI_BASE_LOCATION",plugin_dir_url( __FILE__ ));
31
+ define("ACX_FSMI_WP_SLUG","floating-social-media-icon");
32
+ define('ACX_FSMI_TOTAL_STATIC_SERVICES', 7);
33
+ define('ACX_FSMI_C_VERSION', 4.0);
34
+ include_once(plugin_dir_path( __FILE__ ).'/function.php');
35
+ include_once(plugin_dir_path( __FILE__ ).'/includes/hooks.php');
36
+ include_once(plugin_dir_path( __FILE__ ).'/includes/hook_functions.php');
37
+ include_once(plugin_dir_path( __FILE__ ).'/includes/option_fields.php');
 
 
 
 
 
38
  //*********** Include Additional Menu ********************
39
  function AcuraxLinks($links, $file) {
40
  $plugin = plugin_basename(__FILE__);
55
  return $links;
56
  } add_filter('plugin_row_meta', 'AcuraxLinks', 10, 2 );
57
  //*********************************************************
58
+ function acx_fsmi_options()
 
 
 
 
 
59
  {
60
+ include(plugin_dir_path( __FILE__ ).'/includes/acx_fsmi_options.php');
61
  }
62
+ function acx_fsmi_expert_support()
63
  {
64
+ include(plugin_dir_path( __FILE__ ).'/includes/expert_support.php');
65
  }
66
+ function acx_fsmi_social_icon_help()
 
67
  {
68
+ include(plugin_dir_path( __FILE__ ).'/includes/acx_fsmi_social_help.php');
69
  }
70
 
71
+ function acx_fsmi_social_icon_premium()
72
  {
73
+ include(plugin_dir_path( __FILE__ ).'/includes/acx_fsmi_premium.php');
74
  }
75
 
76
+ function acx_fsmi_social_icon_misc()
77
  {
78
+ include(plugin_dir_path( __FILE__ ).'/includes/acx_fsmi_misc.php');
79
  }
80
+ function acx_fsmi_admin_actions()
 
 
 
81
  {
82
+
83
+ //global $acx_si_fsmi_hide_expert_support_menu;
84
+ $acx_si_fsmi_hide_expert_support_menu = get_option('acx_si_fsmi_hide_expert_support_menu');
85
+ add_menu_page( 'Acurax Social Icon Plugin Configuration', 'Floating Social Media Settings', 'manage_options', 'Acurax-Social-Icons-Settings','acx_fsmi_options',ACX_FSMI_BASE_LOCATION.'/images/admin.png' ); // manage_options for admin
86
 
87
+ add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Social Icon Premium', 'Premium', 'manage_options', 'Acurax-Social-Icons-Premium' ,'acx_fsmi_social_icon_premium');
88
 
89
+ add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Social Icon Misc Settings', 'Misc', 'manage_options', 'Acurax-Social-Icons-Misc' ,'acx_fsmi_social_icon_misc');
90
 
91
+ add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Troubleshooter', 'Troubleshoot', 'manage_options', 'Acurax-Social-Icons-Troubleshooter' ,'acx_fsmi_expert_support');
92
  if($acx_si_fsmi_hide_expert_support_menu == "no") {
93
+ add_submenu_page('Acurax-Social-Icons-Settings', 'Expert Wordpress Support From Acurax', 'Expert Support', 'manage_options', 'Acurax-Social-Icons-Expert-Support' ,'acx_fsmi_expert_support');
94
  }
95
+ add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Social Icon Help and Support', 'Help', 'manage_options', 'Acurax-Social-Icons-Help' ,'acx_fsmi_social_icon_help');
96
+
 
 
 
 
97
  }
98
+ if (is_admin())
99
+ {
100
+ add_action('admin_menu', 'acx_fsmi_admin_actions');
101
+ }
102
  ?>
css/fonts/OpenSans-Regular-webfont.eot ADDED
Binary file
css/fonts/OpenSans-Regular-webfont.svg ADDED
@@ -0,0 +1,252 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>
5
+ This is a custom SVG webfont generated by Font Squirrel.
6
+ Copyright : Digitized data copyright 20102011 Google Corporation
7
+ Foundry : Ascender Corporation
8
+ Foundry URL : httpwwwascendercorpcom
9
+ </metadata>
10
+ <defs>
11
+ <font id="OpenSansRegular" horiz-adv-x="1171" >
12
+ <font-face units-per-em="2048" ascent="1638" descent="-410" />
13
+ <missing-glyph horiz-adv-x="532" />
14
+ <glyph unicode=" " horiz-adv-x="532" />
15
+ <glyph unicode="&#x09;" horiz-adv-x="532" />
16
+ <glyph unicode="&#xa0;" horiz-adv-x="532" />
17
+ <glyph unicode="!" horiz-adv-x="547" d="M152 106q0 136 120 136q58 0 89.5 -35t31.5 -101q0 -64 -32 -99.5t-89 -35.5q-52 0 -86 31.5t-34 103.5zM170 1462h207l-51 -1059h-105z" />
18
+ <glyph unicode="&#x22;" horiz-adv-x="821" d="M133 1462h186l-40 -528h-105zM502 1462h186l-41 -528h-104z" />
19
+ <glyph unicode="#" horiz-adv-x="1323" d="M51 430v129h287l68 340h-277v127h299l82 436h139l-82 -436h305l84 436h134l-84 -436h264v-127h-289l-66 -340h283v-129h-307l-84 -430h-137l84 430h-303l-82 -430h-136l80 430h-262zM475 559h303l66 340h-303z" />
20
+ <glyph unicode="$" d="M131 170v156q83 -37 191.5 -60.5t197.5 -23.5v440q-205 65 -287.5 151t-82.5 222q0 131 101.5 215t268.5 102v182h129v-180q184 -5 355 -74l-52 -131q-149 59 -303 70v-434q157 -50 235 -97.5t115 -109t37 -149.5q0 -136 -102 -224.5t-285 -111.5v-232h-129v223 q-112 0 -217 17.5t-172 48.5zM319 1057q0 -76 45 -122t156 -87v387q-99 -16 -150 -62.5t-51 -115.5zM649 252q217 30 217 184q0 72 -44.5 116.5t-172.5 88.5v-389z" />
21
+ <glyph unicode="%" horiz-adv-x="1686" d="M104 1026q0 227 74.5 342t220.5 115q145 0 223 -119t78 -338q0 -228 -76.5 -344.5t-224.5 -116.5q-140 0 -217.5 119t-77.5 342zM242 1026q0 -170 37 -255t120 -85q164 0 164 340q0 338 -164 338q-83 0 -120 -84t-37 -254zM365 0l811 1462h147l-811 -1462h-147zM985 440 q0 227 74.5 342t220.5 115q142 0 221.5 -117.5t79.5 -339.5q0 -227 -76.5 -343.5t-224.5 -116.5q-142 0 -218.5 119t-76.5 341zM1122 440q0 -171 37 -255.5t121 -84.5t124 83.5t40 256.5q0 171 -40 253.5t-124 82.5t-121 -82.5t-37 -253.5z" />
22
+ <glyph unicode="&#x26;" horiz-adv-x="1495" d="M113 379q0 130 69.5 230t249.5 202q-85 95 -115.5 144t-48.5 102t-18 110q0 150 98 234t273 84q162 0 255 -83.5t93 -232.5q0 -107 -68 -197.5t-225 -183.5l407 -391q56 62 89.5 145.5t56.5 182.5h168q-68 -286 -205 -434l299 -291h-229l-185 178q-118 -106 -240 -152 t-272 -46q-215 0 -333.5 106t-118.5 293zM285 383q0 -117 77.5 -185.5t206.5 -68.5q241 0 400 154l-437 424q-111 -68 -157 -112.5t-68 -95.5t-22 -116zM414 1171q0 -69 36 -131.5t123 -150.5q129 75 179.5 138.5t50.5 146.5q0 77 -51.5 125.5t-137.5 48.5q-89 0 -144.5 -48 t-55.5 -129z" />
23
+ <glyph unicode="'" horiz-adv-x="453" d="M133 1462h186l-40 -528h-105z" />
24
+ <glyph unicode="(" horiz-adv-x="606" d="M82 561q0 265 77.5 496t223.5 405h162q-144 -193 -216.5 -424t-72.5 -475q0 -240 74 -469t213 -418h-160q-147 170 -224 397t-77 488z" />
25
+ <glyph unicode=")" horiz-adv-x="606" d="M61 1462h162q147 -175 224 -406.5t77 -494.5t-77.5 -490t-223.5 -395h-160q139 188 213 417.5t74 469.5q0 244 -72.5 475t-216.5 424z" />
26
+ <glyph unicode="*" horiz-adv-x="1130" d="M86 1090l29 182l391 -111l-43 395h194l-43 -395l398 111l26 -182l-381 -31l248 -326l-172 -94l-176 362l-160 -362l-176 94l242 326z" />
27
+ <glyph unicode="+" d="M104 653v138h410v428h139v-428h412v-138h-412v-426h-139v426h-410z" />
28
+ <glyph unicode="," horiz-adv-x="502" d="M63 -264q27 104 59.5 257t45.5 245h182l15 -23q-26 -100 -75 -232.5t-102 -246.5h-125z" />
29
+ <glyph unicode="-" horiz-adv-x="659" d="M84 473v152h491v-152h-491z" />
30
+ <glyph unicode="." horiz-adv-x="545" d="M152 106q0 67 30.5 101.5t87.5 34.5q58 0 90.5 -34.5t32.5 -101.5q0 -65 -33 -100t-90 -35q-51 0 -84.5 31.5t-33.5 103.5z" />
31
+ <glyph unicode="/" horiz-adv-x="752" d="M20 0l545 1462h166l-545 -1462h-166z" />
32
+ <glyph unicode="0" d="M102 733q0 382 119 567t363 185q238 0 361.5 -193t123.5 -559q0 -379 -119.5 -566t-365.5 -187q-236 0 -359 191.5t-123 561.5zM270 733q0 -319 75 -464.5t239 -145.5q166 0 240.5 147.5t74.5 462.5t-74.5 461.5t-240.5 146.5q-164 0 -239 -144.5t-75 -463.5z" />
33
+ <glyph unicode="1" d="M188 1163l387 299h140v-1462h-162v1042q0 130 8 246q-21 -21 -47 -44t-238 -195z" />
34
+ <glyph unicode="2" d="M100 0v143l385 387q176 178 232 254t84 148t28 155q0 117 -71 185.5t-197 68.5q-91 0 -172.5 -30t-181.5 -109l-88 113q202 168 440 168q206 0 323 -105.5t117 -283.5q0 -139 -78 -275t-292 -344l-320 -313v-8h752v-154h-961z" />
35
+ <glyph unicode="3" d="M94 59v158q95 -47 202.5 -71.5t203.5 -24.5q379 0 379 297q0 266 -418 266h-144v143h146q171 0 271 75.5t100 209.5q0 107 -73.5 168t-199.5 61q-96 0 -181 -26t-194 -96l-84 112q90 71 207.5 111.5t247.5 40.5q213 0 331 -97.5t118 -267.5q0 -140 -78.5 -229 t-222.5 -119v-8q176 -22 261 -112t85 -236q0 -209 -145 -321.5t-412 -112.5q-116 0 -212.5 17.5t-187.5 61.5z" />
36
+ <glyph unicode="4" d="M43 336v145l694 989h176v-983h217v-151h-217v-336h-159v336h-711zM209 487h545v486q0 143 10 323h-8q-48 -96 -90 -159z" />
37
+ <glyph unicode="5" d="M133 59v160q70 -45 174 -70.5t205 -25.5q176 0 273.5 83t97.5 240q0 306 -375 306q-95 0 -254 -29l-86 55l55 684h727v-153h-585l-37 -439q115 23 229 23q231 0 363.5 -114.5t132.5 -313.5q0 -227 -144.5 -356t-398.5 -129q-247 0 -377 79z" />
38
+ <glyph unicode="6" d="M117 625q0 431 167.5 644.5t495.5 213.5q113 0 178 -19v-143q-77 25 -176 25q-235 0 -359 -146.5t-136 -460.5h12q110 172 348 172q197 0 310.5 -119t113.5 -323q0 -228 -124.5 -358.5t-336.5 -130.5q-227 0 -360 170.5t-133 474.5zM287 506q0 -103 40 -192t113.5 -141 t167.5 -52q142 0 220.5 89.5t78.5 258.5q0 145 -73 228t-218 83q-90 0 -165 -37t-119.5 -102t-44.5 -135z" />
39
+ <glyph unicode="7" d="M94 1309v153h973v-133l-598 -1329h-184l606 1309h-797z" />
40
+ <glyph unicode="8" d="M104 373q0 251 306 391q-138 78 -198 168.5t-60 202.5q0 159 117.5 253.5t314.5 94.5q200 0 317 -93t117 -257q0 -108 -67 -197t-214 -162q178 -85 253 -178.5t75 -216.5q0 -182 -127 -290.5t-348 -108.5q-234 0 -360 102.5t-126 290.5zM268 369q0 -120 83.5 -187 t234.5 -67q149 0 232 70t83 192q0 97 -78 172.5t-272 146.5q-149 -64 -216 -141.5t-67 -185.5zM315 1128q0 -92 59 -158t218 -132q143 60 202.5 129t59.5 161q0 101 -72.5 160.5t-199.5 59.5q-125 0 -196 -60t-71 -160z" />
41
+ <glyph unicode="9" d="M106 991q0 228 127.5 360t335.5 132q149 0 260.5 -76.5t171.5 -223t60 -345.5q0 -858 -664 -858q-116 0 -184 20v143q80 -26 182 -26q240 0 362.5 148.5t133.5 455.5h-12q-55 -83 -146 -126.5t-205 -43.5q-194 0 -308 116t-114 324zM270 993q0 -144 72 -226.5t219 -82.5 q91 0 167.5 37t120.5 101t44 134q0 105 -41 194t-114.5 140t-168.5 51q-143 0 -221 -92t-78 -256z" />
42
+ <glyph unicode=":" horiz-adv-x="545" d="M152 106q0 67 30.5 101.5t87.5 34.5q58 0 90.5 -34.5t32.5 -101.5q0 -65 -33 -100t-90 -35q-51 0 -84.5 31.5t-33.5 103.5zM152 989q0 135 118 135q123 0 123 -135q0 -65 -33 -100t-90 -35q-51 0 -84.5 31.5t-33.5 103.5z" />
43
+ <glyph unicode=";" horiz-adv-x="545" d="M63 -264q27 104 59.5 257t45.5 245h182l15 -23q-26 -100 -75 -232.5t-102 -246.5h-125zM147 989q0 135 119 135q123 0 123 -135q0 -65 -33 -100t-90 -35q-58 0 -88.5 35t-30.5 100z" />
44
+ <glyph unicode="&#x3c;" d="M104 664v98l961 479v-149l-782 -371l782 -328v-151z" />
45
+ <glyph unicode="=" d="M119 449v137h930v-137h-930zM119 858v137h930v-137h-930z" />
46
+ <glyph unicode="&#x3e;" d="M104 242v151l783 326l-783 373v149l961 -479v-98z" />
47
+ <glyph unicode="?" horiz-adv-x="879" d="M27 1384q189 99 395 99q191 0 297 -94t106 -265q0 -73 -19.5 -128.5t-57.5 -105t-164 -159.5q-101 -86 -133.5 -143t-32.5 -152v-33h-129v54q0 117 36 192.5t134 159.5q136 115 171.5 173t35.5 140q0 102 -65.5 157.5t-188.5 55.5q-79 0 -154 -18.5t-172 -67.5zM240 106 q0 136 120 136q58 0 89.5 -35t31.5 -101q0 -64 -32 -99.5t-89 -35.5q-52 0 -86 31.5t-34 103.5z" />
48
+ <glyph unicode="@" horiz-adv-x="1841" d="M121 571q0 260 107 463t305 314.5t454 111.5q215 0 382.5 -90.5t259 -257t91.5 -383.5q0 -142 -44 -260t-124 -183t-184 -65q-86 0 -145 52t-70 133h-8q-40 -87 -114.5 -136t-176.5 -49q-150 0 -234.5 102.5t-84.5 278.5q0 204 118 331.5t310 127.5q68 0 154 -12.5 t155 -34.5l-25 -470v-22q0 -178 133 -178q91 0 148 107.5t57 279.5q0 181 -74 317t-210.5 209.5t-313.5 73.5q-223 0 -388 -92.5t-252 -264t-87 -396.5q0 -305 161 -469t464 -164q210 0 436 86v-133q-192 -84 -436 -84q-363 0 -563.5 199.5t-200.5 557.5zM686 598 q0 -254 195 -254q207 0 225 313l14 261q-72 20 -157 20q-130 0 -203.5 -90t-73.5 -250z" />
49
+ <glyph unicode="A" horiz-adv-x="1296" d="M0 0l578 1468h143l575 -1468h-176l-182 465h-586l-180 -465h-172zM412 618h473l-170 453q-33 86 -68 211q-22 -96 -63 -211z" />
50
+ <glyph unicode="B" horiz-adv-x="1327" d="M201 0v1462h413q291 0 421 -87t130 -275q0 -130 -72.5 -214.5t-211.5 -109.5v-10q333 -57 333 -350q0 -196 -132.5 -306t-370.5 -110h-510zM371 145h305q177 0 266.5 68.5t89.5 214.5q0 136 -91.5 200t-278.5 64h-291v-547zM371 836h280q180 0 259 56.5t79 190.5 q0 123 -88 177.5t-280 54.5h-250v-479z" />
51
+ <glyph unicode="C" horiz-adv-x="1292" d="M125 733q0 226 84.5 396t244 262t375.5 92q230 0 402 -84l-72 -146q-166 78 -332 78q-241 0 -380.5 -160.5t-139.5 -439.5q0 -287 134.5 -443.5t383.5 -156.5q153 0 349 55v-149q-152 -57 -375 -57q-323 0 -498.5 196t-175.5 557z" />
52
+ <glyph unicode="D" horiz-adv-x="1493" d="M201 0v1462h448q341 0 530 -189t189 -528q0 -362 -196.5 -553.5t-565.5 -191.5h-405zM371 147h207q304 0 457 149.5t153 442.5q0 286 -143.5 431t-426.5 145h-247v-1168z" />
53
+ <glyph unicode="E" horiz-adv-x="1139" d="M201 0v1462h815v-151h-645v-471h606v-150h-606v-538h645v-152h-815z" />
54
+ <glyph unicode="F" horiz-adv-x="1057" d="M201 0v1462h815v-151h-645v-535h606v-151h-606v-625h-170z" />
55
+ <glyph unicode="G" horiz-adv-x="1491" d="M125 731q0 228 91.5 399.5t263.5 262t403 90.5q234 0 436 -86l-66 -150q-198 84 -381 84q-267 0 -417 -159t-150 -441q0 -296 144.5 -449t424.5 -153q152 0 297 35v450h-327v152h497v-711q-116 -37 -236 -56t-278 -19q-332 0 -517 197.5t-185 553.5z" />
56
+ <glyph unicode="H" horiz-adv-x="1511" d="M201 0v1462h170v-622h770v622h170v-1462h-170v688h-770v-688h-170z" />
57
+ <glyph unicode="I" horiz-adv-x="571" d="M201 0v1462h170v-1462h-170z" />
58
+ <glyph unicode="J" horiz-adv-x="547" d="M-160 -213q71 -20 148 -20q99 0 150.5 60t51.5 173v1462h170v-1448q0 -190 -96 -294.5t-276 -104.5q-94 0 -148 27v145z" />
59
+ <glyph unicode="K" horiz-adv-x="1257" d="M201 0v1462h170v-725l663 725h201l-588 -635l610 -827h-200l-533 709l-153 -136v-573h-170z" />
60
+ <glyph unicode="L" horiz-adv-x="1063" d="M201 0v1462h170v-1308h645v-154h-815z" />
61
+ <glyph unicode="M" horiz-adv-x="1849" d="M201 0v1462h256l463 -1206h8l467 1206h254v-1462h-170v942q0 162 14 352h-8l-500 -1294h-137l-496 1296h-8q14 -154 14 -366v-930h-157z" />
62
+ <glyph unicode="N" horiz-adv-x="1544" d="M201 0v1462h192l797 -1222h8q-2 28 -9 174q-5 114 -5 177v32v839h159v-1462h-194l-799 1227h-8q16 -216 16 -396v-831h-157z" />
63
+ <glyph unicode="O" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q315 0 492 -200t177 -552q0 -351 -177.5 -552t-493.5 -201q-323 0 -498.5 197.5t-175.5 557.5zM305 733q0 -297 126.5 -450.5t367.5 -153.5q243 0 367 153t124 451q0 295 -123.5 447.5t-365.5 152.5q-243 0 -369.5 -153.5 t-126.5 -446.5z" />
64
+ <glyph unicode="P" horiz-adv-x="1233" d="M201 0v1462h379q548 0 548 -426q0 -222 -151.5 -341.5t-433.5 -119.5h-172v-575h-170zM371 721h153q226 0 327 73t101 234q0 145 -95 216t-296 71h-190v-594z" />
65
+ <glyph unicode="Q" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q315 0 492 -200t177 -552q0 -281 -113 -467t-319 -252l348 -362h-247l-285 330l-55 -2q-323 0 -498.5 197.5t-175.5 557.5zM305 733q0 -297 126.5 -450.5t367.5 -153.5q243 0 367 153t124 451q0 295 -123.5 447.5t-365.5 152.5 q-243 0 -369.5 -153.5t-126.5 -446.5z" />
66
+ <glyph unicode="R" horiz-adv-x="1266" d="M201 0v1462h401q269 0 397.5 -103t128.5 -310q0 -290 -294 -392l397 -657h-201l-354 608h-305v-608h-170zM371 754h233q180 0 264 71.5t84 214.5q0 145 -85.5 209t-274.5 64h-221v-559z" />
67
+ <glyph unicode="S" horiz-adv-x="1124" d="M106 47v164q90 -38 196 -60t210 -22q170 0 256 64.5t86 179.5q0 76 -30.5 124.5t-102 89.5t-217.5 93q-204 73 -291.5 173t-87.5 261q0 169 127 269t336 100q218 0 401 -80l-53 -148q-181 76 -352 76q-135 0 -211 -58t-76 -161q0 -76 28 -124.5t94.5 -89t203.5 -89.5 q230 -82 316.5 -176t86.5 -244q0 -193 -140 -301t-380 -108q-260 0 -400 67z" />
68
+ <glyph unicode="T" horiz-adv-x="1133" d="M18 1311v151h1096v-151h-463v-1311h-170v1311h-463z" />
69
+ <glyph unicode="U" horiz-adv-x="1491" d="M186 520v942h170v-954q0 -183 100 -281t294 -98q185 0 285 98.5t100 282.5v952h170v-946q0 -250 -151 -393t-415 -143t-408.5 144t-144.5 396z" />
70
+ <glyph unicode="V" horiz-adv-x="1219" d="M0 1462h180l336 -946q58 -163 92 -317q36 162 94 323l334 940h183l-527 -1462h-168z" />
71
+ <glyph unicode="W" horiz-adv-x="1896" d="M27 1462h180l231 -903q48 -190 70 -344q27 183 80 358l262 889h180l275 -897q48 -155 81 -350q19 142 72 346l230 901h180l-391 -1462h-168l-295 979q-21 65 -47 164t-27 119q-22 -132 -70 -289l-286 -973h-168z" />
72
+ <glyph unicode="X" horiz-adv-x="1182" d="M8 0l486 764l-453 698h188l363 -579l366 579h181l-453 -692l488 -770h-193l-393 643l-400 -643h-180z" />
73
+ <glyph unicode="Y" horiz-adv-x="1147" d="M0 1462h186l387 -731l390 731h184l-488 -895v-567h-172v559z" />
74
+ <glyph unicode="Z" horiz-adv-x="1169" d="M82 0v133l776 1176h-752v153h959v-133l-776 -1175h798v-154h-1005z" />
75
+ <glyph unicode="[" horiz-adv-x="674" d="M166 -324v1786h457v-141h-289v-1503h289v-142h-457z" />
76
+ <glyph unicode="\" horiz-adv-x="752" d="M23 1462h163l547 -1462h-166z" />
77
+ <glyph unicode="]" horiz-adv-x="674" d="M51 -182h289v1503h-289v141h457v-1786h-457v142z" />
78
+ <glyph unicode="^" horiz-adv-x="1110" d="M49 551l434 922h99l477 -922h-152l-372 745l-334 -745h-152z" />
79
+ <glyph unicode="_" horiz-adv-x="918" d="M-4 -184h926v-131h-926v131z" />
80
+ <glyph unicode="`" horiz-adv-x="1182" d="M393 1548v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
81
+ <glyph unicode="a" horiz-adv-x="1139" d="M94 303q0 332 531 348l186 6v68q0 129 -55.5 190.5t-177.5 61.5q-137 0 -310 -84l-51 127q81 44 177.5 69t193.5 25q196 0 290.5 -87t94.5 -279v-748h-123l-33 156h-8q-82 -103 -163.5 -139.5t-203.5 -36.5q-163 0 -255.5 84t-92.5 239zM268 301q0 -90 54.5 -137 t152.5 -47q155 0 243.5 85t88.5 238v99l-166 -7q-198 -7 -285.5 -61.5t-87.5 -169.5z" />
82
+ <glyph unicode="b" horiz-adv-x="1255" d="M176 0v1556h166v-378q0 -127 -8 -228h8q116 164 344 164q216 0 335.5 -147.5t119.5 -417.5t-120.5 -419.5t-334.5 -149.5q-107 0 -195.5 39.5t-148.5 121.5h-12l-35 -141h-119zM342 549q0 -231 77 -330.5t247 -99.5q153 0 228 111.5t75 320.5q0 214 -75 319t-232 105 q-170 0 -245 -97.5t-75 -328.5z" />
83
+ <glyph unicode="c" horiz-adv-x="975" d="M115 541q0 275 132.5 425t377.5 150q79 0 158 -17t124 -40l-51 -141q-55 22 -120 36.5t-115 14.5q-334 0 -334 -426q0 -202 81.5 -310t241.5 -108q137 0 281 59v-147q-110 -57 -277 -57q-238 0 -368.5 146.5t-130.5 414.5z" />
84
+ <glyph unicode="d" horiz-adv-x="1255" d="M115 545q0 271 120 421t334 150q223 0 342 -162h13l-7 79l-4 77v446h166v-1556h-135l-22 147h-9q-115 -167 -344 -167q-215 0 -334.5 147t-119.5 418zM287 543q0 -210 77 -317t226 -107q170 0 246.5 92.5t76.5 298.5v35q0 233 -77.5 332.5t-247.5 99.5 q-146 0 -223.5 -113.5t-77.5 -320.5z" />
85
+ <glyph unicode="e" horiz-adv-x="1149" d="M115 539q0 265 130.5 421t350.5 156q206 0 326 -135.5t120 -357.5v-105h-755q5 -193 97.5 -293t260.5 -100q177 0 350 74v-148q-88 -38 -166.5 -54.5t-189.5 -16.5q-243 0 -383.5 148t-140.5 411zM291 653h573q0 157 -70 240.5t-200 83.5q-132 0 -210.5 -86t-92.5 -238z " />
86
+ <glyph unicode="f" horiz-adv-x="694" d="M29 967v75l196 60v61q0 404 353 404q87 0 204 -35l-43 -133q-96 31 -164 31q-94 0 -139 -62.5t-45 -200.5v-71h279v-129h-279v-967h-166v967h-196z" />
87
+ <glyph unicode="g" horiz-adv-x="1122" d="M39 -186q0 100 64 173t180 99q-42 19 -70.5 59t-28.5 93q0 60 32 105t101 87q-85 35 -138.5 119t-53.5 192q0 180 108 277.5t306 97.5q86 0 155 -20h379v-105l-203 -24q28 -35 50 -91.5t22 -127.5q0 -161 -110 -257t-302 -96q-49 0 -92 8q-106 -56 -106 -141 q0 -45 37 -66.5t127 -21.5h194q178 0 273.5 -75t95.5 -218q0 -182 -146 -277.5t-426 -95.5q-215 0 -331.5 80t-116.5 226zM199 -184q0 -89 75 -135t215 -46q209 0 309.5 62.5t100.5 169.5q0 89 -55 123.5t-207 34.5h-199q-113 0 -176 -54t-63 -155zM289 745q0 -115 65 -174 t181 -59q243 0 243 236q0 247 -246 247q-117 0 -180 -63t-63 -187z" />
88
+ <glyph unicode="h" horiz-adv-x="1257" d="M176 0v1556h166v-471q0 -85 -8 -141h10q49 79 139.5 124.5t206.5 45.5q201 0 301.5 -95.5t100.5 -303.5v-715h-166v709q0 134 -61 200t-191 66q-173 0 -252.5 -94t-79.5 -308v-573h-166z" />
89
+ <glyph unicode="i" horiz-adv-x="518" d="M162 1393q0 57 28 83.5t70 26.5q40 0 69 -27t29 -83t-29 -83.5t-69 -27.5q-42 0 -70 27.5t-28 83.5zM176 0v1096h166v-1096h-166z" />
90
+ <glyph unicode="j" horiz-adv-x="518" d="M-111 -332q69 -20 136 -20q78 0 114.5 42.5t36.5 129.5v1276h166v-1264q0 -324 -299 -324q-95 0 -154 25v135zM162 1393q0 57 28 83.5t70 26.5q40 0 69 -27t29 -83t-29 -83.5t-69 -27.5q-42 0 -70 27.5t-28 83.5z" />
91
+ <glyph unicode="k" horiz-adv-x="1075" d="M176 0v1556h164v-825q0 -55 -8 -170h8q43 61 131 160l354 375h197l-444 -467l475 -629h-201l-387 518l-125 -108v-410h-164z" />
92
+ <glyph unicode="l" horiz-adv-x="518" d="M176 0v1556h166v-1556h-166z" />
93
+ <glyph unicode="m" horiz-adv-x="1905" d="M176 0v1096h135l27 -150h8q47 80 132.5 125t191.5 45q257 0 336 -186h8q49 86 142 136t212 50q186 0 278.5 -95.5t92.5 -305.5v-715h-166v713q0 131 -56 196.5t-174 65.5q-155 0 -229 -89t-74 -274v-612h-166v713q0 131 -56 196.5t-175 65.5q-156 0 -228.5 -93.5 t-72.5 -306.5v-575h-166z" />
94
+ <glyph unicode="n" horiz-adv-x="1257" d="M176 0v1096h135l27 -150h8q51 81 143 125.5t205 44.5q198 0 298 -95.5t100 -305.5v-715h-166v709q0 134 -61 200t-191 66q-172 0 -252 -93t-80 -307v-575h-166z" />
95
+ <glyph unicode="o" horiz-adv-x="1237" d="M115 549q0 268 134 417.5t372 149.5q230 0 365.5 -153t135.5 -414q0 -268 -135 -418.5t-373 -150.5q-147 0 -261 69t-176 198t-62 302zM287 549q0 -210 84 -320t247 -110t247.5 109.5t84.5 320.5q0 209 -84.5 317.5t-249.5 108.5q-163 0 -246 -107t-83 -319z" />
96
+ <glyph unicode="p" horiz-adv-x="1255" d="M176 -492v1588h135l23 -150h8q64 90 149 130t195 40q218 0 336.5 -149t118.5 -418q0 -270 -120.5 -419.5t-334.5 -149.5q-107 0 -195.5 39.5t-148.5 121.5h-12q12 -96 12 -182v-451h-166zM342 549q0 -231 77 -330.5t247 -99.5q142 0 222.5 115t80.5 317 q0 205 -80.5 314.5t-226.5 109.5q-168 0 -243 -93t-77 -296v-37z" />
97
+ <glyph unicode="q" horiz-adv-x="1255" d="M115 545q0 269 120 420t334 151q225 0 346 -170h9l24 150h131v-1588h-166v469q0 100 11 170h-13q-115 -167 -346 -167q-212 0 -331 149t-119 416zM287 543q0 -207 76.5 -315.5t226.5 -108.5q166 0 242 89t81 300v37q0 230 -78 331t-247 101q-146 0 -223.5 -113.5 t-77.5 -320.5z" />
98
+ <glyph unicode="r" horiz-adv-x="836" d="M176 0v1096h137l19 -203h8q61 107 147 165t189 58q73 0 131 -12l-23 -154q-68 15 -120 15q-133 0 -227.5 -108t-94.5 -269v-588h-166z" />
99
+ <glyph unicode="s" horiz-adv-x="977" d="M106 827q0 134 109 211.5t299 77.5q177 0 346 -72l-59 -135q-165 68 -299 68q-118 0 -178 -37t-60 -102q0 -44 22.5 -75t72.5 -59t192 -81q195 -71 263.5 -143t68.5 -181q0 -153 -114 -236t-320 -83q-218 0 -340 69v154q79 -40 169.5 -63t174.5 -23q130 0 200 41.5 t70 126.5q0 64 -55.5 109.5t-216.5 107.5q-153 57 -217.5 99.5t-96 96.5t-31.5 129z" />
100
+ <glyph unicode="t" horiz-adv-x="723" d="M31 967v80l157 69l70 234h96v-254h318v-129h-318v-645q0 -99 47 -152t129 -53q44 0 85 6.5t65 13.5v-127q-27 -13 -79.5 -21.5t-94.5 -8.5q-318 0 -318 335v652h-157z" />
101
+ <glyph unicode="u" horiz-adv-x="1257" d="M164 379v717h168v-711q0 -134 61 -200t191 -66q172 0 251.5 94t79.5 307v576h166v-1096h-137l-24 147h-9q-51 -81 -141.5 -124t-206.5 -43q-200 0 -299.5 95t-99.5 304z" />
102
+ <glyph unicode="v" horiz-adv-x="1026" d="M0 1096h178l236 -650q80 -228 94 -296h8q11 53 69.5 219.5t262.5 726.5h178l-416 -1096h-194z" />
103
+ <glyph unicode="w" horiz-adv-x="1593" d="M23 1096h174q106 -413 161.5 -629t63.5 -291h8q11 57 35.5 147.5t42.5 143.5l201 629h180l196 -629q56 -172 76 -289h8q4 36 21.5 111t208.5 807h172l-303 -1096h-197l-201 643q-19 59 -71 268h-8q-40 -175 -70 -270l-207 -641h-192z" />
104
+ <glyph unicode="x" horiz-adv-x="1073" d="M39 0l401 561l-381 535h189l289 -420l288 420h187l-381 -535l401 -561h-188l-307 444l-310 -444h-188z" />
105
+ <glyph unicode="y" horiz-adv-x="1032" d="M2 1096h178l240 -625q79 -214 98 -309h8q13 51 54.5 174.5t271.5 759.5h178l-471 -1248q-70 -185 -163.5 -262.5t-229.5 -77.5q-76 0 -150 17v133q55 -12 123 -12q171 0 244 192l61 156z" />
106
+ <glyph unicode="z" horiz-adv-x="958" d="M82 0v113l598 854h-561v129h743v-129l-590 -838h605v-129h-795z" />
107
+ <glyph unicode="{" horiz-adv-x="776" d="M61 498v141q130 2 188 48t58 142v306q0 155 108 241t290 86v-139q-230 -6 -230 -199v-295q0 -215 -223 -254v-12q223 -39 223 -254v-297q0 -102 58.5 -148t171.5 -48v-140q-190 2 -294 87t-104 239v303q0 104 -63 148.5t-183 44.5z" />
108
+ <glyph unicode="|" horiz-adv-x="1128" d="M494 -496v2052h141v-2052h-141z" />
109
+ <glyph unicode="}" horiz-adv-x="776" d="M72 -184q111 2 169 48t58 148v297q0 114 55 174t168 80v12q-223 39 -223 254v295q0 193 -227 199v139q184 0 289.5 -87t105.5 -240v-306q0 -97 59 -142.5t189 -47.5v-141q-122 0 -185 -44.5t-63 -148.5v-303q0 -153 -102.5 -238.5t-292.5 -87.5v140z" />
110
+ <glyph unicode="~" d="M104 592v151q100 109 244 109q68 0 124.5 -14t145.5 -52q66 -28 115 -41.5t96 -13.5q54 0 118 32t118 89v-150q-102 -110 -244 -110q-72 0 -135 16.5t-135 48.5q-75 32 -120 44t-93 12q-53 0 -116.5 -33.5t-117.5 -87.5z" />
111
+ <glyph unicode="&#xa1;" horiz-adv-x="547" d="M152 983q0 63 31.5 99t88.5 36q51 0 86 -32t35 -103q0 -135 -121 -135q-60 0 -90 35.5t-30 99.5zM168 -373l51 1057h105l51 -1057h-207z" />
112
+ <glyph unicode="&#xa2;" d="M190 741q0 508 396 570v172h135v-164q75 -3 146 -19.5t120 -39.5l-49 -140q-133 51 -242 51q-172 0 -253 -105.5t-81 -322.5q0 -212 79.5 -313.5t246.5 -101.5q141 0 283 59v-147q-105 -54 -252 -60v-200h-133v206q-203 32 -299.5 168.5t-96.5 386.5z" />
113
+ <glyph unicode="&#xa3;" d="M63 0v141q205 47 205 291v223h-198v127h198v316q0 178 112 280.5t302 102.5t360 -84l-61 -133q-154 77 -297 77q-123 0 -185.5 -62t-62.5 -202v-295h422v-127h-422v-221q0 -100 -32.5 -168t-106.5 -112h795v-154h-1029z" />
114
+ <glyph unicode="&#xa4;" d="M123 1092l94 92l135 -133q104 73 234 73q127 0 229 -73l137 133l95 -92l-134 -138q74 -113 74 -231q0 -131 -74 -234l131 -135l-92 -92l-137 133q-102 -71 -229 -71q-134 0 -234 73l-135 -133l-92 92l133 136q-74 107 -74 231q0 122 74 229zM313 723q0 -112 78.5 -192 t194.5 -80t195 79.5t79 192.5q0 114 -80 195t-194 81q-116 0 -194.5 -82t-78.5 -194z" />
115
+ <glyph unicode="&#xa5;" d="M31 1462h178l375 -727l379 727h174l-416 -770h262v-127h-317v-170h317v-127h-317v-268h-164v268h-316v127h316v170h-316v127h256z" />
116
+ <glyph unicode="&#xa6;" horiz-adv-x="1128" d="M494 281h141v-777h-141v777zM494 780v776h141v-776h-141z" />
117
+ <glyph unicode="&#xa7;" horiz-adv-x="1057" d="M123 57v148q78 -37 175 -59.5t179 -22.5q134 0 204.5 38t70.5 109q0 46 -24 75t-78 58t-169 72q-142 52 -209 97t-100 102t-33 135q0 86 43 154.5t121 105.5q-74 40 -116 95.5t-42 140.5q0 121 103.5 190.5t300.5 69.5q94 0 173.5 -14.5t176.5 -53.5l-53 -131 q-98 39 -165.5 52.5t-143.5 13.5q-116 0 -174 -29.5t-58 -93.5q0 -60 61.5 -102t215.5 -97q186 -68 261 -143.5t75 -182.5q0 -90 -41 -160.5t-115 -111.5q153 -81 153 -227q0 -140 -117 -216.5t-329 -76.5q-218 0 -346 65zM285 829q0 -77 66 -129.5t233 -113.5l49 -19 q137 80 137 191q0 83 -73.5 139t-258.5 113q-68 -19 -110.5 -69t-42.5 -112z" />
118
+ <glyph unicode="&#xa8;" horiz-adv-x="1182" d="M309 1393q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM690 1393q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
119
+ <glyph unicode="&#xa9;" horiz-adv-x="1704" d="M100 731q0 200 100 375t275 276t377 101q200 0 375 -100t276 -275t101 -377q0 -197 -97 -370t-272 -277t-383 -104q-207 0 -382 103.5t-272.5 276.5t-97.5 371zM205 731q0 -173 87 -323.5t237.5 -237t322.5 -86.5q174 0 323 87t236.5 235.5t87.5 324.5q0 174 -87 323 t-235.5 236.5t-324.5 87.5q-174 0 -323 -87t-236.5 -235.5t-87.5 -324.5zM481 731q0 209 110.5 332t301.5 123q128 0 246 -60l-58 -118q-108 51 -188 51q-125 0 -192.5 -87t-67.5 -241q0 -168 63.5 -249t194.5 -81q86 0 211 45v-124q-48 -20 -98.5 -34t-120.5 -14 q-194 0 -298 120.5t-104 336.5z" />
120
+ <glyph unicode="&#xaa;" horiz-adv-x="725" d="M70 989q0 102 77 154.5t242 58.5l117 4v39q0 133 -148 133q-100 0 -204 -51l-43 96q114 56 247 56q130 0 198.5 -52.5t68.5 -173.5v-452h-93l-24 84q-92 -97 -232 -97q-95 0 -150.5 49.5t-55.5 151.5zM193 989q0 -100 112 -100q201 0 201 180v49l-98 -4 q-112 -4 -163.5 -32.5t-51.5 -92.5z" />
121
+ <glyph unicode="&#xab;" horiz-adv-x="1018" d="M82 524v27l342 407l119 -69l-289 -350l289 -351l-119 -71zM477 524v27l344 407l117 -69l-287 -350l287 -351l-117 -71z" />
122
+ <glyph unicode="&#xac;" d="M104 653v138h961v-527h-137v389h-824z" />
123
+ <glyph unicode="&#xad;" horiz-adv-x="659" d="M84 473v152h491v-152h-491z" />
124
+ <glyph unicode="&#xae;" horiz-adv-x="1704" d="M100 731q0 200 100 375t275 276t377 101q200 0 375 -100t276 -275t101 -377q0 -197 -97 -370t-272 -277t-383 -104q-207 0 -382 103.5t-272.5 276.5t-97.5 371zM205 731q0 -173 87 -323.5t237.5 -237t322.5 -86.5q174 0 323 87t236.5 235.5t87.5 324.5q0 174 -87 323 t-235.5 236.5t-324.5 87.5q-174 0 -323 -87t-236.5 -235.5t-87.5 -324.5zM575 285v891h261q166 0 243.5 -65t77.5 -198q0 -80 -42.5 -141.5t-119.5 -91.5l238 -395h-168l-207 354h-135v-354h-148zM723 762h108q80 0 128.5 41.5t48.5 105.5q0 75 -43 107.5t-136 32.5h-106 v-287z" />
125
+ <glyph unicode="&#xaf;" horiz-adv-x="1024" d="M-6 1556v127h1036v-127h-1036z" />
126
+ <glyph unicode="&#xb0;" horiz-adv-x="877" d="M127 1171q0 130 90.5 221t220.5 91t221 -90.5t91 -221.5q0 -84 -41 -155.5t-114 -113.5t-157 -42q-130 0 -220.5 90t-90.5 221zM242 1171q0 -82 58.5 -139t139.5 -57q80 0 137.5 56.5t57.5 139.5q0 84 -56.5 140.5t-138.5 56.5q-83 0 -140.5 -57t-57.5 -140z" />
127
+ <glyph unicode="&#xb1;" d="M104 653v138h410v428h139v-428h412v-138h-412v-426h-139v426h-410zM104 1v138h961v-138h-961z" />
128
+ <glyph unicode="&#xb2;" horiz-adv-x="711" d="M49 586v104l236 230q89 86 130 134.5t57.5 86.5t16.5 92q0 68 -40 102.5t-103 34.5q-52 0 -101 -19t-118 -69l-66 88q131 111 283 111q132 0 205.5 -65t73.5 -177q0 -80 -44.5 -155.5t-191.5 -213.5l-174 -165h440v-119h-604z" />
129
+ <glyph unicode="&#xb3;" horiz-adv-x="711" d="M33 625v123q147 -68 270 -68q211 0 211 162q0 145 -231 145h-117v107h119q103 0 152.5 39.5t49.5 107.5q0 61 -40 95t-107 34q-66 0 -122 -21.5t-112 -56.5l-69 90q63 45 133 72t164 27q136 0 214.5 -59.5t78.5 -166.5q0 -80 -41 -131.5t-109 -74.5q176 -47 176 -209 q0 -128 -92 -199.5t-260 -71.5q-152 0 -268 56z" />
130
+ <glyph unicode="&#xb4;" horiz-adv-x="1182" d="M393 1241v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
131
+ <glyph unicode="&#xb5;" horiz-adv-x="1268" d="M176 -492v1588h166v-715q0 -262 254 -262q171 0 250.5 94.5t79.5 306.5v576h166v-1096h-136l-26 147h-10q-111 -167 -340 -167q-150 0 -238 92h-10q10 -84 10 -244v-320h-166z" />
132
+ <glyph unicode="&#xb6;" horiz-adv-x="1341" d="M113 1042q0 260 109 387t341 127h557v-1816h-114v1712h-213v-1712h-115v819q-62 -18 -146 -18q-216 0 -317.5 125t-101.5 376z" />
133
+ <glyph unicode="&#xb7;" horiz-adv-x="545" d="M152 723q0 66 31 100.5t87 34.5q58 0 90.5 -34.5t32.5 -100.5q0 -65 -33 -100t-90 -35q-51 0 -84.5 31.5t-33.5 103.5z" />
134
+ <glyph unicode="&#xb8;" horiz-adv-x="465" d="M37 -377q45 -8 104 -8q79 0 119.5 20t40.5 74q0 43 -39.5 69.5t-148.5 43.5l88 178h110l-55 -115q180 -39 180 -174q0 -97 -76.5 -150t-226.5 -53q-51 0 -96 9v106z" />
135
+ <glyph unicode="&#xb9;" horiz-adv-x="711" d="M76 1280l262 182h143v-876h-133v579q0 91 6 181q-22 -22 -49 -44.5t-162 -117.5z" />
136
+ <glyph unicode="&#xba;" horiz-adv-x="768" d="M66 1135q0 163 84 253.5t235 90.5q152 0 234.5 -91t82.5 -253q0 -164 -85.5 -255.5t-235.5 -91.5q-146 0 -230.5 93t-84.5 254zM188 1135q0 -122 45.5 -183t149.5 -61q105 0 151 61t46 183q0 123 -46 182t-151 59q-103 0 -149 -59t-46 -182z" />
137
+ <glyph unicode="&#xbb;" horiz-adv-x="1018" d="M80 188l287 351l-287 350l117 69l344 -407v-27l-344 -407zM475 188l287 351l-287 350l117 69l344 -407v-27l-344 -407z" />
138
+ <glyph unicode="&#xbc;" horiz-adv-x="1597" d="M252 0l903 1462h143l-903 -1462h-143zM75 1280l262 182h143v-876h-133v579q0 91 6 181q-22 -22 -49 -44.5t-162 -117.5zM817 203v101l408 579h139v-563h125v-117h-125v-202h-145v202h-402zM957 320h262v195q0 134 6 209q-5 -12 -17 -31.5t-27 -41.5l-30 -46 q-15 -22 -26 -39z" />
139
+ <glyph unicode="&#xbd;" horiz-adv-x="1597" d="M184 0l903 1462h143l-903 -1462h-143zM46 1280l262 182h143v-876h-133v579q0 91 6 181q-22 -22 -49 -44.5t-162 -117.5zM895 1v104l236 230q89 86 130 134.5t57.5 86.5t16.5 92q0 68 -40 102.5t-103 34.5q-52 0 -101 -19t-118 -69l-66 88q131 111 283 111 q132 0 205.5 -65t73.5 -177q0 -80 -44.5 -155.5t-191.5 -213.5l-174 -165h440v-119h-604z" />
140
+ <glyph unicode="&#xbe;" horiz-adv-x="1597" d="M26 625v123q147 -68 270 -68q211 0 211 162q0 145 -231 145h-117v107h119q103 0 152.5 39.5t49.5 107.5q0 61 -40 95t-107 34q-66 0 -122 -21.5t-112 -56.5l-69 90q63 45 133 72t164 27q136 0 214.5 -59.5t78.5 -166.5q0 -80 -41 -131.5t-109 -74.5q176 -47 176 -209 q0 -128 -92 -199.5t-260 -71.5q-152 0 -268 56zM344 0l903 1462h143l-903 -1462h-143zM897 203v101l408 579h139v-563h125v-117h-125v-202h-145v202h-402zM1037 320h262v195q0 134 6 209q-5 -12 -17 -31.5t-27 -41.5l-30 -46q-15 -22 -26 -39z" />
141
+ <glyph unicode="&#xbf;" horiz-adv-x="879" d="M51 -37q0 70 17.5 122.5t49.5 97t76.5 85.5t98.5 88q101 88 133.5 146t32.5 151v31h131v-51q0 -122 -37.5 -196t-134.5 -158q-121 -106 -151.5 -143.5t-43 -76t-12.5 -94.5q0 -100 66 -156.5t188 -56.5q80 0 155 19t173 67l59 -135q-197 -96 -395 -96q-190 0 -298 93 t-108 263zM397 983q0 64 33 99.5t88 35.5q51 0 86 -32t35 -103q0 -135 -121 -135q-59 0 -90 34.5t-31 100.5z" />
142
+ <glyph unicode="&#xc0;" horiz-adv-x="1296" d="M0 0l578 1468h143l575 -1468h-176l-182 465h-586l-180 -465h-172zM412 618h473l-170 453q-33 86 -68 211q-22 -96 -63 -211zM331 1886v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
143
+ <glyph unicode="&#xc1;" horiz-adv-x="1296" d="M0 0l578 1468h143l575 -1468h-176l-182 465h-586l-180 -465h-172zM412 618h473l-170 453q-33 86 -68 211q-22 -96 -63 -211zM526 1579v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
144
+ <glyph unicode="&#xc2;" horiz-adv-x="1296" d="M0 0l578 1468h143l575 -1468h-176l-182 465h-586l-180 -465h-172zM412 618h473l-170 453q-33 86 -68 211q-22 -96 -63 -211zM303 1579v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
145
+ <glyph unicode="&#xc3;" horiz-adv-x="1296" d="M0 0l578 1468h143l575 -1468h-176l-182 465h-586l-180 -465h-172zM412 618h473l-170 453q-33 86 -68 211q-22 -96 -63 -211zM268 1579q13 121 70.5 189.5t148.5 68.5q46 0 89 -18.5t82 -41t75 -41t68 -18.5q49 0 73 29.5t39 91.5h99q-13 -121 -69.5 -189.5t-150.5 -68.5 q-43 0 -84 18.5t-80.5 41t-76 41t-70.5 18.5q-50 0 -75.5 -30t-39.5 -91h-98z" />
146
+ <glyph unicode="&#xc4;" horiz-adv-x="1296" d="M0 0l578 1468h143l575 -1468h-176l-182 465h-586l-180 -465h-172zM412 618h473l-170 453q-33 86 -68 211q-22 -96 -63 -211zM364 1731q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM745 1731q0 52 26.5 75 t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
147
+ <glyph unicode="&#xc5;" horiz-adv-x="1296" d="M0 0l578 1468h143l575 -1468h-176l-182 465h-586l-180 -465h-172zM412 618h473l-170 453q-33 86 -68 211q-22 -96 -63 -211zM424 1585q0 98 60.5 155.5t160.5 57.5q101 0 163 -59.5t62 -151.5q0 -98 -61.5 -157.5t-163.5 -59.5q-101 0 -161 58.5t-60 156.5zM528 1585 q0 -56 30 -86.5t87 -30.5q52 0 84.5 30.5t32.5 86.5t-33 86.5t-84 30.5t-84 -30.5t-33 -86.5z" />
148
+ <glyph unicode="&#xc6;" horiz-adv-x="1788" d="M-2 0l698 1462h969v-151h-580v-471h541v-150h-541v-538h580v-152h-750v465h-514l-227 -465h-176zM469 618h446v693h-118z" />
149
+ <glyph unicode="&#xc7;" horiz-adv-x="1292" d="M125 733q0 226 84.5 396t244 262t375.5 92q230 0 402 -84l-72 -146q-166 78 -332 78q-241 0 -380.5 -160.5t-139.5 -439.5q0 -287 134.5 -443.5t383.5 -156.5q153 0 349 55v-149q-152 -57 -375 -57q-323 0 -498.5 196t-175.5 557zM551 -377q45 -8 104 -8q79 0 119.5 20 t40.5 74q0 43 -39.5 69.5t-148.5 43.5l88 178h110l-55 -115q180 -39 180 -174q0 -97 -76.5 -150t-226.5 -53q-51 0 -96 9v106z" />
150
+ <glyph unicode="&#xc8;" horiz-adv-x="1139" d="M201 0v1462h815v-151h-645v-471h606v-150h-606v-538h645v-152h-815zM320 1886v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
151
+ <glyph unicode="&#xc9;" horiz-adv-x="1139" d="M201 0v1462h815v-151h-645v-471h606v-150h-606v-538h645v-152h-815zM456 1579v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
152
+ <glyph unicode="&#xca;" horiz-adv-x="1139" d="M201 0v1462h815v-151h-645v-471h606v-150h-606v-538h645v-152h-815zM263 1579v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
153
+ <glyph unicode="&#xcb;" horiz-adv-x="1139" d="M201 0v1462h815v-151h-645v-471h606v-150h-606v-538h645v-152h-815zM327 1731q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM708 1731q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5 t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
154
+ <glyph unicode="&#xcc;" horiz-adv-x="571" d="M201 0v1462h170v-1462h-170zM5 1886v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
155
+ <glyph unicode="&#xcd;" horiz-adv-x="571" d="M201 0v1462h170v-1462h-170zM179 1579v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
156
+ <glyph unicode="&#xce;" horiz-adv-x="571" d="M201 0v1462h170v-1462h-170zM-57 1579v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
157
+ <glyph unicode="&#xcf;" horiz-adv-x="571" d="M201 0v1462h170v-1462h-170zM5 1731q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM386 1731q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
158
+ <glyph unicode="&#xd0;" horiz-adv-x="1479" d="M47 649v150h154v663h434q337 0 527 -187.5t190 -529.5q0 -362 -196.5 -553.5t-565.5 -191.5h-389v649h-154zM371 147h190q610 0 610 592q0 576 -569 576h-231v-516h379v-150h-379v-502z" />
159
+ <glyph unicode="&#xd1;" horiz-adv-x="1544" d="M201 0v1462h192l797 -1222h8q-2 28 -9 174q-5 114 -5 177v32v839h159v-1462h-194l-799 1227h-8q16 -216 16 -396v-831h-157zM411 1579q13 121 70.5 189.5t148.5 68.5q46 0 89 -18.5t82 -41t75 -41t68 -18.5q49 0 73 29.5t39 91.5h99q-13 -121 -69.5 -189.5t-150.5 -68.5 q-43 0 -84 18.5t-80.5 41t-76 41t-70.5 18.5q-50 0 -75.5 -30t-39.5 -91h-98z" />
160
+ <glyph unicode="&#xd2;" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q315 0 492 -200t177 -552q0 -351 -177.5 -552t-493.5 -201q-323 0 -498.5 197.5t-175.5 557.5zM305 733q0 -297 126.5 -450.5t367.5 -153.5q243 0 367 153t124 451q0 295 -123.5 447.5t-365.5 152.5q-243 0 -369.5 -153.5 t-126.5 -446.5zM514 1886v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
161
+ <glyph unicode="&#xd3;" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q315 0 492 -200t177 -552q0 -351 -177.5 -552t-493.5 -201q-323 0 -498.5 197.5t-175.5 557.5zM305 733q0 -297 126.5 -450.5t367.5 -153.5q243 0 367 153t124 451q0 295 -123.5 447.5t-365.5 152.5q-243 0 -369.5 -153.5 t-126.5 -446.5zM659 1579v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
162
+ <glyph unicode="&#xd4;" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q315 0 492 -200t177 -552q0 -351 -177.5 -552t-493.5 -201q-323 0 -498.5 197.5t-175.5 557.5zM305 733q0 -297 126.5 -450.5t367.5 -153.5q243 0 367 153t124 451q0 295 -123.5 447.5t-365.5 152.5q-243 0 -369.5 -153.5 t-126.5 -446.5zM448 1579v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
163
+ <glyph unicode="&#xd5;" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q315 0 492 -200t177 -552q0 -351 -177.5 -552t-493.5 -201q-323 0 -498.5 197.5t-175.5 557.5zM305 733q0 -297 126.5 -450.5t367.5 -153.5q243 0 367 153t124 451q0 295 -123.5 447.5t-365.5 152.5q-243 0 -369.5 -153.5 t-126.5 -446.5zM418 1579q13 121 70.5 189.5t148.5 68.5q46 0 89 -18.5t82 -41t75 -41t68 -18.5q49 0 73 29.5t39 91.5h99q-13 -121 -69.5 -189.5t-150.5 -68.5q-43 0 -84 18.5t-80.5 41t-76 41t-70.5 18.5q-50 0 -75.5 -30t-39.5 -91h-98z" />
164
+ <glyph unicode="&#xd6;" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q315 0 492 -200t177 -552q0 -351 -177.5 -552t-493.5 -201q-323 0 -498.5 197.5t-175.5 557.5zM305 733q0 -297 126.5 -450.5t367.5 -153.5q243 0 367 153t124 451q0 295 -123.5 447.5t-365.5 152.5q-243 0 -369.5 -153.5 t-126.5 -446.5zM522 1731q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM903 1731q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
165
+ <glyph unicode="&#xd7;" d="M133 1075l100 101l353 -355l354 355l96 -99l-352 -354l350 -352l-96 -99l-354 351l-348 -351l-101 99l350 352z" />
166
+ <glyph unicode="&#xd8;" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q209 0 366 -94l97 135l120 -80l-106 -148q192 -202 192 -565q0 -351 -177.5 -552t-493.5 -201q-235 0 -383 100l-101 -141l-120 79l108 154q-178 198 -178 563zM305 733q0 -262 101 -416l669 943q-106 73 -274 73 q-243 0 -369.5 -153.5t-126.5 -446.5zM508 211q115 -82 291 -82q243 0 367 153t124 451q0 272 -110 426z" />
167
+ <glyph unicode="&#xd9;" horiz-adv-x="1491" d="M186 520v942h170v-954q0 -183 100 -281t294 -98q185 0 285 98.5t100 282.5v952h170v-946q0 -250 -151 -393t-415 -143t-408.5 144t-144.5 396zM463 1886v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
168
+ <glyph unicode="&#xda;" horiz-adv-x="1491" d="M186 520v942h170v-954q0 -183 100 -281t294 -98q185 0 285 98.5t100 282.5v952h170v-946q0 -250 -151 -393t-415 -143t-408.5 144t-144.5 396zM600 1579v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
169
+ <glyph unicode="&#xdb;" horiz-adv-x="1491" d="M186 520v942h170v-954q0 -183 100 -281t294 -98q185 0 285 98.5t100 282.5v952h170v-946q0 -250 -151 -393t-415 -143t-408.5 144t-144.5 396zM393 1579v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186 h-115z" />
170
+ <glyph unicode="&#xdc;" horiz-adv-x="1491" d="M186 520v942h170v-954q0 -183 100 -281t294 -98q185 0 285 98.5t100 282.5v952h170v-946q0 -250 -151 -393t-415 -143t-408.5 144t-144.5 396zM461 1731q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5z M842 1731q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
171
+ <glyph unicode="&#xdd;" horiz-adv-x="1147" d="M0 1462h186l387 -731l390 731h184l-488 -895v-567h-172v559zM442 1579v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
172
+ <glyph unicode="&#xde;" horiz-adv-x="1251" d="M201 0v1462h170v-256h215q281 0 420 -103.5t139 -318.5q0 -227 -151.5 -346t-438.5 -119h-184v-319h-170zM371 465h168q226 0 327 71.5t101 235.5q0 149 -95 218t-297 69h-204v-594z" />
173
+ <glyph unicode="&#xdf;" horiz-adv-x="1274" d="M176 0v1202q0 178 110 271.5t332 93.5q206 0 318.5 -78.5t112.5 -222.5q0 -135 -143 -250q-88 -70 -116 -103.5t-28 -66.5q0 -32 13.5 -53t49 -49.5t113.5 -79.5q140 -95 191 -173.5t51 -179.5q0 -160 -97 -245.5t-276 -85.5q-188 0 -295 69v154q63 -39 141 -62.5 t150 -23.5q215 0 215 182q0 75 -41.5 128.5t-151.5 123.5q-127 82 -175 143.5t-48 145.5q0 63 34.5 116t105.5 106q75 57 107 102t32 98q0 80 -68 122.5t-195 42.5q-276 0 -276 -223v-1204h-166z" />
174
+ <glyph unicode="&#xe0;" horiz-adv-x="1139" d="M94 303q0 332 531 348l186 6v68q0 129 -55.5 190.5t-177.5 61.5q-137 0 -310 -84l-51 127q81 44 177.5 69t193.5 25q196 0 290.5 -87t94.5 -279v-748h-123l-33 156h-8q-82 -103 -163.5 -139.5t-203.5 -36.5q-163 0 -255.5 84t-92.5 239zM268 301q0 -90 54.5 -137 t152.5 -47q155 0 243.5 85t88.5 238v99l-166 -7q-198 -7 -285.5 -61.5t-87.5 -169.5zM279 1548v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
175
+ <glyph unicode="&#xe1;" horiz-adv-x="1139" d="M94 303q0 332 531 348l186 6v68q0 129 -55.5 190.5t-177.5 61.5q-137 0 -310 -84l-51 127q81 44 177.5 69t193.5 25q196 0 290.5 -87t94.5 -279v-748h-123l-33 156h-8q-82 -103 -163.5 -139.5t-203.5 -36.5q-163 0 -255.5 84t-92.5 239zM268 301q0 -90 54.5 -137 t152.5 -47q155 0 243.5 85t88.5 238v99l-166 -7q-198 -7 -285.5 -61.5t-87.5 -169.5zM436 1241v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
176
+ <glyph unicode="&#xe2;" horiz-adv-x="1139" d="M94 303q0 332 531 348l186 6v68q0 129 -55.5 190.5t-177.5 61.5q-137 0 -310 -84l-51 127q81 44 177.5 69t193.5 25q196 0 290.5 -87t94.5 -279v-748h-123l-33 156h-8q-82 -103 -163.5 -139.5t-203.5 -36.5q-163 0 -255.5 84t-92.5 239zM268 301q0 -90 54.5 -137 t152.5 -47q155 0 243.5 85t88.5 238v99l-166 -7q-198 -7 -285.5 -61.5t-87.5 -169.5zM228 1241v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
177
+ <glyph unicode="&#xe3;" horiz-adv-x="1139" d="M94 303q0 332 531 348l186 6v68q0 129 -55.5 190.5t-177.5 61.5q-137 0 -310 -84l-51 127q81 44 177.5 69t193.5 25q196 0 290.5 -87t94.5 -279v-748h-123l-33 156h-8q-82 -103 -163.5 -139.5t-203.5 -36.5q-163 0 -255.5 84t-92.5 239zM268 301q0 -90 54.5 -137 t152.5 -47q155 0 243.5 85t88.5 238v99l-166 -7q-198 -7 -285.5 -61.5t-87.5 -169.5zM197 1241q13 121 70.5 189.5t148.5 68.5q46 0 89 -18.5t82 -41t75 -41t68 -18.5q49 0 73 29.5t39 91.5h99q-13 -121 -69.5 -189.5t-150.5 -68.5q-43 0 -84 18.5t-80.5 41t-76 41 t-70.5 18.5q-50 0 -75.5 -30t-39.5 -91h-98z" />
178
+ <glyph unicode="&#xe4;" horiz-adv-x="1139" d="M94 303q0 332 531 348l186 6v68q0 129 -55.5 190.5t-177.5 61.5q-137 0 -310 -84l-51 127q81 44 177.5 69t193.5 25q196 0 290.5 -87t94.5 -279v-748h-123l-33 156h-8q-82 -103 -163.5 -139.5t-203.5 -36.5q-163 0 -255.5 84t-92.5 239zM268 301q0 -90 54.5 -137 t152.5 -47q155 0 243.5 85t88.5 238v99l-166 -7q-198 -7 -285.5 -61.5t-87.5 -169.5zM279 1393q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM660 1393q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75 q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
179
+ <glyph unicode="&#xe5;" horiz-adv-x="1139" d="M94 303q0 332 531 348l186 6v68q0 129 -55.5 190.5t-177.5 61.5q-137 0 -310 -84l-51 127q81 44 177.5 69t193.5 25q196 0 290.5 -87t94.5 -279v-748h-123l-33 156h-8q-82 -103 -163.5 -139.5t-203.5 -36.5q-163 0 -255.5 84t-92.5 239zM268 301q0 -90 54.5 -137 t152.5 -47q155 0 243.5 85t88.5 238v99l-166 -7q-198 -7 -285.5 -61.5t-87.5 -169.5zM358 1456q0 98 60.5 155.5t160.5 57.5q101 0 163 -59.5t62 -151.5q0 -98 -61.5 -157.5t-163.5 -59.5q-101 0 -161 58.5t-60 156.5zM462 1456q0 -56 30 -86.5t87 -30.5q52 0 84.5 30.5 t32.5 86.5t-33 86.5t-84 30.5t-84 -30.5t-33 -86.5z" />
180
+ <glyph unicode="&#xe6;" horiz-adv-x="1757" d="M94 303q0 161 124 250.5t378 97.5l184 6v68q0 129 -58 190.5t-177 61.5q-144 0 -307 -84l-52 127q74 41 173.5 67.5t197.5 26.5q130 0 212.5 -43.5t123.5 -138.5q53 88 138.5 136t195.5 48q192 0 308 -133.5t116 -355.5v-107h-701q8 -395 322 -395q91 0 169.5 17.5 t162.5 56.5v-148q-86 -38 -160.5 -54.5t-175.5 -16.5q-289 0 -414 233q-81 -127 -179.5 -180t-232.5 -53q-163 0 -255.5 85t-92.5 238zM268 301q0 -95 53.5 -139.5t141.5 -44.5q145 0 229 84.5t84 238.5v99l-158 -7q-186 -8 -268 -62.5t-82 -168.5zM954 653h519 q0 156 -64 240t-184 84q-121 0 -190.5 -83t-80.5 -241z" />
181
+ <glyph unicode="&#xe7;" horiz-adv-x="975" d="M115 541q0 275 132.5 425t377.5 150q79 0 158 -17t124 -40l-51 -141q-55 22 -120 36.5t-115 14.5q-334 0 -334 -426q0 -202 81.5 -310t241.5 -108q137 0 281 59v-147q-110 -57 -277 -57q-238 0 -368.5 146.5t-130.5 414.5zM363 -377q45 -8 104 -8q79 0 119.5 20t40.5 74 q0 43 -39.5 69.5t-148.5 43.5l88 178h110l-55 -115q180 -39 180 -174q0 -97 -76.5 -150t-226.5 -53q-51 0 -96 9v106z" />
182
+ <glyph unicode="&#xe8;" horiz-adv-x="1149" d="M115 539q0 265 130.5 421t350.5 156q206 0 326 -135.5t120 -357.5v-105h-755q5 -193 97.5 -293t260.5 -100q177 0 350 74v-148q-88 -38 -166.5 -54.5t-189.5 -16.5q-243 0 -383.5 148t-140.5 411zM291 653h573q0 157 -70 240.5t-200 83.5q-132 0 -210.5 -86t-92.5 -238z M318 1548v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
183
+ <glyph unicode="&#xe9;" horiz-adv-x="1149" d="M115 539q0 265 130.5 421t350.5 156q206 0 326 -135.5t120 -357.5v-105h-755q5 -193 97.5 -293t260.5 -100q177 0 350 74v-148q-88 -38 -166.5 -54.5t-189.5 -16.5q-243 0 -383.5 148t-140.5 411zM291 653h573q0 157 -70 240.5t-200 83.5q-132 0 -210.5 -86t-92.5 -238z M471 1241v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
184
+ <glyph unicode="&#xea;" horiz-adv-x="1149" d="M115 539q0 265 130.5 421t350.5 156q206 0 326 -135.5t120 -357.5v-105h-755q5 -193 97.5 -293t260.5 -100q177 0 350 74v-148q-88 -38 -166.5 -54.5t-189.5 -16.5q-243 0 -383.5 148t-140.5 411zM291 653h573q0 157 -70 240.5t-200 83.5q-132 0 -210.5 -86t-92.5 -238z M259 1241v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
185
+ <glyph unicode="&#xeb;" horiz-adv-x="1149" d="M115 539q0 265 130.5 421t350.5 156q206 0 326 -135.5t120 -357.5v-105h-755q5 -193 97.5 -293t260.5 -100q177 0 350 74v-148q-88 -38 -166.5 -54.5t-189.5 -16.5q-243 0 -383.5 148t-140.5 411zM291 653h573q0 157 -70 240.5t-200 83.5q-132 0 -210.5 -86t-92.5 -238z M319 1393q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM700 1393q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
186
+ <glyph unicode="&#xec;" horiz-adv-x="518" d="M176 0v1096h166v-1096h-166zM-38 1548v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
187
+ <glyph unicode="&#xed;" horiz-adv-x="518" d="M176 0v1096h166v-1096h-166zM169 1241v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
188
+ <glyph unicode="&#xee;" horiz-adv-x="518" d="M176 0v1096h166v-1096h-166zM-77 1241v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
189
+ <glyph unicode="&#xef;" horiz-adv-x="518" d="M176 0v1096h166v-1096h-166zM-20 1393q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM361 1393q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
190
+ <glyph unicode="&#xf0;" horiz-adv-x="1221" d="M113 475q0 230 131.5 361t351.5 131q226 0 326 -121l8 4q-57 214 -262 405l-271 -155l-73 108l233 133q-92 62 -186 111l69 117q156 -73 258 -148l238 138l76 -107l-207 -119q152 -143 234.5 -342t82.5 -428q0 -281 -130.5 -432t-377.5 -151q-222 0 -361.5 134.5 t-139.5 360.5zM281 469q0 -167 87.5 -258.5t249.5 -91.5q175 0 255.5 100.5t80.5 292.5q0 147 -90 232t-246 85q-337 0 -337 -360z" />
191
+ <glyph unicode="&#xf1;" horiz-adv-x="1257" d="M176 0v1096h135l27 -150h8q51 81 143 125.5t205 44.5q198 0 298 -95.5t100 -305.5v-715h-166v709q0 134 -61 200t-191 66q-172 0 -252 -93t-80 -307v-575h-166zM278 1241q13 121 70.5 189.5t148.5 68.5q46 0 89 -18.5t82 -41t75 -41t68 -18.5q49 0 73 29.5t39 91.5h99 q-13 -121 -69.5 -189.5t-150.5 -68.5q-43 0 -84 18.5t-80.5 41t-76 41t-70.5 18.5q-50 0 -75.5 -30t-39.5 -91h-98z" />
192
+ <glyph unicode="&#xf2;" horiz-adv-x="1237" d="M115 549q0 268 134 417.5t372 149.5q230 0 365.5 -153t135.5 -414q0 -268 -135 -418.5t-373 -150.5q-147 0 -261 69t-176 198t-62 302zM287 549q0 -210 84 -320t247 -110t247.5 109.5t84.5 320.5q0 209 -84.5 317.5t-249.5 108.5q-163 0 -246 -107t-83 -319zM349 1548v21 h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
193
+ <glyph unicode="&#xf3;" horiz-adv-x="1237" d="M115 549q0 268 134 417.5t372 149.5q230 0 365.5 -153t135.5 -414q0 -268 -135 -418.5t-373 -150.5q-147 0 -261 69t-176 198t-62 302zM287 549q0 -210 84 -320t247 -110t247.5 109.5t84.5 320.5q0 209 -84.5 317.5t-249.5 108.5q-163 0 -246 -107t-83 -319zM479 1241v25 q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
194
+ <glyph unicode="&#xf4;" horiz-adv-x="1237" d="M115 549q0 268 134 417.5t372 149.5q230 0 365.5 -153t135.5 -414q0 -268 -135 -418.5t-373 -150.5q-147 0 -261 69t-176 198t-62 302zM287 549q0 -210 84 -320t247 -110t247.5 109.5t84.5 320.5q0 209 -84.5 317.5t-249.5 108.5q-163 0 -246 -107t-83 -319zM282 1241v23 q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
195
+ <glyph unicode="&#xf5;" horiz-adv-x="1237" d="M115 549q0 268 134 417.5t372 149.5q230 0 365.5 -153t135.5 -414q0 -268 -135 -418.5t-373 -150.5q-147 0 -261 69t-176 198t-62 302zM287 549q0 -210 84 -320t247 -110t247.5 109.5t84.5 320.5q0 209 -84.5 317.5t-249.5 108.5q-163 0 -246 -107t-83 -319zM249 1241 q13 121 70.5 189.5t148.5 68.5q46 0 89 -18.5t82 -41t75 -41t68 -18.5q49 0 73 29.5t39 91.5h99q-13 -121 -69.5 -189.5t-150.5 -68.5q-43 0 -84 18.5t-80.5 41t-76 41t-70.5 18.5q-50 0 -75.5 -30t-39.5 -91h-98z" />
196
+ <glyph unicode="&#xf6;" horiz-adv-x="1237" d="M115 549q0 268 134 417.5t372 149.5q230 0 365.5 -153t135.5 -414q0 -268 -135 -418.5t-373 -150.5q-147 0 -261 69t-176 198t-62 302zM287 549q0 -210 84 -320t247 -110t247.5 109.5t84.5 320.5q0 209 -84.5 317.5t-249.5 108.5q-163 0 -246 -107t-83 -319zM336 1393 q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM717 1393q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
197
+ <glyph unicode="&#xf7;" d="M104 653v138h961v-138h-961zM471 373q0 60 29.5 90.5t83.5 30.5q52 0 81 -31.5t29 -89.5q0 -57 -29.5 -89t-80.5 -32q-52 0 -82.5 31.5t-30.5 89.5zM471 1071q0 60 29.5 90.5t83.5 30.5q52 0 81 -31.5t29 -89.5q0 -57 -29.5 -89t-80.5 -32q-52 0 -82.5 31.5t-30.5 89.5z " />
198
+ <glyph unicode="&#xf8;" horiz-adv-x="1237" d="M115 549q0 268 134 417.5t372 149.5q154 0 270 -76l84 119l117 -76l-97 -133q127 -152 127 -401q0 -268 -135 -418.5t-373 -150.5q-154 0 -266 69l-84 -117l-114 78l94 131q-129 152 -129 408zM287 549q0 -171 53 -273l465 646q-75 53 -189 53q-163 0 -246 -107t-83 -319 zM434 170q71 -51 184 -51q163 0 247.5 109.5t84.5 320.5q0 164 -51 264z" />
199
+ <glyph unicode="&#xf9;" horiz-adv-x="1257" d="M164 379v717h168v-711q0 -134 61 -200t191 -66q172 0 251.5 94t79.5 307v576h166v-1096h-137l-24 147h-9q-51 -81 -141.5 -124t-206.5 -43q-200 0 -299.5 95t-99.5 304zM333 1548v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
200
+ <glyph unicode="&#xfa;" horiz-adv-x="1257" d="M164 379v717h168v-711q0 -134 61 -200t191 -66q172 0 251.5 94t79.5 307v576h166v-1096h-137l-24 147h-9q-51 -81 -141.5 -124t-206.5 -43q-200 0 -299.5 95t-99.5 304zM506 1241v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
201
+ <glyph unicode="&#xfb;" horiz-adv-x="1257" d="M164 379v717h168v-711q0 -134 61 -200t191 -66q172 0 251.5 94t79.5 307v576h166v-1096h-137l-24 147h-9q-51 -81 -141.5 -124t-206.5 -43q-200 0 -299.5 95t-99.5 304zM286 1241v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119 q-88 55 -221 186q-136 -134 -219 -186h-115z" />
202
+ <glyph unicode="&#xfc;" horiz-adv-x="1257" d="M164 379v717h168v-711q0 -134 61 -200t191 -66q172 0 251.5 94t79.5 307v576h166v-1096h-137l-24 147h-9q-51 -81 -141.5 -124t-206.5 -43q-200 0 -299.5 95t-99.5 304zM342 1393q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5 q-37 0 -63.5 24.5t-26.5 74.5zM723 1393q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
203
+ <glyph unicode="&#xfd;" horiz-adv-x="1032" d="M2 1096h178l240 -625q79 -214 98 -309h8q13 51 54.5 174.5t271.5 759.5h178l-471 -1248q-70 -185 -163.5 -262.5t-229.5 -77.5q-76 0 -150 17v133q55 -12 123 -12q171 0 244 192l61 156zM411 1241v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111 z" />
204
+ <glyph unicode="&#xfe;" horiz-adv-x="1255" d="M176 -492v2048h166v-466q0 -52 -6 -142h8q66 89 151 128.5t191 39.5q215 0 335 -150t120 -417q0 -268 -120.5 -418.5t-334.5 -150.5q-222 0 -344 161h-12l4 -34q8 -77 8 -140v-459h-166zM342 549q0 -231 77 -330.5t247 -99.5q303 0 303 432q0 215 -74 319.5t-231 104.5 q-168 0 -244 -92t-78 -293v-41z" />
205
+ <glyph unicode="&#xff;" horiz-adv-x="1032" d="M2 1096h178l240 -625q79 -214 98 -309h8q13 51 54.5 174.5t271.5 759.5h178l-471 -1248q-70 -185 -163.5 -262.5t-229.5 -77.5q-76 0 -150 17v133q55 -12 123 -12q171 0 244 192l61 156zM234 1393q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5 t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM615 1393q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
206
+ <glyph unicode="&#x131;" horiz-adv-x="518" d="M176 0v1096h166v-1096h-166z" />
207
+ <glyph unicode="&#x152;" horiz-adv-x="1890" d="M125 735q0 360 174 555t494 195q102 0 192 -23h782v-151h-589v-471h551v-150h-551v-538h589v-152h-768q-102 -20 -194 -20q-327 0 -503.5 196.5t-176.5 558.5zM305 733q0 -297 128.5 -450.5t375.5 -153.5q112 0 199 33v1141q-87 30 -197 30q-249 0 -377.5 -152.5 t-128.5 -447.5z" />
208
+ <glyph unicode="&#x153;" horiz-adv-x="1929" d="M113 549q0 265 131 415t366 150q131 0 233.5 -59.5t164.5 -173.5q58 112 154 172.5t222 60.5q201 0 320 -132.5t119 -358.5v-105h-729q8 -393 338 -393q94 0 174.5 17.5t167.5 56.5v-148q-88 -39 -164 -55t-180 -16q-293 0 -418 235q-62 -116 -166.5 -175.5t-241.5 -59.5 q-223 0 -357 152.5t-134 416.5zM287 549q0 -211 76 -320.5t243 -109.5q163 0 239.5 106.5t76.5 315.5q0 221 -77.5 327.5t-242.5 106.5q-166 0 -240.5 -108t-74.5 -318zM1098 653h544q0 158 -66 240t-194 82q-127 0 -199.5 -82t-84.5 -240z" />
209
+ <glyph unicode="&#x178;" horiz-adv-x="1147" d="M0 1462h186l387 -731l390 731h184l-488 -895v-567h-172v559zM294 1731q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM675 1731q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5 t-63.5 24.5t-26.5 74.5z" />
210
+ <glyph unicode="&#x2c6;" horiz-adv-x="1212" d="M268 1241v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
211
+ <glyph unicode="&#x2da;" horiz-adv-x="1182" d="M367 1456q0 98 60.5 155.5t160.5 57.5q101 0 163 -59.5t62 -151.5q0 -98 -61.5 -157.5t-163.5 -59.5q-101 0 -161 58.5t-60 156.5zM471 1456q0 -56 30 -86.5t87 -30.5q52 0 84.5 30.5t32.5 86.5t-33 86.5t-84 30.5t-84 -30.5t-33 -86.5z" />
212
+ <glyph unicode="&#x2dc;" horiz-adv-x="1212" d="M264 1241q13 121 70.5 189.5t148.5 68.5q46 0 89 -18.5t82 -41t75 -41t68 -18.5q49 0 73 29.5t39 91.5h99q-13 -121 -69.5 -189.5t-150.5 -68.5q-43 0 -84 18.5t-80.5 41t-76 41t-70.5 18.5q-50 0 -75.5 -30t-39.5 -91h-98z" />
213
+ <glyph unicode="&#x2000;" horiz-adv-x="953" />
214
+ <glyph unicode="&#x2001;" horiz-adv-x="1907" />
215
+ <glyph unicode="&#x2002;" horiz-adv-x="953" />
216
+ <glyph unicode="&#x2003;" horiz-adv-x="1907" />
217
+ <glyph unicode="&#x2004;" horiz-adv-x="635" />
218
+ <glyph unicode="&#x2005;" horiz-adv-x="476" />
219
+ <glyph unicode="&#x2006;" horiz-adv-x="317" />
220
+ <glyph unicode="&#x2007;" horiz-adv-x="317" />
221
+ <glyph unicode="&#x2008;" horiz-adv-x="238" />
222
+ <glyph unicode="&#x2009;" horiz-adv-x="381" />
223
+ <glyph unicode="&#x200a;" horiz-adv-x="105" />
224
+ <glyph unicode="&#x2010;" horiz-adv-x="659" d="M84 473v152h491v-152h-491z" />
225
+ <glyph unicode="&#x2011;" horiz-adv-x="659" d="M84 473v152h491v-152h-491z" />
226
+ <glyph unicode="&#x2012;" horiz-adv-x="659" d="M84 473v152h491v-152h-491z" />
227
+ <glyph unicode="&#x2013;" horiz-adv-x="1024" d="M82 473v152h860v-152h-860z" />
228
+ <glyph unicode="&#x2014;" horiz-adv-x="2048" d="M82 473v152h1884v-152h-1884z" />
229
+ <glyph unicode="&#x2018;" horiz-adv-x="348" d="M25 983q22 90 71 224t105 255h123q-66 -254 -103 -501h-184z" />
230
+ <glyph unicode="&#x2019;" horiz-adv-x="348" d="M25 961q70 285 102 501h182l15 -22q-26 -100 -75 -232.5t-102 -246.5h-122z" />
231
+ <glyph unicode="&#x201a;" horiz-adv-x="502" d="M63 -264q27 104 59.5 257t45.5 245h182l15 -23q-26 -100 -75 -232.5t-102 -246.5h-125z" />
232
+ <glyph unicode="&#x201c;" horiz-adv-x="717" d="M25 983q22 90 71 224t105 255h123q-66 -254 -103 -501h-184zM391 983q56 215 178 479h123q-30 -115 -59.5 -259.5t-42.5 -241.5h-184z" />
233
+ <glyph unicode="&#x201d;" horiz-adv-x="717" d="M25 961q70 285 102 501h182l15 -22q-26 -100 -75 -232.5t-102 -246.5h-122zM391 961q26 100 59 254t46 247h182l14 -22q-24 -91 -72 -224t-104 -255h-125z" />
234
+ <glyph unicode="&#x201e;" horiz-adv-x="829" d="M25 -263q70 285 102 501h182l15 -22q-26 -100 -75 -232.5t-102 -246.5h-122zM391 -263q26 100 59 254t46 247h182l14 -22q-24 -91 -72 -224t-104 -255h-125z" />
235
+ <glyph unicode="&#x2022;" horiz-adv-x="770" d="M164 748q0 121 56.5 184t164.5 63q105 0 163 -62t58 -185q0 -119 -57.5 -183.5t-163.5 -64.5q-107 0 -164 65.5t-57 182.5z" />
236
+ <glyph unicode="&#x2026;" horiz-adv-x="1606" d="M152 106q0 67 30.5 101.5t87.5 34.5q58 0 90.5 -34.5t32.5 -101.5q0 -65 -33 -100t-90 -35q-51 0 -84.5 31.5t-33.5 103.5zM682 106q0 67 30.5 101.5t87.5 34.5q58 0 90.5 -34.5t32.5 -101.5q0 -65 -33 -100t-90 -35q-51 0 -84.5 31.5t-33.5 103.5zM1213 106 q0 67 30.5 101.5t87.5 34.5q58 0 90.5 -34.5t32.5 -101.5q0 -65 -33 -100t-90 -35q-51 0 -84.5 31.5t-33.5 103.5z" />
237
+ <glyph unicode="&#x202f;" horiz-adv-x="381" />
238
+ <glyph unicode="&#x2039;" horiz-adv-x="623" d="M82 524v27l342 407l119 -69l-289 -350l289 -351l-119 -71z" />
239
+ <glyph unicode="&#x203a;" horiz-adv-x="623" d="M80 188l287 351l-287 350l117 69l344 -407v-27l-344 -407z" />
240
+ <glyph unicode="&#x2044;" horiz-adv-x="266" d="M-391 0l903 1462h143l-903 -1462h-143z" />
241
+ <glyph unicode="&#x205f;" horiz-adv-x="476" />
242
+ <glyph unicode="&#x2074;" horiz-adv-x="711" d="M20 788v101l408 579h139v-563h125v-117h-125v-202h-145v202h-402zM160 905h262v195q0 134 6 209q-5 -12 -17 -31.5t-27 -41.5l-30 -46q-15 -22 -26 -39z" />
243
+ <glyph unicode="&#x20ac;" horiz-adv-x="1208" d="M63 506v129h152l-2 42v44l2 80h-152v129h164q39 261 185 407t383 146q201 0 366 -97l-71 -139q-166 86 -295 86q-319 0 -398 -403h510v-129h-524l-2 -57v-64l2 -45h463v-129h-447q37 -180 138.5 -278.5t271.5 -98.5q156 0 309 66v-150q-146 -65 -317 -65 q-237 0 -381.5 134.5t-190.5 391.5h-166z" />
244
+ <glyph unicode="&#x2122;" horiz-adv-x="1589" d="M37 1356v106h543v-106h-211v-615h-123v615h-209zM647 741v721h187l196 -559l203 559h180v-721h-127v420l6 137h-8l-211 -557h-104l-201 559h-8l6 -129v-430h-119z" />
245
+ <glyph unicode="&#x2212;" d="M104 653v138h961v-138h-961z" />
246
+ <glyph unicode="&#xe000;" horiz-adv-x="1095" d="M0 1095h1095v-1095h-1095v1095z" />
247
+ <glyph unicode="&#xfb01;" horiz-adv-x="1212" d="M29 967v75l196 60v61q0 404 353 404q87 0 204 -35l-43 -133q-96 31 -164 31q-94 0 -139 -62.5t-45 -200.5v-71h279v-129h-279v-967h-166v967h-196zM856 1393q0 57 28 83.5t70 26.5q40 0 69 -27t29 -83t-29 -83.5t-69 -27.5q-42 0 -70 27.5t-28 83.5zM870 0v1096h166 v-1096h-166z" />
248
+ <glyph unicode="&#xfb02;" horiz-adv-x="1212" d="M29 967v75l196 60v61q0 404 353 404q87 0 204 -35l-43 -133q-96 31 -164 31q-94 0 -139 -62.5t-45 -200.5v-71h279v-129h-279v-967h-166v967h-196zM870 0v1556h166v-1556h-166z" />
249
+ <glyph unicode="&#xfb03;" horiz-adv-x="1909" d="M717 967v75l196 60v61q0 404 353 404q87 0 204 -35l-43 -133q-96 31 -164 31q-94 0 -139 -62.5t-45 -200.5v-71h279v-129h-279v-967h-166v967h-196zM29 967v75l196 60v61q0 404 353 404q87 0 204 -35l-43 -133q-96 31 -164 31q-94 0 -139 -62.5t-45 -200.5v-71h279v-129 h-279v-967h-166v967h-196zM1551 1393q0 57 28 83.5t70 26.5q40 0 69 -27t29 -83t-29 -83.5t-69 -27.5q-42 0 -70 27.5t-28 83.5zM1565 0v1096h166v-1096h-166z" />
250
+ <glyph unicode="&#xfb04;" horiz-adv-x="1909" d="M717 967v75l196 60v61q0 404 353 404q87 0 204 -35l-43 -133q-96 31 -164 31q-94 0 -139 -62.5t-45 -200.5v-71h279v-129h-279v-967h-166v967h-196zM29 967v75l196 60v61q0 404 353 404q87 0 204 -35l-43 -133q-96 31 -164 31q-94 0 -139 -62.5t-45 -200.5v-71h279v-129 h-279v-967h-166v967h-196zM1565 0v1556h166v-1556h-166z" />
251
+ </font>
252
+ </defs></svg>
css/fonts/OpenSans-Regular-webfont.ttf ADDED
Binary file
css/fonts/OpenSans-Regular-webfont.woff ADDED
Binary file
css/fonts/OpenSans-Semibold-webfont.eot ADDED
Binary file
css/fonts/OpenSans-Semibold-webfont.svg ADDED
@@ -0,0 +1,251 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>
5
+ This is a custom SVG webfont generated by Font Squirrel.
6
+ Copyright : Digitized data copyright 2011 Google Corporation
7
+ Foundry : Ascender Corporation
8
+ Foundry URL : httpwwwascendercorpcom
9
+ </metadata>
10
+ <defs>
11
+ <font id="OpenSansSemibold" horiz-adv-x="1169" >
12
+ <font-face units-per-em="2048" ascent="1638" descent="-410" />
13
+ <missing-glyph horiz-adv-x="532" />
14
+ <glyph unicode=" " horiz-adv-x="532" />
15
+ <glyph unicode="&#x09;" horiz-adv-x="532" />
16
+ <glyph unicode="&#xa0;" horiz-adv-x="532" />
17
+ <glyph unicode="!" horiz-adv-x="565" d="M133 125q0 74 39 112.5t111 38.5q71 0 109 -40t38 -111t-38.5 -112.5t-108.5 -41.5q-71 0 -110.5 40t-39.5 114zM145 1462h277l-51 -1018h-174z" />
18
+ <glyph unicode="&#x22;" horiz-adv-x="893" d="M133 1462h232l-41 -528h-150zM528 1462h232l-41 -528h-150z" />
19
+ <glyph unicode="#" horiz-adv-x="1323" d="M47 418v168h283l57 284h-264v168h293l80 422h180l-80 -422h252l80 422h174l-80 -422h252v-168h-285l-55 -284h270v-168h-303l-80 -418h-178l80 418h-248l-80 -418h-174l76 418h-250zM506 586h250l57 284h-250z" />
20
+ <glyph unicode="$" d="M111 168v211q86 -42 201 -70.5t206 -29.5v374l-84 31q-164 63 -239.5 150.5t-75.5 216.5q0 138 107.5 227t291.5 108v168h133v-165q203 -7 385 -82l-73 -183q-157 62 -312 74v-364l76 -29q190 -73 263 -154t73 -198q0 -145 -106 -239t-306 -116v-217h-133v211 q-248 4 -407 76zM354 1053q0 -57 35.5 -95t128.5 -75v311q-80 -12 -122 -49t-42 -92zM651 287q176 27 176 151q0 58 -40.5 95.5t-135.5 72.5v-319z" />
21
+ <glyph unicode="%" horiz-adv-x="1765" d="M84 1026q0 457 319 457q157 0 241.5 -118.5t84.5 -338.5q0 -230 -82.5 -345.5t-243.5 -115.5q-152 0 -235.5 119.5t-83.5 341.5zM279 1024q0 -149 29 -222t95 -73q132 0 132 295t-132 295q-66 0 -95 -73t-29 -222zM379 0l811 1462h194l-811 -1462h-194zM1036 440 q0 457 320 457q154 0 239.5 -118t85.5 -339q0 -230 -83 -345t-242 -115q-152 0 -236 118.5t-84 341.5zM1231 440q0 -149 29.5 -223t95.5 -74q131 0 131 297q0 293 -131 293q-66 0 -95.5 -72t-29.5 -221z" />
22
+ <glyph unicode="&#x26;" horiz-adv-x="1516" d="M96 387q0 131 64 228.5t231 193.5q-95 111 -129.5 187.5t-34.5 158.5q0 152 108.5 240t291.5 88q177 0 278 -85.5t101 -230.5q0 -114 -67.5 -207t-225.5 -186l346 -334q81 107 135 314h242q-70 -284 -224 -463l301 -291h-303l-149 145q-102 -82 -217.5 -123.5 t-255.5 -41.5q-230 0 -361 109t-131 298zM344 403q0 -98 69.5 -159.5t186.5 -61.5q183 0 313 107l-383 377q-106 -68 -146 -127.5t-40 -135.5zM451 1147q0 -63 33.5 -119t93.5 -119q113 64 158.5 119.5t45.5 124.5q0 65 -43.5 104t-115.5 39q-79 0 -125.5 -40.5 t-46.5 -108.5z" />
23
+ <glyph unicode="'" horiz-adv-x="498" d="M133 1462h232l-41 -528h-150z" />
24
+ <glyph unicode="(" horiz-adv-x="649" d="M82 561q0 265 77.5 496t223.5 405h205q-139 -188 -213 -421.5t-74 -477.5t74 -473t211 -414h-203q-147 170 -224 397t-77 488z" />
25
+ <glyph unicode=")" horiz-adv-x="649" d="M61 1462h205q147 -175 224 -406.5t77 -494.5t-77.5 -490t-223.5 -395h-203q138 187 211.5 415t73.5 472q0 245 -74 477.5t-213 421.5z" />
26
+ <glyph unicode="*" horiz-adv-x="1122" d="M74 1065l35 217l376 -108l-41 382h228l-41 -382l385 108l28 -217l-360 -29l236 -311l-199 -107l-166 338l-149 -338l-205 107l231 311z" />
27
+ <glyph unicode="+" d="M96 633v178h398v408h180v-408h399v-178h-399v-406h-180v406h-398z" />
28
+ <glyph unicode="," horiz-adv-x="547" d="M63 -264q69 270 103 502h231l15 -23q-48 -186 -176 -479h-173z" />
29
+ <glyph unicode="-" horiz-adv-x="659" d="M72 449v200h514v-200h-514z" />
30
+ <glyph unicode="." horiz-adv-x="563" d="M133 125q0 73 38 112t110 39q73 0 111 -40.5t38 -110.5q0 -71 -38.5 -112.5t-110.5 -41.5t-110 41t-38 113z" />
31
+ <glyph unicode="/" horiz-adv-x="799" d="M16 0l545 1462h221l-544 -1462h-222z" />
32
+ <glyph unicode="0" d="M88 731q0 387 122.5 570.5t373.5 183.5q245 0 371 -192t126 -562q0 -381 -122.5 -566t-374.5 -185q-244 0 -370 191t-126 560zM326 731q0 -299 61.5 -427t196.5 -128t197.5 130t62.5 425q0 294 -62.5 425.5t-197.5 131.5t-196.5 -129t-61.5 -428z" />
33
+ <glyph unicode="1" d="M154 1124l430 338h196v-1462h-235v944q0 169 8 268q-23 -24 -56.5 -53t-224.5 -184z" />
34
+ <glyph unicode="2" d="M90 0v178l377 379q167 171 221.5 242.5t79.5 134.5t25 135q0 99 -59.5 156t-164.5 57q-84 0 -162.5 -31t-181.5 -112l-127 155q122 103 237 146t245 43q204 0 327 -106.5t123 -286.5q0 -99 -35.5 -188t-109 -183.5t-244.5 -255.5l-254 -246v-10h694v-207h-991z" />
35
+ <glyph unicode="3" d="M86 59v209q93 -46 197 -71t200 -25q170 0 254 63t84 195q0 117 -93 172t-292 55h-127v191h129q350 0 350 242q0 94 -61 145t-180 51q-83 0 -160 -23.5t-182 -91.5l-115 164q201 148 467 148q221 0 345 -95t124 -262q0 -139 -81 -231.5t-228 -124.5v-8q176 -22 264 -109.5 t88 -232.5q0 -211 -149 -325.5t-424 -114.5q-243 0 -410 79z" />
36
+ <glyph unicode="4" d="M39 319v181l668 966h229v-952h197v-195h-197v-319h-229v319h-668zM258 514h449v367q0 196 10 321h-8q-28 -66 -88 -160z" />
37
+ <glyph unicode="5" d="M117 59v213q81 -46 186 -71t195 -25q159 0 242 71t83 208q0 262 -334 262q-47 0 -116 -9.5t-121 -21.5l-105 62l56 714h760v-209h-553l-33 -362q35 6 85.5 14t123.5 8q221 0 350 -117t129 -319q0 -234 -146.5 -365.5t-416.5 -131.5q-245 0 -385 79z" />
38
+ <glyph unicode="6" d="M94 623q0 858 699 858q110 0 186 -17v-196q-76 22 -176 22q-235 0 -353 -126t-128 -404h12q47 81 132 125.5t200 44.5q199 0 310 -122t111 -331q0 -230 -128.5 -363.5t-350.5 -133.5q-157 0 -273 75.5t-178.5 220t-62.5 347.5zM332 508q0 -141 76.5 -237.5t195.5 -96.5 q121 0 186.5 78t65.5 223q0 126 -61.5 198t-184.5 72q-76 0 -140 -32.5t-101 -89t-37 -115.5z" />
39
+ <glyph unicode="7" d="M74 1253v207h1011v-164l-575 -1296h-254l578 1253h-760z" />
40
+ <glyph unicode="8" d="M88 371q0 122 68.5 219.5t224.5 173.5q-134 80 -191 169t-57 200q0 159 125 253.5t326 94.5q208 0 329 -95.5t121 -255.5q0 -225 -270 -358q172 -86 244.5 -181t72.5 -212q0 -181 -133 -290t-360 -109q-238 0 -369 102t-131 289zM313 379q0 -104 73 -161.5t198 -57.5 q129 0 200.5 59.5t71.5 161.5q0 81 -66 148t-200 124l-29 13q-132 -58 -190 -127.5t-58 -159.5zM360 1116q0 -52 22 -93t64 -74.5t142 -80.5q120 53 169.5 111.5t49.5 136.5q0 85 -61.5 134.5t-163.5 49.5q-100 0 -161 -49.5t-61 -134.5z" />
41
+ <glyph unicode="9" d="M86 981q0 229 128.5 364.5t350.5 135.5q156 0 272 -76t179 -220.5t63 -346.5q0 -432 -174 -645t-524 -213q-133 0 -191 16v197q89 -25 179 -25q238 0 355 128t128 402h-12q-59 -90 -142.5 -130t-195.5 -40q-194 0 -305 121t-111 332zM317 983q0 -125 60.5 -196.5 t183.5 -71.5q119 0 200 71t81 166q0 89 -34.5 166.5t-96.5 122.5t-142 45q-122 0 -187 -79.5t-65 -223.5z" />
42
+ <glyph unicode=":" horiz-adv-x="563" d="M133 125q0 73 38 112t110 39q73 0 111 -40.5t38 -110.5q0 -71 -38.5 -112.5t-110.5 -41.5t-110 41t-38 113zM133 979q0 151 148 151q75 0 112 -40t37 -111t-38.5 -112.5t-110.5 -41.5t-110 41t-38 113z" />
43
+ <glyph unicode=";" horiz-adv-x="569" d="M63 -264q69 270 103 502h231l15 -23q-48 -186 -176 -479h-173zM131 979q0 151 148 151q75 0 112 -40t37 -111t-38.5 -112.5t-110.5 -41.5t-110 41t-38 113z" />
44
+ <glyph unicode="&#x3c;" d="M96 651v121l977 488v-195l-733 -344l733 -303v-197z" />
45
+ <glyph unicode="=" d="M102 432v178h963v-178h-963zM102 831v179h963v-179h-963z" />
46
+ <glyph unicode="&#x3e;" d="M96 221v197l733 303l-733 344v195l977 -488v-121z" />
47
+ <glyph unicode="?" horiz-adv-x="928" d="M16 1370q203 113 435 113q196 0 311 -96t115 -265q0 -75 -22 -133.5t-66.5 -111.5t-153.5 -138q-93 -73 -124.5 -121t-31.5 -129v-45h-196v64q0 110 40 183t140 151q119 94 153.5 146t34.5 124q0 84 -56 129t-161 45q-95 0 -176 -27t-158 -65zM242 125q0 151 147 151 q72 0 110 -39.5t38 -111.5q0 -71 -38.5 -112.5t-109.5 -41.5t-109 40.5t-38 113.5z" />
48
+ <glyph unicode="@" horiz-adv-x="1839" d="M111 586q0 261 112 464.5t310.5 311.5t449.5 108q217 0 386.5 -90t263 -256.5t93.5 -384.5q0 -143 -45 -261.5t-126.5 -184.5t-188.5 -66q-79 0 -137 42t-78 114h-12q-49 -78 -121 -117t-162 -39q-163 0 -256.5 105t-93.5 284q0 206 124 334.5t333 128.5 q76 0 168.5 -13.5t164.5 -37.5l-22 -465v-24q0 -160 104 -160q79 0 125.5 102t46.5 260q0 171 -70 300.5t-199 199.5t-296 70q-213 0 -370.5 -88t-240.5 -251.5t-83 -379.5q0 -290 155 -446t445 -156q221 0 461 90v-164q-210 -86 -457 -86q-370 0 -577 199.5t-207 556.5z M698 612q0 -233 183 -233q193 0 211 293l12 239q-63 17 -135 17q-128 0 -199.5 -85t-71.5 -231z" />
49
+ <glyph unicode="A" horiz-adv-x="1354" d="M0 0l547 1468h260l547 -1468h-254l-146 406h-559l-143 -406h-252zM465 612h426l-137 398q-15 40 -41.5 126t-36.5 126q-27 -123 -79 -269z" />
50
+ <glyph unicode="B" horiz-adv-x="1352" d="M193 0v1462h434q302 0 436.5 -88t134.5 -278q0 -128 -66 -213t-190 -107v-10q154 -29 226.5 -114.5t72.5 -231.5q0 -197 -137.5 -308.5t-382.5 -111.5h-528zM432 201h254q150 0 226.5 57.5t76.5 181.5q0 114 -78 169t-237 55h-242v-463zM432 858h230q150 0 219 47.5 t69 161.5q0 103 -74.5 149t-236.5 46h-207v-404z" />
51
+ <glyph unicode="C" horiz-adv-x="1298" d="M121 731q0 228 83.5 399t241.5 262t371 91q224 0 414 -94l-86 -199q-74 35 -156.5 61.5t-173.5 26.5q-206 0 -324 -146t-118 -403q0 -269 113.5 -407t328.5 -138q93 0 180 18.5t181 47.5v-205q-172 -65 -390 -65q-321 0 -493 194.5t-172 556.5z" />
52
+ <glyph unicode="D" horiz-adv-x="1503" d="M193 0v1462h452q349 0 543 -188t194 -529q0 -362 -201 -553.5t-579 -191.5h-409zM432 201h170q528 0 528 536q0 525 -491 525h-207v-1061z" />
53
+ <glyph unicode="E" horiz-adv-x="1143" d="M193 0v1462h827v-202h-588v-398h551v-200h-551v-459h588v-203h-827z" />
54
+ <glyph unicode="F" horiz-adv-x="1090" d="M193 0v1462h825v-202h-588v-457h551v-203h-551v-600h-237z" />
55
+ <glyph unicode="G" horiz-adv-x="1487" d="M121 731q0 353 203 552.5t559 199.5q229 0 434 -88l-84 -199q-178 82 -356 82q-234 0 -370 -147t-136 -402q0 -268 122.5 -407.5t352.5 -139.5q116 0 248 29v377h-303v205h538v-734q-132 -43 -253.5 -61t-262.5 -18q-332 0 -512 196.5t-180 554.5z" />
56
+ <glyph unicode="H" horiz-adv-x="1538" d="M193 0v1462h239v-598h674v598h240v-1462h-240v659h-674v-659h-239z" />
57
+ <glyph unicode="I" horiz-adv-x="625" d="M193 0v1462h239v-1462h-239z" />
58
+ <glyph unicode="J" horiz-adv-x="612" d="M-156 -182q84 -21 146 -21q196 0 196 248v1417h240v-1409q0 -224 -106.5 -342.5t-311.5 -118.5q-98 0 -164 25v201z" />
59
+ <glyph unicode="K" horiz-adv-x="1309" d="M193 0v1462h239v-698q98 120 195 231l395 467h272q-383 -450 -549 -641l564 -821h-277l-459 662l-141 -115v-547h-239z" />
60
+ <glyph unicode="L" horiz-adv-x="1110" d="M193 0v1462h239v-1257h619v-205h-858z" />
61
+ <glyph unicode="M" horiz-adv-x="1890" d="M193 0v1462h337l406 -1163h6l418 1163h338v-1462h-230v723q0 109 5.5 284t9.5 212h-8l-439 -1219h-211l-424 1221h-8q17 -272 17 -510v-711h-217z" />
62
+ <glyph unicode="N" horiz-adv-x="1604" d="M193 0v1462h290l717 -1159h6q-2 23 -8 167.5t-6 225.5v766h219v-1462h-293l-719 1165h-8l5 -65q14 -186 14 -340v-760h-217z" />
63
+ <glyph unicode="O" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q326 0 504 -197t178 -555q0 -357 -178.5 -555t-505.5 -198q-331 0 -508.5 196.5t-177.5 558.5zM375 733q0 -270 109 -409.5t323 -139.5q213 0 321.5 138t108.5 411q0 269 -107.5 408t-320.5 139q-215 0 -324.5 -139t-109.5 -408z" />
64
+ <glyph unicode="P" horiz-adv-x="1260" d="M193 0v1462h421q274 0 410.5 -112t136.5 -330q0 -229 -150 -351t-427 -122h-152v-547h-239zM432 748h127q184 0 270 64t86 200q0 126 -77 188t-240 62h-166v-514z" />
65
+ <glyph unicode="Q" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q326 0 504 -197t178 -555q0 -266 -101.5 -448t-295.5 -256l350 -377h-322l-276 328h-39q-331 0 -508.5 196.5t-177.5 558.5zM375 733q0 -270 109 -409.5t323 -139.5q213 0 321.5 138t108.5 411q0 269 -107.5 408t-320.5 139 q-215 0 -324.5 -139t-109.5 -408z" />
66
+ <glyph unicode="R" horiz-adv-x="1309" d="M193 0v1462h413q283 0 419 -106t136 -320q0 -273 -284 -389l413 -647h-272l-350 584h-236v-584h-239zM432 782h166q167 0 242 62t75 184q0 124 -81 178t-244 54h-158v-478z" />
67
+ <glyph unicode="S" horiz-adv-x="1126" d="M100 57v226q100 -47 212.5 -74t209.5 -27q142 0 209.5 54t67.5 145q0 82 -62 139t-256 135q-200 81 -282 185t-82 250q0 183 130 288t349 105q210 0 418 -92l-76 -195q-195 82 -348 82q-116 0 -176 -50.5t-60 -133.5q0 -57 24 -97.5t79 -76.5t198 -95q161 -67 236 -125 t110 -131t35 -172q0 -195 -141 -306t-389 -111t-406 77z" />
68
+ <glyph unicode="T" horiz-adv-x="1159" d="M29 1257v205h1099v-205h-430v-1257h-239v1257h-430z" />
69
+ <glyph unicode="U" horiz-adv-x="1520" d="M180 520v942h240v-925q0 -181 84 -267t258 -86q338 0 338 355v923h239v-946q0 -162 -69.5 -283.5t-201 -187t-314.5 -65.5q-272 0 -423 144t-151 396z" />
70
+ <glyph unicode="V" horiz-adv-x="1274" d="M0 1462h246l305 -909q24 -65 51 -167.5t35 -152.5q13 76 40 176t44 148l305 905h248l-512 -1462h-252z" />
71
+ <glyph unicode="W" horiz-adv-x="1937" d="M12 1462h244l209 -852q49 -205 70 -362q11 85 33 190t40 170l238 854h237l244 -858q35 -119 74 -356q15 143 72 364l208 850h242l-381 -1462h-260l-248 872q-16 57 -40 164.5t-29 149.5q-10 -64 -32.5 -166t-37.5 -152l-242 -868h-260l-189 732z" />
72
+ <glyph unicode="X" horiz-adv-x="1274" d="M4 0l485 758l-454 704h266l338 -553l338 553h258l-457 -708l492 -754h-275l-366 598l-369 -598h-256z" />
73
+ <glyph unicode="Y" horiz-adv-x="1212" d="M0 1462h260l346 -667l346 667h260l-487 -895v-567h-240v559z" />
74
+ <glyph unicode="Z" horiz-adv-x="1178" d="M66 0v166l737 1091h-717v205h1006v-168l-740 -1089h760v-205h-1046z" />
75
+ <glyph unicode="[" horiz-adv-x="676" d="M154 -324v1786h471v-176h-256v-1433h256v-177h-471z" />
76
+ <glyph unicode="\" horiz-adv-x="799" d="M16 1462h222l544 -1462h-221z" />
77
+ <glyph unicode="]" horiz-adv-x="676" d="M51 -147h256v1433h-256v176h469v-1786h-469v177z" />
78
+ <glyph unicode="^" horiz-adv-x="1100" d="M29 535l436 935h121l485 -935h-194l-349 694l-307 -694h-192z" />
79
+ <glyph unicode="_" horiz-adv-x="879" d="M-4 -184h887v-135h-887v135z" />
80
+ <glyph unicode="`" horiz-adv-x="1212" d="M362 1548v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
81
+ <glyph unicode="a" horiz-adv-x="1188" d="M90 317q0 171 127 258t387 95l191 6v59q0 106 -49.5 158.5t-153.5 52.5q-85 0 -163 -25t-150 -59l-76 168q90 47 197 71.5t202 24.5q211 0 318.5 -92t107.5 -289v-745h-168l-47 154h-8q-80 -101 -161 -137.5t-208 -36.5q-163 0 -254.5 88t-91.5 249zM334 315 q0 -74 44 -114.5t132 -40.5q128 0 205.5 71.5t77.5 200.5v96l-142 -6q-166 -6 -241.5 -55.5t-75.5 -151.5z" />
82
+ <glyph unicode="b" horiz-adv-x="1276" d="M168 0v1556h235v-370q0 -41 -4 -122t-6 -103h10q112 165 330 165q207 0 322.5 -150t115.5 -421q0 -272 -117 -423.5t-325 -151.5q-210 0 -326 151h-16l-43 -131h-176zM403 555q0 -202 64 -292.5t209 -90.5q125 0 189.5 99t64.5 286q0 377 -258 377q-142 0 -204.5 -83.5 t-64.5 -279.5v-16z" />
83
+ <glyph unicode="c" horiz-adv-x="1014" d="M102 547q0 279 136.5 429t394.5 150q175 0 315 -65l-71 -189q-149 58 -246 58q-287 0 -287 -381q0 -186 71.5 -279.5t209.5 -93.5q157 0 297 78v-205q-63 -37 -134.5 -53t-173.5 -16q-251 0 -381.5 146.5t-130.5 420.5z" />
84
+ <glyph unicode="d" horiz-adv-x="1276" d="M102 551q0 272 117.5 423.5t325.5 151.5q218 0 332 -161h12q-17 119 -17 188v403h236v-1556h-184l-41 145h-11q-113 -165 -331 -165q-207 0 -323 150t-116 421zM344 547q0 -184 65 -280.5t195 -96.5q145 0 211 81.5t68 264.5v33q0 209 -68 297t-213 88 q-124 0 -191 -100.5t-67 -286.5z" />
85
+ <glyph unicode="e" horiz-adv-x="1180" d="M102 545q0 271 135 426t371 155q219 0 346 -133t127 -366v-127h-737q5 -161 87 -247.5t231 -86.5q98 0 182.5 18.5t181.5 61.5v-191q-86 -41 -174 -58t-201 -17q-258 0 -403.5 150.5t-145.5 414.5zM348 670h502q-2 137 -66 207.5t-176 70.5t-179.5 -71t-80.5 -207z" />
86
+ <glyph unicode="f" horiz-adv-x="743" d="M35 928v110l182 72v72q0 196 92 290.5t281 94.5q124 0 244 -41l-62 -178q-87 28 -166 28q-80 0 -116.5 -49.5t-36.5 -148.5v-72h270v-178h-270v-928h-236v928h-182z" />
87
+ <glyph unicode="g" horiz-adv-x="1139" d="M23 -184q0 102 64.5 171.5t180.5 96.5q-47 20 -77.5 64.5t-30.5 93.5q0 62 35 105t104 85q-86 37 -139.5 120.5t-53.5 195.5q0 180 113.5 279t323.5 99q47 0 98.5 -6.5t77.5 -13.5h383v-129l-189 -35q26 -35 43 -86t17 -108q0 -171 -118 -269t-325 -98q-53 0 -96 8 q-76 -47 -76 -110q0 -38 35.5 -57t130.5 -19h193q183 0 278 -78t95 -225q0 -188 -155 -290t-448 -102q-226 0 -345 80t-119 228zM233 -172q0 -76 68.5 -117t192.5 -41q192 0 286 55t94 146q0 72 -51.5 102.5t-191.5 30.5h-178q-101 0 -160.5 -47.5t-59.5 -128.5zM334 748 q0 -104 53.5 -160t153.5 -56q204 0 204 218q0 108 -50.5 166.5t-153.5 58.5q-102 0 -154.5 -58t-52.5 -169z" />
88
+ <glyph unicode="h" horiz-adv-x="1300" d="M168 0v1556h235v-395q0 -95 -12 -203h15q48 80 133.5 124t199.5 44q402 0 402 -405v-721h-236v680q0 128 -51.5 191t-163.5 63q-148 0 -217.5 -88.5t-69.5 -296.5v-549h-235z" />
89
+ <glyph unicode="i" horiz-adv-x="571" d="M154 1399q0 63 34.5 97t98.5 34q62 0 96.5 -34t34.5 -97q0 -60 -34.5 -94.5t-96.5 -34.5q-64 0 -98.5 34.5t-34.5 94.5zM168 0v1106h235v-1106h-235z" />
90
+ <glyph unicode="j" horiz-adv-x="571" d="M-121 -281q68 -18 139 -18q150 0 150 170v1235h235v-1251q0 -171 -89.5 -259t-258.5 -88q-106 0 -176 25v186zM154 1399q0 63 34.5 97t98.5 34q62 0 96.5 -34t34.5 -97q0 -60 -34.5 -94.5t-96.5 -34.5q-64 0 -98.5 34.5t-34.5 94.5z" />
91
+ <glyph unicode="k" horiz-adv-x="1171" d="M168 0v1556h233v-759l-12 -213h6l133 166l334 356h271l-445 -475l473 -631h-276l-355 485l-129 -106v-379h-233z" />
92
+ <glyph unicode="l" horiz-adv-x="571" d="M168 0v1556h235v-1556h-235z" />
93
+ <glyph unicode="m" horiz-adv-x="1958" d="M168 0v1106h184l33 -145h12q46 79 133.5 122t192.5 43q255 0 338 -174h16q49 82 138 128t204 46q198 0 288.5 -100t90.5 -305v-721h-235v682q0 127 -48.5 189.5t-150.5 62.5q-137 0 -200.5 -85.5t-63.5 -262.5v-586h-236v682q0 127 -48 189.5t-150 62.5 q-136 0 -199.5 -88.5t-63.5 -294.5v-551h-235z" />
94
+ <glyph unicode="n" horiz-adv-x="1300" d="M168 0v1106h184l33 -145h12q50 79 142 122t204 43q398 0 398 -405v-721h-236v680q0 128 -51.5 191t-163.5 63q-149 0 -218 -88t-69 -295v-551h-235z" />
95
+ <glyph unicode="o" horiz-adv-x="1251" d="M102 555q0 269 138 420t389 151q240 0 380 -154.5t140 -416.5q0 -271 -139 -423t-387 -152q-155 0 -274 70t-183 201t-64 304zM344 555q0 -383 283 -383q280 0 280 383q0 379 -282 379q-148 0 -214.5 -98t-66.5 -281z" />
96
+ <glyph unicode="p" horiz-adv-x="1276" d="M168 -492v1598h190q8 -31 33 -148h12q110 168 330 168q207 0 322.5 -150t115.5 -421t-117.5 -423t-324.5 -152q-210 0 -326 151h-14q14 -140 14 -170v-453h-235zM403 555q0 -202 64 -292.5t209 -90.5q122 0 188 100t66 285q0 186 -65.5 281.5t-192.5 95.5 q-140 0 -204.5 -82t-64.5 -262v-35z" />
97
+ <glyph unicode="q" horiz-adv-x="1276" d="M102 551q0 270 118 422.5t325 152.5q104 0 186.5 -38.5t147.5 -126.5h8l26 145h195v-1598h-236v469q0 44 4 93t7 75h-13q-104 -165 -331 -165q-205 0 -321 150.5t-116 420.5zM344 547q0 -379 262 -379q148 0 212.5 85.5t64.5 258.5v37q0 205 -66.5 295t-214.5 90 q-126 0 -192 -100t-66 -287z" />
98
+ <glyph unicode="r" horiz-adv-x="883" d="M168 0v1106h184l31 -195h12q55 99 143.5 157t190.5 58q71 0 117 -10l-23 -219q-50 12 -104 12q-141 0 -228.5 -92t-87.5 -239v-578h-235z" />
99
+ <glyph unicode="s" horiz-adv-x="997" d="M98 827q0 142 114.5 220.5t311.5 78.5q195 0 369 -79l-76 -177q-179 74 -301 74q-186 0 -186 -106q0 -52 48.5 -88t211.5 -99q137 -53 199 -97t92 -101.5t30 -137.5q0 -162 -118 -248.5t-338 -86.5q-221 0 -355 67v203q195 -90 363 -90q217 0 217 131q0 42 -24 70t-79 58 t-153 68q-191 74 -258.5 148t-67.5 192z" />
100
+ <glyph unicode="t" horiz-adv-x="805" d="M39 928v104l162 86l80 234h145v-246h315v-178h-315v-592q0 -85 42.5 -125.5t111.5 -40.5q86 0 172 27v-177q-39 -17 -100.5 -28.5t-127.5 -11.5q-334 0 -334 352v596h-151z" />
101
+ <glyph unicode="u" horiz-adv-x="1300" d="M158 383v723h237v-682q0 -127 52 -190.5t163 -63.5q148 0 217.5 88.5t69.5 296.5v551h236v-1106h-185l-33 145h-12q-49 -77 -139.5 -121t-206.5 -44q-201 0 -300 100t-99 303z" />
102
+ <glyph unicode="v" horiz-adv-x="1096" d="M0 1106h248l225 -643q58 -162 70 -262h8q9 72 70 262l225 643h250l-422 -1106h-254z" />
103
+ <glyph unicode="w" horiz-adv-x="1673" d="M20 1106h240l141 -545q48 -202 68 -346h6q10 73 30.5 167.5t35.5 141.5l168 582h258l163 -582q15 -49 37.5 -150t26.5 -157h8q15 123 70 344l143 545h236l-312 -1106h-264l-143 516q-26 82 -94 381h-9q-58 -270 -92 -383l-147 -514h-260z" />
104
+ <glyph unicode="x" horiz-adv-x="1128" d="M25 0l389 565l-371 541h268l252 -387l254 387h266l-372 -541l391 -565h-266l-273 414l-272 -414h-266z" />
105
+ <glyph unicode="y" horiz-adv-x="1098" d="M0 1106h256l225 -627q51 -134 68 -252h8q9 55 33 133.5t254 745.5h254l-473 -1253q-129 -345 -430 -345q-78 0 -152 17v186q53 -12 121 -12q170 0 239 197l41 104z" />
106
+ <glyph unicode="z" horiz-adv-x="979" d="M68 0v145l559 781h-525v180h789v-164l-547 -762h563v-180h-839z" />
107
+ <glyph unicode="{" horiz-adv-x="791" d="M45 473v191q135 0 200.5 45.5t65.5 138.5v311q0 156 108.5 229.5t325.5 73.5v-182q-114 -5 -165.5 -46.5t-51.5 -123.5v-297q0 -199 -229 -238v-12q229 -36 229 -237v-299q0 -82 51 -124t166 -44v-183q-231 2 -332.5 78.5t-101.5 247.5v285q0 186 -266 186z" />
108
+ <glyph unicode="|" horiz-adv-x="1128" d="M473 -481v2033h180v-2033h-180z" />
109
+ <glyph unicode="}" horiz-adv-x="760" d="M45 -141q95 1 148 38.5t53 129.5v262q0 121 53 187t176 87v12q-229 39 -229 238v297q0 82 -45.5 123.5t-155.5 46.5v182q223 0 320.5 -76.5t97.5 -250.5v-287q0 -100 63.5 -142t188.5 -42v-191q-123 0 -187.5 -42.5t-64.5 -143.5v-307q0 -156 -99.5 -229t-318.5 -75v183z " />
110
+ <glyph unicode="~" d="M96 571v191q99 108 250 108q66 0 125 -13t147 -50q131 -55 220 -55q52 0 114.5 31t120.5 89v-190q-105 -111 -250 -111q-65 0 -127.5 15.5t-146.5 50.5q-127 55 -219 55q-50 0 -111.5 -30t-122.5 -91z" />
111
+ <glyph unicode="&#xa1;" horiz-adv-x="565" d="M133 965q0 69 38 111t110 42t110.5 -40.5t38.5 -112.5q0 -74 -37.5 -113t-111.5 -39q-72 0 -110 39.5t-38 112.5zM141 -371l52 1016h174l51 -1016h-277z" />
112
+ <glyph unicode="&#xa2;" d="M166 741q0 254 100.5 397t306.5 175v170h158v-162q152 -5 283 -66l-70 -188q-146 59 -250 59q-146 0 -216 -95t-70 -288q0 -194 72 -283t210 -89q75 0 142.5 15t154.5 52v-200q-119 -59 -258 -64v-194h-156v200q-207 31 -307 171t-100 390z" />
113
+ <glyph unicode="&#xa3;" d="M72 0v195q98 30 145 96t47 178v184h-188v172h188v256q0 188 113.5 294t312.5 106q194 0 375 -82l-76 -182q-162 71 -284 71q-205 0 -205 -219v-244h397v-172h-397v-182q0 -91 -33 -155t-113 -109h756v-207h-1038z" />
114
+ <glyph unicode="&#xa4;" d="M117 1069l121 119l131 -129q100 63 215 63t213 -65l133 131l121 -117l-131 -133q63 -100 63 -215q0 -119 -63 -217l129 -129l-119 -119l-133 129q-99 -61 -213 -61q-126 0 -215 61l-131 -127l-119 119l131 129q-64 99 -64 215q0 109 64 213zM354 723q0 -98 68 -164.5 t162 -66.5q97 0 165 66.5t68 164.5q0 97 -68 165t-165 68q-93 0 -161.5 -68t-68.5 -165z" />
115
+ <glyph unicode="&#xa5;" d="M18 1462h246l320 -665l321 665h244l-399 -760h227v-151h-281v-154h281v-153h-281v-244h-225v244h-283v153h283v154h-283v151h224z" />
116
+ <glyph unicode="&#xa6;" horiz-adv-x="1128" d="M473 315h180v-796h-180v796zM473 758v794h180v-794h-180z" />
117
+ <glyph unicode="&#xa7;" horiz-adv-x="1026" d="M115 57v179q77 -40 173 -65.5t177 -25.5q235 0 235 131q0 43 -21 70t-71 54t-147 65q-141 55 -206 101.5t-95.5 105t-30.5 135.5q0 80 38.5 145.5t111.5 108.5q-146 83 -146 235q0 129 109.5 202t294.5 73q91 0 174 -17t182 -59l-68 -162q-116 50 -176 63t-121 13 q-194 0 -194 -109q0 -54 55 -93.5t191 -90.5q175 -68 250 -146.5t75 -187.5q0 -177 -139 -266q139 -80 139 -223q0 -142 -118 -224.5t-326 -82.5q-212 0 -346 71zM313 827q0 -45 24 -80t78.5 -69t194.5 -90q109 65 109 168q0 75 -62 126.5t-221 104.5q-54 -16 -88.5 -61.5 t-34.5 -98.5z" />
118
+ <glyph unicode="&#xa8;" horiz-adv-x="1212" d="M293 1399q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM686 1399q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
119
+ <glyph unicode="&#xa9;" horiz-adv-x="1704" d="M100 731q0 200 100 375t275 276t377 101q200 0 375 -100t276 -275t101 -377q0 -197 -97 -370t-272 -277t-383 -104q-207 0 -382 103.5t-272.5 276.5t-97.5 371zM223 731q0 -170 84.5 -315.5t230.5 -229.5t314 -84q170 0 316 85.5t229.5 230t83.5 313.5q0 168 -84.5 314.5 t-231 230.5t-313.5 84q-168 0 -312.5 -83t-230.5 -229t-86 -317zM471 731q0 214 110 337.5t306 123.5q138 0 274 -70l-65 -143q-106 55 -203 55q-111 0 -171 -80.5t-60 -222.5q0 -147 54 -226t177 -79q55 0 118 15t109 36v-158q-115 -51 -235 -51q-197 0 -305.5 120.5 t-108.5 342.5z" />
120
+ <glyph unicode="&#xaa;" horiz-adv-x="754" d="M57 981q0 104 84 159.5t252 61.5l107 4q0 72 -34.5 108t-103.5 36q-90 0 -210 -56l-54 115q144 70 285 70q138 0 207 -62.5t69 -187.5v-447h-112l-29 97q-46 -55 -105 -82t-130 -27q-113 0 -169.5 52.5t-56.5 158.5zM221 983q0 -88 96 -88q91 0 137 41t46 123v43l-99 -4 q-71 -2 -125.5 -34t-54.5 -81z" />
121
+ <glyph unicode="&#xab;" horiz-adv-x="1139" d="M82 535v26l356 432l168 -94l-282 -350l282 -348l-168 -97zM532 535v26l357 432l168 -94l-283 -350l283 -348l-168 -97z" />
122
+ <glyph unicode="&#xac;" d="M96 633v178h977v-555h-178v377h-799z" />
123
+ <glyph unicode="&#xad;" horiz-adv-x="659" d="M72 449v200h514v-200h-514z" />
124
+ <glyph unicode="&#xae;" horiz-adv-x="1704" d="M100 731q0 200 100 375t275 276t377 101q200 0 375 -100t276 -275t101 -377q0 -197 -97 -370t-272 -277t-383 -104q-207 0 -382 103.5t-272.5 276.5t-97.5 371zM223 731q0 -170 84.5 -315.5t230.5 -229.5t314 -84q170 0 316 85.5t229.5 230t83.5 313.5q0 168 -84.5 314.5 t-231 230.5t-313.5 84q-168 0 -312.5 -83t-230.5 -229t-86 -317zM559 279v903h262q174 0 255 -68t81 -205q0 -171 -153 -233l237 -397h-211l-192 346h-90v-346h-189zM748 770h69q74 0 112 35t38 100q0 72 -36.5 100.5t-115.5 28.5h-67v-264z" />
125
+ <glyph unicode="&#xaf;" horiz-adv-x="1024" d="M-6 1556v164h1036v-164h-1036z" />
126
+ <glyph unicode="&#xb0;" horiz-adv-x="877" d="M109 1153q0 135 95 232.5t234 97.5q138 0 233 -96t95 -234q0 -139 -96 -233.5t-232 -94.5q-88 0 -164.5 43.5t-120.5 119.5t-44 165zM262 1153q0 -70 51 -122t125 -52t125 51.5t51 122.5q0 76 -52 127t-124 51t-124 -52t-52 -126z" />
127
+ <glyph unicode="&#xb1;" d="M96 0v178h977v-178h-977zM96 664v178h398v407h180v-407h399v-178h-399v-406h-180v406h-398z" />
128
+ <glyph unicode="&#xb2;" horiz-adv-x="743" d="M51 586v135l230 225q117 112 149.5 165t32.5 112q0 52 -32 79t-83 27q-93 0 -201 -88l-94 121q139 119 309 119q136 0 211.5 -66t75.5 -180q0 -83 -46 -158.5t-183 -202.5l-139 -129h397v-159h-627z" />
129
+ <glyph unicode="&#xb3;" horiz-adv-x="743" d="M45 631v157q145 -79 270 -79q179 0 179 135q0 125 -199 125h-115v133h105q184 0 184 129q0 52 -34.5 80t-90.5 28q-57 0 -105.5 -20t-105.5 -57l-84 114q61 46 134 75.5t171 29.5q134 0 212.5 -61.5t78.5 -168.5q0 -75 -40.5 -122.5t-119.5 -86.5q94 -21 141.5 -76 t47.5 -132q0 -127 -93 -196t-266 -69q-148 0 -270 62z" />
130
+ <glyph unicode="&#xb4;" horiz-adv-x="1212" d="M362 1241v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
131
+ <glyph unicode="&#xb5;" horiz-adv-x="1309" d="M168 -492v1598h235v-684q0 -252 218 -252q146 0 215 88.5t69 296.5v551h236v-1106h-183l-34 147h-13q-48 -83 -119.5 -125t-175.5 -42q-140 0 -219 90h-4q3 -28 6.5 -117t3.5 -125v-320h-235z" />
132
+ <glyph unicode="&#xb6;" horiz-adv-x="1341" d="M113 1042q0 260 109 387t341 127h580v-1816h-137v1663h-191v-1663h-137v819q-62 -18 -146 -18q-216 0 -317.5 125t-101.5 376z" />
133
+ <glyph unicode="&#xb7;" horiz-adv-x="563" d="M133 723q0 73 38 112t110 39q73 0 111 -40.5t38 -110.5q0 -71 -38.5 -112.5t-110.5 -41.5t-110 41t-38 113z" />
134
+ <glyph unicode="&#xb8;" horiz-adv-x="442" d="M0 -340q54 -14 123 -14q54 0 85.5 16.5t31.5 61.5q0 85 -179 110l84 166h152l-41 -88q80 -21 125 -68.5t45 -113.5q0 -222 -305 -222q-66 0 -121 15v137z" />
135
+ <glyph unicode="&#xb9;" horiz-adv-x="743" d="M84 1253l281 209h167v-876h-186v512l3 103l5 91q-17 -18 -40.5 -40t-141.5 -111z" />
136
+ <glyph unicode="&#xba;" horiz-adv-x="780" d="M61 1124q0 169 88.5 262t241.5 93q152 0 240 -94.5t88 -260.5q0 -164 -87.5 -259t-244.5 -95q-150 0 -238 95.5t-88 258.5zM223 1124q0 -111 39 -166t127 -55t127 55t39 166q0 113 -39 167.5t-127 54.5t-127 -54.5t-39 -167.5z" />
137
+ <glyph unicode="&#xbb;" horiz-adv-x="1139" d="M80 201l282 348l-282 350l168 94l358 -432v-26l-358 -431zM530 201l283 348l-283 350l168 94l359 -432v-26l-359 -431z" />
138
+ <glyph unicode="&#xbc;" horiz-adv-x="1700" d="M285 0l858 1462h190l-856 -1462h-192zM60 1253l281 209h167v-876h-186v512l3 103l5 91q-17 -18 -40.5 -40t-141.5 -111zM876 177v127l396 579h188v-563h125v-143h-125v-176h-192v176h-392zM1038 320h230v178q0 97 6 197q-52 -104 -88 -158z" />
139
+ <glyph unicode="&#xbd;" horiz-adv-x="1700" d="M250 0l858 1462h190l-856 -1462h-192zM46 1253l281 209h167v-876h-186v512l3 103l5 91q-17 -18 -40.5 -40t-141.5 -111zM981 1v135l230 225q117 112 149.5 165t32.5 112q0 52 -32 79t-83 27q-93 0 -201 -88l-94 121q139 119 309 119q136 0 211.5 -66t75.5 -180 q0 -83 -46 -158.5t-183 -202.5l-139 -129h397v-159h-627z" />
140
+ <glyph unicode="&#xbe;" horiz-adv-x="1700" d="M367 0l858 1462h190l-856 -1462h-192zM931 177v127l396 579h188v-563h125v-143h-125v-176h-192v176h-392zM1093 320h230v178q0 97 6 197q-52 -104 -88 -158zM55 631v157q145 -79 270 -79q179 0 179 135q0 125 -199 125h-115v133h105q184 0 184 129q0 52 -34.5 80 t-90.5 28q-57 0 -105.5 -20t-105.5 -57l-84 114q61 46 134 75.5t171 29.5q134 0 212.5 -61.5t78.5 -168.5q0 -75 -40.5 -122.5t-119.5 -86.5q94 -21 141.5 -76t47.5 -132q0 -127 -93 -196t-266 -69q-148 0 -270 62z" />
141
+ <glyph unicode="&#xbf;" horiz-adv-x="928" d="M55 -33q0 73 21 130t64 109t157 142q94 76 125 124.5t31 127.5v45h198v-63q0 -106 -41 -181t-143 -155q-124 -98 -155 -147t-31 -124q0 -78 54 -125t161 -47q90 0 174 27.5t166 65.5l82 -179q-220 -110 -424 -110q-207 0 -323 95.5t-116 264.5zM395 965q0 69 38 111 t110 42t110.5 -40.5t38.5 -112.5q0 -74 -37.5 -113t-111.5 -39q-72 0 -110 39.5t-38 112.5z" />
142
+ <glyph unicode="&#xc0;" horiz-adv-x="1354" d="M0 0l547 1468h260l547 -1468h-254l-146 406h-559l-143 -406h-252zM465 612h426l-137 398q-15 40 -41.5 126t-36.5 126q-27 -123 -79 -269zM334 1886v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
143
+ <glyph unicode="&#xc1;" horiz-adv-x="1354" d="M0 0l547 1468h260l547 -1468h-254l-146 406h-559l-143 -406h-252zM465 612h426l-137 398q-15 40 -41.5 126t-36.5 126q-27 -123 -79 -269zM532 1579v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
144
+ <glyph unicode="&#xc2;" horiz-adv-x="1354" d="M0 0l547 1468h260l547 -1468h-254l-146 406h-559l-143 -406h-252zM465 612h426l-137 398q-15 40 -41.5 126t-36.5 126q-27 -123 -79 -269zM286 1579v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
145
+ <glyph unicode="&#xc3;" horiz-adv-x="1354" d="M0 0l547 1468h260l547 -1468h-254l-146 406h-559l-143 -406h-252zM465 612h426l-137 398q-15 40 -41.5 126t-36.5 126q-27 -123 -79 -269zM281 1577q12 139 77.5 212t167.5 73q43 0 84 -17.5t80 -39t75.5 -39t70.5 -17.5q79 0 106 115h125q-12 -134 -77 -209.5 t-169 -75.5q-42 0 -82.5 17.5t-79.5 39t-76 39t-71 17.5q-81 0 -109 -115h-122z" />
146
+ <glyph unicode="&#xc4;" horiz-adv-x="1354" d="M0 0l547 1468h260l547 -1468h-254l-146 406h-559l-143 -406h-252zM465 612h426l-137 398q-15 40 -41.5 126t-36.5 126q-27 -123 -79 -269zM363 1737q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM756 1737 q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
147
+ <glyph unicode="&#xc5;" horiz-adv-x="1354" d="M0 0l547 1468h260l547 -1468h-254l-146 406h-559l-143 -406h-252zM465 612h426l-137 398q-15 40 -41.5 126t-36.5 126q-27 -123 -79 -269zM438 1575q0 101 63.5 163.5t172.5 62.5q104 0 171.5 -62t67.5 -162q0 -102 -65.5 -165.5t-173.5 -63.5t-172 62.5t-64 164.5z M567 1575q0 -106 107 -106q46 0 76 27.5t30 78.5q0 50 -30 78.5t-76 28.5q-47 0 -77 -28.5t-30 -78.5z" />
148
+ <glyph unicode="&#xc6;" horiz-adv-x="1868" d="M-2 0l678 1462h1071v-202h-571v-398h532v-200h-532v-459h571v-203h-811v406h-504l-188 -406h-246zM522 612h414v641h-123z" />
149
+ <glyph unicode="&#xc7;" horiz-adv-x="1298" d="M121 731q0 228 83.5 399t241.5 262t371 91q224 0 414 -94l-86 -199q-74 35 -156.5 61.5t-173.5 26.5q-206 0 -324 -146t-118 -403q0 -269 113.5 -407t328.5 -138q93 0 180 18.5t181 47.5v-205q-172 -65 -390 -65q-321 0 -493 194.5t-172 556.5zM526 -340q54 -14 123 -14 q54 0 85.5 16.5t31.5 61.5q0 85 -179 110l84 166h152l-41 -88q80 -21 125 -68.5t45 -113.5q0 -222 -305 -222q-66 0 -121 15v137z" />
150
+ <glyph unicode="&#xc8;" horiz-adv-x="1143" d="M193 0v1462h827v-202h-588v-398h551v-200h-551v-459h588v-203h-827zM289 1886v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
151
+ <glyph unicode="&#xc9;" horiz-adv-x="1143" d="M193 0v1462h827v-202h-588v-398h551v-200h-551v-459h588v-203h-827zM440 1579v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
152
+ <glyph unicode="&#xca;" horiz-adv-x="1143" d="M193 0v1462h827v-202h-588v-398h551v-200h-551v-459h588v-203h-827zM220 1579v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
153
+ <glyph unicode="&#xcb;" horiz-adv-x="1143" d="M193 0v1462h827v-202h-588v-398h551v-200h-551v-459h588v-203h-827zM297 1737q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM690 1737q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5 q-48 0 -81.5 29t-33.5 88z" />
154
+ <glyph unicode="&#xcc;" horiz-adv-x="625" d="M193 0v1462h239v-1462h-239zM-6 1886v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
155
+ <glyph unicode="&#xcd;" horiz-adv-x="625" d="M193 0v1462h239v-1462h-239zM179 1579v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
156
+ <glyph unicode="&#xce;" horiz-adv-x="625" d="M193 0v1462h239v-1462h-239zM-75 1579v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
157
+ <glyph unicode="&#xcf;" horiz-adv-x="625" d="M193 0v1462h239v-1462h-239zM1 1737q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM394 1737q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
158
+ <glyph unicode="&#xd0;" horiz-adv-x="1497" d="M47 623v200h146v639h446q347 0 541 -188.5t194 -528.5q0 -360 -201 -552.5t-579 -192.5h-401v623h-146zM432 201h160q530 0 530 536q0 260 -124.5 392.5t-368.5 132.5h-197v-439h307v-200h-307v-422z" />
159
+ <glyph unicode="&#xd1;" horiz-adv-x="1604" d="M193 0v1462h290l717 -1159h6q-2 23 -8 167.5t-6 225.5v766h219v-1462h-293l-719 1165h-8l5 -65q14 -186 14 -340v-760h-217zM414 1577q12 139 77.5 212t167.5 73q43 0 84 -17.5t80 -39t75.5 -39t70.5 -17.5q79 0 106 115h125q-12 -134 -77 -209.5t-169 -75.5 q-42 0 -82.5 17.5t-79.5 39t-76 39t-71 17.5q-81 0 -109 -115h-122z" />
160
+ <glyph unicode="&#xd2;" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q326 0 504 -197t178 -555q0 -357 -178.5 -555t-505.5 -198q-331 0 -508.5 196.5t-177.5 558.5zM375 733q0 -270 109 -409.5t323 -139.5q213 0 321.5 138t108.5 411q0 269 -107.5 408t-320.5 139q-215 0 -324.5 -139t-109.5 -408z M481 1886v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
161
+ <glyph unicode="&#xd3;" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q326 0 504 -197t178 -555q0 -357 -178.5 -555t-505.5 -198q-331 0 -508.5 196.5t-177.5 558.5zM375 733q0 -270 109 -409.5t323 -139.5q213 0 321.5 138t108.5 411q0 269 -107.5 408t-320.5 139q-215 0 -324.5 -139t-109.5 -408z M657 1579v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
162
+ <glyph unicode="&#xd4;" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q326 0 504 -197t178 -555q0 -357 -178.5 -555t-505.5 -198q-331 0 -508.5 196.5t-177.5 558.5zM375 733q0 -270 109 -409.5t323 -139.5q213 0 321.5 138t108.5 411q0 269 -107.5 408t-320.5 139q-215 0 -324.5 -139t-109.5 -408z M413 1579v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
163
+ <glyph unicode="&#xd5;" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q326 0 504 -197t178 -555q0 -357 -178.5 -555t-505.5 -198q-331 0 -508.5 196.5t-177.5 558.5zM375 733q0 -270 109 -409.5t323 -139.5q213 0 321.5 138t108.5 411q0 269 -107.5 408t-320.5 139q-215 0 -324.5 -139t-109.5 -408z M410 1577q12 139 77.5 212t167.5 73q43 0 84 -17.5t80 -39t75.5 -39t70.5 -17.5q79 0 106 115h125q-12 -134 -77 -209.5t-169 -75.5q-42 0 -82.5 17.5t-79.5 39t-76 39t-71 17.5q-81 0 -109 -115h-122z" />
164
+ <glyph unicode="&#xd6;" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q326 0 504 -197t178 -555q0 -357 -178.5 -555t-505.5 -198q-331 0 -508.5 196.5t-177.5 558.5zM375 733q0 -270 109 -409.5t323 -139.5q213 0 321.5 138t108.5 411q0 269 -107.5 408t-320.5 139q-215 0 -324.5 -139t-109.5 -408z M496 1737q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM889 1737q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
165
+ <glyph unicode="&#xd7;" d="M131 1049l125 127l328 -326l329 326l125 -123l-329 -330l325 -328l-123 -125l-329 326l-324 -326l-125 125l324 328z" />
166
+ <glyph unicode="&#xd8;" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q199 0 354 -82l90 129l142 -92l-99 -140q195 -199 195 -567q0 -357 -178.5 -555t-505.5 -198q-213 0 -361 81l-94 -137l-141 94l98 144q-188 196 -188 573zM375 733q0 -231 78 -362l587 850q-92 59 -231 59q-215 0 -324.5 -139 t-109.5 -408zM571 244q97 -60 236 -60q213 0 321.5 138t108.5 411q0 225 -80 361z" />
167
+ <glyph unicode="&#xd9;" horiz-adv-x="1520" d="M180 520v942h240v-925q0 -181 84 -267t258 -86q338 0 338 355v923h239v-946q0 -162 -69.5 -283.5t-201 -187t-314.5 -65.5q-272 0 -423 144t-151 396zM417 1886v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
168
+ <glyph unicode="&#xda;" horiz-adv-x="1520" d="M180 520v942h240v-925q0 -181 84 -267t258 -86q338 0 338 355v923h239v-946q0 -162 -69.5 -283.5t-201 -187t-314.5 -65.5q-272 0 -423 144t-151 396zM600 1579v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
169
+ <glyph unicode="&#xdb;" horiz-adv-x="1520" d="M180 520v942h240v-925q0 -181 84 -267t258 -86q338 0 338 355v923h239v-946q0 -162 -69.5 -283.5t-201 -187t-314.5 -65.5q-272 0 -423 144t-151 396zM366 1579v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
170
+ <glyph unicode="&#xdc;" horiz-adv-x="1520" d="M180 520v942h240v-925q0 -181 84 -267t258 -86q338 0 338 355v923h239v-946q0 -162 -69.5 -283.5t-201 -187t-314.5 -65.5q-272 0 -423 144t-151 396zM445 1737q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88z M838 1737q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
171
+ <glyph unicode="&#xdd;" horiz-adv-x="1212" d="M0 1462h260l346 -667l346 667h260l-487 -895v-567h-240v559zM450 1579v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
172
+ <glyph unicode="&#xde;" horiz-adv-x="1268" d="M193 0v1462h239v-243h197q268 0 404 -112t136 -331q0 -227 -146 -349t-423 -122h-168v-305h-239zM432 504h133q187 0 273 63t86 203q0 127 -78 188.5t-250 61.5h-164v-516z" />
173
+ <glyph unicode="&#xdf;" horiz-adv-x="1364" d="M168 0v1169q0 193 128.5 295.5t367.5 102.5q225 0 355 -84t130 -230q0 -74 -38.5 -140.5t-104.5 -117.5q-90 -69 -117 -98t-27 -57q0 -30 22.5 -55.5t79.5 -63.5l95 -64q92 -62 135.5 -109.5t65.5 -103.5t22 -127q0 -165 -107 -251t-311 -86q-190 0 -299 65v199 q58 -37 139 -61.5t148 -24.5q192 0 192 151q0 61 -34.5 105t-155.5 118q-119 73 -171 135t-52 146q0 63 34 115.5t105 105.5q75 55 107 97.5t32 93.5q0 72 -67 112.5t-178 40.5q-127 0 -194 -54t-67 -159v-1165h-235z" />
174
+ <glyph unicode="&#xe0;" horiz-adv-x="1188" d="M90 317q0 171 127 258t387 95l191 6v59q0 106 -49.5 158.5t-153.5 52.5q-85 0 -163 -25t-150 -59l-76 168q90 47 197 71.5t202 24.5q211 0 318.5 -92t107.5 -289v-745h-168l-47 154h-8q-80 -101 -161 -137.5t-208 -36.5q-163 0 -254.5 88t-91.5 249zM334 315 q0 -74 44 -114.5t132 -40.5q128 0 205.5 71.5t77.5 200.5v96l-142 -6q-166 -6 -241.5 -55.5t-75.5 -151.5zM259 1548v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
175
+ <glyph unicode="&#xe1;" horiz-adv-x="1188" d="M90 317q0 171 127 258t387 95l191 6v59q0 106 -49.5 158.5t-153.5 52.5q-85 0 -163 -25t-150 -59l-76 168q90 47 197 71.5t202 24.5q211 0 318.5 -92t107.5 -289v-745h-168l-47 154h-8q-80 -101 -161 -137.5t-208 -36.5q-163 0 -254.5 88t-91.5 249zM334 315 q0 -74 44 -114.5t132 -40.5q128 0 205.5 71.5t77.5 200.5v96l-142 -6q-166 -6 -241.5 -55.5t-75.5 -151.5zM438 1241v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
176
+ <glyph unicode="&#xe2;" horiz-adv-x="1188" d="M90 317q0 171 127 258t387 95l191 6v59q0 106 -49.5 158.5t-153.5 52.5q-85 0 -163 -25t-150 -59l-76 168q90 47 197 71.5t202 24.5q211 0 318.5 -92t107.5 -289v-745h-168l-47 154h-8q-80 -101 -161 -137.5t-208 -36.5q-163 0 -254.5 88t-91.5 249zM334 315 q0 -74 44 -114.5t132 -40.5q128 0 205.5 71.5t77.5 200.5v96l-142 -6q-166 -6 -241.5 -55.5t-75.5 -151.5zM203 1241v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
177
+ <glyph unicode="&#xe3;" horiz-adv-x="1188" d="M90 317q0 171 127 258t387 95l191 6v59q0 106 -49.5 158.5t-153.5 52.5q-85 0 -163 -25t-150 -59l-76 168q90 47 197 71.5t202 24.5q211 0 318.5 -92t107.5 -289v-745h-168l-47 154h-8q-80 -101 -161 -137.5t-208 -36.5q-163 0 -254.5 88t-91.5 249zM334 315 q0 -74 44 -114.5t132 -40.5q128 0 205.5 71.5t77.5 200.5v96l-142 -6q-166 -6 -241.5 -55.5t-75.5 -151.5zM208 1239q12 139 77.5 212t167.5 73q43 0 84 -17.5t80 -39t75.5 -39t70.5 -17.5q79 0 106 115h125q-12 -134 -77 -209.5t-169 -75.5q-42 0 -82.5 17.5t-79.5 39 t-76 39t-71 17.5q-81 0 -109 -115h-122z" />
178
+ <glyph unicode="&#xe4;" horiz-adv-x="1188" d="M90 317q0 171 127 258t387 95l191 6v59q0 106 -49.5 158.5t-153.5 52.5q-85 0 -163 -25t-150 -59l-76 168q90 47 197 71.5t202 24.5q211 0 318.5 -92t107.5 -289v-745h-168l-47 154h-8q-80 -101 -161 -137.5t-208 -36.5q-163 0 -254.5 88t-91.5 249zM334 315 q0 -74 44 -114.5t132 -40.5q128 0 205.5 71.5t77.5 200.5v96l-142 -6q-166 -6 -241.5 -55.5t-75.5 -151.5zM282 1399q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM675 1399q0 62 33.5 89.5t81.5 27.5q53 0 85 -31 t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
179
+ <glyph unicode="&#xe5;" horiz-adv-x="1188" d="M90 317q0 171 127 258t387 95l191 6v59q0 106 -49.5 158.5t-153.5 52.5q-85 0 -163 -25t-150 -59l-76 168q90 47 197 71.5t202 24.5q211 0 318.5 -92t107.5 -289v-745h-168l-47 154h-8q-80 -101 -161 -137.5t-208 -36.5q-163 0 -254.5 88t-91.5 249zM334 315 q0 -74 44 -114.5t132 -40.5q128 0 205.5 71.5t77.5 200.5v96l-142 -6q-166 -6 -241.5 -55.5t-75.5 -151.5zM366 1466q0 101 63.5 163.5t172.5 62.5q104 0 171.5 -62t67.5 -162q0 -102 -65.5 -165.5t-173.5 -63.5t-172 62.5t-64 164.5zM495 1466q0 -106 107 -106 q46 0 76 27.5t30 78.5q0 50 -30 78.5t-76 28.5q-47 0 -77 -28.5t-30 -78.5z" />
180
+ <glyph unicode="&#xe6;" horiz-adv-x="1817" d="M90 317q0 172 121.5 258.5t370.5 94.5l188 6v76q0 194 -201 194q-141 0 -307 -82l-74 166q88 47 192.5 71.5t203.5 24.5q241 0 340 -155q120 155 346 155q206 0 328 -134.5t122 -362.5v-127h-712q10 -336 301 -336q184 0 356 80v-191q-86 -41 -171.5 -58t-195.5 -17 q-140 0 -248.5 54.5t-175.5 164.5q-94 -125 -190.5 -172t-241.5 -47q-165 0 -258.5 90t-93.5 247zM334 315q0 -155 166 -155q124 0 196 72.5t72 199.5v96l-135 -6q-155 -6 -227 -54.5t-72 -152.5zM1014 670h473q0 130 -58.5 204t-162.5 74q-112 0 -177.5 -69.5t-74.5 -208.5 z" />
181
+ <glyph unicode="&#xe7;" horiz-adv-x="1014" d="M102 547q0 279 136.5 429t394.5 150q175 0 315 -65l-71 -189q-149 58 -246 58q-287 0 -287 -381q0 -186 71.5 -279.5t209.5 -93.5q157 0 297 78v-205q-63 -37 -134.5 -53t-173.5 -16q-251 0 -381.5 146.5t-130.5 420.5zM356 -340q54 -14 123 -14q54 0 85.5 16.5 t31.5 61.5q0 85 -179 110l84 166h152l-41 -88q80 -21 125 -68.5t45 -113.5q0 -222 -305 -222q-66 0 -121 15v137z" />
182
+ <glyph unicode="&#xe8;" horiz-adv-x="1180" d="M102 545q0 271 135 426t371 155q219 0 346 -133t127 -366v-127h-737q5 -161 87 -247.5t231 -86.5q98 0 182.5 18.5t181.5 61.5v-191q-86 -41 -174 -58t-201 -17q-258 0 -403.5 150.5t-145.5 414.5zM348 670h502q-2 137 -66 207.5t-176 70.5t-179.5 -71t-80.5 -207z M281 1548v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
183
+ <glyph unicode="&#xe9;" horiz-adv-x="1180" d="M102 545q0 271 135 426t371 155q219 0 346 -133t127 -366v-127h-737q5 -161 87 -247.5t231 -86.5q98 0 182.5 18.5t181.5 61.5v-191q-86 -41 -174 -58t-201 -17q-258 0 -403.5 150.5t-145.5 414.5zM348 670h502q-2 137 -66 207.5t-176 70.5t-179.5 -71t-80.5 -207z M458 1241v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
184
+ <glyph unicode="&#xea;" horiz-adv-x="1180" d="M102 545q0 271 135 426t371 155q219 0 346 -133t127 -366v-127h-737q5 -161 87 -247.5t231 -86.5q98 0 182.5 18.5t181.5 61.5v-191q-86 -41 -174 -58t-201 -17q-258 0 -403.5 150.5t-145.5 414.5zM348 670h502q-2 137 -66 207.5t-176 70.5t-179.5 -71t-80.5 -207z M227 1241v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
185
+ <glyph unicode="&#xeb;" horiz-adv-x="1180" d="M102 545q0 271 135 426t371 155q219 0 346 -133t127 -366v-127h-737q5 -161 87 -247.5t231 -86.5q98 0 182.5 18.5t181.5 61.5v-191q-86 -41 -174 -58t-201 -17q-258 0 -403.5 150.5t-145.5 414.5zM348 670h502q-2 137 -66 207.5t-176 70.5t-179.5 -71t-80.5 -207z M307 1399q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM700 1399q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
186
+ <glyph unicode="&#xec;" horiz-adv-x="571" d="M168 0v1106h235v-1106h-235zM-69 1548v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
187
+ <glyph unicode="&#xed;" horiz-adv-x="571" d="M168 0v1106h235v-1106h-235zM156 1241v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
188
+ <glyph unicode="&#xee;" horiz-adv-x="571" d="M168 0v1106h235v-1106h-235zM-100 1241v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
189
+ <glyph unicode="&#xef;" horiz-adv-x="571" d="M168 0v1106h235v-1106h-235zM-25 1399q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM368 1399q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
190
+ <glyph unicode="&#xf0;" horiz-adv-x="1243" d="M102 481q0 231 131 365.5t351 134.5q214 0 301 -111l8 4q-62 189 -227 345l-250 -150l-88 133l204 119q-86 59 -167 102l84 146q140 -63 258 -144l231 138l88 -129l-188 -113q152 -140 231.5 -330t79.5 -424q0 -279 -137.5 -433t-388.5 -154q-235 0 -378 136t-143 365z M342 477q0 -153 74 -234t211 -81q148 0 215 91t67 269q0 127 -75.5 202t-206.5 75q-151 0 -218 -82t-67 -240z" />
191
+ <glyph unicode="&#xf1;" horiz-adv-x="1300" d="M168 0v1106h184l33 -145h12q50 79 142 122t204 43q398 0 398 -405v-721h-236v680q0 128 -51.5 191t-163.5 63q-149 0 -218 -88t-69 -295v-551h-235zM269 1239q12 139 77.5 212t167.5 73q43 0 84 -17.5t80 -39t75.5 -39t70.5 -17.5q79 0 106 115h125q-12 -134 -77 -209.5 t-169 -75.5q-42 0 -82.5 17.5t-79.5 39t-76 39t-71 17.5q-81 0 -109 -115h-122z" />
192
+ <glyph unicode="&#xf2;" horiz-adv-x="1251" d="M102 555q0 269 138 420t389 151q240 0 380 -154.5t140 -416.5q0 -271 -139 -423t-387 -152q-155 0 -274 70t-183 201t-64 304zM344 555q0 -383 283 -383q280 0 280 383q0 379 -282 379q-148 0 -214.5 -98t-66.5 -281zM293 1548v21h273q38 -70 103.5 -161t109.5 -142v-25 h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
193
+ <glyph unicode="&#xf3;" horiz-adv-x="1251" d="M102 555q0 269 138 420t389 151q240 0 380 -154.5t140 -416.5q0 -271 -139 -423t-387 -152q-155 0 -274 70t-183 201t-64 304zM344 555q0 -383 283 -383q280 0 280 383q0 379 -282 379q-148 0 -214.5 -98t-66.5 -281zM473 1241v25q57 70 117.5 156t95.5 147h273v-21 q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
194
+ <glyph unicode="&#xf4;" horiz-adv-x="1251" d="M102 555q0 269 138 420t389 151q240 0 380 -154.5t140 -416.5q0 -271 -139 -423t-387 -152q-155 0 -274 70t-183 201t-64 304zM344 555q0 -383 283 -383q280 0 280 383q0 379 -282 379q-148 0 -214.5 -98t-66.5 -281zM239 1241v25q191 198 254 303h260q63 -110 256 -303 v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
195
+ <glyph unicode="&#xf5;" horiz-adv-x="1251" d="M102 555q0 269 138 420t389 151q240 0 380 -154.5t140 -416.5q0 -271 -139 -423t-387 -152q-155 0 -274 70t-183 201t-64 304zM344 555q0 -383 283 -383q280 0 280 383q0 379 -282 379q-148 0 -214.5 -98t-66.5 -281zM235 1239q12 139 77.5 212t167.5 73q43 0 84 -17.5 t80 -39t75.5 -39t70.5 -17.5q79 0 106 115h125q-12 -134 -77 -209.5t-169 -75.5q-42 0 -82.5 17.5t-79.5 39t-76 39t-71 17.5q-81 0 -109 -115h-122z" />
196
+ <glyph unicode="&#xf6;" horiz-adv-x="1251" d="M102 555q0 269 138 420t389 151q240 0 380 -154.5t140 -416.5q0 -271 -139 -423t-387 -152q-155 0 -274 70t-183 201t-64 304zM344 555q0 -383 283 -383q280 0 280 383q0 379 -282 379q-148 0 -214.5 -98t-66.5 -281zM311 1399q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31 t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM704 1399q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
197
+ <glyph unicode="&#xf7;" d="M96 633v178h977v-178h-977zM457 373q0 64 31.5 99.5t95.5 35.5q61 0 93 -36t32 -99t-34 -100t-91 -37q-60 0 -93.5 35.5t-33.5 101.5zM457 1071q0 64 31.5 99.5t95.5 35.5q61 0 93 -36t32 -99t-34 -100t-91 -37q-60 0 -93.5 35.5t-33.5 101.5z" />
198
+ <glyph unicode="&#xf8;" horiz-adv-x="1251" d="M102 555q0 269 138 420t389 151q144 0 258 -63l69 100l136 -92l-78 -108q135 -152 135 -408q0 -271 -139 -423t-387 -152q-144 0 -250 57l-76 -109l-135 90l82 117q-142 155 -142 420zM344 555q0 -135 37 -219l391 559q-60 39 -147 39q-148 0 -214.5 -98t-66.5 -281z M487 205q54 -33 140 -33q280 0 280 383q0 121 -33 203z" />
199
+ <glyph unicode="&#xf9;" horiz-adv-x="1300" d="M158 383v723h237v-682q0 -127 52 -190.5t163 -63.5q148 0 217.5 88.5t69.5 296.5v551h236v-1106h-185l-33 145h-12q-49 -77 -139.5 -121t-206.5 -44q-201 0 -300 100t-99 303zM289 1548v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z " />
200
+ <glyph unicode="&#xfa;" horiz-adv-x="1300" d="M158 383v723h237v-682q0 -127 52 -190.5t163 -63.5q148 0 217.5 88.5t69.5 296.5v551h236v-1106h-185l-33 145h-12q-49 -77 -139.5 -121t-206.5 -44q-201 0 -300 100t-99 303zM501 1241v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z " />
201
+ <glyph unicode="&#xfb;" horiz-adv-x="1300" d="M158 383v723h237v-682q0 -127 52 -190.5t163 -63.5q148 0 217.5 88.5t69.5 296.5v551h236v-1106h-185l-33 145h-12q-49 -77 -139.5 -121t-206.5 -44q-201 0 -300 100t-99 303zM260 1241v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180 q-103 -103 -225 -180h-158z" />
202
+ <glyph unicode="&#xfc;" horiz-adv-x="1300" d="M158 383v723h237v-682q0 -127 52 -190.5t163 -63.5q148 0 217.5 88.5t69.5 296.5v551h236v-1106h-185l-33 145h-12q-49 -77 -139.5 -121t-206.5 -44q-201 0 -300 100t-99 303zM332 1399q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32 q-48 0 -81.5 29t-33.5 88zM725 1399q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
203
+ <glyph unicode="&#xfd;" horiz-adv-x="1098" d="M0 1106h256l225 -627q51 -134 68 -252h8q9 55 33 133.5t254 745.5h254l-473 -1253q-129 -345 -430 -345q-78 0 -152 17v186q53 -12 121 -12q170 0 239 197l41 104zM401 1241v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
204
+ <glyph unicode="&#xfe;" horiz-adv-x="1276" d="M168 -492v2048h235v-430l-7 -138l-3 -27h10q61 86 142.5 125.5t187.5 39.5q206 0 322 -151t116 -420q0 -272 -116.5 -423.5t-321.5 -151.5q-219 0 -330 149h-14l8 -72l6 -92v-457h-235zM403 555q0 -202 64 -292.5t209 -90.5q254 0 254 385q0 190 -61.5 283.5t-194.5 93.5 q-142 0 -206.5 -82t-64.5 -260v-37z" />
205
+ <glyph unicode="&#xff;" horiz-adv-x="1098" d="M0 1106h256l225 -627q51 -134 68 -252h8q9 55 33 133.5t254 745.5h254l-473 -1253q-129 -345 -430 -345q-78 0 -152 17v186q53 -12 121 -12q170 0 239 197l41 104zM239 1399q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29 t-33.5 88zM632 1399q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
206
+ <glyph unicode="&#x131;" horiz-adv-x="571" d="M168 0v1106h235v-1106h-235z" />
207
+ <glyph unicode="&#x152;" horiz-adv-x="1942" d="M121 735q0 360 172 555t491 195q115 0 209 -23h826v-202h-576v-398h539v-200h-539v-459h576v-203h-820q-102 -20 -211 -20q-320 0 -493.5 196.5t-173.5 558.5zM371 733q0 -269 106 -409t314 -140q129 0 213 35v1024q-80 37 -211 37q-208 0 -315 -139t-107 -408z" />
208
+ <glyph unicode="&#x153;" horiz-adv-x="1966" d="M102 555q0 272 137 421.5t382 149.5q121 0 223 -49t168 -145q131 194 379 194q221 0 349 -133.5t128 -365.5v-127h-738q11 -164 85.5 -249t228.5 -85q102 0 187 18.5t181 61.5v-191q-84 -40 -171.5 -57.5t-202.5 -17.5q-281 0 -420 194q-132 -194 -400 -194 q-236 0 -376 155t-140 420zM344 555q0 -189 65.5 -286t211.5 -97q141 0 206.5 95.5t65.5 283.5q0 192 -66 287.5t-211 95.5q-143 0 -207.5 -95t-64.5 -284zM1137 670h497q0 134 -63 206t-178 72q-110 0 -177.5 -69.5t-78.5 -208.5z" />
209
+ <glyph unicode="&#x178;" horiz-adv-x="1212" d="M0 1462h260l346 -667l346 667h260l-487 -895v-567h-240v559zM293 1737q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM686 1737q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5 q-48 0 -81.5 29t-33.5 88z" />
210
+ <glyph unicode="&#x2c6;" horiz-adv-x="1227" d="M227 1241v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
211
+ <glyph unicode="&#x2da;" horiz-adv-x="1182" d="M352 1466q0 101 63.5 163.5t172.5 62.5q104 0 171.5 -62t67.5 -162q0 -102 -65.5 -165.5t-173.5 -63.5t-172 62.5t-64 164.5zM481 1466q0 -106 107 -106q46 0 76 27.5t30 78.5q0 50 -30 78.5t-76 28.5q-47 0 -77 -28.5t-30 -78.5z" />
212
+ <glyph unicode="&#x2dc;" horiz-adv-x="1227" d="M236 1239q12 139 77.5 212t167.5 73q43 0 84 -17.5t80 -39t75.5 -39t70.5 -17.5q79 0 106 115h125q-12 -134 -77 -209.5t-169 -75.5q-42 0 -82.5 17.5t-79.5 39t-76 39t-71 17.5q-81 0 -109 -115h-122z" />
213
+ <glyph unicode="&#x2000;" horiz-adv-x="953" />
214
+ <glyph unicode="&#x2001;" horiz-adv-x="1907" />
215
+ <glyph unicode="&#x2002;" horiz-adv-x="953" />
216
+ <glyph unicode="&#x2003;" horiz-adv-x="1907" />
217
+ <glyph unicode="&#x2004;" horiz-adv-x="635" />
218
+ <glyph unicode="&#x2005;" horiz-adv-x="476" />
219
+ <glyph unicode="&#x2006;" horiz-adv-x="317" />
220
+ <glyph unicode="&#x2007;" horiz-adv-x="317" />
221
+ <glyph unicode="&#x2008;" horiz-adv-x="238" />
222
+ <glyph unicode="&#x2009;" horiz-adv-x="381" />
223
+ <glyph unicode="&#x200a;" horiz-adv-x="105" />
224
+ <glyph unicode="&#x2010;" horiz-adv-x="659" d="M72 449v200h514v-200h-514z" />
225
+ <glyph unicode="&#x2011;" horiz-adv-x="659" d="M72 449v200h514v-200h-514z" />
226
+ <glyph unicode="&#x2012;" horiz-adv-x="659" d="M72 449v200h514v-200h-514z" />
227
+ <glyph unicode="&#x2013;" horiz-adv-x="1024" d="M82 455v190h860v-190h-860z" />
228
+ <glyph unicode="&#x2014;" horiz-adv-x="2048" d="M82 455v190h1884v-190h-1884z" />
229
+ <glyph unicode="&#x2018;" horiz-adv-x="395" d="M25 983q20 83 71 224t105 255h170q-64 -256 -101 -501h-233z" />
230
+ <glyph unicode="&#x2019;" horiz-adv-x="395" d="M25 961q69 289 100 501h231l15 -22q-53 -209 -176 -479h-170z" />
231
+ <glyph unicode="&#x201a;" horiz-adv-x="549" d="M63 -264q69 270 103 502h231l15 -23q-48 -186 -176 -479h-173z" />
232
+ <glyph unicode="&#x201c;" horiz-adv-x="813" d="M25 983q20 83 71 224t105 255h170q-64 -256 -101 -501h-233zM440 983q53 203 178 479h170q-69 -296 -100 -501h-233z" />
233
+ <glyph unicode="&#x201d;" horiz-adv-x="813" d="M25 961q69 289 100 501h231l15 -22q-53 -209 -176 -479h-170zM440 961q69 271 103 501h231l14 -22q-53 -209 -176 -479h-172z" />
234
+ <glyph unicode="&#x201e;" horiz-adv-x="944" d="M43 -264q66 260 102 502h232l14 -23q-55 -214 -176 -479h-172zM461 -264q66 260 102 502h232l14 -23q-48 -186 -176 -479h-172z" />
235
+ <glyph unicode="&#x2022;" horiz-adv-x="770" d="M131 748q0 138 66 210t188 72q121 0 187.5 -72.5t66.5 -209.5q0 -135 -67 -209t-187 -74t-187 72.5t-67 210.5z" />
236
+ <glyph unicode="&#x2026;" horiz-adv-x="1677" d="M133 125q0 73 38 112t110 39q73 0 111 -40.5t38 -110.5q0 -71 -38.5 -112.5t-110.5 -41.5t-110 41t-38 113zM690 125q0 73 38 112t110 39q73 0 111 -40.5t38 -110.5q0 -71 -38.5 -112.5t-110.5 -41.5t-110 41t-38 113zM1247 125q0 73 38 112t110 39q73 0 111 -40.5 t38 -110.5q0 -71 -38.5 -112.5t-110.5 -41.5t-110 41t-38 113z" />
237
+ <glyph unicode="&#x202f;" horiz-adv-x="381" />
238
+ <glyph unicode="&#x2039;" horiz-adv-x="688" d="M82 535v26l356 432l168 -94l-282 -350l282 -348l-168 -97z" />
239
+ <glyph unicode="&#x203a;" horiz-adv-x="688" d="M80 201l282 348l-282 350l168 94l358 -432v-26l-358 -431z" />
240
+ <glyph unicode="&#x2044;" horiz-adv-x="266" d="M-393 0l858 1462h190l-856 -1462h-192z" />
241
+ <glyph unicode="&#x205f;" horiz-adv-x="476" />
242
+ <glyph unicode="&#x2074;" horiz-adv-x="743" d="M16 762v127l396 579h188v-563h125v-143h-125v-176h-192v176h-392zM178 905h230v178q0 97 6 197q-52 -104 -88 -158z" />
243
+ <glyph unicode="&#x20ac;" horiz-adv-x="1188" d="M63 494v153h136l-2 37v37l2 65h-136v154h150q38 251 191 394t395 143q200 0 358 -88l-84 -187q-154 76 -274 76q-141 0 -230.5 -84t-119.5 -254h456v-154h-471l-2 -45v-55l2 -39h408v-153h-391q64 -312 364 -312q143 0 293 62v-203q-131 -61 -305 -61q-241 0 -391.5 132 t-196.5 382h-152z" />
244
+ <glyph unicode="&#x2122;" horiz-adv-x="1561" d="M27 1333v129h553v-129h-205v-592h-146v592h-202zM635 741v721h217l178 -534l187 534h210v-721h-147v414l4 129h-6l-193 -543h-122l-185 543h-6l4 -119v-424h-141z" />
245
+ <glyph unicode="&#xe000;" horiz-adv-x="1105" d="M0 1105h1105v-1105h-1105v1105z" />
246
+ <glyph unicode="&#xfb01;" horiz-adv-x="1315" d="M35 928v110l182 72v72q0 196 92 290.5t281 94.5q124 0 244 -41l-62 -178q-87 28 -166 28q-80 0 -116.5 -49.5t-36.5 -148.5v-72h270v-178h-270v-928h-236v928h-182zM897 1399q0 63 34.5 97t98.5 34q62 0 96.5 -34t34.5 -97q0 -60 -34.5 -94.5t-96.5 -34.5 q-64 0 -98.5 34.5t-34.5 94.5zM911 0v1106h235v-1106h-235z" />
247
+ <glyph unicode="&#xfb02;" horiz-adv-x="1315" d="M35 928v110l182 72v72q0 196 92 290.5t281 94.5q124 0 244 -41l-62 -178q-87 28 -166 28q-80 0 -116.5 -49.5t-36.5 -148.5v-72h270v-178h-270v-928h-236v928h-182zM911 0v1556h235v-1556h-235z" />
248
+ <glyph unicode="&#xfb03;" horiz-adv-x="2058" d="M35 928v110l182 72v72q0 196 92 290.5t281 94.5q124 0 244 -41l-62 -178q-87 28 -166 28q-80 0 -116.5 -49.5t-36.5 -148.5v-72h270v-178h-270v-928h-236v928h-182zM778 928v110l182 72v72q0 196 92 290.5t281 94.5q124 0 244 -41l-62 -178q-87 28 -166 28 q-80 0 -116.5 -49.5t-36.5 -148.5v-72h270v-178h-270v-928h-236v928h-182zM1641 1399q0 63 34.5 97t98.5 34q62 0 96.5 -34t34.5 -97q0 -60 -34.5 -94.5t-96.5 -34.5q-64 0 -98.5 34.5t-34.5 94.5zM1655 0v1106h235v-1106h-235z" />
249
+ <glyph unicode="&#xfb04;" horiz-adv-x="2058" d="M35 928v110l182 72v72q0 196 92 290.5t281 94.5q124 0 244 -41l-62 -178q-87 28 -166 28q-80 0 -116.5 -49.5t-36.5 -148.5v-72h270v-178h-270v-928h-236v928h-182zM778 928v110l182 72v72q0 196 92 290.5t281 94.5q124 0 244 -41l-62 -178q-87 28 -166 28 q-80 0 -116.5 -49.5t-36.5 -148.5v-72h270v-178h-270v-928h-236v928h-182zM1655 0v1556h235v-1556h-235z" />
250
+ </font>
251
+ </defs></svg>
css/fonts/OpenSans-Semibold-webfont.ttf ADDED
Binary file
css/fonts/OpenSans-Semibold-webfont.woff ADDED
Binary file
css/fonts/Oswald-Regular.ttf ADDED
Binary file
css/layout.css ADDED
@@ -0,0 +1,645 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Regular */
2
+ @font-face {
3
+ font-family: 'OpenSans-Regular';
4
+
5
+ src: url('fonts/OpenSans-Regular-webfont.eot');
6
+ src: url('fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
7
+ url('fonts/OpenSans-Regular-webfont.woff') format('woff'),
8
+ url('fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
9
+ url('fonts/OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg');
10
+ font-weight: normal;
11
+ font-weight: 400;
12
+ font-style: normal;
13
+ }
14
+ /* Semibold */
15
+ @font-face {
16
+ font-family: 'OpenSans-Semibold';
17
+ src: url('fonts/OpenSans-Semibold-webfont.eot');
18
+ src: url('fonts/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'),
19
+ url('fonts/OpenSans-Semibold-webfont.woff') format('woff'),
20
+ url('fonts/OpenSans-Semibold-webfont.ttf') format('truetype'),
21
+ url('fonts/OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg');
22
+ font-weight: 500;
23
+ font-style: normal;
24
+ }
25
+ /* Oswald-Regular */
26
+ @font-face {
27
+ font-family: 'Oswald-Regular';
28
+ src:url('fonts/Oswald-Regular.ttf') format('truetype');
29
+ font-weight:normal;
30
+ font-style: normal;
31
+ }
32
+ #acx_fsmi_stars
33
+ {
34
+ color: #e6b800;
35
+ display: table;
36
+ text-align: center;
37
+ width: 100%;
38
+ margin-bottom:10px;
39
+ }
40
+ #acx_fsmi_stars span
41
+ {
42
+ cursor: pointer;
43
+ font-size: 30px;
44
+ margin: 6px;
45
+ }
46
+ #acx_fsmi_stars span:hover
47
+ {
48
+ color:#dcb208;
49
+ }
50
+ #acx_fsmi_option_page_holder
51
+ {
52
+ background: white none repeat scroll 0 0;
53
+ border: 1px solid lightgrey;
54
+ box-sizing: border-box;
55
+ margin-top: 10px;
56
+ min-height: 200px;
57
+ padding: 10px;
58
+ width: 99%;
59
+ display: inline-block;
60
+ }
61
+ .acx_fsmi_option_page_left
62
+ {
63
+ box-sizing: border-box;
64
+ display: inline-block;
65
+ float: left;
66
+ min-height: 200px;
67
+ width: 100%;
68
+ }
69
+ .acx_fsmi_option_page_right
70
+ {
71
+ box-sizing: border-box;
72
+ display: none;
73
+ float: left;
74
+ margin-left: 2%;
75
+ min-height: 200px;
76
+ width: 30%;
77
+ }
78
+ .acx_fsmi_option_head {
79
+ font-family: arial;
80
+ font-size: 20px;
81
+ font-weight: 400;
82
+ margin: 12px 0;
83
+ padding: 0;
84
+ text-indent: 5px;
85
+ }
86
+ .acx_fsmi_q_holder {
87
+ background: #f0f0f0 none repeat scroll 0 0;
88
+ border: 1px solid lightgray;
89
+ box-sizing: border-box;
90
+ width: 100%;
91
+ margin-bottom: 15px;
92
+ }
93
+ .acx_fsmi_q_holder h4 {
94
+ box-sizing: border-box;
95
+ color: #393939;
96
+ font-size: 14px;
97
+ font-weight: normal;
98
+ margin: 0;
99
+ padding: 7px;
100
+ width: 100%;
101
+ }
102
+ .acx_fsmi_q_holder_c {
103
+ background: white none repeat scroll 0 0;
104
+ box-sizing: border-box;
105
+ display: inline-block;
106
+ padding: 12px;
107
+ width: 100%;
108
+ }
109
+ .acx_fsmi_q_holder .label {
110
+ float: left;
111
+ padding-top: 4px;
112
+ width: 20%;
113
+ }
114
+ .acx_fsmi_q_holder_c input,.acx_fsmi_q_holder_c select,.acx_fsmi_q_holder_c textarea {
115
+ border: 1px solid lightblue;
116
+ box-sizing: border-box;
117
+ float: left;
118
+ width: 79%;
119
+ }
120
+ .acx_fsmi_q_holder_c textarea
121
+ {
122
+ height: 100px;
123
+ }
124
+ .acx_fsmi_q_holder_c label {
125
+ float: left;
126
+ padding-top: 4px;
127
+ }
128
+ .acx_fsmi_q_holder_c input[type="radio"] {
129
+ display: block;
130
+ float: none;
131
+ margin-left: auto;
132
+ margin-right: auto;
133
+ margin-top: 6px;
134
+ width: auto;
135
+ }
136
+ .acx_fsmi_q_holder_c .acx_fsmi_q_sep {
137
+ float: left;
138
+ height: 8px;
139
+ width: 100%;
140
+ }
141
+ .acx_fsmi_q_holder .note {
142
+ color: gray;
143
+ float: left;
144
+ font-family: arial;
145
+ font-size: 12px;
146
+ margin-top: 3px;
147
+ width: 100%;
148
+ }
149
+ #acx_fsmi_c_icon_p_info_lb_h
150
+ {
151
+ background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
152
+ height: 100%;
153
+ left: 0;
154
+ position: fixed;
155
+ top: 0;
156
+ width: 100%;
157
+ z-index: 199999;
158
+ }
159
+ #acx_fsmi_c_icon_p_info_lb_h .acx_fsmi_c_icon_p_info_c
160
+ {
161
+ background: white none repeat scroll 0 0;
162
+ border: 1px solid lightblue;
163
+ border-radius: 2px;
164
+ box-sizing: border-box;
165
+ margin-left: 24%;
166
+ margin-top: 7%;
167
+ position: relative;
168
+ width: 50%;
169
+ }
170
+ #acx_fsmi_c_icon_p_info_lb_h .acx_fsmi_c_icon_p_info_close
171
+ {
172
+ background: rgba(0, 0, 0, 0) url("../images/close.png") repeat scroll 0 0;
173
+ cursor: pointer;
174
+ height: 30px;
175
+ position: absolute;
176
+ right: 0;
177
+ top: 0;
178
+ width: 35px;
179
+ }
180
+ .fsmi_info_lb
181
+ {
182
+ cursor:pointer;
183
+ }
184
+ #acx_fsmi_c_icon_p_info_lb_h h4
185
+ {
186
+ background: #f0f0f0 none repeat scroll 0 0;
187
+ box-sizing: border-box;
188
+ font-family: arial;
189
+ font-size: 16px;
190
+ font-weight: normal;
191
+ margin: 0;
192
+ padding: 8px;
193
+ }
194
+ #acx_fsmi_c_icon_p_info_lb_h .acx_fsmi_c_icon_p_info_content
195
+ {
196
+ background: white none repeat scroll 0 0;
197
+ box-sizing: border-box;
198
+ font-family: arial;
199
+ font-size: 16px;
200
+ line-height: 22px;
201
+ min-height: 100px;
202
+ padding: 15px;
203
+ color:#707171;
204
+ }
205
+ .acx_fsmi_c_icon_p_info_content a {
206
+ border-bottom: 1px dashed;
207
+ font-family: arial;
208
+ font-size: 15px;
209
+ font-style: normal;
210
+ text-decoration: none;
211
+ }
212
+ #acx_fsmi_admin_left_section h4
213
+ {
214
+ box-sizing: border-box;
215
+ color: #393939;
216
+ font-weight: normal;
217
+ margin: 0;
218
+ padding: 7px;
219
+ text-transform: capitalize;
220
+ width: 100%;
221
+ }
222
+ @media screen and (min-width:840px)
223
+ {
224
+ .acx_fsmi_option_page_left
225
+ {
226
+ width: 68%;
227
+ }
228
+ .acx_fsmi_option_page_right
229
+ {
230
+ display:block;
231
+ }
232
+ }
233
+ /* STYLES Expert Support */
234
+ .acx_fsmi_es_common_raw
235
+ {
236
+ border: 1px dotted white;
237
+ border-radius: 8px;
238
+ float: left;
239
+ /* margin-top: 20px; */
240
+ width: 100%;
241
+ }
242
+
243
+ .acx_fsmi_es_common_bg
244
+ {
245
+ background:#004050;
246
+ }
247
+ .acx_fsmi_es_middle_section
248
+ {
249
+ margin-left:auto;
250
+ margin-right:auto;
251
+ }
252
+
253
+ .acx_fsmi_es_acx_content_area
254
+ {
255
+ float:left;
256
+ width:100%;
257
+ padding: 25px 0;
258
+ }
259
+
260
+ .acx_fsmi_es_wp_left_area
261
+ {
262
+ float:left;
263
+ width:550px;
264
+ padding-right: 60px;
265
+ }
266
+ .acx_fsmi_es_wp_left_content_inner
267
+ {
268
+ float:left;
269
+ width:100%;
270
+ }
271
+
272
+ .acx_fsmi_es_wp_main_head
273
+ {
274
+ float:left;
275
+ display:table;
276
+ color:#66d1ec;
277
+ font-family:Oswald-Regular;
278
+ font-size:32px;
279
+ line-height:44px;
280
+ text-align:left;
281
+ margin-bottom: 20px;
282
+ }
283
+
284
+ .acx_fsmi_es_wp_sub_para_des
285
+ {
286
+ float:left;
287
+ display:table;
288
+ color:#fff;
289
+ font-family:Opensans-Regular;
290
+ font-size:14px;
291
+ line-height:24px;
292
+ text-align:left;
293
+ margin-bottom: 15px;
294
+ }
295
+
296
+ .acx_fsmi_es_wp_sub_para_des a,
297
+ .acx_fsmi_es_wp_footer_area_desc a
298
+ {
299
+ color:#3ad0f5;
300
+ display:inline;
301
+ text-decoration:underline;
302
+ }
303
+
304
+ .acx_fsmi_es_wp_sub_para_des a:hover
305
+ {
306
+ color:#ffbf43;
307
+ }
308
+
309
+ .acx_fsmi_es_wp_acx_service_list
310
+ {
311
+ float:left;
312
+ width:100%;
313
+ }
314
+
315
+ .acx_fsmi_es_wp_acx_service_list ul
316
+ {
317
+ display:block;
318
+ float:left;
319
+ width:100%;
320
+ }
321
+
322
+ .acx_fsmi_es_wp_acx_service_list ul li
323
+ {
324
+ color:#fff;
325
+ font-family:Opensans-Semibold;
326
+ font-size:14px;
327
+ text-align:left;
328
+ display:block;
329
+ margin-top:10px;
330
+ padding-left:20px;
331
+ background-repeat:no-repeat;
332
+ background-position:0px 6px;
333
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAJCAYAAAAPU20uAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAExJREFUeNqM0LENgDAQQ9FLxwJMwUBswhjUbJJxmIGa4lGgdFzIl9xZlu1AxYL4Uni5cWDODI0LG6bM0DixohSInP03YbhDd0X3h2cAIc3gGqTftKUAAAAASUVORK5CYII=);
334
+ }
335
+
336
+
337
+ .acx_fsmi_es_wp_send_ylw_para
338
+ {
339
+ float:left;
340
+ display:table;
341
+ color:#ffde9e;
342
+ font-family:Opensans-Regular;
343
+ font-size:13px;
344
+ line-height:22px;
345
+ text-align:left;
346
+ margin-top:25px;
347
+ }
348
+
349
+
350
+ .acx_fsmi_es_wp_right_area
351
+ {
352
+ width:350px;
353
+ float:left;
354
+ }
355
+
356
+ .acx_fsmi_es_wp_right_inner_form_wrap
357
+ {
358
+ float:left;
359
+ width:100%;
360
+ }
361
+
362
+ .acx_fsmi_es_wp_inner_wp_form
363
+ {
364
+ width:100%;
365
+ float:left;
366
+ background:#134d5b;
367
+ padding:40px 30px;
368
+ border-radius:3px;
369
+ }
370
+
371
+ .acx_fsmi_es_wp_form_head
372
+ {
373
+ float:left;
374
+ display:table;
375
+ color:#ffde9e;
376
+ font-family:Opensans-Semibold;
377
+ font-size:18px;
378
+ line-height:26px;
379
+ text-align:center;
380
+ margin-bottom: 20px;
381
+ }
382
+
383
+ form.acx_fsmi_es_wp_support_acx
384
+ {
385
+ display:block;
386
+ float:left;
387
+ width:100%;
388
+ }
389
+ span.acx_fsmi_es_cnvas_input
390
+ {
391
+ display:block;
392
+ float:left;
393
+ width:100%;
394
+ margin-bottom:8px;
395
+ }
396
+
397
+ span.acx_fsmi_es_cnvas_input input,
398
+ span.acx_fsmi_es_cnvas_input textarea
399
+ {
400
+ display:block;
401
+ float:left;
402
+ width:100%;
403
+ padding:8px 10px;
404
+ font-family:Opensans-Regular;
405
+ font-size:14px;
406
+ color:#444;
407
+ border:none;
408
+ border-radius:3px;
409
+ }
410
+
411
+ span.acx_fsmi_es_cnvas_input input.acx_fsmi_es_wp_acx_submit
412
+ {
413
+ background:#ffb11a;
414
+ font-family:Opensans-Semibold;
415
+ font-size:16px;
416
+ color:#7d5200;
417
+ cursor:pointer;
418
+ }
419
+ span.acx_fsmi_es_cnvas_input input.acx_fsmi_es_wp_acx_submit:hover
420
+ {
421
+ background:#ff961a;
422
+ }
423
+
424
+ .acx_fsmi_es_footer_content_cvr
425
+ {
426
+ display:block;
427
+ float:left;
428
+ width:100%;
429
+ padding: 20px 0;
430
+ border-top:1px solid #072e38;
431
+ }
432
+
433
+ .acx_fsmi_es_wp_footer_area_desc
434
+ {
435
+ float:left;
436
+ display:table;
437
+ color:#5f93a0;
438
+ font-family:Opensans-Regular;
439
+ font-size:11px;
440
+ line-height:14px;
441
+ text-align:left;
442
+ }
443
+ /***** Desktop *****/
444
+
445
+ @media screen and (min-width:1024px)
446
+ {
447
+ .acx_fsmi_es_middle_section
448
+ {
449
+ max-width:1000px;
450
+ }
451
+ }
452
+
453
+ /***** Small Desktop Tablets *****/
454
+
455
+ @media screen and (min-width:960px) and (max-width:1023px)
456
+ {
457
+ .acx_fsmi_es_middle_section
458
+ {
459
+ max-width:900px;
460
+ }
461
+ .acx_fsmi_es_wp_right_area {
462
+ width: 380px;
463
+ }
464
+
465
+ .acx_fsmi_es_wp_left_area {
466
+ width: 520px;
467
+ }
468
+ }
469
+
470
+ /***** portrait Tablets *****/
471
+
472
+ @media screen and (min-width:768px) and (max-width:1245px)
473
+ {
474
+ .acx_fsmi_es_middle_section
475
+ {
476
+ max-width:700px;
477
+ }
478
+ .acx_fsmi_es_wp_right_area {
479
+ width: 100%;
480
+ margin-top:50px
481
+ }
482
+
483
+ .acx_fsmi_es_wp_left_area {
484
+ width:100%;
485
+ padding:0;
486
+ }
487
+ .acx_fsmi_es_half_width_sec {
488
+ width: 49% !important;
489
+ }
490
+
491
+ .acx_fsmi_es_haif_marg_left
492
+ {
493
+ margin-left:1%;
494
+ }
495
+
496
+ .acx_fsmi_es_haif_marg_right
497
+ {
498
+ margin-right:1%;
499
+ }
500
+ }
501
+ /***** Smart Phones *****/
502
+
503
+ @media screen and (min-width:540px) and (max-width:767px)
504
+ {
505
+ .acx_fsmi_es_middle_section
506
+ {
507
+ max-width:500px;
508
+ }
509
+ .acx_fsmi_es_wp_right_area {
510
+ width: 100%;
511
+ margin-top:50px
512
+ }
513
+
514
+ .acx_fsmi_es_wp_left_area {
515
+ width:100%;
516
+ padding:0;
517
+ }
518
+ }
519
+
520
+ /***** Small Screens (Mobiles) *****/
521
+
522
+ @media screen and (max-width:539px)
523
+ {
524
+ .acx_fsmi_es_middle_section
525
+ {
526
+ max-width:90%;
527
+ }
528
+ .acx_fsmi_es_wp_right_area
529
+ {
530
+ width: 100%;
531
+ margin-top:50px
532
+ }
533
+ .acx_fsmi_es_wp_left_area
534
+ {
535
+ width:100%;
536
+ padding:0;
537
+ }
538
+ .acx_fsmi_es_wp_inner_wp_form
539
+ {
540
+ padding: 40px 15px;
541
+ }
542
+ }
543
+ /* Starting SIDEBAR */
544
+ #acx_fsmi_sidebar
545
+ {
546
+ box-sizing: border-box;
547
+ display: inline-block;
548
+ padding-top: 40px;
549
+ width: 100%;
550
+ }
551
+ #acx_fsmi_sidebar .acx_fsmi_sidebar_widget
552
+ {
553
+ border: 1px dotted lightgray;
554
+ box-sizing: border-box;
555
+ float: left;
556
+ margin-bottom: 15px;
557
+ min-height: 100px;
558
+ width: 100%;
559
+ }
560
+ #acx_fsmi_sidebar .acx_fsmi_sidebar_w_title
561
+ {
562
+ background: lavender none repeat scroll 0 0;
563
+ box-sizing: border-box;
564
+ font-family: arial;
565
+ font-size: 14px;
566
+ font-weight: bold;
567
+ padding: 10px;
568
+ width: 100%;
569
+ }
570
+ #acx_fsmi_sidebar .acx_fsmi_sidebar_w_content
571
+ {
572
+ box-sizing: border-box;
573
+ display: table;
574
+ font-family: arial;
575
+ font-size: 12px;
576
+ line-height: 20px;
577
+ padding: 10px;
578
+ width: 100%;
579
+ }
580
+ /* Starting Ad Banner Code */
581
+ #acx_ad_banners_fsmi
582
+ {
583
+ float: left;
584
+ margin-bottom: 10px;
585
+ min-height: 80px;
586
+ width: 100%;
587
+ }
588
+ #acx_ad_banners_fsmi .acx_ad_fsmi_1
589
+ {
590
+ border: 1px solid lightgray;
591
+ display: block;
592
+ float: left;
593
+ height: auto;
594
+ margin-bottom: 12px;
595
+ overflow: hidden;
596
+ padding-bottom: 15px;
597
+ text-decoration: none;
598
+ width: 100%;
599
+ }
600
+ #acx_ad_banners_fsmi .acx_ad_fsmi_title
601
+ {
602
+ background: lavender none repeat scroll 0 0;
603
+ box-sizing: border-box;
604
+ color: black;
605
+ float: left;
606
+ font-family: arial;
607
+ font-size: 14px;
608
+ font-weight: bold;
609
+ opacity: 0.8;
610
+ padding: 10px;
611
+ text-align: left;
612
+ width: 100%;
613
+ }
614
+ #acx_ad_banners_fsmi .acx_ad_fsmi_1:hover {
615
+ border: 1px solid #00a0d2;
616
+ }
617
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc
618
+ {
619
+ background: rgba(0, 0, 0, 0) url("../images/wp.png") no-repeat scroll 5px 0;
620
+ box-sizing: border-box;
621
+ color: black;
622
+ float: left;
623
+ font-family: arial;
624
+ font-size: 13px;
625
+ height: 32px;
626
+ padding-right:3px;
627
+ margin-top: 15px;
628
+ padding-left: 42px;
629
+ padding-top: 6px;
630
+ text-transform: capitalize;
631
+ width: 100%;
632
+ }
633
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc2
634
+ {
635
+ background: url("../images/des.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
636
+ }
637
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc3
638
+ {
639
+ background: url("../images/plug.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
640
+ }
641
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc4
642
+ {
643
+ background: url("../images/quick.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
644
+ }
645
+ /* Ending Ad Banner Code */
style.css → css/style.css RENAMED
@@ -14,4 +14,8 @@ box-shadow:none !important;
14
  #divBottomRight img:hover, #acurax_si_simple img:hover, #short_code_si_icon img:hover
15
  {
16
  opacity:0.8;
 
 
 
 
17
  }
14
  #divBottomRight img:hover, #acurax_si_simple img:hover, #short_code_si_icon img:hover
15
  {
16
  opacity:0.8;
17
+ }
18
+ #short_code_si_icon a,#divBottomRight a,#divBottomRight a:focus,#short_code_si_icon a:focus {
19
+ border: 0px;
20
+ outline: none;
21
  }
css/style_admin.css ADDED
@@ -0,0 +1,757 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url(https://fonts.googleapis.com/css?family=Roboto);
2
+ @font-face {
3
+ font-family: 'agency_fbbold';
4
+ src: url('../images/fonts/agencyb-webfont.eot');
5
+ src: url('../images/fonts/agencyb-webfont.eot?#iefix') format('embedded-opentype'),
6
+ url('../images/fonts/agencyb-webfont.woff') format('woff'),
7
+ url('../images/fonts/agencyb-webfont.ttf') format('truetype'),
8
+ url('../images/fonts/agencyb-webfont.svg#agency_fbbold') format('svg');
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ }
12
+
13
+
14
+ @font-face {
15
+ font-family: 'Raleway';
16
+ font-style: normal;
17
+ font-weight: 400;
18
+ src: url('../images/fonts/raleway.woff') format('woff');
19
+ }
20
+ @font-face {
21
+ font-family: 'Courgette';
22
+ font-style: normal;
23
+ font-weight: 400;
24
+ src: url('../images/fonts/courgette.woff') format('woff');
25
+ }
26
+ #icon_selection
27
+ {
28
+ background: none repeat scroll 0 0 white;
29
+ color: black;
30
+ text-shadow: 0 0 1px white;
31
+ }
32
+ #icon_selection:hover
33
+ {
34
+ background: none repeat scroll 0 0 LightYellow;
35
+ display: block;
36
+ }
37
+ #acx_si_theme_display .selected
38
+ {
39
+ background: none repeat scroll 0 0 LightYellow;
40
+ border: 1px dashed gray !important;
41
+ display: block;
42
+ }
43
+ /********************************************************************************/
44
+ .acx_fsmi_page_h2
45
+ {
46
+ font-family: Roboto,"Open Sans",sans-serif;
47
+ font-size: 22px !important;
48
+ margin: 0 !important;
49
+ width: 100%;
50
+ }
51
+
52
+ .acx_fsmi_admin_left {
53
+ display: inline-block;
54
+ max-width: 99%;
55
+ padding-left: 1%;
56
+ }
57
+ #acx_fsmi_admin_left_section
58
+ {
59
+ background: #f0f0f0 none repeat scroll 0 0;
60
+ border: 1px solid lightgray;
61
+ box-sizing: border-box;
62
+ display: inline-block;
63
+ margin-bottom: 10px;
64
+ width: 100%;
65
+ }
66
+
67
+ .fsmi_p_info_icon_h
68
+ {
69
+ background: rgba(0, 0, 0, 0) url("../images/p-info-icon-hori.jpg") repeat scroll 0 0;
70
+ display: block;
71
+ float: left;
72
+ height: 33px;
73
+ margin-top: 5px;
74
+ max-width: 78%;
75
+ width: 365px;
76
+ cursor:pointer;
77
+ }
78
+ .fsmi_p_info_start_end
79
+ {
80
+ background: rgba(0, 0, 0, 0) url("../images/p-info-start-end.jpg") repeat scroll 0 0 / 100% auto;
81
+ display: block;
82
+ height: 463px;
83
+ margin-left: auto;
84
+ margin-right: auto;
85
+ max-width: 100%;
86
+ cursor:pointer;
87
+ width: 686px;
88
+ }
89
+ /********************************************************************************/
90
+ #acx_si_theme_display
91
+ {
92
+ color: #737171;
93
+ display: block;
94
+ font-size: 12px;
95
+ margin-left: auto;
96
+ margin-right: auto;
97
+ max-height: 312px;
98
+ overflow-y: scroll;
99
+ padding: 5px 7px 10px;
100
+ text-shadow: 0 0 1px #F7F7F7;
101
+ width: 99%;
102
+ }
103
+ #acx_si_theme_display .acx_si_single_theme_display
104
+ {
105
+ border: 1px solid lightgray;
106
+ float: left;
107
+ height: 51px;
108
+ margin-bottom: 8px;
109
+ margin-left: 7px;
110
+ padding: 2px;
111
+ width: 340px;
112
+ }
113
+ #acx_si_theme_display .acx_si_single_label
114
+ {
115
+ float: left;
116
+ font-weight: bold;
117
+ padding-top: 6px;
118
+ text-align: center;
119
+ width: 70px;
120
+ }
121
+ #acx_si_theme_display .image_div
122
+ {
123
+ float:left;
124
+ }
125
+ #acx_si_theme_display .image_div img
126
+ {
127
+ border: 0 none;
128
+ margin-top: 6px;
129
+ width: 36px;
130
+ margin-left:1px;
131
+ }
132
+ #acx_help_page
133
+ {
134
+ }
135
+ #acx_help_page h3
136
+ {
137
+ color: SeaGreen;
138
+ font-family: arial;
139
+ font-size: 18px;
140
+ padding-bottom: 5px;
141
+ }
142
+ #acx_help_page .q
143
+ {
144
+ border-bottom: 1px dotted lightgray;
145
+ color: gray;
146
+ font-family: arial;
147
+ font-size: 14px;
148
+ font-weight: bold;
149
+ margin-top: 50px;
150
+ padding-top: 5px;
151
+ }
152
+ #acx_help_page .a
153
+ {
154
+ font-style: italic;
155
+ }
156
+ #acurax_notice
157
+ {
158
+ background-color: #FFEBE8;
159
+ border: 1px solid #E6DB55;
160
+ border-radius: 5px 5px 5px 5px;
161
+ color: darkRed;
162
+ font-family: arial;
163
+ font-weight: bold;
164
+ padding: 8px;
165
+ font-size:14px;
166
+ }
167
+ #acurax_notice select
168
+ {
169
+ font-weight:normal;
170
+ }
171
+ #contentLeft ul{
172
+ display: inline-block;
173
+ list-style: none outside none;
174
+ }
175
+ #contentLeft img
176
+ {
177
+ width: 40px;
178
+ }
179
+ #contentLeft li {
180
+ border: 1px solid #CCCCCC;
181
+ background:white;
182
+ color: black;
183
+ cursor: move;
184
+ float: left;
185
+ font-family: arial;
186
+ font-size: 15px;
187
+ list-style: none outside none;
188
+ margin-left: 3px;
189
+ min-width: 70px;
190
+ padding: 5px;
191
+ text-align: center;
192
+ }
193
+ #wtd
194
+ {
195
+ background: url("../images/wtd.jpg") repeat scroll 0 0 transparent;
196
+ display: block;
197
+ height: 50px;
198
+ margin-right: 8px;
199
+ margin-top: 4px;
200
+ width: 240px;
201
+ float:left;
202
+ border: 3px solid gray;
203
+ box-shadow: 1px 1px 11px -5px black;
204
+ }
205
+ #wd
206
+ {
207
+ background: url("../images/wd.jpg") repeat scroll 0 0 transparent;
208
+ display: block;
209
+ height: 50px;
210
+ margin-right: 8px;
211
+ margin-top: 4px;
212
+ width: 240px;
213
+ float:left;
214
+ border: 3px solid gray;
215
+ box-shadow: 1px 1px 11px -5px black;
216
+ }
217
+ #wrd
218
+ {
219
+ background: url("../images/wr.jpg") repeat scroll 0 0 transparent;
220
+ display: block;
221
+ height: 50px;
222
+ margin-right: 8px;
223
+ margin-top: 4px;
224
+ width: 240px;
225
+ float:left;
226
+ border: 3px solid gray;
227
+ box-shadow: 1px 1px 11px -5px black;
228
+ }
229
+ #spd
230
+ {
231
+ background: url("../images/spd.jpg") repeat scroll 0 0 transparent;
232
+ display: block;
233
+ height: 50px;
234
+ margin-right: 8px;
235
+ margin-top: 4px;
236
+ width: 240px;
237
+ float:left;
238
+ border: 3px solid gray;
239
+ box-shadow: 1px 1px 11px -5px black;
240
+ }
241
+ #ad_fsmi_2
242
+ {
243
+ background: url("../images/lq.jpg") repeat scroll 0 0 transparent;
244
+ border: 2px dashed black;
245
+ border-radius: 10px 10px 10px 10px;
246
+ height: 366px;
247
+ margin-left: auto;
248
+ margin-right: auto;
249
+ margin-top: 10px;
250
+ position: relative;
251
+ width: 653px;
252
+ }
253
+ #ad_fsmi_2_button
254
+ {
255
+ bottom: 5px;
256
+ cursor: pointer;
257
+ display: block;
258
+ height: 32px;
259
+ position: absolute;
260
+ right: 4px;
261
+ width: 130px;
262
+ }
263
+ #ad_fsmi_2_button_order
264
+ {
265
+ background: url("../images/button.jpg") no-repeat scroll center 0 #FFFFFF;
266
+ cursor: pointer;
267
+ display: block;
268
+ height: 115px;
269
+ margin-left: auto;
270
+ margin-right: auto;
271
+ width: 283px;
272
+ }
273
+ #ad_fsmi_2_button_order_link
274
+ {
275
+ cursor: pointer;
276
+ display: block;
277
+ height: 115px;
278
+ margin-left: auto;
279
+ margin-right: auto;
280
+ width: 283px;
281
+ }
282
+ #ad_fsmi_2_button_payments
283
+ {
284
+ background: url("../images/payments.jpg") repeat scroll 0 0 transparent;
285
+ height: 86px;
286
+ display: block;
287
+ cursor: pointer;
288
+ margin-left: auto;
289
+ margin-right: auto;
290
+ width: 601px;
291
+ }
292
+ #ad_fsmi_2_button_payments_link
293
+ {
294
+ height: 86px;
295
+ display: block;
296
+ cursor: pointer;
297
+ width: 601px;
298
+ }
299
+ #acx_fsmi_premium {
300
+ background: url("../images/dyk.png") no-repeat scroll 20px 3px #fff6d6;
301
+ border: 1px solid #fcc328;
302
+ float: left;
303
+ margin-bottom: 20px;
304
+ margin-top: 0;
305
+ min-height: 40px;
306
+ padding: 5px 0;
307
+ text-align: left;
308
+ text-indent: 105px;
309
+ width: 100%;
310
+ }
311
+ #acx_fsmi_premium a
312
+ {
313
+ font-family: sans-serif;
314
+ font-size: 21px;
315
+ text-decoration:none;
316
+ }
317
+ #acx_backlink
318
+ {
319
+ background-color: #FFECB3;
320
+ border: 1px solid #E0AB1B;
321
+ border-radius: 5px 5px 5px 5px;
322
+ float: left;
323
+ padding: 0 5px;
324
+ margin-bottom:6px;
325
+ }
326
+ #acx_td_fsmi {
327
+ background: white url("../images/thank-you.png") no-repeat scroll 25px center;
328
+ border: 1px solid lightsteelblue;
329
+ border-radius: 3px;
330
+ box-sizing: border-box;
331
+ font-family: arial;
332
+ font-size: 12px;
333
+ line-height: 25px !important;
334
+ padding: 10px 10px 10px 93px;
335
+ text-align: center;
336
+ }
337
+ #acx_td_fsmi a {
338
+ font-family: arial;
339
+ font-weight: bold;
340
+ margin-left: 16px;
341
+ text-transform: capitalize;
342
+ }
343
+ /* Comparison 2014 Starts Here */
344
+ #ss_middle_wrapper
345
+ {
346
+ background: none repeat scroll 0 0 #D5D5D5;
347
+ border-top: 1px solid #29A2DF;
348
+ min-height: 500px;
349
+ width: 100%;
350
+ float:left;
351
+ }
352
+ #ss_middle_wrapper h2
353
+ {
354
+ color: #000000;
355
+ font-family: 'agency_fbbold';
356
+ font-size: 52px;
357
+ font-weight: normal;
358
+ margin: 0;
359
+ line-height: 1;
360
+ text-transform: uppercase;
361
+ }
362
+ #ss_middle_wrapper h3
363
+ {
364
+ line-height: 1;
365
+ color: #29a2df;
366
+ font-family: 'agency_fbbold';
367
+ font-size: 26px;
368
+ font-weight: normal;
369
+ margin: 0;
370
+ text-transform: uppercase;
371
+ }
372
+ #ss_middle_center
373
+ {
374
+ background: #ececec;
375
+ margin: 0 auto;
376
+ width: 1006px;
377
+ }
378
+ #ss_middle_inline_block
379
+ {
380
+ display: inline-block;
381
+ padding: 33px;
382
+ width: 940px;
383
+ }
384
+ .middle_h2_1
385
+ {
386
+ background: url("../images/girl.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
387
+ height: 149px;
388
+ padding-left: 154px;
389
+ padding-top: 53px;
390
+ width: 786px;
391
+ float: left;
392
+ }
393
+ #ss_features_table
394
+ {
395
+ background: url("../images/ss_table_footer.png") no-repeat scroll center bottom rgba(0, 0, 0, 0);
396
+ float: left;
397
+ margin: -62px 0 0;
398
+ width: 940px;
399
+ }
400
+ #ss_table_header
401
+ {
402
+ width: 940px;
403
+ float: left;
404
+ height: 118px;
405
+ }
406
+ #ss_table_header h3
407
+ {
408
+ color: #FFFFFF;
409
+ font-family: arial;
410
+ font-size: 14px;
411
+ font-weight: bolder;
412
+ line-height: 1;
413
+ text-align: center;
414
+ }
415
+ .tb_h1
416
+ {
417
+ background: url("../images/table_head_1.jpg") no-repeat scroll left 0 rgba(0, 0, 0, 0);
418
+ padding: 21px 0;
419
+ width: 178px;
420
+ float: left;
421
+ margin: 62px 0 0;
422
+ }
423
+ .tb_h2
424
+ {
425
+ background: url("../images/table_head_2.jpg") no-repeat scroll left 0 rgba(0, 0, 0, 0);
426
+ padding: 21px 0;
427
+ width: 340px;
428
+ float: left;
429
+ margin: 62px 0 0;
430
+ }
431
+ .tb_h3
432
+ {
433
+ background: url("../images/table_head_3.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
434
+ width: 211px;
435
+ height: 88px;
436
+ float: left;
437
+ margin: 30px 0 0;
438
+ position: relative;
439
+ }
440
+ .ss_download
441
+ {
442
+ height: 32px;
443
+ left: 94px;
444
+ position: absolute;
445
+ top: 44px;
446
+ width: 102px;
447
+ }
448
+ .tb_h4
449
+ {
450
+ background: url("../images/table_head_4.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
451
+ width: 211px;
452
+ height: 118px;
453
+ float: left;
454
+ position: relative;
455
+ }
456
+ .ss_buy_now
457
+ {
458
+ height: 65px;
459
+ left: 2px;
460
+ position: absolute;
461
+ top: 51px;
462
+ width: 207px;
463
+ }
464
+ .ss_column_holder
465
+ {
466
+ background: none repeat scroll 0 0 #FFFFFF;
467
+ border-bottom: 1px solid #E6E6E6;
468
+ float: left;
469
+ width: 940px;
470
+ }
471
+ .ss_feature_group
472
+ {
473
+ color: #33a9e1;
474
+ font-family: arial;
475
+ font-size: 14px;
476
+ font-weight: bolder;
477
+ line-height: 1;
478
+ text-align: center;
479
+ float: left;
480
+ width: 176px;
481
+ }
482
+ .ss_features
483
+ {
484
+ border-left: 1px solid #E6E6E6;
485
+ color: #737373;
486
+ font-family: arial;
487
+ font-size: 12px;
488
+ line-height: 1;
489
+ float: left;
490
+ }
491
+ .ss_features ul
492
+ {
493
+ margin: 0;
494
+ padding: 0;
495
+ }
496
+ .ss_features ul li
497
+ {
498
+ border-bottom: 1px solid #E6E6E6;
499
+ list-style: none outside none;
500
+ padding: 13px;
501
+ width: 315px;
502
+ margin-bottom: 0;
503
+ }
504
+ .ss_features ul li a
505
+ {
506
+ color: #29A2DF;
507
+ float: right;
508
+ font-family: arial;
509
+ font-size: 12px;
510
+ font-weight: normal;
511
+ text-decoration: none;
512
+ transition: all 0.3s ease 0s;
513
+ }
514
+ .ss_features ul li a:hover
515
+ {
516
+ color: #006496;
517
+ }
518
+ .ss_last_one
519
+ {
520
+ border: 0 none !important;
521
+ }
522
+ .ss_y_n_holder
523
+ {
524
+ border-left: 1px solid #E6E6E6;
525
+ float: left;
526
+ width: 210px;
527
+ }
528
+ .ss_yes
529
+ {
530
+ background: url("../images/ss_yes.png") no-repeat scroll center center rgba(0, 0, 0, 0);
531
+ border-bottom: 1px solid #E6E6E6;
532
+ height: 38px;
533
+ width: 210px;
534
+ }
535
+ .ss_no
536
+ {
537
+ background: url("../images/ss_no.png") no-repeat scroll center center rgba(0, 0, 0, 0);
538
+ border-bottom: 1px solid #E6E6E6;
539
+ height: 38px;
540
+ width: 210px;
541
+ }
542
+ .order_now
543
+ {
544
+ float: left;
545
+ height: 105px;
546
+ margin: 28px 0 19px 323px;
547
+ width: 310px;
548
+ }
549
+ .ss_column_holder .mini
550
+ {
551
+ display:none;
552
+ }
553
+
554
+ /* Comparison 2014 Ends Here */
555
+ #acx_td p .button
556
+ {
557
+ border: 1px solid lightgray;
558
+ margin: 0 3px 0 0 !important;
559
+ min-height: 30px !important;
560
+ padding: 3px 10px !important;
561
+ }
562
+ #acx_td p .button:hover
563
+ {
564
+ background: azure;
565
+ }
566
+ #acx_trouble_ul
567
+ {
568
+ display: inline-block;
569
+ list-style: none outside none;
570
+ width: 100%;
571
+ }
572
+ #acx_trouble_ul li
573
+ {
574
+ background: url("../images/tag.png") no-repeat scroll 6px center #F8F8FF;
575
+ border: 1px dashed #808080;
576
+ color: #006400;
577
+ float: left;
578
+ font-size: 13px;
579
+ list-style: none outside none;
580
+ margin-left: 2px;
581
+ margin-right: 2px;
582
+ padding: 5px;
583
+ text-indent: 24px;
584
+ text-transform: capitalize;
585
+ }
586
+ #acx_trouble_ul li a
587
+ {
588
+ text-decoration:none !important;
589
+ color:#006400;
590
+ }
591
+ .acx_trouble_fixit
592
+ {
593
+ background: url("../images/fix.png") no-repeat scroll 5px center #F0FFF0;
594
+ border-bottom: 1px solid #D3D3D3;
595
+ border-radius: 5px;
596
+ border-right: 1px solid #D3D3D3;
597
+ margin-left: 10px;
598
+ padding: 4px 10px 4px 28px;
599
+ }
600
+ /* Starting CSS for Quick Request Form */
601
+ #acx_quick_request_form
602
+ {
603
+ background: none repeat scroll 0 0 white;
604
+ border: 1px solid lightgray;
605
+ border-radius: 1px;
606
+ height: 390px;
607
+ margin-left: auto;
608
+ margin-right: auto;
609
+ margin-top: 20px;
610
+ padding: 10px;
611
+ width: 350px;
612
+ }
613
+ #acx_quick_request_form input
614
+ {
615
+ border: 1px solid #20B2AA;
616
+ width: 245px;
617
+ }
618
+ #acx_quick_request_form textarea
619
+ {
620
+ border: 1px solid #20B2AA;
621
+ width: 245px;
622
+ height:100px;
623
+ }
624
+ #acx_quick_request_form .acx_qr_label
625
+ {
626
+ float: left;
627
+ font-family: arial;
628
+ min-width: 90px;
629
+ padding-right: 10px;
630
+ padding-top: 6px;
631
+ margin-bottom:5px;
632
+ }
633
+ #acx_quick_request_form .acx_qr_field
634
+ {
635
+ float: left;
636
+ margin-bottom:5px;
637
+ }
638
+ #acx_quick_request_form span
639
+ {
640
+ color:red;
641
+ }
642
+ #acx_quick_request_form h2
643
+ {
644
+ font-family: arial;
645
+ font-size: 17px;
646
+ line-height: 28px;
647
+ margin: 0 0 14px;
648
+ text-align: center;
649
+ text-transform: capitalize;
650
+ }
651
+ /* Ending CSS for Quick Request Form */
652
+ /* Starting Ad Banner Code */
653
+ #acx_ad_banners_fsmi
654
+ {
655
+ float: left;
656
+ margin-bottom: 10px;
657
+ min-height: 80px;
658
+ width: 100%;
659
+ }
660
+ #acx_ad_banners_fsmi .acx_ad_fsmi_1
661
+ {
662
+ border: 1px solid lightgray;
663
+ display: block;
664
+ float: left;
665
+ height: auto;
666
+ margin-bottom: 12px;
667
+ overflow: hidden;
668
+ padding-bottom: 15px;
669
+ text-decoration: none;
670
+ width: 100%;
671
+ }
672
+ #acx_ad_banners_fsmi .acx_ad_fsmi_title
673
+ {
674
+ background: lavender none repeat scroll 0 0;
675
+ box-sizing: border-box;
676
+ color: black;
677
+ float: left;
678
+ font-family: arial;
679
+ font-size: 14px;
680
+ font-weight: bold;
681
+ opacity: 0.8;
682
+ padding: 10px;
683
+ text-align: left;
684
+ width: 100%;
685
+ }
686
+ #acx_ad_banners_fsmi .acx_ad_fsmi_1:hover {
687
+ border: 1px solid #00a0d2;
688
+ }
689
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc
690
+ {
691
+ background: rgba(0, 0, 0, 0) url("../images/wp.png") no-repeat scroll 5px 0;
692
+ box-sizing: border-box;
693
+ color: black;
694
+ float: left;
695
+ font-family: arial;
696
+ font-size: 13px;
697
+ height: 32px;
698
+ padding-right:3px;
699
+ margin-top: 15px;
700
+ padding-left: 42px;
701
+ padding-top: 6px;
702
+ text-transform: capitalize;
703
+ width: 100%;
704
+ }
705
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc2
706
+ {
707
+ background: url("../images/des.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
708
+ }
709
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc3
710
+ {
711
+ background: url("../images/plug.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
712
+ }
713
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc4
714
+ {
715
+ background: url("../images/quick.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
716
+ }
717
+ /* Ending Ad Banner Code */
718
+ #floating-social-media-icon, #floating-social-media-icon .column-description,#floating-social-media-icon .check-column
719
+ {
720
+ background: url("../images/plugin_page_bg.png") repeat-x scroll 0 0 #FFFFFF;
721
+ }
722
+ #plugin_page_links
723
+ {
724
+ background: none repeat scroll 0 0 #87CEFA;
725
+ border-radius: 8px;
726
+ color: #2F4F4F;
727
+ min-height: 22px;
728
+ margin-top: 15px;
729
+ padding: 5px;
730
+ text-align: center;
731
+ }
732
+ #floating-social-media-icon .plugin-title
733
+ {
734
+ background: transparent url("../images/from.png") no-repeat scroll 4% 82%;
735
+ display: block;
736
+ min-height: 120px;
737
+ }
738
+ #plugin_page_links a
739
+ {
740
+ color: #2f4f4f;
741
+ font-family: arial;
742
+ font-size: 12px;
743
+ padding: 1px 8px;
744
+ }
745
+ #plugin_page_links a:hover
746
+ {
747
+ text-decoration:underline;
748
+ }
749
+
750
+ @media screen and (min-width:840px)
751
+ {
752
+ #acx_fsmi_sidebar
753
+ {
754
+ display:block;
755
+ }
756
+
757
+ }
fsmi-misc.php DELETED
@@ -1,199 +0,0 @@
1
- <?php
2
- if(ISSET($_POST['acurax_social_icon_hidden']))
3
- {
4
- $acurax_social_icon_hidden = $_POST['acurax_social_icon_hidden'];
5
- }
6
- else
7
- {
8
- $acurax_social_icon_hidden = '';
9
- }
10
- if($acurax_social_icon_hidden == 'Y')
11
- { //Form data sent
12
- if (!isset($_POST['acx_fsmi_misc'])) die("<br><br>Unknown Error Occurred, Try Again... <a href=''>Click Here</a>");
13
- if (!wp_verify_nonce($_POST['acx_fsmi_misc'],'acx_fsmi_misc')) die("<br><br>Unknown Error Occurred, Try Again... <a href=''>Click Here</a>");
14
- if(!current_user_can('manage_options')) die("<br><br>Sorry, You have no permission to do this action...</a>");
15
-
16
-
17
- $acx_si_fsmi_theme_warning_ignore = sanitize_text_field($_POST['acx_si_fsmi_theme_warning_ignore']);
18
- update_option('acx_si_fsmi_theme_warning_ignore', $acx_si_fsmi_theme_warning_ignore);
19
-
20
-
21
- $acx_si_fsmi_float_fix = sanitize_text_field($_POST['acx_si_fsmi_float_fix']);
22
- update_option('acx_si_fsmi_float_fix', $acx_si_fsmi_float_fix);
23
-
24
- $acx_fsmi_acx_service_banners = sanitize_text_field($_POST['acx_fsmi_acx_service_banners']);
25
- update_option('acx_fsmi_acx_service_banners', $acx_fsmi_acx_service_banners);
26
-
27
- $acx_si_fsmi_hide_advert = sanitize_text_field($_POST['acx_si_fsmi_hide_advert']);
28
- update_option('acx_si_fsmi_hide_advert', $acx_si_fsmi_hide_advert);
29
-
30
- $acx_si_fsmi_disable_mobile = sanitize_text_field($_POST['acx_si_fsmi_disable_mobile']);
31
- update_option('acx_si_fsmi_disable_mobile', $acx_si_fsmi_disable_mobile);
32
-
33
-
34
- $acx_si_fsmi_no_follow = sanitize_text_field($_POST['acx_si_fsmi_no_follow']);
35
- update_option('acx_si_fsmi_no_follow', $acx_si_fsmi_no_follow);
36
-
37
- $acx_si_fsmi_hide_expert_support_menu = sanitize_text_field($_POST['acx_si_fsmi_hide_expert_support_menu']);
38
- update_option('acx_si_fsmi_hide_expert_support_menu', $acx_si_fsmi_hide_expert_support_menu);
39
-
40
-
41
- ?>
42
- <div class="updated"><p><strong><?php _e('Acurax Floating Social Icons Misc Settings Saved!.' ); ?></strong></p></div>
43
- <script type="text/javascript">
44
- setTimeout(function(){
45
- jQuery('.updated').fadeOut('slow');
46
-
47
- }, 4000);
48
-
49
- </script>
50
- <?php
51
- }
52
- else
53
- { //Normal page display
54
- $acx_si_fsmi_theme_warning_ignore = get_option('acx_si_fsmi_theme_warning_ignore');
55
- $acx_si_fsmi_float_fix = get_option('acx_si_fsmi_float_fix');
56
- $acx_fsmi_acx_service_banners = get_option('acx_fsmi_acx_service_banners');
57
- $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
58
- $acx_si_fsmi_disable_mobile = get_option('acx_si_fsmi_disable_mobile');
59
- $acx_si_fsmi_no_follow = get_option('acx_si_fsmi_no_follow');
60
- $acx_si_fsmi_hide_expert_support_menu = get_option('acx_si_fsmi_hide_expert_support_menu');
61
-
62
- // Setting Defaults
63
- if ($acx_si_fsmi_theme_warning_ignore == "") { $acx_si_fsmi_theme_warning_ignore = "no"; }
64
- if ($acx_si_fsmi_float_fix == "") { $acx_si_fsmi_float_fix = "no"; }
65
- if ($acx_fsmi_acx_service_banners == "") { $acx_fsmi_acx_service_banners = "yes"; }
66
- if ($acx_si_fsmi_hide_advert == "") { $acx_si_fsmi_hide_advert = "no"; }
67
- if ($acx_si_fsmi_disable_mobile == "") { $acx_si_fsmi_disable_mobile = "no"; }
68
- if ($acx_si_fsmi_no_follow == "") { $acx_si_fsmi_no_follow = "no"; }
69
- if ($acx_si_fsmi_hide_expert_support_menu == "") { $acx_si_fsmi_hide_expert_support_menu = "no"; }
70
- } //Main else
71
- ?>
72
- <div class="wrap">
73
- <div style='background: white none repeat scroll 0% 0%; height: 100%; margin-top: 5px; border-radius: 15px; min-height: 450px; box-sizing: border-box; margin-left: auto; margin-right: auto; width: 100%; padding: 1%;display: inline-block;'>
74
- <?php if($acx_si_fsmi_hide_advert == "no")
75
- { ?>
76
- <div id="acx_fsmi_premium">
77
- <a style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;" href="admin.php?page=Acurax-Social-Icons-Premium" target="_blank">Fully Featured - Premium Floating Social Media Icon is Available With Tons of Extra Features! - Click Here</a>
78
- </div> <!-- acx_fsmi_premium -->
79
- <?php } ?>
80
- <h2 style="width: 100%; font-size: 2px; padding: 0px; line-height: 0px; color: white;">.</h2>
81
- <div class="acx_fsmi_admin_left">
82
- <form name="acurax_si_misc_form" id="acurax_si_misc_form" method="post" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>">
83
- <input type="hidden" name="acurax_social_icon_hidden" value="Y">
84
- <h2 class="acx_fsmi_page_h2">Acurax Social Icons Misc Settings</h2>
85
-
86
-
87
-
88
- <div id="acx_fsmi_admin_left_section" style="margin-top:15px;">
89
- <?php echo "<h4>" . "Acurax Theme Conflict/Misc Settings" . "</h4>"; ?>
90
- <div class="acx_fsmi_admin_left_section_c">
91
- <p class="field_label">
92
- <?php _e("Icons Vertical Issue? " ); ?><a style="cursor:pointer;" class="fsmi_info_premium" lb_title="Icon Shows Vertical Instead of Horizontal" lb_content="If your social media icons is displaying vertically instead of horizontal, You can change this settings.">[?]</a>
93
- </p>
94
- <select name="acx_si_fsmi_float_fix">
95
- <option value="yes"<?php if ($acx_si_fsmi_float_fix == "yes") { echo 'selected="selected"'; } ?>>Yes,Make My Vertical Icons Horizontal</option>
96
- <option value="no"<?php if ($acx_si_fsmi_float_fix == "no") { echo 'selected="selected"'; } ?>>No, I Dont Have Any Issues</option>
97
- </select>
98
- <span class="field_sep"></span>
99
- <p class="field_label">
100
- <?php _e("Ignore Theme Warning?" ); ?>
101
- </p>
102
- <select name="acx_si_fsmi_theme_warning_ignore">
103
- <option value="yes"<?php if ($acx_si_fsmi_theme_warning_ignore == "yes") { echo 'selected="selected"'; } ?>>Yes, Everything is working fine and and i still see theme warning - Fix This</option>
104
- <option value="no"<?php if ($acx_si_fsmi_theme_warning_ignore == "no") { echo 'selected="selected"'; } ?>>No, I Have No Issues </option>
105
- </select>
106
- <span class="field_sep"></span>
107
- <?php if($acx_si_fsmi_hide_advert == "no")
108
- { ?>
109
- <p class="field_label">
110
- <?php _e("Set Icons Vertical " ); ?><a style="cursor:pointer;" class="fsmi_info_premium" lb_title="Display Icons Vertically" lb_content="Its possible to make the social icons align vertical or horizontal, You can set the number of icons to have a in a row, by adjusting the slider, So you can set # of icons in a row to 1 makes it looks vertical.<br><br><i>This feature is only available in our premium version - <a href='admin.php?page=Acurax-Social-Icons-Premium' target='_blank'>Compare Features</a> / <a href='http://clients.acurax.com/floating-socialmedia.php/?utm_source=fsmi&utm_campaign=premium-info' target='_blank'>Order Now</a>">[?]</a></p>
111
- <span name="acx_si_fsmi_theme_demo_vertical" class="fsmi_p_info_icon_h fsmi_info_premium" lb_title="Display Icons Vertically" lb_content="Its possible to make the social icons align vertical or horizontal, You can set the number of icons to have a in a row, by adjusting the slider, So you can set # of icons in a row to 1 makes it looks vertical.<br><br><i>This feature is only available in our premium version - <a href='admin.php?page=Acurax-Social-Icons-Premium' target='_blank'>Compare Features</a> / <a href='http://clients.acurax.com/floating-socialmedia.php/?utm_source=fsmi&utm_campaign=premium-info' target='_blank'>Order Now</a>">
112
- </span>
113
- <span class="field_sep"></span>
114
- <?php } ?>
115
- <p class="field_label">
116
- <?php _e("Disable Floating On Mob Devices? " ); ?><a style="cursor:pointer;" class="fsmi_info_premium" lb_title="Disable Floating Icons on Mobile Devices" lb_content="Depends on some theme design, the floating icons can make visibility issues on mobile devices, if you are experiencing such an issue, you can disable the floating icons on mobile devices.">[?]</a>
117
- </p>
118
- <select name="acx_si_fsmi_disable_mobile">
119
- <option value="yes"<?php if ($acx_si_fsmi_disable_mobile == "yes") { echo 'selected="selected"'; } ?>>Yes, Lets disable it </option>
120
- <option value="no"<?php if ($acx_si_fsmi_disable_mobile == "no") { echo 'selected="selected"'; } ?>>No, Thats fine </option>
121
- </select>
122
- <span class="field_sep"></span>
123
- <p class="field_label">
124
- <?php _e("No follow links? " ); ?><a style="cursor:pointer;" class="fsmi_info_premium" lb_title="Icon Link No Follow Settings" lb_content="Would you like to disable Nofollow on Icon links? You can configure this option to Yes">[?]</a>
125
- </p>
126
- <select name="acx_si_fsmi_no_follow">
127
- <option value="yes"<?php if ($acx_si_fsmi_no_follow == "yes") { echo 'selected="selected"'; } ?>>No,Thats fine </option>
128
- <option value="no"<?php if ($acx_si_fsmi_no_follow == "no") { echo 'selected="selected"'; } ?>>Yes, Enable No Follow </option>
129
- </select>
130
- <span class="field_sep"></span>
131
- </div> <!-- acx_fsmi_admin_left_section_c -->
132
- </div> <!-- acx_fsmi_admin_left_section -->
133
-
134
-
135
- <div id="acx_fsmi_admin_left_section">
136
- <?php echo "<h4>" . "Acurax Service/Info Settings" . "</h4>"; ?>
137
- <div class="acx_fsmi_admin_left_section_c">
138
- <p class="field_label">
139
- <?php _e("Acurax Service Info" ); ?>
140
- </p>
141
- <select name="acx_fsmi_acx_service_banners">
142
- <option value="yes"<?php if ($acx_fsmi_acx_service_banners == "yes") { echo 'selected="selected"'; } ?>>Show Acurax Service Banner</option>
143
- <option value="no"<?php if ($acx_fsmi_acx_service_banners == "no") { echo 'selected="selected"'; } ?>>Hide Acurax Service Banner</option>
144
- </select>
145
- <span class="field_sep"></span>
146
-
147
- <p class="field_label">
148
- <?php _e("Premium Version Info" ); ?>
149
- </p>
150
- <select name="acx_si_fsmi_hide_advert">
151
- <option value="yes"<?php if ($acx_si_fsmi_hide_advert == "yes") { echo 'selected="selected"'; } ?>>Hide Premium Version Infos</option>
152
- <option value="no"<?php if ($acx_si_fsmi_hide_advert == "no") { echo 'selected="selected"'; } ?>>Show Premium Version Infos</option>
153
- </select>
154
- <span class="field_sep"></span>
155
- <p class="field_label">
156
- <?php _e("Expert Support Menu" ); ?>
157
- </p>
158
- <select name="acx_si_fsmi_hide_expert_support_menu">
159
- <option value="yes"<?php if ($acx_si_fsmi_hide_expert_support_menu == "yes") { echo 'selected="selected"'; } ?>>Hide Expert Support Menu From Acurax</option>
160
- <option value="no"<?php if ($acx_si_fsmi_hide_expert_support_menu == "no") { echo 'selected="selected"'; } ?>>Show Expert Support Menu From Acurax</option>
161
- </select>
162
- <span class="field_sep"></span>
163
- </div> <!-- acx_fsmi_admin_left_section_c -->
164
- </div> <!-- acx_fsmi_admin_left_section -->
165
- <input name="acx_fsmi_misc" type="hidden" value="<?php echo wp_create_nonce('acx_fsmi_misc'); ?>" />
166
- <p class="submit">
167
- <input type="submit" name="Submit" class="button button-primary" value="<?php _e('Save Settings', 'acx_si_config' ) ?>" />
168
- </p>
169
- </form>
170
- <div id="acx_fsmi_sidebar">
171
- <?php acx_fsmi_hook_function('acx_fsmi_hook_sidebar_widget'); ?>
172
- </div> <!-- acx_fsmi_sidebar -->
173
- </div> <!-- acx_fsmi_admin_left -->
174
- <?php
175
- if($acx_si_fsmi_hide_advert == "no")
176
- {
177
- socialicons_comparison(1);
178
- } ?>
179
- <br>
180
- <p class="widefat" style="padding:8px;width:99%;">
181
- Something Not Working Well? Have a Doubt? Have a Suggestion? - <a href="http://www.acurax.com/contact.php" target="_blank">Contact us now</a> | Need a Custom Designed Theme For your Blog or Website? Need a Custom Header Image? - <a href="http://www.acurax.com/contact.php" target="_blank">Contact us now</a>
182
- </p>
183
- </div>
184
- </div>
185
- <script type="text/javascript">
186
- jQuery( ".fsmi_info_premium" ).click(function() {
187
- var lb_title = jQuery(this).attr('lb_title');
188
- var lb_content = jQuery(this).attr('lb_content');
189
- var html= '<div id="acx_fsmi_c_icon_p_info_lb_h" style="display:none;"><div class="acx_fsmi_c_icon_p_info_c"><span class="acx_fsmi_c_icon_p_info_close" onclick="remove_info()"></span><h4>'+lb_title+'</h4><div class="acx_fsmi_c_icon_p_info_content">'+lb_content+'</div></div></div> <!-- acx_fsmi_c_icon_p_info_lb_h -->';
190
- jQuery( "body" ).append(html)
191
- jQuery( "#acx_fsmi_c_icon_p_info_lb_h" ).fadeIn();
192
- });
193
-
194
- function remove_info()
195
- {
196
- jQuery( "#acx_fsmi_c_icon_p_info_lb_h" ).fadeOut()
197
- jQuery( "#acx_fsmi_c_icon_p_info_lb_h" ).remove();
198
- };
199
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
function.php CHANGED
@@ -1,4 +1,332 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  //*************** Include style.css in Header ********
3
  // Getting Option From DB *****************************
4
  $acx_si_theme = get_option('acx_si_theme');
@@ -21,6 +349,7 @@ if(is_serialized($social_icon_array_order))
21
  {
22
  $social_icon_array_order = unserialize($social_icon_array_order);
23
  }
 
24
  function acx_fsmi_orderarray_refresh()
25
  {
26
  global $social_icon_array_order;
@@ -83,24 +412,45 @@ global $social_icon_array_order;
83
  } // else closing of if array null
84
  /* Ending The Logic Count and Re Configuring Order Array */
85
  }
 
86
  // Check Credit Link
87
- function enqueue_acx_si_style()
88
- {
89
- wp_enqueue_style ( 'acx-si-style', plugins_url('style.css', __FILE__) );
90
- } add_action( 'wp_print_styles', 'enqueue_acx_si_style' );
91
  // Options Value Checker
92
  function check_acx_credit($yes,$no)
93
  { $acx_si_credit = get_option('acx_si_credit');
94
  if($acx_si_credit != "no") { echo $yes; } else { echo $no; }
95
  }
96
- function acurax_si_simple($theme = "",$size = "") // Added Default "" // Updated << and V (alt added to Images Title Added to Links)
97
- {
98
 
 
 
99
  // Getting Globals *****************************
100
  global $acx_si_theme, $acx_si_credit, $acx_si_display , $acx_si_twitter, $acx_si_facebook, $acx_si_youtube,
101
  $acx_si_linkedin, $acx_si_gplus, $acx_si_pinterest, $acx_si_feed, $acx_si_icon_size;
102
  // *****************************************************
103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  if($size == "")
105
  {
106
  $size = $acx_si_icon_size;
@@ -123,34 +473,40 @@ function acurax_si_simple($theme = "",$size = "") // Added Default "" // Updated
123
  else{
124
  $acx_si_fsmi_rel = "";
125
  }
126
-
127
  if ($acx_si_twitter == "") { $twitter_link = ""; } else
128
  {
129
- $twitter_link = "<a href='http://www.twitter.com/". $acx_si_twitter ."' target='_blank' ".$acx_si_fsmi_rel." title='Visit Us On Twitter'>" . "<img src=" . plugins_url('images/themes/'. $acx_si_touse_theme .'/twitter.png', __FILE__) . " style='border:0px;' alt='Visit Us On Twitter' ".$acx_si_icon_height_width_attribute." /></a>";
 
130
  }
131
  if ($acx_si_facebook == "") { $facebook_link = ""; } else
132
  {
133
- $facebook_link = "<a href='". $acx_si_facebook ."' target='_blank' ".$acx_si_fsmi_rel." title='Visit Us On Facebook'>" . "<img src=" . plugins_url('images/themes/' . $acx_si_touse_theme .'/facebook.png', __FILE__) . " style='border:0px;' alt='Visit Us On Facebook' ".$acx_si_icon_height_width_attribute." /></a>";
 
134
  }
135
  if ($acx_si_gplus == "") { $gplus_link = ""; } else
136
  {
137
- $gplus_link = "<a href='". $acx_si_gplus ."' target='_blank' ".$acx_si_fsmi_rel." title='Visit Us On Google Plus'>" . "<img src=" . plugins_url('images/themes/'. $acx_si_touse_theme .'/googleplus.png', __FILE__) . " style='border:0px;' alt='Visit Us On Google Plus' ".$acx_si_icon_height_width_attribute." /></a>";
 
138
  }
139
  if ($acx_si_pinterest == "") { $pinterest_link = ""; } else
140
  {
141
- $pinterest_link = "<a href='". $acx_si_pinterest ."' target='_blank' ".$acx_si_fsmi_rel." title='Visit Us On Pinterest'>" . "<img src=" . plugins_url('images/themes/' . $acx_si_touse_theme .'/pinterest.png', __FILE__) . " style='border:0px;' alt='Visit Us On Pinterest' ".$acx_si_icon_height_width_attribute." /></a>";
 
142
  }
143
  if ($acx_si_youtube == "") { $youtube_link = ""; } else
144
  {
145
- $youtube_link = "<a href='". $acx_si_youtube ."' target='_blank' ".$acx_si_fsmi_rel." title='Visit Us On Youtube'>" . "<img src=" . plugins_url('images/themes/' . $acx_si_touse_theme .'/youtube.png', __FILE__) . " style='border:0px;' alt='Visit Us On Youtube' ".$acx_si_icon_height_width_attribute." /></a>";
 
146
  }
147
  if ($acx_si_linkedin == "") { $linkedin_link = ""; } else
148
  {
149
- $linkedin_link = "<a href='". $acx_si_linkedin ."' target='_blank' ".$acx_si_fsmi_rel." title='Visit Us On Linkedin'>" . "<img src=" . plugins_url('images/themes/' . $acx_si_touse_theme .'/linkedin.png', __FILE__) . " style='border:0px;' alt='Visit Us On Linkedin' ".$acx_si_icon_height_width_attribute." /></a>";
 
150
  }
151
  if ($acx_si_feed == "") { $feed_link = ""; } else
152
  {
153
- $feed_link = "<a href='". $acx_si_feed ."' target='_blank' ".$acx_si_fsmi_rel." title='Check Our Feed'>" . "<img src=" . plugins_url('images/themes/' . $acx_si_touse_theme .'/feed.png', __FILE__) . " style='border:0px;' alt='Check Our Feed' ".$acx_si_icon_height_width_attribute." /></a>";
 
154
  }
155
  $social_icon_array_order = get_option('social_icon_array_order');
156
  if(is_serialized($social_icon_array_order))
@@ -161,18 +517,30 @@ function acurax_si_simple($theme = "",$size = "") // Added Default "" // Updated
161
  {
162
  $social_icon_array_order = array();
163
  }
 
164
  foreach ($social_icon_array_order as $key => $value)
165
  {
166
- if ($value == 0) { echo $twitter_link; }
167
- else if ($value == 1) { echo $facebook_link; }
168
- else if ($value == 2) { echo $gplus_link; }
169
- else if ($value == 3) { echo $pinterest_link; }
170
- else if ($value == 4) { echo $youtube_link; }
171
- else if ($value == 5) { echo $linkedin_link; }
172
 
173
- else if ($value == 6) { echo $feed_link; }
174
  }
 
 
 
175
  } //acurax_si_simple()
 
 
 
 
 
 
 
 
176
  function acx_theme_check_wp_head() {
177
  $template_directory = get_template_directory();
178
  // If header.php exists in the current theme, scan for "wp_head"
@@ -189,7 +557,7 @@ function acx_theme_check_wp_head() {
189
  }
190
 
191
  // wp_head() not found:
192
- echo "<div class=\"highlight\" style=\"margin-top: 10px; margin-bottom: 10px; border: 1px solid darkred; padding: 1%; width: 97%; border-radius: 7px;\">" . "Your theme needs to be fixed for plugins to work (Especially Floating Social Media Icon). To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>".htmlspecialchars("<?php wp_head(); ?>")."</code> just before the <code>".htmlspecialchars("</head>")."</code> line of your theme's <code>header.php</code> file. - [If everything is working properly, you can disable this warning at <a href=\"admin.php?page=Acurax-Social-Icons-Misc\">misc page</a>]" . "</div>";
193
  }
194
  } // theme check
195
  if($acx_si_fsmi_theme_warning_ignore != "yes")
@@ -213,7 +581,7 @@ function acx_theme_check_wp_footer() {
213
  }
214
 
215
  // wp_footer() not found:
216
- echo "<div class=\"highlight\" style=\"margin-top: 10px; margin-bottom: 10px; border: 1px solid darkred; padding: 1%; width: 97%; border-radius: 7px;\">" . "Your theme needs to be fixed for plugins to work (Especially Floating Social Media Icon). To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>".htmlspecialchars("<?php wp_footer(); ?>")."</code> just before the <code>".htmlspecialchars("</body>")."</code> line of your theme's <code>footer.php</code> file. - [If everything is working properly, you can disable this warning at <a href=\"admin.php?page=Acurax-Social-Icons-Misc\">misc page</a>]" . "</div>";
217
  }
218
  }
219
  if($acx_si_fsmi_theme_warning_ignore != "yes")
@@ -231,7 +599,11 @@ function acurax_icons()
231
  //*********************** STARTED DISPLAYING THE ICONS ***********************
232
  echo "\n\n\n<!-- Starting Icon Display Code For Social Media Icon From Acurax International www.acurax.com -->\n";
233
  echo "<div id='divBottomRight' style='text-align:center;'>";
234
- acurax_si_simple($acx_si_theme,$acx_si_icon_size);
 
 
 
 
235
  echo "</div>\n";
236
  echo "<!-- Ending Icon Display Code For Social Media Icon From Acurax International www.acurax.com -->\n\n\n";
237
  //*****************************************************************************
@@ -393,6 +765,7 @@ function pbl_footer()
393
  //********** CHECKING CREDIT LINK STATUS ******************
394
  if($acx_si_twitter != "" || $acx_si_facebook != "" || $acx_si_youtube != "" || $acx_si_linkedin != "" || $acx_si_pinterest != "" || $acx_si_gplus != "" || $acx_si_feed != "")
395
  {
 
396
  if($acx_si_credit == "yes")
397
  {
398
  $acx_fsmi_bl_style="text-align:center;color:gray;font-family:arial;font-size:12px;text-decoration:none;";
@@ -407,35 +780,35 @@ function pbl_footer()
407
  $x = strlen($acx_get_url);
408
  if(($x % 10) == 0)
409
  {
410
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Popular Social Media Wordpress Plugin' style='".$acx_fsmi_bl_style."'>Animated Social Media Icons</a> Powered by <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Popular Wordpress Development Company' style='".$acx_fsmi_bl_style."'>Acurax Wordpress Development Company</a>";
411
  } else if(($x % 9) == 0)
412
  {
413
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Floating Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>Floating Social Media Icons</a> Powered by <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Blog Design Company' style='".$acx_fsmi_bl_style."'>Acurax Blog Designing Company</a>";
414
  } else if(($x % 8) == 0)
415
  {
416
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Plugin' style='".$acx_fsmi_bl_style."'>Social Media Integration</a> Powered by <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Acurax Web Design Company' style='".$acx_fsmi_bl_style."'>Acurax Wordpress Theme Designers</a>";
417
  } else if(($x % 7) == 0)
418
  {
419
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>Social Media Icons</a> Powered by <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Affordable Website Designer' style='".$acx_fsmi_bl_style."'>Acurax Website Designing Company</a>";
420
  } else if(($x % 6) == 0)
421
  {
422
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='SocialMedia Wordpress plugin' style='".$acx_fsmi_bl_style."'>Social Media Icons</a> Powered by <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Web Development Company' style='".$acx_fsmi_bl_style."'>Acurax Web Development Company</a>";} else if(($x % 5) == 0)
423
  {
424
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>Social Media Icons</a> Powered by <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Website Redesign Experts' style='".$acx_fsmi_bl_style."'>Acurax Website Redesign Experts</a>";} else if(($x % 4) == 0)
425
  {
426
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>Social Media Icons</a> Powered by <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Social Profile Design Experts' style='".$acx_fsmi_bl_style."'>Acurax Social Profile Design Experts</a>";
427
  } else if(($x % 3) == 0)
428
  {
429
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>Social Media Icons</a> Powered by <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Wordpress Development Company' style='".$acx_fsmi_bl_style."'>Acurax Wordpress Development Company</a>";
430
  } else if(($x % 2) == 0)
431
  {
432
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>Social Media Icons</a> Powered by <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Web Design Company' style='".$acx_fsmi_bl_style."'>Acurax Web Design Company</a>";
433
  } else if(($x % 1) == 0)
434
  {
435
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>Animated Social Media Icons</a> Powered by <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Wordpress Development Company' style='".$acx_fsmi_bl_style."'>Acurax Wordpress Development Company</a>";
436
  } else
437
  {
438
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>Social Media Icons</a> Powered by <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Ecommerce Design Expert' style='".$acx_fsmi_bl_style."'>Acurax E-Commerce Website Design Company</a>";
439
  }
440
  // Ending Crediting
441
  echo "</div>";
@@ -470,10 +843,7 @@ function extra_style_acx_icon() // updated added class acx_fsmi_float_fix suppor
470
  echo "</style>\n<!-- Ending Styles For Social Media Icon From Acurax International www.acurax.com -->\n\n\n\n";
471
  } add_action('admin_head', 'extra_style_acx_icon'); // ADMIN
472
  add_action('wp_head', 'extra_style_acx_icon'); // PUBLIC
473
- function acx_si_admin_style() // Adding Style For Admin
474
- {
475
- echo '<link rel="stylesheet" type="text/css" href="' .plugins_url('style_for_admin.css', __FILE__). '">';
476
- } add_action('admin_head', 'acx_si_admin_style'); // ADMIN
477
  $acx_si_display = get_option('acx_si_display');
478
  if ($acx_si_display == "auto" || $acx_si_display == "both")
479
  {
@@ -482,7 +852,7 @@ if ($acx_si_display == "auto" || $acx_si_display == "both")
482
  $acx_si_sc_id = 0; // Defined to assign shortcode unique id
483
  function DISPLAY_ACURAX_ICONS_SC($atts)
484
  {
485
- global $acx_si_display, $acx_si_icon_size, $acx_si_sc_id;
486
  extract(shortcode_atts(array(
487
  "theme" => '',
488
  "size" => $acx_si_icon_size,
@@ -502,7 +872,7 @@ function DISPLAY_ACURAX_ICONS_SC($atts)
502
  $align = "center";
503
  }
504
  if (!is_numeric($theme)) { $theme = ""; } else {
505
- if ($theme > ACX_SOCIALMEDIA_TOTAL_THEMES) { $theme = ""; }
506
  }
507
  if (!is_numeric($size)) { $size = $acx_si_icon_size; } else {
508
  if ($size > 55) { $size = $acx_si_icon_size; }
@@ -518,7 +888,11 @@ function DISPLAY_ACURAX_ICONS_SC($atts)
518
  echo "width:" . $size . "px !important; \n}\n";
519
  echo "</style>";
520
  echo "<div id='short_code_si_icon' style='text-align:".$align.";' class='acx_fsmi_float_fix scid-" . $acx_si_sc_id . "'>"; // updated
521
- acurax_si_simple($theme,$size);
 
 
 
 
522
  echo "</div>";
523
  $content = ob_get_contents();
524
  ob_end_clean();
@@ -526,10 +900,12 @@ function DISPLAY_ACURAX_ICONS_SC($atts)
526
  }
527
  else echo "<!-- Select Display Mode as Manual To Show The Acurax Social Media Icons -->";
528
  } // DISPLAY_ACURAX_ICONS_SC
529
- function DISPLAY_ACURAX_ICONS($theme="",$size="",$align="")
 
530
  {
531
- global $acx_si_display, $acx_si_icon_size;
532
-
 
533
  if($align == "center")
534
  {
535
  $align = "center";
@@ -544,29 +920,45 @@ function DISPLAY_ACURAX_ICONS($theme="",$size="",$align="")
544
  $align = "center";
545
  }
546
  if (!is_numeric($theme)) { $theme = ""; } else {
547
- if ($theme > ACX_SOCIALMEDIA_TOTAL_THEMES) { $theme = ""; }
548
  }
549
  if (!is_numeric($size)) { $size = $acx_si_icon_size; } else {
550
  if ($size > 55) { $size = $acx_si_icon_size; }
551
  }
552
-
 
 
 
 
 
 
 
553
 
554
  if ($acx_si_display != "auto" || $acx_si_display == "both")
555
  {
556
- echo "\n\n\n<!-- Starting Styles For Social Media Icon (PHP CODE) From Acurax International www.acurax.com
557
  -->\n<style
558
  type='text/css'>\n";
559
- echo "#short_code_si_icon img \n{\n";
560
- echo "width: " . $size . "px; \n}\n";
561
- echo "</style>\n<!-- Ending Styles For Social Media Icon (PHP CODE) From Acurax International www.acurax.com
562
  -->\n\n\n\n";
563
- echo "<div id='short_code_si_icon' style='text-align:".$align.";'>";
564
- acurax_si_simple($theme,$size);
565
- echo "</div>";
566
  }
567
- else echo "<!-- Select Display Mode as Manual To Show The Acurax Social Media Icons -->";
 
 
 
 
568
  } // DISPLAY_ACURAX_ICONS
569
-
 
 
 
 
 
570
  function acx_not_auto()
571
  {
572
  echo "<!-- Select Display Mode as Manual To Show The Acurax Social Media Icons -->";
@@ -578,7 +970,7 @@ if ($acx_si_display != "auto" || $acx_si_display == "both")
578
  else
579
  {
580
  add_shortcode( 'DISPLAY_ACURAX_ICONS', 'acx_not_auto' ); // Defining Shortcode to show Select Manual
581
- }
582
  function acx_si_custom_admin_js()
583
  {
584
  wp_enqueue_script('jquery');
@@ -601,7 +993,7 @@ $social_icon_array_order = unserialize($social_icon_array_order);
601
  $social_icon_array_count = count($social_icon_array_order);
602
  if ($social_icon_array_count < $total_arrays)
603
  {
604
- acx_fsmi_orderarray_refresh();
605
  }
606
  $acx_fsmi_si_current_version = get_option('acx_fsmi_si_current_version');
607
  if($acx_fsmi_si_current_version != ACX_FSMI_C_VERSION) // Current Version
@@ -613,39 +1005,39 @@ if($acx_fsmi_si_current_version != ACX_FSMI_C_VERSION) // Current Version
613
  function acx_si_pluign_not_configured()
614
  {
615
  echo '<div class="updated">
616
- <p><b>Congratulations!, You Have Successfully Installed Floating Social Media Icon, The Plugin Is Not Configured - <a href="admin.php?page=Acurax-Social-Icons-Settings">Click Here to Configure</a></b></p></div>';
617
  }
618
  if ($social_icon_array_count == $total_arrays)
619
  {
620
- if ($acx_si_twitter == "" && $acx_si_facebook == "" && $acx_si_youtube == "" && $acx_si_linkedin == "" && $acx_si_pinterest == "" && $acx_si_gplus == "" && $acx_si_feed == "")
621
- {
622
- if($acx_si_current_page != "Acurax-Social-Icons-Settings")
623
  {
624
- add_action('admin_notices', 'acx_si_pluign_not_configured',1);
625
- }
626
- } // Chking If Plugin Not Configured
 
 
627
  } // Chking $social_icon_array_count == $total_arrays
628
  // wp-admin Notices >> Plugin not configured
629
  function acx_si_pluign_promotion()
630
  {
631
  $acx_tweet_text_array = array
632
  (
633
- "I Use Floating SocialMedia wordpress plugin from @acuraxdotcom and you should too",
634
- "Floating Social Media wordpress Plugin from @acuraxdotcom is Awesome",
635
- "Thanks @acuraxdotcom for developing such a wonderful social media wordpress plugin",
636
- "Actually i am looking for a social media Plugin like this. Thanks @acuraxdotcom",
637
- "Its very nice to use Floating Social media wordpress Plugin from @acuraxdotcom",
638
- "I installed Floating Social Media.. from @acuraxdotcom, It works wonderful",
639
- "The floating social media icon wordpress plugin looks soo nice.. thanks @acuraxdotcom",
640
- "It awesome to use Floating Social Media wordpress plugin from @acuraxdotcom",
641
- "Floating Social Media wordpress Plugin that i use Looks awesome and works terrific",
642
- "I am using Floating Social Media Icon wordpress Plugin from @acuraxdotcom I like it!",
643
- "The socialmedia plugin from @acuraxdotcom Its simple looks good and works fine",
644
- "Ive been using this social media plugin for a while now and it is attractive",
645
- "Floating Social Media Icon wordpress plugin is Fantastic Plugin",
646
- "Floating Social Media Icon wordpress plugin was easy to use and works great. thank you!",
647
- "Good and flexible wp socialmedia plugin especially for beginners.",
648
- "Easily the best socialmedia wordpress plugin of the type I have used ! THANKS! @acuraxdotcom",
649
  );
650
  $acx_tweet_text = array_rand($acx_tweet_text_array, 1);
651
  $acx_tweet_text = $acx_tweet_text_array[$acx_tweet_text];
@@ -664,7 +1056,7 @@ if($acx_fsmi_current_user == "")
664
  $acx_fsmi_current_user = "Webmaster";
665
  }
666
 
667
- echo '<div id="acx_td_fsmi" class="notice">Hey <b>'.$acx_fsmi_current_user.'</b>, Do you know? You were using Floating Social Media Icon Wordpress Plugin for the last <b>'.$acx_fsmi_days_till_today_from_install.'</b>, We are sure, your visitors loved the flying icons.<br>From the bottom of our heart, we the team @ <a href="http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=days" style="font-weight: normal; margin-left: 0px; color: rgb(68, 68, 68);" target="_blank">Acurax Technologies</a> thank you for being with us, and we appreciate your feedback,reviews and support.<br><a href="https://wordpress.org/support/view/plugin-reviews/floating-social-media-icon?filter=5" target="_blank">Rate 5★\'s on wordpress</a><a href="https://twitter.com/share?url=http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/&text='.$acx_tweet_text.' -" target="_blank">Tell Your Followers</a><a href="admin.php?page=Acurax-Social-Icons-Premium">Premium Version Benefits</a><a href="admin.php?page=Acurax-Social-Icons-Premium&td=hide">Hide for Now</a></div>';
668
  }
669
  $acx_si_installed_date = get_option('acx_si_installed_date');
670
  if ($acx_si_installed_date=="") { $acx_si_installed_date = time();}
@@ -698,15 +1090,16 @@ add_action('admin_notices', 'acx_si_pluign_promotion',1);
698
  class Acx_Social_Icons_Widget extends WP_Widget
699
  {
700
  // Register the widget
701
- function Acx_Social_Icons_Widget()
702
  {
703
  // Set some widget options
704
- $widget_options = array( 'description' => 'Allow users to show Social Media Icons From Floating Social Media Icon
705
- Plugin', 'classname' => 'acx-social-icons-desc' );
 
706
  // Set some control options (width, height etc)
707
  $control_options = array( 'width' => 300 );
708
  // Actually create the widget (widget id, widget name, options...)
709
- parent::__construct( 'acx-social-icons-widget', 'Acx Social Icons', $widget_options, $control_options );
710
  }
711
  // Output the content of the widget
712
  function widget($args, $instance)
@@ -730,7 +1123,11 @@ class Acx_Social_Icons_Widget extends WP_Widget
730
  echo "</style>";
731
  echo "<div id='acurax_si_simple' class='acx_fsmi_float_fix " . $this->get_field_id('widget') . "'"; // updated
732
  if($icon_align != "") { echo " style='text-align:" . $icon_align . ";'>"; } else { echo " style='text-align:center;'>"; }
733
- acurax_si_simple($icon_theme,$icon_size);
 
 
 
 
734
  echo "</div>";
735
  // This is defined when you register a sidebar
736
  echo $after_widget;
@@ -738,49 +1135,52 @@ class Acx_Social_Icons_Widget extends WP_Widget
738
  // Output the admin options form
739
  function form($instance)
740
  {
741
- $total_themes = ACX_SOCIALMEDIA_TOTAL_THEMES;
742
- $total_themes = $total_themes + 1;
743
  // These are our default values
744
- $defaults = array( 'title' => 'Social Media Icons','icon_size' => '32' );
 
 
745
  // This overwrites any default values with saved values
746
  $instance = wp_parse_args( (array) $instance, $defaults );
747
  ?>
748
  <p>
749
- <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label>
750
  <input id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>"
751
  value="<?php echo $instance['title']; ?>" type="text" class="widefat" />
752
  </p>
753
  <p>
754
- <label for="<?php echo $this->get_field_id('icon_size'); ?>"><?php _e('Icon Size:'); ?></label>
755
  <select class="widefat" name="<?php echo $this->get_field_name('icon_size'); ?>" id="<?php echo $this->get_field_id('icon_size'); ?>">
756
- <option value="16" <?php if ($instance['icon_size'] == "16") { echo 'selected="selected"'; } ?>>16px X 16px </option>
757
- <option value="25" <?php if ($instance['icon_size'] == "25") { echo 'selected="selected"'; } ?>>25px X 25px </option>
758
- <option value="32" <?php if ($instance['icon_size'] == "32") { echo 'selected="selected"'; } ?>>32px X 32px </option>
759
- <option value="40" <?php if ($instance['icon_size'] == "40") { echo 'selected="selected"'; } ?>>40px X 40px </option>
760
- <option value="48" <?php if ($instance['icon_size'] == "48") { echo 'selected="selected"'; } ?>>48px X 48px </option>
761
- <option value="55" <?php if ($instance['icon_size'] == "55") { echo 'selected="selected"'; } ?>>55px X 55px </option>
762
  </select>
763
  </p>
764
  <p>
765
- <label for="<?php echo $this->get_field_id('icon_theme'); ?>"><?php _e('Icon Theme:'); ?></label>
766
  <select class="widefat" name="<?php echo $this->get_field_name('icon_theme'); ?>" id="<?php echo $this->get_field_id('icon_theme'); ?>">
767
- <option value="" <?php if(!ISSET($instance['icon_theme'])) { echo 'selected="selected"'; } ?>>Default Theme Design</option>
768
  <?php
769
- for ($i=1; $i < $total_themes; $i++)
770
- {
 
 
771
  ?>
772
- <option value="<?php echo $i; ?>" <?php if(ISSET($instance['icon_theme'])){if($instance['icon_theme'] == $i) { echo 'selected="selected"'; } }?>>Theme Design <?php echo $i; ?> </option>
773
  <?php
774
  } ?>
775
  </select>
776
  </p>
777
  <p>
778
- <label for="<?php echo $this->get_field_id('icon_align'); ?>"><?php _e('Icon Align:'); ?></label>
779
  <select class="widefat" name="<?php echo $this->get_field_name('icon_align'); ?>" id="<?php echo $this->get_field_id('icon_align'); ?>">
780
- <option value="" <?php if(!ISSET($instance['icon_align'])) { echo 'selected="selected"'; } ?>>Default </option>
781
- <option value="left" <?php if(ISSET($instance['icon_align'])){ if($instance['icon_align'] == "left") { echo 'selected="selected"'; }} ?>>Left </option>
782
- <option value="center" <?php if(ISSET($instance['icon_align'])){ if($instance['icon_align'] == "center") { echo 'selected="selected"'; }} ?>>Center </option>
783
- <option value="right" <?php if(ISSET($instance['icon_align'])){ if($instance['icon_align'] == "right") { echo 'selected="selected"';} } ?>>Right </option>
784
  </select>
785
  </p>
786
  <?php
@@ -803,51 +1203,51 @@ function socialicons_comparison($ad=2)
803
  {
804
  $ad_1 = '
805
  </hr>
806
- <a name="compare"></a><div id="ss_middle_wrapper">
807
  <div id="ss_middle_center">
808
  <div id="ss_middle_inline_block">
809
 
810
  <div class="middle_h2_1">
811
- <h2>Limited on Features ?</h2>
812
- <h3>Compare and Decide</h3>
813
  </div><!-- middle_h2_1 -->
814
 
815
  <div id="ss_features_table">
816
 
817
  <div id="ss_table_header">
818
- <div class="tb_h1"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
819
- <div class="tb_h2"> <h3>Features</h3> </div><!-- tb_h2 -->
820
  <div class="tb_h3"> <div class="ss_download"> </div><!-- ss_download --> </div><!-- tb_h3 -->
821
- <div class="tb_h4 fsmi_tb_h4"> <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_fsmi_settings_table&utm_medium=link&utm_campaign=compare_buynow" target="_blank"><div class="ss_buy_now"> </div><!-- ss_buy_now --></a> </div><!-- tb_h4 -->
822
  </div><!-- ss_table_header -->
823
 
824
  <div class="ss_column_holder">
825
 
826
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
827
- <div class="ss_feature_group" style="padding-top: 197px;"> Display </div><!-- -->
828
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
829
  <div class="ss_features">
830
  <ul>
831
- <li>More Sharp Quality Icons</li>
832
- <li>20+ Icon Theme/Style</li>
833
- <li>Can Choose Icon Theme/Style</li>
834
- <li>Can Choose Icon Size</li>
835
- <li>Automatic/Manual Integration</li>
836
- <li>Set MouseOver text for each icon in Share Mode</li>
837
- <li>Set MouseOver text for each icon in Profile Link Mode</li>
838
- <li>Option to HIDE Invididual Share Icon</li>
839
- <li>Option to hide icon on mobile devices</li>
840
- <li>Option to hide icon on specific pages/post</li>
841
- <li>Option to set icon size for mobile devices</li>
842
- <li>Align icons on phpcode or shortcode</li>
843
- <li><strong>Set Floating Icons in Vertical</strong></li>
844
- <li><strong>Define how many icons in 1 row</strong></li>
845
- <li><strong><strong>Add Unlimited # of Custom Icons</strong></strong></li>
846
- <li class="ss_last_one"><strong>Custom Icons Can Link to Your Website Pages</strong></li>
847
  </ul>
848
  </div><!-- ss_features -->
849
 
850
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
851
  <div class="ss_y_n_holder">
852
  <div class="ss_no"> </div><!-- ss_no -->
853
  <div class="ss_yes"> </div><!-- ss_yes -->
@@ -890,19 +1290,19 @@ $ad_1 = '
890
 
891
  <div class="ss_column_holder">
892
 
893
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
894
- <div class="ss_feature_group" style="padding-top: 30px;"> Icon Function </div><!-- -->
895
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
896
  <div class="ss_features">
897
  <ul>
898
- <li>Link to Social Media Profile</li>
899
- <li><strong>Share On Social Media</strong></li>
900
- <li>Option to add twitter username and hashtags to tweets</li>
901
- <li class="ss_last_one">Option to Define Tweet Prefix and Suffix</li>
902
  </ul>
903
  </div><!-- ss_features -->
904
 
905
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
906
  <div class="ss_y_n_holder">
907
  <div class="ss_yes"> </div><!-- ss_yes -->
908
  <div class="ss_no"> </div><!-- ss_no -->
@@ -921,17 +1321,17 @@ $ad_1 = '
921
 
922
  <div class="ss_column_holder">
923
 
924
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
925
- <div class="ss_feature_group" style="padding-top: 30px;"> Animation </div><!-- -->
926
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
927
  <div class="ss_features">
928
  <ul>
929
  <li>Fly Animation</li>
930
- <li class="ss_last_one"><strong>Mouse Over Effects</strong></li>
931
  </ul>
932
  </div><!-- ss_features -->
933
 
934
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
935
  <div class="ss_y_n_holder">
936
  <div class="ss_yes"> </div><!-- ss_yes -->
937
  <div class="ss_no ss_last_one"> </div><!-- ss_no -->
@@ -946,20 +1346,20 @@ $ad_1 = '
946
 
947
  <div class="ss_column_holder">
948
 
949
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
950
- <div class="ss_feature_group" style="padding-top: 84px;"> Fly Animation Repeat Interval</div><!-- -->
951
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
952
  <div class="ss_features">
953
  <ul>
954
- <li>Based On Time in Seconds</li>
955
- <li><strong>Based On Time in Minutes</strong></li>
956
- <li>Based On Time in Hours</li>
957
- <li>Based on Page Views</li>
958
- <li class="ss_last_one">Based On Page Views and Time</li>
959
  </ul>
960
  </div><!-- ss_features -->
961
 
962
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
963
  <div class="ss_y_n_holder">
964
  <div class="ss_no"> </div><!-- ss_no -->
965
  <div class="ss_no"> </div><!-- ss_no -->
@@ -980,17 +1380,17 @@ $ad_1 = '
980
 
981
  <div class="ss_column_holder">
982
 
983
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
984
- <div class="ss_feature_group" style="padding-top: 30px;"> Multiple Fly Animation<br/></div><!-- -->
985
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
986
  <div class="ss_features">
987
  <ul>
988
- <li>Can Choose Fly Start Position</li>
989
- <li class="ss_last_one">Can Choose Fly End Position</li>
990
  </ul>
991
  </div><!-- ss_features -->
992
 
993
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
994
  <div class="ss_y_n_holder">
995
  <div class="ss_no"> </div><!-- ss_no -->
996
  <div class="ss_no ss_last_one"> </div><!-- ss_no -->
@@ -1005,18 +1405,18 @@ $ad_1 = '
1005
 
1006
  <div class="ss_column_holder">
1007
 
1008
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
1009
- <div class="ss_feature_group" style="padding-top: 52px;">Easy to Configure</div><!-- -->
1010
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
1011
  <div class="ss_features">
1012
  <ul>
1013
- <li>Ajax Based Settings Page</li>
1014
- <li>Drag & Drop Reorder Icons</li>
1015
- <li class="ss_last_one">Easy to Configure</li>
1016
  </ul>
1017
  </div><!-- ss_features -->
1018
 
1019
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
1020
  <div class="ss_y_n_holder">
1021
  <div class="ss_no"> </div><!-- ss_no -->
1022
  <div class="ss_yes"> </div><!-- ss_yes -->
@@ -1033,21 +1433,21 @@ $ad_1 = '
1033
 
1034
  <div class="ss_column_holder">
1035
 
1036
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
1037
- <div class="ss_feature_group" style="padding-top: 106px;">Widget Support </div><!-- -->
1038
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
1039
  <div class="ss_features">
1040
  <ul>
1041
- <li>Multiple Widgets</li>
1042
- <li>Separate Icon Style/Theme For Each</li>
1043
- <li>Separate Icon Size For Each</li>
1044
- <li>Set whether the icons to Link Profiles/SHARE</li>
1045
- <li><strong>Separate Mouse Over Multiple Animation for Each</strong></li>
1046
- <li class="ss_last_one">Separate Default Opacity for Each</li>
1047
  </ul>
1048
  </div><!-- ss_features -->
1049
 
1050
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
1051
  <div class="ss_y_n_holder">
1052
  <div class="ss_yes"> </div><!-- ss_yes -->
1053
  <div class="ss_yes"> </div><!-- ss_yes -->
@@ -1070,21 +1470,21 @@ $ad_1 = '
1070
 
1071
  <div class="ss_column_holder">
1072
 
1073
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
1074
- <div class="ss_feature_group" style="padding-top: 106px;">Shortcode Support </div><!-- -->
1075
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
1076
  <div class="ss_features">
1077
  <ul>
1078
- <li>Multiple Instances</li>
1079
- <li>Separate Icon Style/Theme For Each</li>
1080
- <li><strong>Separate Icon Size For Each</strong></li>
1081
- <li>Set whether the icons to Link Profiles/SHARE</li>
1082
- <li>Separate Mouse Over Multiple Animation for Each</li>
1083
- <li class="ss_last_one">Separate Default Opacity for Each</li>
1084
  </ul>
1085
  </div><!-- ss_features -->
1086
 
1087
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
1088
  <div class="ss_y_n_holder">
1089
  <div class="ss_yes"> </div><!-- ss_yes -->
1090
  <div class="ss_yes"> </div><!-- ss_yes -->
@@ -1107,22 +1507,22 @@ $ad_1 = '
1107
 
1108
  <div class="ss_column_holder">
1109
 
1110
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
1111
- <div class="ss_feature_group" style="padding-top: 126px;">PHP Code Support </div><!-- -->
1112
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
1113
  <div class="ss_features">
1114
  <ul>
1115
- <li>Multiple Instances</li>
1116
- <li>Use Outside Loop</li>
1117
- <li>Separate Icon Style/Theme For Each</li>
1118
- <li>Separate Icon Size For Each</li>
1119
- <li><strong>Set whether the icons to Link Profiles/SHARE</strong></li>
1120
- <li>Separate Mouse Over Multiple Animation for Each</li>
1121
- <li class="ss_last_one">Separate Default Opacity for Each</li>
1122
  </ul>
1123
  </div><!-- ss_features -->
1124
 
1125
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
1126
  <div class="ss_y_n_holder">
1127
  <div class="ss_yes"> </div><!-- ss_yes -->
1128
  <div class="ss_yes"> </div><!-- ss_yes -->
@@ -1150,21 +1550,25 @@ $ad_1 = '
1150
  </div><!-- ss_features_table -->
1151
 
1152
  <div id="ad_fsmi_2_button_order" style="float: left; width: 100%;">
1153
- <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_fsmi_settings&utm_medium=banner&utm_campaign=plugin_yellow_order" target="_blank"><div id="ad_fsmi_2_button_order_link"></div></a></div> <!-- ad_fsmi_2_button_order --></div></div></div>';
1154
- $ad_2='<div id="ad_fsmi_2"> <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_fsmi_settings&utm_medium=banner&utm_campaign=plugin_enjoy" target="_blank"><div id="ad_fsmi_2_button"></div></a> </div> <!-- ad_fsmi_2 --><br>
1155
  <div id="ad_fsmi_2_button_order">
1156
- <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_fsmi_settings&utm_medium=banner&utm_campaign=plugin_yellow_order" target="_blank"><div id="ad_fsmi_2_button_order_link"></div></a></div> <!-- ad_fsmi_2_button_order --> ';
1157
  if($ad=="" || $ad == 2) { echo $ad_2; } else if ($ad == 1) { echo $ad_1; } else { echo $ad_2; }
1158
  } // Updated
 
 
1159
  function acx_fsmi_saveorder_callback()
1160
  {
 
 
1161
  global $wpdb;
1162
  $social_icon_array_order = $_POST['recordsArray'];
1163
  if (current_user_can('manage_options')) {
1164
  $social_icon_array_order = serialize($social_icon_array_order);
1165
  update_option('social_icon_array_order', $social_icon_array_order);
1166
  echo "<div id='acurax_notice' align='center' style='width: 420px; font-family: arial; font-weight: normal; font-size: 22px;'>";
1167
- echo "Social Media Icon's Order Saved";
1168
  echo "</div><script type='text/javascript'>
1169
  setTimeout(function(){
1170
  jQuery('#acurax_notice').fadeOut('slow');
@@ -1175,165 +1579,5 @@ if (current_user_can('manage_options')) {
1175
  }
1176
  die(); // this is required to return a proper result
1177
  } add_action('wp_ajax_acx_fsmi_saveorder', 'acx_fsmi_saveorder_callback');
1178
- function acx_fsmi_quick_form()
1179
- {
1180
 
1181
- if(ISSET($_SERVER['HTTP_HOST']))
1182
- {
1183
- $acx_installation_url = $_SERVER['HTTP_HOST'];
1184
- } else
1185
- {
1186
- $acx_installation_url = "";
1187
- }
1188
  ?>
1189
- <div class="acx_fsmi_es_common_raw acx_fsmi_es_common_bg">
1190
- <div class="acx_fsmi_es_middle_section">
1191
-
1192
- <div class="acx_fsmi_es_acx_content_area">
1193
- <div class="acx_fsmi_es_wp_left_area">
1194
- <div class="acx_fsmi_es_wp_left_content_inner">
1195
- <div class="acx_fsmi_es_wp_main_head">Do you Need Technical Support Services to Get the Best Out of Your Wordpress Site ?</div> <!-- wp_main_head -->
1196
- <div class="acx_fsmi_es_wp_sub_para_des">Acurax offer a number of WordPress related services: Form installing WordPress on your domain to offering support for existing WordPress sites.</div> <!-- acx_fsmi_es_wp_sub_para_des -->
1197
- <div class="acx_fsmi_es_wp_acx_service_list">
1198
- <ul>
1199
- <li>Troubleshoot WordPress Site Issues</li>
1200
- <li>Recommend & Install Plugins For Improved WordPress Performance</li>
1201
- <li>Create, Modify, Or Customise, Themes</li>
1202
- <li>Explain Errors And Recommend Solutions</li>
1203
- <li>Custom Plugin Development According To Your Needs</li>
1204
- <li>Plugin Integration Support</li>
1205
- <li>Many <a href="http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=expert_support" target="_blank">More...</a></li>
1206
- </ul>
1207
- </div> <!-- acx_fsmi_es_wp_acx_service_list -->
1208
-
1209
- <div class="acx_fsmi_es_wp_send_ylw_para">We Have Extensive Experience in WordPress Troubleshooting,Theme Design & Plugin Development.</div> <!-- acx_fsmi_es_wp_secnd_ylw_para-->
1210
-
1211
- </div> <!-- acx_fsmi_es_wp_left_content_inner -->
1212
- </div> <!-- acx_fsmi_es_wp_left_area -->
1213
-
1214
- <div class="acx_fsmi_es_wp_right_area">
1215
- <div class="acx_fsmi_es_wp_right_inner_form_wrap">
1216
- <div class="acx_fsmi_es_wp_inner_wp_form">
1217
- <div class="acx_fsmi_es_wp_form_head">WE ARE DEDICATED TO HELP YOU. SUBMIT YOUR REQUEST NOW..!</div> <!-- acx_fsmi_es_wp_form_head -->
1218
- <form class="acx_fsmi_es_wp_support_acx">
1219
- <span class="acx_fsmi_es_cnvas_input acx_fsmi_es_half_width_sec acx_fsmi_es_haif_marg_right"><input type="text" placeholder="Name*" id="acx_name"></span> <!-- acx_fsmi_es_cnvas_input -->
1220
- <span class="acx_fsmi_es_cnvas_input acx_fsmi_es_half_width_sec acx_fsmi_es_haif_marg_left"><input type="email" placeholder="Email*" id="acx_email"></span> <!-- acx_fsmi_es_cnvas_input -->
1221
- <span class="acx_fsmi_es_cnvas_input acx_fsmi_es_half_width_sec acx_fsmi_es_haif_marg_right"><input type="text" placeholder="Phone Number*" id="acx_phone"></span> <!-- acx_fsmi_es_cnvas_input -->
1222
- <span class="acx_fsmi_es_cnvas_input acx_fsmi_es_half_width_sec acx_fsmi_es_haif_marg_left"><input type="text" placeholder="Website URL*" value="<?php echo $acx_installation_url; ?>" id="acx_weburl"></span> <!-- acx_fsmi_es_cnvas_input -->
1223
- <span class="acx_fsmi_es_cnvas_input"><input type="text" placeholder="Subject*" id="acx_subject"></span> <!-- acx_fsmi_es_cnvas_input -->
1224
- <span class="acx_fsmi_es_cnvas_input"><textarea placeholder="Question*" id="acx_question"></textarea></span> <!-- acx_fsmi_es_cnvas_input -->
1225
- <span class="acx_fsmi_es_cnvas_input"><input class="acx_fsmi_es_wp_acx_submit" type="button" value="SUBMIT REQUEST" onclick="acx_quick_fsmi_request_submit();"></span> <!-- acx_fsmi_es_cnvas_input -->
1226
- </form>
1227
- </div> <!-- acx_fsmi_es_wp_inner_wp_form -->
1228
- </div> <!-- acx_fsmi_es_wp_right_inner_form_wrap -->
1229
- </div> <!-- acx_fsmi_es_wp_left_area -->
1230
- </div> <!-- acx_fsmi_es_acx_content_area -->
1231
-
1232
- <div class="acx_fsmi_es_footer_content_cvr">
1233
- <div class="acx_fsmi_es_wp_footer_area_desc">Its our pleasure to thank you for using our plugin and being with us. We always do our best to help you on your needs. If you like to hide this menu, you can do so at <a href="admin.php?page=Acurax-Social-Icons-Misc">Misc</a> page which is under our plugin options.</div> <!--acx_fsmi_es_wp_footer_area_desc -->
1234
- </div> <!-- acx_fsmi_es_footer_content_cvr -->
1235
-
1236
- </div> <!-- acx_fsmi_es_middle_section -->
1237
- </div> <!--acx_fsmi_es_common_raw -->
1238
- <script type="text/javascript">
1239
- var request_acx_form_status = 0;
1240
- function acx_quick_form_reset()
1241
- {
1242
- jQuery("#acx_subject").val('');
1243
- jQuery("#acx_question").val('');
1244
- }
1245
- acx_quick_form_reset();
1246
- function acx_quick_fsmi_request_submit()
1247
- {
1248
- var acx_name = jQuery("#acx_name").val();
1249
- var acx_email = jQuery("#acx_email").val();
1250
- var acx_phone = jQuery("#acx_phone").val();
1251
- var acx_weburl = jQuery("#acx_weburl").val();
1252
- var acx_subject = jQuery("#acx_subject").val();
1253
- var acx_question = jQuery("#acx_question").val();
1254
- var order = '&action=acx_quick_fsmi_request_submit&acx_name='+acx_name+'&acx_email='+acx_email+'&acx_phone='+acx_phone+'&acx_weburl='+acx_weburl+'&acx_subject='+acx_subject+'&acx_question='+acx_question+'&acx_fsmi_es=<?php echo wp_create_nonce("acx_fsmi_es"); ?>';
1255
- if(request_acx_form_status == 0)
1256
- {
1257
- request_acx_form_status = 1;
1258
- jQuery.post(ajaxurl, order, function(quick_request_acx_response)
1259
- {
1260
- if(quick_request_acx_response == 1)
1261
- {
1262
- alert('Your Request Submitted Successfully!');
1263
- acx_quick_form_reset();
1264
- request_acx_form_status = 0;
1265
- } else if(quick_request_acx_response == 2)
1266
- {
1267
- alert('Please Fill Mandatory Fields.');
1268
- request_acx_form_status = 0;
1269
- } else
1270
- {
1271
- alert('There was an error processing the request, Please try again.');
1272
- acx_quick_form_reset();
1273
- request_acx_form_status = 0;
1274
- }
1275
- });
1276
- } else
1277
- {
1278
- alert('A request is already in progress.');
1279
- }
1280
- }
1281
- </script>
1282
- <?php
1283
- }
1284
- function acx_quick_fsmi_request_submit_callback()
1285
- {
1286
-
1287
- $acx_name = $_POST['acx_name'];
1288
- $acx_email = $_POST['acx_email'];
1289
- $acx_phone = $_POST['acx_phone'];
1290
- $acx_weburl = $_POST['acx_weburl'];
1291
- $acx_subject = $_POST['acx_subject'];
1292
- $acx_question = $_POST['acx_question'];
1293
- $acx_fsmi_es = $_POST['acx_fsmi_es'];
1294
- if (!wp_verify_nonce($acx_fsmi_es,'acx_fsmi_es'))
1295
- {
1296
- $acx_fsmi_es == "";
1297
- }
1298
- if(!current_user_can('manage_options'))
1299
- {
1300
- $acx_fsmi_es == "";
1301
- }
1302
- if($acx_fsmi_es == "" || $acx_name == "" || $acx_email == "" || $acx_phone == "" || $acx_weburl == "" || $acx_subject == "" || $acx_question == "")
1303
- {
1304
- echo 2;
1305
- } else
1306
- {
1307
- $current_user_acx = wp_get_current_user();
1308
- $current_user_acx = $current_user->user_email;
1309
- if($current_user_acx == "")
1310
- {
1311
- $current_user_acx = $acx_email;
1312
- }
1313
- $headers[] = 'From: ' . $acx_name . ' <' . $current_user_acx . '>';
1314
- $headers[] = 'Content-Type: text/html; charset=UTF-8';
1315
- $message = "Name: ".$acx_name . "\r\n <br>";
1316
- $message = $message . "Email: ".$acx_email . "\r\n <br>";
1317
- if($acx_phone != "")
1318
- {
1319
- $message = $message . "Phone: ".$acx_phone . "\r\n <br>";
1320
- }
1321
- // In case any of our lines are larger than 70 characters, we should use wordwrap()
1322
- $acx_question = wordwrap($acx_question, 70, "\r\n <br>");
1323
- $message = $message . "Request From: FSMI - Expert Help Request Form \r\n <br>";
1324
- $message = $message . "Website: ".$acx_weburl . "\r\n <br>";
1325
- $message = $message . "Question: ".$acx_question . "\r\n <br>";
1326
- $message = stripslashes($message);
1327
- $acx_subject = "Quick Support - " . $acx_subject;
1328
- $emailed = wp_mail( 'info@acurax.com', $acx_subject, $message, $headers );
1329
- if($emailed)
1330
- {
1331
- echo 1;
1332
- } else
1333
- {
1334
- echo 0;
1335
- }
1336
- }
1337
- die(); // this is required to return a proper result
1338
- }add_action('wp_ajax_acx_quick_fsmi_request_submit','acx_quick_fsmi_request_submit_callback');
1339
- ?>
1
  <?php
2
+ function acx_fsmi_theme_array_filter_hook()
3
+ {
4
+ global $acx_fsmi_themes_array;
5
+ $acx_fsmi_themes_array = array();
6
+
7
+ $acx_fsmi_themes_array = apply_filters('acx_fsmi_theme_array_filter',$acx_fsmi_themes_array);
8
+ } add_action('init','acx_fsmi_theme_array_filter_hook');
9
+ function acx_fsmi_theme_array_filter_fn($acx_fsmi_themes_array)
10
+ {
11
+ return $acx_fsmi_themes_array;
12
+ } add_filter('acx_fsmi_theme_array_filter','acx_fsmi_theme_array_filter_fn',5);
13
+
14
+ function acx_fsmi_theme_add_filter_fn($acx_fsmi_themes_array)
15
+ {
16
+ $acx_fsmi_themes_array['0'] = array(
17
+ 'id' => 0,
18
+ 'path' => ACX_FSMI_BASE_LOCATION
19
+ );
20
+ $acx_fsmi_themes_array['1'] = array(
21
+ 'id' => 1,
22
+ 'path' => ACX_FSMI_BASE_LOCATION
23
+ );
24
+ $acx_fsmi_themes_array['2'] = array(
25
+ 'id' => 2,
26
+ 'path' => ACX_FSMI_BASE_LOCATION
27
+ );
28
+ $acx_fsmi_themes_array['3'] = array(
29
+ 'id' => 3,
30
+ 'path' => ACX_FSMI_BASE_LOCATION
31
+ );
32
+ $acx_fsmi_themes_array['4'] = array(
33
+ 'id' => 4,
34
+ 'path' => ACX_FSMI_BASE_LOCATION
35
+ );
36
+ $acx_fsmi_themes_array['5'] = array(
37
+ 'id' => 5,
38
+ 'path' => ACX_FSMI_BASE_LOCATION
39
+ );
40
+ $acx_fsmi_themes_array['6'] = array(
41
+ 'id' => 6,
42
+ 'path' => ACX_FSMI_BASE_LOCATION
43
+ );
44
+ $acx_fsmi_themes_array['7'] = array(
45
+ 'id' => 7,
46
+ 'path' => ACX_FSMI_BASE_LOCATION
47
+ );$acx_fsmi_themes_array['8'] = array(
48
+ 'id' => 8,
49
+ 'path' => ACX_FSMI_BASE_LOCATION
50
+ );$acx_fsmi_themes_array['9'] = array(
51
+ 'id' => 9,
52
+ 'path' => ACX_FSMI_BASE_LOCATION
53
+ );
54
+ $acx_fsmi_themes_array['10'] = array(
55
+ 'id' => 10,
56
+ 'path' => ACX_FSMI_BASE_LOCATION
57
+ );
58
+ $acx_fsmi_themes_array['11'] = array(
59
+ 'id' => 11,
60
+ 'path' => ACX_FSMI_BASE_LOCATION
61
+ );
62
+ $acx_fsmi_themes_array['12'] = array(
63
+ 'id' => 12,
64
+ 'path' => ACX_FSMI_BASE_LOCATION
65
+ );
66
+ $acx_fsmi_themes_array['13'] = array(
67
+ 'id' => 13,
68
+ 'path' => ACX_FSMI_BASE_LOCATION
69
+ );
70
+ $acx_fsmi_themes_array['14'] = array(
71
+ 'id' => 14,
72
+ 'path' => ACX_FSMI_BASE_LOCATION
73
+ );
74
+ $acx_fsmi_themes_array['15'] = array(
75
+ 'id' => 15,
76
+ 'path' => ACX_FSMI_BASE_LOCATION
77
+ );
78
+ $acx_fsmi_themes_array['16'] = array(
79
+ 'id' => 16,
80
+ 'path' => ACX_FSMI_BASE_LOCATION
81
+ );
82
+ $acx_fsmi_themes_array['17'] = array(
83
+ 'id' => 17,
84
+ 'path' => ACX_FSMI_BASE_LOCATION
85
+ );
86
+ $acx_fsmi_themes_array['18'] = array(
87
+ 'id' => 18,
88
+ 'path' => ACX_FSMI_BASE_LOCATION
89
+ );
90
+ $acx_fsmi_themes_array['19'] = array(
91
+ 'id' => 19,
92
+ 'path' => ACX_FSMI_BASE_LOCATION
93
+ );
94
+ $acx_fsmi_themes_array['20'] = array(
95
+ 'id' => 20,
96
+ 'path' => ACX_FSMI_BASE_LOCATION
97
+ );
98
+ $acx_fsmi_themes_array['21'] = array(
99
+ 'id' => 21,
100
+ 'path' => ACX_FSMI_BASE_LOCATION
101
+ );
102
+ $acx_fsmi_themes_array['22'] = array(
103
+ 'id' => 22,
104
+ 'path' => ACX_FSMI_BASE_LOCATION
105
+ );
106
+ $acx_fsmi_themes_array['23'] = array(
107
+ 'id' => 23,
108
+ 'path' => ACX_FSMI_BASE_LOCATION
109
+ );
110
+ return $acx_fsmi_themes_array;
111
+ }
112
+ add_filter('acx_fsmi_theme_array_filter','acx_fsmi_theme_add_filter_fn',55);
113
+ function acx_fsmi_styles()
114
+ {
115
+ wp_register_style('acx_fsmi_admin_style', plugins_url('css/style_admin.css', __FILE__));
116
+ wp_enqueue_style('acx_fsmi_admin_style');
117
+
118
+ wp_register_style('acx_fsmi_box_style', plugins_url('css/layout.css', __FILE__));
119
+ wp_enqueue_style('acx_fsmi_box_style');
120
+ }
121
+ add_action('admin_enqueue_scripts', 'acx_fsmi_styles');
122
+ function acx_fsmi_css()
123
+ {
124
+ wp_register_style('acx_fsmi_styles', plugins_url('css/style.css', __FILE__));
125
+ wp_enqueue_style('acx_fsmi_styles');
126
+ }
127
+ add_action('admin_enqueue_scripts','acx_fsmi_css');
128
+ add_action('wp_enqueue_scripts','acx_fsmi_css');
129
+ function print_acx_fsmi_option_heading($heading)
130
+ {
131
+ $heading_format = "<h2 class='acx_fsmi_option_head'>";
132
+ $heading_format .= $heading;
133
+ $heading_format .= "</h2>";
134
+ return $heading_format;
135
+ }
136
+ function print_acx_fsmi_option_block_start($title,$pre_fix="",$suf_fix="")
137
+ {
138
+ global $acx_fsmi_options_uid;
139
+ if(!$acx_fsmi_options_uid || $acx_fsmi_options_uid == "")
140
+ {
141
+ $acx_fsmi_options_uid = 0;
142
+ }
143
+ $acx_fsmi_options_uid = $acx_fsmi_options_uid+1;
144
+ echo "<div class='acx_fsmi_q_holder acx_fsmi_q_holder_".$acx_fsmi_options_uid."'>";
145
+ echo $pre_fix;
146
+ echo "<h4>".$title."</h4>";
147
+ echo $suf_fix;
148
+ echo "<div class='acx_fsmi_q_holder_c acx_fsmi_q_holder_c_".$acx_fsmi_options_uid."'>";
149
+ }
150
+ function print_acx_fsmi_option_block_end()
151
+ {
152
+ echo "</div> <!-- acx_fsmi_q_holder_c -->";
153
+ echo "</div> <!-- acx_fsmi_q_holder -->";
154
+ }
155
+ function acx_fsmi_post_isset_check($field)
156
+ {
157
+ $value = "";
158
+ if(ISSET($_POST[$field]))
159
+ {
160
+ $value = $_POST[$field];
161
+ }
162
+ return $value;
163
+ }
164
+
165
+ function acx_fsmi_quick_form()
166
+ {
167
+ if(ISSET($_SERVER['HTTP_HOST']))
168
+ {
169
+ $acx_installation_url = $_SERVER['HTTP_HOST'];
170
+ } else
171
+ {
172
+ $acx_installation_url = "";
173
+ }
174
+ ?>
175
+ <div class="acx_fsmi_es_common_raw acx_fsmi_es_common_bg">
176
+ <div class="acx_fsmi_es_middle_section">
177
+
178
+ <div class="acx_fsmi_es_acx_content_area">
179
+ <div class="acx_fsmi_es_wp_left_area">
180
+ <div class="acx_fsmi_es_wp_left_content_inner">
181
+ <div class="acx_fsmi_es_wp_main_head"><?php _e('Do you Need Technical Support Services to Get the Best Out of Your Wordpress Site ?','floating-social-media-icon');?></div> <!-- wp_main_head -->
182
+ <div class="acx_fsmi_es_wp_sub_para_des"><?php _e('Acurax offer a number of WordPress related services: Form installing WordPress on your domain to offering support for existing WordPress sites.','floating-social-media-icon'); ?></div> <!-- acx_fsmi_es_wp_sub_para_des -->
183
+ <div class="acx_fsmi_es_wp_acx_service_list">
184
+ <ul>
185
+ <li><?php _e('Troubleshoot WordPress Site Issues','floating-social-media-icon'); ?></li>
186
+ <li><?php _e('Recommend & Install Plugins For Improved WordPress Performance','floating-social-media-icon'); ?></li>
187
+ <li><?php _e('Create, Modify, Or Customise, Themes','floating-social-media-icon'); ?></li>
188
+ <li><?php _e('Explain Errors And Recommend Solutions','floating-social-media-icon'); ?></li>
189
+ <li><?php _e('Custom Plugin Development According To Your Needs','floating-social-media-icon'); ?></li>
190
+ <li><?php _e('Plugin Integration Support','floating-social-media-icon'); ?></li>
191
+ <li><?php _e('Many','floating-social-media-icon'); ?> <a href="http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=expert_support" target="_blank"><?php _e('More...','floating-social-media-icon'); ?></a></li>
192
+ </ul>
193
+ </div> <!-- acx_fsmi_es_wp_acx_service_list -->
194
+
195
+ <div class="acx_fsmi_es_wp_send_ylw_para"><?php _e('We Have Extensive Experience in WordPress Troubleshooting,Theme Design & Plugin Development.','floating-social-media-icon'); ?></div> <!-- acx_fsmi_es_wp_secnd_ylw_para-->
196
+
197
+ </div> <!-- acx_fsmi_es_wp_left_content_inner -->
198
+ </div> <!-- acx_fsmi_es_wp_left_area -->
199
+
200
+ <div class="acx_fsmi_es_wp_right_area">
201
+ <div class="acx_fsmi_es_wp_right_inner_form_wrap">
202
+ <div class="acx_fsmi_es_wp_inner_wp_form">
203
+ <div class="acx_fsmi_es_wp_form_head"><?php _e('WE ARE DEDICATED TO HELP YOU. SUBMIT YOUR REQUEST NOW..!','floating-social-media-icon'); ?></div> <!-- acx_fsmi_es_wp_form_head -->
204
+ <form class="acx_fsmi_es_wp_support_acx">
205
+ <span class="acx_fsmi_es_cnvas_input acx_fsmi_es_half_width_sec acx_fsmi_es_haif_marg_right"><input type="text" placeholder="<?php _e('Name*','floating-social-media-icon'); ?>" id="acx_name"></span> <!-- acx_fsmi_es_cnvas_input -->
206
+ <span class="acx_fsmi_es_cnvas_input acx_fsmi_es_half_width_sec acx_fsmi_es_haif_marg_left"><input type="email" placeholder="<?php _e('Email*','floating-social-media-icon'); ?>" id="acx_email"></span> <!-- acx_fsmi_es_cnvas_input -->
207
+ <span class="acx_fsmi_es_cnvas_input acx_fsmi_es_half_width_sec acx_fsmi_es_haif_marg_right"><input type="text" placeholder="<?php _e('Phone Number*','floating-social-media-icon'); ?>" id="acx_phone"></span> <!-- acx_fsmi_es_cnvas_input -->
208
+ <span class="acx_fsmi_es_cnvas_input acx_fsmi_es_half_width_sec acx_fsmi_es_haif_marg_left"><input type="text" placeholder="<?php _e('Website URL*','floating-social-media-icon'); ?>" value="<?php echo $acx_installation_url; ?>" id="acx_weburl"></span> <!-- acx_fsmi_es_cnvas_input -->
209
+ <span class="acx_fsmi_es_cnvas_input"><input type="text" placeholder="<?php _e('Subject*','floating-social-media-icon'); ?>" id="acx_subject"></span> <!-- acx_fsmi_es_cnvas_input -->
210
+ <span class="acx_fsmi_es_cnvas_input"><textarea placeholder="<?php _e('Question*','floating-social-media-icon'); ?>" id="acx_question"></textarea></span> <!-- acx_fsmi_es_cnvas_input -->
211
+ <span class="acx_fsmi_es_cnvas_input"><input class="acx_fsmi_es_wp_acx_submit" type="button" value="<?php _e('SUBMIT REQUEST','floating-social-media-icon'); ?>" onclick="acx_quick_fsmi_request_submit();"></span> <!-- acx_fsmi_es_cnvas_input -->
212
+ </form>
213
+ </div> <!-- acx_fsmi_es_wp_inner_wp_form -->
214
+ </div> <!-- acx_fsmi_es_wp_right_inner_form_wrap -->
215
+ </div> <!-- acx_fsmi_es_wp_left_area -->
216
+ </div> <!-- acx_fsmi_es_acx_content_area -->
217
+
218
+ <div class="acx_fsmi_es_footer_content_cvr">
219
+ <div class="acx_fsmi_es_wp_footer_area_desc"><?php _e('Its our pleasure to thank you for using our plugin and being with us. We always do our best to help you on your needs.','floating-social-media-icon'); ?></div> <!--acx_fsmi_es_wp_footer_area_desc -->
220
+ </div> <!-- acx_fsmi_es_footer_content_cvr -->
221
+
222
+ </div> <!-- acx_fsmi_es_middle_section -->
223
+ </div> <!--acx_fsmi_es_common_raw -->
224
+ <script type="text/javascript">
225
+ var request_acx_form_status = 0;
226
+ function acx_quick_form_reset()
227
+ {
228
+ jQuery("#acx_subject").val('');
229
+ jQuery("#acx_question").val('');
230
+ }
231
+ acx_quick_form_reset();
232
+ function acx_quick_fsmi_request_submit()
233
+ {
234
+ var acx_name = jQuery("#acx_name").val();
235
+ var acx_email = jQuery("#acx_email").val();
236
+ var acx_phone = jQuery("#acx_phone").val();
237
+ var acx_weburl = jQuery("#acx_weburl").val();
238
+ var acx_subject = jQuery("#acx_subject").val();
239
+ var acx_question = jQuery("#acx_question").val();
240
+ var order = '&action=acx_quick_fsmi_request_submit&acx_name='+acx_name+'&acx_email='+acx_email+'&acx_phone='+acx_phone+'&acx_weburl='+acx_weburl+'&acx_subject='+acx_subject+'&acx_question='+acx_question+'&acx_smw_es=<?php echo wp_create_nonce("acx_smw_es"); ?>';
241
+ if(request_acx_form_status == 0)
242
+ {
243
+ request_acx_form_status = 1;
244
+ jQuery.post(ajaxurl, order, function(quick_request_acx_response)
245
+ {
246
+ if(quick_request_acx_response == 1)
247
+ {
248
+ alert('<?php _e('Your Request Submitted Successfully!','floating-social-media-icon'); ?>');
249
+ acx_quick_form_reset();
250
+ request_acx_form_status = 0;
251
+ } else if(quick_request_acx_response == 2)
252
+ {
253
+ alert('<?php _e('Please Fill Mandatory Fields.','floating-social-media-icon'); ?>');
254
+ request_acx_form_status = 0;
255
+ } else
256
+ {
257
+ alert('<?php _e('There was an error processing the request, Please try again.','floating-social-media-icon'); ?>');
258
+ acx_quick_form_reset();
259
+ request_acx_form_status = 0;
260
+ }
261
+ });
262
+ } else
263
+ {
264
+ alert('<?php _e('A request is already in progress.','floating-social-media-icon'); ?>');
265
+ }
266
+ }
267
+ </script>
268
+ <?php }
269
+ add_action('acx_fsmi_troubleshoot_hook_option_footer','acx_fsmi_quick_form');
270
+
271
+ function acx_quick_fsmi_request_submit_callback()
272
+ {
273
+
274
+ $acx_name = $_POST['acx_name'];
275
+ $acx_email = $_POST['acx_email'];
276
+ $acx_phone = $_POST['acx_phone'];
277
+ $acx_weburl = $_POST['acx_weburl'];
278
+ $acx_subject = $_POST['acx_subject'];
279
+ $acx_question = $_POST['acx_question'];
280
+ $acx_smw_es = $_POST['acx_smw_es'];
281
+ if (!wp_verify_nonce($acx_smw_es,'acx_smw_es'))
282
+ {
283
+ $acx_smw_es == "";
284
+ }
285
+ if(!current_user_can('manage_options'))
286
+ {
287
+ $acx_smw_es == "";
288
+ }
289
+ if($acx_smw_es == "" || $acx_name == "" || $acx_email == "" || $acx_phone == "" || $acx_weburl == "" || $acx_subject == "" || $acx_question == "")
290
+ {
291
+ echo 2;
292
+ } else
293
+ {
294
+ $current_user_acx = wp_get_current_user();
295
+ $current_user_acx = $current_user->user_email;
296
+ if($current_user_acx == "")
297
+ {
298
+ $current_user_acx = $acx_email;
299
+ }
300
+ $headers[] = "from: ". $acx_name . ' <' . $current_user_acx . '>';
301
+ $headers[] = "Content-Type: text/html; charset=UTF-8";
302
+ $message = "Name: ".$acx_name . "\r\n <br>";
303
+ $message = $message ."E-mail: ".$acx_email . "\r\n <br>";
304
+ if($acx_phone != "")
305
+ {
306
+ $message = $message ."Phone: ".$acx_phone . "\r\n <br>";
307
+ }
308
+ // In case any of our lines are larger than 70 characters, we should use wordwrap()
309
+ $acx_question = wordwrap($acx_question, 70, "\r\n <br>");
310
+ $message = $message ."Request From: fsmi - Expert Help Request Form \r\n <br>";
311
+ $message = $message . "Website:".$acx_weburl . "\r\n <br>";
312
+ $message = $message . "Question:" .$acx_question . "\r\n <br>";
313
+ $message = stripslashes($message);
314
+ $acx_subject = "Quick support - " . $acx_subject;
315
+ $emailed = wp_mail( 'info@acurax.com', $acx_subject, $message, $headers );
316
+ if($emailed)
317
+ {
318
+ echo 1;
319
+ } else
320
+ {
321
+ echo 0;
322
+ }
323
+ }
324
+ die(); // this is required to return a proper result
325
+ }add_action('wp_ajax_acx_quick_fsmi_request_submit','acx_quick_fsmi_request_submit_callback');
326
+
327
+
328
+
329
+
330
  //*************** Include style.css in Header ********
331
  // Getting Option From DB *****************************
332
  $acx_si_theme = get_option('acx_si_theme');
349
  {
350
  $social_icon_array_order = unserialize($social_icon_array_order);
351
  }
352
+
353
  function acx_fsmi_orderarray_refresh()
354
  {
355
  global $social_icon_array_order;
412
  } // else closing of if array null
413
  /* Ending The Logic Count and Re Configuring Order Array */
414
  }
415
+ add_action('acx_fsmi_array_refresh','acx_fsmi_orderarray_refresh',50);
416
  // Check Credit Link
417
+
 
 
 
418
  // Options Value Checker
419
  function check_acx_credit($yes,$no)
420
  { $acx_si_credit = get_option('acx_si_credit');
421
  if($acx_si_credit != "no") { echo $yes; } else { echo $no; }
422
  }
 
 
423
 
424
+ function acurax_si_simple($acx_array) // Added Default "" // Updated << and V (alt added to Images Title Added to Links)
425
+ {
426
  // Getting Globals *****************************
427
  global $acx_si_theme, $acx_si_credit, $acx_si_display , $acx_si_twitter, $acx_si_facebook, $acx_si_youtube,
428
  $acx_si_linkedin, $acx_si_gplus, $acx_si_pinterest, $acx_si_feed, $acx_si_icon_size;
429
  // *****************************************************
430
 
431
+ if(is_array($acx_array) && array_key_exists('theme',$acx_array))
432
+ {
433
+ $theme = $acx_array['theme'];
434
+ }
435
+ else
436
+ {
437
+ $theme = '';
438
+ }
439
+ if(empty($acx_array))
440
+ {
441
+ $acx_array = array('theme' =>$acx_si_theme,
442
+ 'size' =>$acx_si_icon_size
443
+
444
+ );
445
+ }
446
+ if(is_array($acx_array) && array_key_exists('size',$acx_array))
447
+ {
448
+ $size = $acx_array['size'];
449
+ }
450
+ else
451
+ {
452
+ $size = '';
453
+ }
454
  if($size == "")
455
  {
456
  $size = $acx_si_icon_size;
473
  else{
474
  $acx_si_fsmi_rel = "";
475
  }
 
476
  if ($acx_si_twitter == "") { $twitter_link = ""; } else
477
  {
478
+ $alt_text_twitter = __('Visit Us On Twitter','floating-social-media-icon');
479
+ $twitter_link = "<a href='http://www.twitter.com/". $acx_si_twitter ."' target='_blank' ".$acx_si_fsmi_rel." title='".$alt_text_twitter."'>" . "<img src='".ACX_FSMI_BASE_LOCATION."images/themes/". $acx_si_touse_theme ."/twitter.png' style='border:0px;' alt='".$alt_text_twitter."' ".$acx_si_icon_height_width_attribute." /></a>";
480
  }
481
  if ($acx_si_facebook == "") { $facebook_link = ""; } else
482
  {
483
+ $alt_text_facebook = __('Visit Us On Facebook','floating-social-media-icon');
484
+ $facebook_link = "<a href='". $acx_si_facebook ."' target='_blank' ".$acx_si_fsmi_rel." title='".$alt_text_facebook."'>" . "<img src='".ACX_FSMI_BASE_LOCATION."images/themes/". $acx_si_touse_theme ."/facebook.png' style='border:0px;' alt='".$alt_text_facebook."' ".$acx_si_icon_height_width_attribute." /></a>";
485
  }
486
  if ($acx_si_gplus == "") { $gplus_link = ""; } else
487
  {
488
+ $alt_text_gplus = __('Visit Us On Google Plus','floating-social-media-icon');
489
+ $gplus_link = "<a href='". $acx_si_gplus ."' target='_blank' ".$acx_si_fsmi_rel." title='".$alt_text_gplus."'>" . "<img src='".ACX_FSMI_BASE_LOCATION."images/themes/". $acx_si_touse_theme ."/googleplus.png' style='border:0px;' alt='".$alt_text_gplus."' ".$acx_si_icon_height_width_attribute." /></a>";
490
  }
491
  if ($acx_si_pinterest == "") { $pinterest_link = ""; } else
492
  {
493
+ $alt_text_pinterest = __('Visit Us On Pinterest','floating-social-media-icon');
494
+ $pinterest_link = "<a href='". $acx_si_pinterest ."' target='_blank' ".$acx_si_fsmi_rel." title='".$alt_text_pinterest."'>" . "<img src='".ACX_FSMI_BASE_LOCATION."images/themes/". $acx_si_touse_theme ."/pinterest.png' style='border:0px;' alt='".$alt_text_pinterest."' ".$acx_si_icon_height_width_attribute." /></a>";
495
  }
496
  if ($acx_si_youtube == "") { $youtube_link = ""; } else
497
  {
498
+ $alt_text_youtube = __('Visit Us On Youtube','floating-social-media-icon');
499
+ $youtube_link = "<a href='". $acx_si_youtube ."' target='_blank' ".$acx_si_fsmi_rel." title='".$alt_text_youtube."'>" . "<img src='".ACX_FSMI_BASE_LOCATION."images/themes/". $acx_si_touse_theme ."/youtube.png' style='border:0px;' alt='".$alt_text_youtube."' ".$acx_si_icon_height_width_attribute." /></a>";
500
  }
501
  if ($acx_si_linkedin == "") { $linkedin_link = ""; } else
502
  {
503
+ $alt_text_linkedin = __('Visit Us On Linkedin','floating-social-media-icon');
504
+ $linkedin_link = "<a href='". $acx_si_linkedin ."' target='_blank' ".$acx_si_fsmi_rel." title='".$alt_text_linkedin."'>" . "<img src='".ACX_FSMI_BASE_LOCATION."images/themes/". $acx_si_touse_theme ."/linkedin.png' style='border:0px;' alt='".$alt_text_linkedin."' ".$acx_si_icon_height_width_attribute." /></a>";
505
  }
506
  if ($acx_si_feed == "") { $feed_link = ""; } else
507
  {
508
+ $alt_text_feed = __('Check Our Feed','floating-social-media-icon');
509
+ $feed_link = "<a href='". $acx_si_feed ."' target='_blank' ".$acx_si_fsmi_rel." title='".$alt_text_feed."'>" . "<img src='".ACX_FSMI_BASE_LOCATION."images/themes/". $acx_si_touse_theme ."/feed.png' style='border:0px;' alt='".$alt_text_feed."' ".$acx_si_icon_height_width_attribute." /></a>";
510
  }
511
  $social_icon_array_order = get_option('social_icon_array_order');
512
  if(is_serialized($social_icon_array_order))
517
  {
518
  $social_icon_array_order = array();
519
  }
520
+ $html = '' ;
521
  foreach ($social_icon_array_order as $key => $value)
522
  {
523
+ if ($value == 0) { $html .= $twitter_link; }
524
+ else if ($value == 1) { $html .= $facebook_link; }
525
+ else if ($value == 2) { $html .= $gplus_link; }
526
+ else if ($value == 3) { $html .= $pinterest_link; }
527
+ else if ($value == 4) { $html .= $youtube_link; }
528
+ else if ($value == 5) { $html .= $linkedin_link; }
529
 
530
+ else if ($value == 6) { $html .= $feed_link; }
531
  }
532
+ $html = apply_filters('acx_fsmip_si_simple',$acx_array,$html);
533
+
534
+ return $html;
535
  } //acurax_si_simple()
536
+ function filter_acx_fsmip_si_simple($acx_array,$html)
537
+ {
538
+ if($html != '' && $acx_array != '')
539
+ {
540
+ return $html;
541
+ }
542
+ }
543
+ add_filter('acx_fsmip_si_simple','filter_acx_fsmip_si_simple',999,2);
544
  function acx_theme_check_wp_head() {
545
  $template_directory = get_template_directory();
546
  // If header.php exists in the current theme, scan for "wp_head"
557
  }
558
 
559
  // wp_head() not found:
560
+ echo "<div class=\"highlight\" style=\"margin-top: 10px; margin-bottom: 10px; border: 1px solid darkred; padding: 1%; width: 97%; border-radius: 7px;\">" . __('Your theme needs to be fixed for plugins to work (Especially Floating Social Media Icon). To fix your theme, use the ','floating-social-media-icon')."<a href=\"theme-editor.php\">".__('Theme Editor','floating-social-media-icon')."</a> ".__('to insert','floating-social-media-icon')." <code>".htmlspecialchars("<?php wp_head(); ?>")."</code> ".__('just before the ','floating-social-media-icon')."<code>".htmlspecialchars("</head>")."</code> ".__("line of your theme's","floating-social-media-icon")."<code>".__('header.php','floating-social-media-icon')."</code> ".__('file. - [If everything is working properly, you can disable this warning at','floating-social-media-icon')." <a href=\"admin.php?page=Acurax-Social-Icons-Misc\">".__('misc page','floating-social-media-icon')."</a>]" . "</div>";
561
  }
562
  } // theme check
563
  if($acx_si_fsmi_theme_warning_ignore != "yes")
581
  }
582
 
583
  // wp_footer() not found:
584
+ echo "<div class=\"highlight\" style=\"margin-top: 10px; margin-bottom: 10px; border: 1px solid darkred; padding: 1%; width: 97%; border-radius: 7px;\">" . __('Your theme needs to be fixed for plugins to work (Especially Floating Social Media Icon). To fix your theme, use the ','floating-social-media-icon')."<a href=\"theme-editor.php\">" . __('Theme Editor','floating-social-media-icon')."</a>" . __(' to insert ','floating-social-media-icon')."<code>".htmlspecialchars("<?php wp_footer(); ?>")."</code>" . __(' just before the ','floating-social-media-icon')."<code>".htmlspecialchars("</body>")."</code>" . __(" line of your theme's ","floating-social-media-icon")."<code>" . __('footer.php','floating-social-media-icon')."</code>" . __(' file. - [If everything is working properly, you can disable this warning at ','floating-social-media-icon')."<a href=\"admin.php?page=Acurax-Social-Icons-Misc\">" . __('misc page','floating-social-media-icon')."</a>]" . "</div>";
585
  }
586
  }
587
  if($acx_si_fsmi_theme_warning_ignore != "yes")
599
  //*********************** STARTED DISPLAYING THE ICONS ***********************
600
  echo "\n\n\n<!-- Starting Icon Display Code For Social Media Icon From Acurax International www.acurax.com -->\n";
601
  echo "<div id='divBottomRight' style='text-align:center;'>";
602
+ $acx_to_pass_array = array(
603
+ 'theme' => $acx_si_theme,
604
+ 'size' => $acx_si_icon_size
605
+ );
606
+ echo acurax_si_simple($acx_to_pass_array);
607
  echo "</div>\n";
608
  echo "<!-- Ending Icon Display Code For Social Media Icon From Acurax International www.acurax.com -->\n\n\n";
609
  //*****************************************************************************
765
  //********** CHECKING CREDIT LINK STATUS ******************
766
  if($acx_si_twitter != "" || $acx_si_facebook != "" || $acx_si_youtube != "" || $acx_si_linkedin != "" || $acx_si_pinterest != "" || $acx_si_gplus != "" || $acx_si_feed != "")
767
  {
768
+
769
  if($acx_si_credit == "yes")
770
  {
771
  $acx_fsmi_bl_style="text-align:center;color:gray;font-family:arial;font-size:12px;text-decoration:none;";
780
  $x = strlen($acx_get_url);
781
  if(($x % 10) == 0)
782
  {
783
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Popular Social Media Wordpress Plugin' style='".$acx_fsmi_bl_style."'>".__('Animated Social Media Icons','floating-social-media-icon')."</a> Powered by <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Popular Wordpress Development Company' style='".$acx_fsmi_bl_style."'>".__('Acurax Wordpress Development Company','floating-social-media-icon')."</a>";
784
  } else if(($x % 9) == 0)
785
  {
786
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Floating Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>".__('Floating Social Media Icons','floating-social-media-icon')."</a> ".__('Powered by ','floating-social-media-icon')."<a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Blog Design Company' style='".$acx_fsmi_bl_style."'>".__('Acurax Blog Designing Company','floating-social-media-icon')."</a>";
787
  } else if(($x % 8) == 0)
788
  {
789
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Plugin' style='".$acx_fsmi_bl_style."'>Social Media Integration</a>".__(' Powered by','floating-social-media-icon')." <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Acurax Web Design Company' style='".$acx_fsmi_bl_style."'>".__('Acurax Wordpress Theme Designers','floating-social-media-icon')."</a>";
790
  } else if(($x % 7) == 0)
791
  {
792
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>".__('Social Media Icons','floating-social-media-icon')."</a>". __(' Powered by ','floating-social-media-icon')."<a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Affordable Website Designer' style='".$acx_fsmi_bl_style."'>".__('Acurax Website Designing Company','floating-social-media-icon')."</a>";
793
  } else if(($x % 6) == 0)
794
  {
795
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='SocialMedia Wordpress plugin' style='".$acx_fsmi_bl_style."'>". __('Social Media Icons','floating-social-media-icon')."</a>". __(' Powered by','floating-social-media-icon')." <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Web Development Company' style='".$acx_fsmi_bl_style."'>".__('Acurax Web Development Company','floating-social-media-icon')."</a>";} else if(($x % 5) == 0)
796
  {
797
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>". __('Social Media Icons','floating-social-media-icon')."</a> ". __(' Powered by ','floating-social-media-icon')."<a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Website Redesign Experts' style='".$acx_fsmi_bl_style."'>".__('Acurax Website Redesign Experts','floating-social-media-icon')."</a>";} else if(($x % 4) == 0)
798
  {
799
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>". __('Social Media Icons','floating-social-media-icon')."</a> ". __('Powered by','floating-social-media-icon')." <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Social Profile Design Experts' style='".$acx_fsmi_bl_style."'>". __('Acurax Social Profile Design Experts','floating-social-media-icon')."</a>";
800
  } else if(($x % 3) == 0)
801
  {
802
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>". __('Social Media Icons','floating-social-media-icon')."</a>". __(' Powered by ','floating-social-media-icon')."<a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Wordpress Development Company' style='".$acx_fsmi_bl_style."'>". __('Acurax Wordpress Development Company','floating-social-media-icon')."</a>";
803
  } else if(($x % 2) == 0)
804
  {
805
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>". __('Social Media Icons','floating-social-media-icon')."</a>". __(' Powered by ','floating-social-media-icon')."<a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Web Design Company' style='".$acx_fsmi_bl_style."'>". __('Acurax Web Design Company','floating-social-media-icon')."</a>";
806
  } else if(($x % 1) == 0)
807
  {
808
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>". __('Animated Social Media Icons','floating-social-media-icon')."</a>". __(' Powered by','floating-social-media-icon')." <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Wordpress Development Company' style='".$acx_fsmi_bl_style."'>". __('Acurax Wordpress Development Company','floating-social-media-icon')."</a>";
809
  } else
810
  {
811
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='".$acx_fsmi_bl_style."'>". __('Social Media Icons','floating-social-media-icon')."</a> ". __('Powered by','floating-social-media-icon')." <a href='http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=blink' target='_blank' title='Ecommerce Design Expert' style='".$acx_fsmi_bl_style."'>". __('Acurax E-Commerce Website Design Company','floating-social-media-icon')."</a>";
812
  }
813
  // Ending Crediting
814
  echo "</div>";
843
  echo "</style>\n<!-- Ending Styles For Social Media Icon From Acurax International www.acurax.com -->\n\n\n\n";
844
  } add_action('admin_head', 'extra_style_acx_icon'); // ADMIN
845
  add_action('wp_head', 'extra_style_acx_icon'); // PUBLIC
846
+
 
 
 
847
  $acx_si_display = get_option('acx_si_display');
848
  if ($acx_si_display == "auto" || $acx_si_display == "both")
849
  {
852
  $acx_si_sc_id = 0; // Defined to assign shortcode unique id
853
  function DISPLAY_ACURAX_ICONS_SC($atts)
854
  {
855
+ global $acx_si_display, $acx_si_icon_size, $acx_si_sc_id, $acx_fsmi_themes_array;
856
  extract(shortcode_atts(array(
857
  "theme" => '',
858
  "size" => $acx_si_icon_size,
872
  $align = "center";
873
  }
874
  if (!is_numeric($theme)) { $theme = ""; } else {
875
+ if ($theme > count($acx_fsmi_themes_array)) { $theme = ""; }
876
  }
877
  if (!is_numeric($size)) { $size = $acx_si_icon_size; } else {
878
  if ($size > 55) { $size = $acx_si_icon_size; }
888
  echo "width:" . $size . "px !important; \n}\n";
889
  echo "</style>";
890
  echo "<div id='short_code_si_icon' style='text-align:".$align.";' class='acx_fsmi_float_fix scid-" . $acx_si_sc_id . "'>"; // updated
891
+ $acx_to_pass_array = array(
892
+ 'theme' => $theme,
893
+ 'size' => $size
894
+ );
895
+ echo acurax_si_simple($acx_to_pass_array);
896
  echo "</div>";
897
  $content = ob_get_contents();
898
  ob_end_clean();
900
  }
901
  else echo "<!-- Select Display Mode as Manual To Show The Acurax Social Media Icons -->";
902
  } // DISPLAY_ACURAX_ICONS_SC
903
+ //DISPLAY_ACURAX_ICONS();
904
+ function DISPLAY_ACURAX_ICONS($theme="",$size="",$function="",$animation="",$opacity="",$align="")
905
  {
906
+ $acx_html = '';
907
+ global $acx_si_display, $acx_si_icon_size,$acx_fsmi_themes_array;
908
+
909
  if($align == "center")
910
  {
911
  $align = "center";
920
  $align = "center";
921
  }
922
  if (!is_numeric($theme)) { $theme = ""; } else {
923
+ if ($theme > count($acx_fsmi_themes_array)) { $theme = ""; }
924
  }
925
  if (!is_numeric($size)) { $size = $acx_si_icon_size; } else {
926
  if ($size > 55) { $size = $acx_si_icon_size; }
927
  }
928
+ $acx_to_pass_array = array(
929
+ 'theme' => $theme,
930
+ 'size' => $size,
931
+ 'align' => $align,
932
+ 'function' => $function,
933
+ 'animation' => $animation,
934
+ 'opacity' => $opacity
935
+ );
936
 
937
  if ($acx_si_display != "auto" || $acx_si_display == "both")
938
  {
939
+ $acx_html .= "\n\n\n<!-- Starting Styles For Social Media Icon (PHP CODE) From Acurax International www.acurax.com
940
  -->\n<style
941
  type='text/css'>\n";
942
+ $acx_html .= "#short_code_si_icon img \n{\n";
943
+ $acx_html .= "width: " . $size . "px; \n}\n";
944
+ $acx_html .= "</style>\n<!-- Ending Styles For Social Media Icon (PHP CODE) From Acurax International www.acurax.com
945
  -->\n\n\n\n";
946
+ $acx_html .= "<div id='short_code_si_icon' style='text-align:".$align.";'>";
947
+ $acx_html .= acurax_si_simple($acx_to_pass_array);
948
+ $acx_html .= "</div>";
949
  }
950
+ else $acx_html .= "<!-- Select Display Mode as Manual To Show The Acurax Social Media Icons -->";
951
+
952
+ $acx_html = apply_filters('acx_fsmip_display_icons_php',$acx_to_pass_array,$acx_html);
953
+ echo $acx_html;
954
+
955
  } // DISPLAY_ACURAX_ICONS
956
+ function filter_acx_fsmip_display_icons($acx_to_pass_array,$acx_html)
957
+ {
958
+ return $acx_html;
959
+ }
960
+ add_filter('acx_fsmip_display_icons_php','filter_acx_fsmip_display_icons',10,2);
961
+
962
  function acx_not_auto()
963
  {
964
  echo "<!-- Select Display Mode as Manual To Show The Acurax Social Media Icons -->";
970
  else
971
  {
972
  add_shortcode( 'DISPLAY_ACURAX_ICONS', 'acx_not_auto' ); // Defining Shortcode to show Select Manual
973
+ }
974
  function acx_si_custom_admin_js()
975
  {
976
  wp_enqueue_script('jquery');
993
  $social_icon_array_count = count($social_icon_array_order);
994
  if ($social_icon_array_count < $total_arrays)
995
  {
996
+ do_action('acx_fsmi_array_refresh');
997
  }
998
  $acx_fsmi_si_current_version = get_option('acx_fsmi_si_current_version');
999
  if($acx_fsmi_si_current_version != ACX_FSMI_C_VERSION) // Current Version
1005
  function acx_si_pluign_not_configured()
1006
  {
1007
  echo '<div class="updated">
1008
+ <p><b>'. __('Congratulations!, You Have Successfully Installed Floating Social Media Icon, The Plugin Is Not Configured - ','floating-social-media-icon').'<a href="admin.php?page=Acurax-Social-Icons-Settings">'. __('Click Here to Configure','floating-social-media-icon').'</a></b></p></div>';
1009
  }
1010
  if ($social_icon_array_count == $total_arrays)
1011
  {
1012
+ if ($acx_si_twitter == "" && $acx_si_facebook == "" && $acx_si_youtube == "" && $acx_si_linkedin == "" && $acx_si_pinterest == "" && $acx_si_gplus == "" && $acx_si_feed == "")
 
 
1013
  {
1014
+ if($acx_si_current_page != "Acurax-Social-Icons-Settings")
1015
+ {
1016
+ add_action('admin_notices', 'acx_si_pluign_not_configured',1);
1017
+ }
1018
+ } // Chking If Plugin Not Configured
1019
  } // Chking $social_icon_array_count == $total_arrays
1020
  // wp-admin Notices >> Plugin not configured
1021
  function acx_si_pluign_promotion()
1022
  {
1023
  $acx_tweet_text_array = array
1024
  (
1025
+ __("I Use Floating SocialMedia wordpress plugin from @acuraxdotcom and you should too","floating-social-media-icon"),
1026
+ __("Floating Social Media wordpress Plugin from @acuraxdotcom is Awesome","floating-social-media-icon"),
1027
+ __("Thanks @acuraxdotcom for developing such a wonderful social media wordpress plugin","floating-social-media-icon"),
1028
+ __("Actually i am looking for a social media Plugin like this. Thanks @acuraxdotcom","floating-social-media-icon"),
1029
+ __("Its very nice to use Floating Social media wordpress Plugin from @acuraxdotcom","floating-social-media-icon"),
1030
+ __("I installed Floating Social Media.. from @acuraxdotcom, It works wonderful","floating-social-media-icon"),
1031
+ __("The floating social media icon wordpress plugin looks soo nice.. thanks @acuraxdotcom", "floating-social-media-icon"),
1032
+ __("It awesome to use Floating Social Media wordpress plugin from @acuraxdotcom","floating-social-media-icon"),
1033
+ __("Floating Social Media wordpress Plugin that i use Looks awesome and works terrific","floating-social-media-icon"),
1034
+ __("I am using Floating Social Media Icon wordpress Plugin from @acuraxdotcom I like it!","floating-social-media-icon"),
1035
+ __("The socialmedia plugin from @acuraxdotcom Its simple looks good and works fine","floating-social-media-icon"),
1036
+ __("Ive been using this social media plugin for a while now and it is attractive","floating-social-media-icon"),
1037
+ __("Floating Social Media Icon wordpress plugin is Fantastic Plugin","floating-social-media-icon"),
1038
+ __("Floating Social Media Icon wordpress plugin was easy to use and works great. thank you!","floating-social-media-icon"),
1039
+ __("Good and flexible wp socialmedia plugin especially for beginners.","floating-social-media-icon"),
1040
+ __("Easily the best socialmedia wordpress plugin of the type I have used ! THANKS! @acuraxdotcom","floating-social-media-icon")
1041
  );
1042
  $acx_tweet_text = array_rand($acx_tweet_text_array, 1);
1043
  $acx_tweet_text = $acx_tweet_text_array[$acx_tweet_text];
1056
  $acx_fsmi_current_user = "Webmaster";
1057
  }
1058
 
1059
+ echo '<div id="acx_td_fsmi" class="notice">'. __("Hey","floating-social-media-icon").' <b>'.$acx_fsmi_current_user.'</b>'. __(", Do you know? You were using Floating Social Media Icon Wordpress Plugin for the last","floating-social-media-icon").' <b>'.$acx_fsmi_days_till_today_from_install.'</b>'. __(", We are sure, your visitors loved the flying icons.","floating-social-media-icon").'<br>'. __("From the bottom of our heart, we the team @ ","floating-social-media-icon").'<a href="http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=days" style="font-weight: normal; margin-left: 0px; color: rgb(68, 68, 68);" target="_blank">'. __("Acurax Technologies","floating-social-media-icon").'</a>'. __(" thank you for being with us, and we appreciate your feedback,reviews and support.","floating-social-media-icon").'<br><a href="https://wordpress.org/support/view/plugin-reviews/floating-social-media-icon?filter=5" target="_blank">'. __("Rate 5's on wordpress","floating-social-media-icon").'</a><a href="https://twitter.com/share?url=http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/&text='.$acx_tweet_text.' -" target="_blank">'. __("Tell Your Followers","floating-social-media-icon").'</a><a href="admin.php?page=Acurax-Social-Icons-Premium">'. __("Premium Version Benefits","floating-social-media-icon").'</a><a href="admin.php?page=Acurax-Social-Icons-Premium&td=hide">'. __("Hide for Now","floating-social-media-icon").'</a></div>';
1060
  }
1061
  $acx_si_installed_date = get_option('acx_si_installed_date');
1062
  if ($acx_si_installed_date=="") { $acx_si_installed_date = time();}
1090
  class Acx_Social_Icons_Widget extends WP_Widget
1091
  {
1092
  // Register the widget
1093
+ function __construct()
1094
  {
1095
  // Set some widget options
1096
+ $widget_options = array(
1097
+ 'description' => __('Allow users to show Social Media Icons From Floating Social Media Icon Plugin','floating-social-media-icon'),
1098
+ 'classname' => 'acx-fsmi-social-icons-desc' );
1099
  // Set some control options (width, height etc)
1100
  $control_options = array( 'width' => 300 );
1101
  // Actually create the widget (widget id, widget name, options...)
1102
+ parent::__construct( 'acx-social-icons-widget', 'Acurax Social Icons', $widget_options, $control_options );
1103
  }
1104
  // Output the content of the widget
1105
  function widget($args, $instance)
1123
  echo "</style>";
1124
  echo "<div id='acurax_si_simple' class='acx_fsmi_float_fix " . $this->get_field_id('widget') . "'"; // updated
1125
  if($icon_align != "") { echo " style='text-align:" . $icon_align . ";'>"; } else { echo " style='text-align:center;'>"; }
1126
+ $acx_to_pass_array = array(
1127
+ 'theme' => $icon_theme,
1128
+ 'size' => $icon_size
1129
+ );
1130
+ echo acurax_si_simple($acx_to_pass_array);
1131
  echo "</div>";
1132
  // This is defined when you register a sidebar
1133
  echo $after_widget;
1135
  // Output the admin options form
1136
  function form($instance)
1137
  {
1138
+ global $acx_fsmi_themes_array;
 
1139
  // These are our default values
1140
+ $defaults = array(
1141
+ 'title' => __('Social Media Icons','floating-social-media-icon'),
1142
+ 'icon_size' => '32' );
1143
  // This overwrites any default values with saved values
1144
  $instance = wp_parse_args( (array) $instance, $defaults );
1145
  ?>
1146
  <p>
1147
+ <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:' ,'floating-social-media-icon'); ?></label>
1148
  <input id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>"
1149
  value="<?php echo $instance['title']; ?>" type="text" class="widefat" />
1150
  </p>
1151
  <p>
1152
+ <label for="<?php echo $this->get_field_id('icon_size'); ?>"><?php _e('Icon Size:' ,'floating-social-media-icon'); ?></label>
1153
  <select class="widefat" name="<?php echo $this->get_field_name('icon_size'); ?>" id="<?php echo $this->get_field_id('icon_size'); ?>">
1154
+ <option value="16" <?php if ($instance['icon_size'] == "16") { echo 'selected="selected"'; } ?>>16<?php _e('px','floating-social-media-icon'); ?> X 16<?php _e('px','floating-social-media-icon'); ?> </option>
1155
+ <option value="25" <?php if ($instance['icon_size'] == "25") { echo 'selected="selected"'; } ?>>25<?php _e('px','floating-social-media-icon'); ?> X 25<?php _e('px','floating-social-media-icon'); ?> </option>
1156
+ <option value="32" <?php if ($instance['icon_size'] == "32") { echo 'selected="selected"'; } ?>>32<?php _e('px','floating-social-media-icon'); ?> X 32<?php _e('px','floating-social-media-icon'); ?> </option>
1157
+ <option value="40" <?php if ($instance['icon_size'] == "40") { echo 'selected="selected"'; } ?>>40<?php _e('px','floating-social-media-icon'); ?> X 40<?php _e('px','floating-social-media-icon'); ?> </option>
1158
+ <option value="48" <?php if ($instance['icon_size'] == "48") { echo 'selected="selected"'; } ?>>48<?php _e('px','floating-social-media-icon'); ?> X 48<?php _e('px','floating-social-media-icon'); ?> </option>
1159
+ <option value="55" <?php if ($instance['icon_size'] == "55") { echo 'selected="selected"'; } ?>>55<?php _e('px','floating-social-media-icon'); ?> X 55<?php _e('px','floating-social-media-icon'); ?> </option>
1160
  </select>
1161
  </p>
1162
  <p>
1163
+ <label for="<?php echo $this->get_field_id('icon_theme'); ?>"><?php _e('Icon Theme:' ,'floating-social-media-icon'); ?></label>
1164
  <select class="widefat" name="<?php echo $this->get_field_name('icon_theme'); ?>" id="<?php echo $this->get_field_id('icon_theme'); ?>">
1165
+ <option value="" <?php if(!ISSET($instance['icon_theme'])) { echo 'selected="selected"'; } ?>><?php _e('Default Theme Design' ,'floating-social-media-icon');?></option>
1166
  <?php
1167
+ foreach($acx_fsmi_themes_array as $k => $v)
1168
+ {
1169
+ $k = $k+1 ;
1170
+
1171
  ?>
1172
+ <option value="<?php echo $k; ?>" <?php if(ISSET($instance['icon_theme'])){if($instance['icon_theme'] == $k) { echo 'selected="selected"'; } }?>><?php _e('Theme Design' ,'floating-social-media-icon'); ?> <?php echo $k; ?> </option>
1173
  <?php
1174
  } ?>
1175
  </select>
1176
  </p>
1177
  <p>
1178
+ <label for="<?php echo $this->get_field_id('icon_align'); ?>"><?php _e('Icon Align:' ,'floating-social-media-icon'); ?></label>
1179
  <select class="widefat" name="<?php echo $this->get_field_name('icon_align'); ?>" id="<?php echo $this->get_field_id('icon_align'); ?>">
1180
+ <option value="" <?php if(!ISSET($instance['icon_align'])) { echo 'selected="selected"'; } ?>><?php _e('Default','floating-social-media-icon') ;?> </option>
1181
+ <option value="left" <?php if(ISSET($instance['icon_align'])){ if($instance['icon_align'] == "left") { echo 'selected="selected"'; }} ?>><?php _e('Left','floating-social-media-icon') ;?> </option>
1182
+ <option value="center" <?php if(ISSET($instance['icon_align'])){ if($instance['icon_align'] == "center") { echo 'selected="selected"'; }} ?>><?php _e('Center' ,'floating-social-media-icon') ;?> </option>
1183
+ <option value="right" <?php if(ISSET($instance['icon_align'])){ if($instance['icon_align'] == "right") { echo 'selected="selected"';} } ?>><?php _e('Right','floating-social-media-icon') ;?> </option>
1184
  </select>
1185
  </p>
1186
  <?php
1203
  {
1204
  $ad_1 = '
1205
  </hr>
1206
+ <a name="compare"></a><div id="ss_middle_wrapper" style="margin-top:10px;">
1207
  <div id="ss_middle_center">
1208
  <div id="ss_middle_inline_block">
1209
 
1210
  <div class="middle_h2_1">
1211
+ <h2>'. __("Limited on Features ?","floating-social-media-icon").'</h2>
1212
+ <h3>'. __("Compare and Decide","floating-social-media-icon").'</h3>
1213
  </div><!-- middle_h2_1 -->
1214
 
1215
  <div id="ss_features_table">
1216
 
1217
  <div id="ss_table_header">
1218
+ <div class="tb_h1"> <h3>'. __("Feature Group","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1219
+ <div class="tb_h2"> <h3>'. __("Features","floating-social-media-icon").'</h3> </div><!-- tb_h2 -->
1220
  <div class="tb_h3"> <div class="ss_download"> </div><!-- ss_download --> </div><!-- tb_h3 -->
1221
+ <div class="tb_h4 fsmi_tb_h4"> <a href="http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=plugin_fsmi_settings_table&utm_medium=link&utm_campaign=compare_buynow" target="_blank"><div class="ss_buy_now"> </div><!-- ss_buy_now --></a> </div><!-- tb_h4 -->
1222
  </div><!-- ss_table_header -->
1223
 
1224
  <div class="ss_column_holder">
1225
 
1226
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1227
+ <div class="ss_feature_group" style="padding-top: 197px;"> '. __("Display ","floating-social-media-icon").'</div><!-- -->
1228
+ <div class="tb_h1 mini"> <h3>'. __("Features","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1229
  <div class="ss_features">
1230
  <ul>
1231
+ <li>'. __("More Sharp Quality Icons","floating-social-media-icon").'</li>
1232
+ <li>'. __("20+ Icon Theme/Style","floating-social-media-icon").'</li>
1233
+ <li>'. __("Can Choose Icon Theme/Style","floating-social-media-icon").'</li>
1234
+ <li>'. __("Can Choose Icon Size","floating-social-media-icon").'</li>
1235
+ <li>'. __("Automatic/Manual Integration","floating-social-media-icon").'</li>
1236
+ <li>'. __("Set MouseOver text for each icon in Share Mode","floating-social-media-icon").'</li>
1237
+ <li>'. __("Set MouseOver text for each icon in Profile Link Mode","floating-social-media-icon").'</li>
1238
+ <li>'. __("Option to HIDE Invididual Share Icon","floating-social-media-icon").'</li>
1239
+ <li>'. __("Option to hide icon on mobile devices","floating-social-media-icon").'</li>
1240
+ <li>'. __("Option to hide icon on specific pages/post","floating-social-media-icon").'</li>
1241
+ <li>'. __("Option to set icon size for mobile devices","floating-social-media-icon").'</li>
1242
+ <li>'. __("Align icons on phpcode or shortcode","floating-social-media-icon").'</li>
1243
+ <li><strong>'. __("Set Floating Icons in Vertical","floating-social-media-icon").'</strong></li>
1244
+ <li><strong>'. __("Define how many icons in 1 row","floating-social-media-icon").'</strong></li>
1245
+ <li><strong><strong>'. __("Add Unlimited # of Custom Icons","floating-social-media-icon").'</strong></strong></li>
1246
+ <li class="ss_last_one"><strong>'. __("Custom Icons Can Link to Your Website Pages","floating-social-media-icon").'</strong></li>
1247
  </ul>
1248
  </div><!-- ss_features -->
1249
 
1250
+ <div class="tb_h1 mini"> <h3>'. __("FREE ","floating-social-media-icon").'&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","floating-social-media-icon").'</span></h3> </div><!-- tb_h1 -->
1251
  <div class="ss_y_n_holder">
1252
  <div class="ss_no"> </div><!-- ss_no -->
1253
  <div class="ss_yes"> </div><!-- ss_yes -->
1290
 
1291
  <div class="ss_column_holder">
1292
 
1293
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1294
+ <div class="ss_feature_group" style="padding-top: 30px;">'. __(" Icon Function","floating-social-media-icon").' </div><!-- -->
1295
+ <div class="tb_h1 mini"> <h3>'. __("Features","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1296
  <div class="ss_features">
1297
  <ul>
1298
+ <li>'. __("Link to Social Media Profile","floating-social-media-icon").'</li>
1299
+ <li><strong>'. __("Share On Social Media","floating-social-media-icon").'</strong></li>
1300
+ <li>'. __("Option to add twitter username and hashtags to tweets","floating-social-media-icon").'</li>
1301
+ <li class="ss_last_one">'. __("Option to Define Tweet Prefix and Suffix","floating-social-media-icon").'</li>
1302
  </ul>
1303
  </div><!-- ss_features -->
1304
 
1305
+ <div class="tb_h1 mini"> <h3>'. __("FREE","floating-social-media-icon").' &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","floating-social-media-icon").'</span></h3> </div><!-- tb_h1 -->
1306
  <div class="ss_y_n_holder">
1307
  <div class="ss_yes"> </div><!-- ss_yes -->
1308
  <div class="ss_no"> </div><!-- ss_no -->
1321
 
1322
  <div class="ss_column_holder">
1323
 
1324
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1325
+ <div class="ss_feature_group" style="padding-top: 30px;"> '. __("Animation","floating-social-media-icon").' </div><!-- -->
1326
+ <div class="tb_h1 mini"> <h3>'. __("Features","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1327
  <div class="ss_features">
1328
  <ul>
1329
  <li>Fly Animation</li>
1330
+ <li class="ss_last_one"><strong>'. __("Mouse Over Effects","floating-social-media-icon").'</strong></li>
1331
  </ul>
1332
  </div><!-- ss_features -->
1333
 
1334
+ <div class="tb_h1 mini"> <h3>'. __("FREE ","floating-social-media-icon").'&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","floating-social-media-icon").'</span></h3> </div><!-- tb_h1 -->
1335
  <div class="ss_y_n_holder">
1336
  <div class="ss_yes"> </div><!-- ss_yes -->
1337
  <div class="ss_no ss_last_one"> </div><!-- ss_no -->
1346
 
1347
  <div class="ss_column_holder">
1348
 
1349
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1350
+ <div class="ss_feature_group" style="padding-top: 84px;"> '. __("Fly Animation Repeat Interval","floating-social-media-icon").'</div><!-- -->
1351
+ <div class="tb_h1 mini"> <h3>'. __("Features","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1352
  <div class="ss_features">
1353
  <ul>
1354
+ <li>'. __("Based On Time in Seconds","floating-social-media-icon").'</li>
1355
+ <li><strong>'. __("Based On Time in Minutes","floating-social-media-icon").'</strong></li>
1356
+ <li>'. __("Based On Time in Hours","floating-social-media-icon").'</li>
1357
+ <li>'. __("Based on Page Views","floating-social-media-icon").'</li>
1358
+ <li class="ss_last_one">'. __("Based On Page Views and Time","floating-social-media-icon").'</li>
1359
  </ul>
1360
  </div><!-- ss_features -->
1361
 
1362
+ <div class="tb_h1 mini"> <h3>'. __("FREE ","floating-social-media-icon").'&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","floating-social-media-icon").'</span></h3> </div><!-- tb_h1 -->
1363
  <div class="ss_y_n_holder">
1364
  <div class="ss_no"> </div><!-- ss_no -->
1365
  <div class="ss_no"> </div><!-- ss_no -->
1380
 
1381
  <div class="ss_column_holder">
1382
 
1383
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1384
+ <div class="ss_feature_group" style="padding-top: 30px;"> '. __("Multiple Fly Animation","floating-social-media-icon").'<br/></div><!-- -->
1385
+ <div class="tb_h1 mini"> <h3>'. __("Features","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1386
  <div class="ss_features">
1387
  <ul>
1388
+ <li>'. __("Can Choose Fly Start Position","floating-social-media-icon").'</li>
1389
+ <li class="ss_last_one">'. __("Can Choose Fly End Position","floating-social-media-icon").'</li>
1390
  </ul>
1391
  </div><!-- ss_features -->
1392
 
1393
+ <div class="tb_h1 mini"> <h3>'. __("FREE","floating-social-media-icon").' &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","floating-social-media-icon").'</span></h3> </div><!-- tb_h1 -->
1394
  <div class="ss_y_n_holder">
1395
  <div class="ss_no"> </div><!-- ss_no -->
1396
  <div class="ss_no ss_last_one"> </div><!-- ss_no -->
1405
 
1406
  <div class="ss_column_holder">
1407
 
1408
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1409
+ <div class="ss_feature_group" style="padding-top: 52px;">'.__("Easy to Configure","floating-social-media-icon").'</div><!-- -->
1410
+ <div class="tb_h1 mini"> <h3>'. __("Features","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1411
  <div class="ss_features">
1412
  <ul>
1413
+ <li>'. __("Ajax Based Settings Page","floating-social-media-icon").'</li>
1414
+ <li>'. __("Drag & Drop Reorder Icons","floating-social-media-icon").'</li>
1415
+ <li class="ss_last_one">'. __("Easy to Configure","floating-social-media-icon").'</li>
1416
  </ul>
1417
  </div><!-- ss_features -->
1418
 
1419
+ <div class="tb_h1 mini"> <h3>'. __("FREE","floating-social-media-icon").' &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","floating-social-media-icon").'</span></h3> </div><!-- tb_h1 -->
1420
  <div class="ss_y_n_holder">
1421
  <div class="ss_no"> </div><!-- ss_no -->
1422
  <div class="ss_yes"> </div><!-- ss_yes -->
1433
 
1434
  <div class="ss_column_holder">
1435
 
1436
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1437
+ <div class="ss_feature_group" style="padding-top: 106px;">'. __("Widget Support","floating-social-media-icon").' </div><!-- -->
1438
+ <div class="tb_h1 mini"> <h3>'. __("Features","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1439
  <div class="ss_features">
1440
  <ul>
1441
+ <li>'. __("Multiple Widgets","floating-social-media-icon").'</li>
1442
+ <li>'. __("Separate Icon Style/Theme For Each","floating-social-media-icon").'</li>
1443
+ <li>'. __("Separate Icon Size For Each","floating-social-media-icon").'</li>
1444
+ <li>'. __("Set whether the icons to Link Profiles/SHARE","floating-social-media-icon").'</li>
1445
+ <li><strong>'. __("Separate Mouse Over Multiple Animation for Each","floating-social-media-icon").'</strong></li>
1446
+ <li class="ss_last_one">'. __("Separate Default Opacity for Each","floating-social-media-icon").'</li>
1447
  </ul>
1448
  </div><!-- ss_features -->
1449
 
1450
+ <div class="tb_h1 mini"> <h3>'. __("FREE ","floating-social-media-icon").'&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","floating-social-media-icon").'</span></h3> </div><!-- tb_h1 -->
1451
  <div class="ss_y_n_holder">
1452
  <div class="ss_yes"> </div><!-- ss_yes -->
1453
  <div class="ss_yes"> </div><!-- ss_yes -->
1470
 
1471
  <div class="ss_column_holder">
1472
 
1473
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1474
+ <div class="ss_feature_group" style="padding-top: 106px;">'. __("Shortcode Support ","floating-social-media-icon").'</div><!-- -->
1475
+ <div class="tb_h1 mini"> <h3>'. __("Features","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1476
  <div class="ss_features">
1477
  <ul>
1478
+ <li>'. __("Multiple Instances","floating-social-media-icon").'</li>
1479
+ <li>'. __("Separate Icon Style/Theme For Each","floating-social-media-icon").'</li>
1480
+ <li><strong>'. __("Separate Icon Size For Each","floating-social-media-icon").'</strong></li>
1481
+ <li>'. __("Set whether the icons to Link Profiles/SHARE","floating-social-media-icon").'</li>
1482
+ <li>'. __("Separate Mouse Over Multiple Animation for Each","floating-social-media-icon").'</li>
1483
+ <li class="ss_last_one">'. __("Separate Default Opacity for Each","floating-social-media-icon").'</li>
1484
  </ul>
1485
  </div><!-- ss_features -->
1486
 
1487
+ <div class="tb_h1 mini"> <h3>'. __("FREE ","floating-social-media-icon").'&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'.__("PREMIUM","floating-social-media-icon").'</span></h3> </div><!-- tb_h1 -->
1488
  <div class="ss_y_n_holder">
1489
  <div class="ss_yes"> </div><!-- ss_yes -->
1490
  <div class="ss_yes"> </div><!-- ss_yes -->
1507
 
1508
  <div class="ss_column_holder">
1509
 
1510
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1511
+ <div class="ss_feature_group" style="padding-top: 126px;">'. __("PHP Code Support","floating-social-media-icon").' </div><!-- -->
1512
+ <div class="tb_h1 mini"> <h3>'. __("Features","floating-social-media-icon").'</h3> </div><!-- tb_h1 -->
1513
  <div class="ss_features">
1514
  <ul>
1515
+ <li>'. __("Multiple Instances","floating-social-media-icon").'</li>
1516
+ <li>'. __("Use Outside Loop","floating-social-media-icon").'</li>
1517
+ <li>'. __("Separate Icon Style/Theme For Each","floating-social-media-icon").'</li>
1518
+ <li>'. __("Separate Icon Size For Each","floating-social-media-icon").'</li>
1519
+ <li><strong>'. __("Set whether the icons to Link Profiles/SHARE","floating-social-media-icon").'</strong></li>
1520
+ <li>'. __("Separate Mouse Over Multiple Animation for Each","floating-social-media-icon").'</li>
1521
+ <li class="ss_last_one">'. __("Separate Default Opacity for Each","floating-social-media-icon").'</li>
1522
  </ul>
1523
  </div><!-- ss_features -->
1524
 
1525
+ <div class="tb_h1 mini"> <h3>'. __("FREE","floating-social-media-icon").' &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","floating-social-media-icon").'</span></h3> </div><!-- tb_h1 -->
1526
  <div class="ss_y_n_holder">
1527
  <div class="ss_yes"> </div><!-- ss_yes -->
1528
  <div class="ss_yes"> </div><!-- ss_yes -->
1550
  </div><!-- ss_features_table -->
1551
 
1552
  <div id="ad_fsmi_2_button_order" style="float: left; width: 100%;">
1553
+ <a href="http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=plugin_fsmi_settings&utm_medium=banner&utm_campaign=plugin_yellow_order" target="_blank"><div id="ad_fsmi_2_button_order_link"></div></a></div> <!-- ad_fsmi_2_button_order --></div></div></div>';
1554
+ $ad_2='<div id="ad_fsmi_2"> <a href="http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=plugin_fsmi_settings&utm_medium=banner&utm_campaign=plugin_enjoy" target="_blank"><div id="ad_fsmi_2_button"></div></a> </div> <!-- ad_fsmi_2 --><br>
1555
  <div id="ad_fsmi_2_button_order">
1556
+ <a http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=plugin_fsmi_settings&utm_medium=banner&utm_campaign=plugin_yellow_order" target="_blank"><div id="ad_fsmi_2_button_order_link"></div></a></div> <!-- ad_fsmi_2_button_order --> ';
1557
  if($ad=="" || $ad == 2) { echo $ad_2; } else if ($ad == 1) { echo $ad_1; } else { echo $ad_2; }
1558
  } // Updated
1559
+ add_action('acx_fsmi_comparison_premium','socialicons_comparison',1);
1560
+
1561
  function acx_fsmi_saveorder_callback()
1562
  {
1563
+ if(!isset($_POST['acx_fsmi_saveorder_es'])) die("<br><br>".__('Unknown Error Occurred, Try Again... ','floating-social-media-icon')."<a href=''>".__('Click Here','floating-social-media-icon')."</a>");
1564
+ if(!wp_verify_nonce($_POST['acx_fsmi_saveorder_es'],'acx_fsmi_saveorder_es')) die("<br><br>".__('Sorry, You have no permission to do this action...','floating-social-media-icon')."</a>");
1565
  global $wpdb;
1566
  $social_icon_array_order = $_POST['recordsArray'];
1567
  if (current_user_can('manage_options')) {
1568
  $social_icon_array_order = serialize($social_icon_array_order);
1569
  update_option('social_icon_array_order', $social_icon_array_order);
1570
  echo "<div id='acurax_notice' align='center' style='width: 420px; font-family: arial; font-weight: normal; font-size: 22px;'>";
1571
+ _e("Social Media Icon's Order Saved","floating-social-media-icon");
1572
  echo "</div><script type='text/javascript'>
1573
  setTimeout(function(){
1574
  jQuery('#acurax_notice').fadeOut('slow');
1579
  }
1580
  die(); // this is required to return a proper result
1581
  } add_action('wp_ajax_acx_fsmi_saveorder', 'acx_fsmi_saveorder_callback');
 
 
1582
 
 
 
 
 
 
 
 
1583
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
images/p-info-icon-hori.jpg CHANGED
Binary file
images/table_head_4.png CHANGED
Binary file
includes/acx_fsmi_misc.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ acx_fsmi_hook_function('acx_fsmi_misc_hook_option_above_ifpost');
3
+ if(ISSET($_POST['acx_fsmi_misc_hidden']))
4
+ {
5
+ $acx_fsmi_misc_hidden = $_POST['acx_fsmi_misc_hidden'];
6
+ }
7
+ else
8
+ {
9
+ $acx_fsmi_misc_hidden = "";
10
+ }
11
+ if($acx_fsmi_misc_hidden == 'Y')
12
+ {
13
+ acx_fsmi_hook_function('acx_fsmi_misc_hook_option_onpost');
14
+ } else
15
+ {
16
+ acx_fsmi_hook_function('acx_fsmi_misc_hook_option_postelse');
17
+ }
18
+ acx_fsmi_hook_function('acx_fsmi_misc_hook_option_after_else');
19
+ acx_fsmi_hook_function('acx_fsmi_misc_hook_option_form_head');
20
+ acx_fsmi_hook_function('acx_fsmi_misc_hook_option_fields');
21
+ acx_fsmi_hook_function('acx_fsmi_misc_hook_option_form_footer');
22
+ acx_fsmi_hook_function('acx_fsmi_misc_hook_option_sidebar');
23
+ ?>
includes/acx_fsmi_options.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ acx_fsmi_hook_function('acx_fsmi_hook_option_above_ifpost');
3
+ if(ISSET($_POST['acx_fsmi_hidden']))
4
+ {
5
+ $acx_fsmi_hidden = $_POST['acx_fsmi_hidden'];
6
+ }
7
+ else
8
+ {
9
+ $acx_fsmi_hidden = "";
10
+ }
11
+ if($acx_fsmi_hidden == 'Y')
12
+ {
13
+ acx_fsmi_hook_function('acx_fsmi_hook_option_onpost');
14
+ } else
15
+ {
16
+ acx_fsmi_hook_function('acx_fsmi_hook_option_postelse');
17
+ }
18
+ acx_fsmi_hook_function('acx_fsmi_hook_option_after_else');
19
+ acx_fsmi_hook_function('acx_fsmi_hook_option_form_head');
20
+ acx_fsmi_hook_function('acx_fsmi_hook_option_fields');
21
+ acx_fsmi_hook_function('acx_fsmi_hook_option_form_footer');
22
+ acx_fsmi_hook_function('acx_fsmi_hook_option_sidebar');
23
+ ?>
includes/acx_fsmi_premium.php ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+ acx_fsmi_hook_function('acx_fsmi_premium_hook_option_footer');
3
+ ?>
includes/acx_fsmi_social_help.php ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <?php
2
+ acx_fsmi_hook_function('acx_fsmi_help_hook_option_form_head');
3
+ acx_fsmi_hook_function('acx_fsmi_help_hook_option_fields');
4
+ acx_fsmi_hook_function('acx_fsmi_help_hook_option_sidebar');
5
+ ?>
includes/expert_support.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ acx_fsmi_hook_function('acx_fsmi_exprt_hook_option_exprt_quick');
3
+ acx_fsmi_hook_function('acx_fsmi_exprt_hook_option_form_head');
4
+ if($_GET['page'] == "Acurax-Social-Icons-Expert-Support")
5
+ {
6
+ acx_fsmi_quick_form();
7
+ }
8
+ acx_fsmi_hook_function('acx_fsmi_exprt_hook_option_fields');
9
+ acx_fsmi_hook_function('acx_fsmi_exprt_hook_option_sidebar');
10
+ ?>
includes/hook_functions.php CHANGED
@@ -1,43 +1,138 @@
1
  <?php
2
- function acx_fsmi_service_banners()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  { ?>
4
- <div id="acx_ad_banners_fsmi">
 
 
 
 
 
 
 
5
  <?php
6
- $acx_fsmi_acx_service_banners = get_option('acx_fsmi_acx_service_banners');
7
- if ($acx_fsmi_acx_service_banners != "no") { ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  <div id="acx_ad_banners_fsmi">
9
  <a href="http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=sidebar_banner_1" target="_blank" class="acx_ad_fsmi_1">
10
- <div class="acx_ad_fsmi_title">Need Help on Wordpress?</div> <!-- acx_ad_fsmi_title -->
11
- <div class="acx_ad_fsmi_desc">Instant Solutions for your wordpress Issues</div> <!-- acx_ad_fsmi_desc -->
12
  </a> <!-- acx_ad_fsmi_1 -->
13
 
14
  <a href="http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=sidebar_banner_2" target="_blank" class="acx_ad_fsmi_1">
15
- <div class="acx_ad_fsmi_title">Unique Design For Better Branding</div> <!-- acx_ad_fsmi_title -->
16
- <div class="acx_ad_fsmi_desc acx_ad_fsmi_desc2" style="padding-top: 0px; padding-left: 50px; height: 41px; font-size: 13px; text-align: center;">Get Responsive Custom Designed Website For High Conversion</div> <!-- acx_ad_fsmi_desc -->
17
  </a> <!-- acx_ad_fsmi_1 -->
18
 
19
- <a href="http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=sidebar_banner_4" target="_blank" class="acx_ad_fsmi_1">
20
- <div class="acx_ad_fsmi_title">Affordable Website Solutions</div> <!-- acx_ad_fsmi_title -->
21
- <div class="acx_ad_fsmi_desc acx_ad_fsmi_desc3" style="padding-top: 0px; height: 32px; font-size: 13px; text-align: center;">Get Affordable Solutions for Your Web Related Needs From Wordpress Experts.</div> <!-- acx_ad_fsmi_desc -->
22
  </a> <!-- acx_ad_fsmi_1 -->
23
 
24
  </div> <!-- acx_ad_banners_fsmi -->
25
  <?php } else { ?>
 
 
26
  <div class="acx_fsmi_sidebar_widget">
27
- <div class="acx_fsmi_sidebar_w_title">We Are Always Available</div> <!-- acx_ad_fsmi_title -->
28
  <div class="acx_fsmi_sidebar_w_content">
29
- We know you are in the process of improving your website, and we the team at Acurax is always available for any help or support that you need. <a href="http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=sidebar_text_1" target="_blank">Get in touch</a>
30
  </div>
31
  </div> <!-- acx_fsmi_sidebar_widget -->
32
 
33
 
34
  <div class="acx_fsmi_sidebar_widget">
35
- <div class="acx_fsmi_sidebar_w_title">Do You Know?</div> <!-- acx_ad_fsmi_title -->
36
  <div class="acx_fsmi_sidebar_w_content acx_fsmi_sidebar_w_content_p_slide">
37
  </div>
38
  </div> <!-- acx_fsmi_sidebar_widget -->
39
  <script type="text/javascript">
40
- var acx_fsmi = new Array("A professionally designed website is the most cost effective marketing tool available in the world today...","Personalizing your website can create a unique one to one experience and convert your visitors into customers.","70% of searches from mobile devices are followed up with an action within 1 hour.");
 
 
41
  // jQuery(".acx_fsmi_sidebar_w_content_p_slide p").height('30px');
42
  function acx_fsmi_t_rotate()
43
  {
@@ -52,14 +147,14 @@ acx_fsmi_t_rotate();
52
  });
53
  </script>
54
  <div class="acx_fsmi_sidebar_widget">
55
- <div class="acx_fsmi_sidebar_w_title">Grab The Blending Creativity</div>
56
- <div class="acx_fsmi_sidebar_w_content">Make your website user friendly and optimized for mobile devices for better user interaction and satisfaction <a href="http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=sidebar_text_2" target="_blank">Click Here</a></div>
57
  </div> <!-- acx_fsmi_sidebar_widget -->
58
  <?php } ?>
59
  <div class="acx_fsmi_sidebar_widget">
60
- <div class="acx_fsmi_sidebar_w_title">Rate us on wordpress.org</div>
61
- <div class="acx_fsmi_sidebar_w_content" style="text-align:center;font-size:13px;"><b>Thank you for being with us... If you like our plugin then please show us some love </b></br>
62
- <a href="https://wordpress.org/support/view/plugin-reviews/floating-social-media-icon/" target="_blank" style="text-decoration:none;">
63
  <span id="acx_fsmi_stars">
64
  <span class="dashicons dashicons-star-filled"></span>
65
  <span class="dashicons dashicons-star-filled"></span>
@@ -67,13 +162,113 @@ acx_fsmi_t_rotate();
67
  <span class="dashicons dashicons-star-filled"></span>
68
  <span class="dashicons dashicons-star-filled"></span>
69
  </span>
70
- <span class="acx_fsmi_star_button button button-primary">Click Here</span>
71
  </a>
72
- <p>If you are facing any issues, kindly post them at plugins support forum <a href="http://wordpress.org/support/plugin/floating-social-media-icon/" target="_blank">here</a>
73
  </div>
74
  </div> <!-- acx_fsmi_sidebar_widget -->
75
- </div> <!-- acx_ad_banners_fsmi -->
76
  <?php
77
- }
78
- add_action('acx_fsmi_hook_sidebar_widget','acx_fsmi_service_banners',100);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79
  ?>
1
  <?php
2
+ function acx_fsmi_nonce_check()
3
+ {
4
+ if (!isset($_POST['acx_fsmi_nonce'])) die("<br><br>".__('Unknown Error Occurred, Try Again... ','floating-social-media-icon')."<a href=''>Click Here</a>");
5
+ if (!wp_verify_nonce($_POST['acx_fsmi_nonce'],'acx_fsmi_nonce')) die("<br><br>".__('Sorry, You have no permission to do this action...','floating-social-media-icon')."</a>");
6
+ if(!current_user_can('manage_options')) die("<br><br>".__('Sorry, You have no permission to do this action...','floating-social-media-icon')."</a>");
7
+ } add_action('acx_fsmi_hook_option_onpost','acx_fsmi_nonce_check',1);
8
+
9
+ function acx_fsmi_nonce_field()
10
+ {
11
+ echo "<input name='acx_fsmi_nonce' type='hidden' value='".wp_create_nonce('acx_fsmi_nonce')."' />";
12
+ echo "<input name='acx_fsmi_hidden' type='hidden' value='Y' />";
13
+ } add_action('acx_fsmi_hook_option_fields','acx_fsmi_nonce_field',10);
14
+
15
+ function acx_fsmi_option_form_start()
16
+ {
17
+ echo "<form name='acx_fsmi_form' id='acx_fsmi_form' method='post' action='".str_replace( '%7E', '~',$_SERVER['REQUEST_URI'])."'>";
18
+ } add_action('acx_fsmi_hook_option_form_head','acx_fsmi_option_form_start',100);
19
+
20
+
21
+ function acx_fsmi_option_form_end()
22
+ {
23
+ echo "</form>";
24
+ } add_action('acx_fsmi_hook_option_form_footer','acx_fsmi_option_form_end',100);
25
+
26
+
27
+ function acx_fsmi_option_div_start()
28
+ {
29
+ echo "<div id=\"acx_fsmi_option_page_holder\"> \n";
30
+ acx_fsmi_hook_function('acx_fsmi_hook_option_above_page_left');
31
+ echo "<div class=\"acx_fsmi_option_page_left\"> \n";
32
+ } add_action('acx_fsmi_hook_option_form_head','acx_fsmi_option_div_start',30);
33
+
34
+
35
+ function acx_fsmi_option_sidebar_start()
36
+ {
37
+ echo "</div> <!-- acx_fsmi_option_page_left --> \n";
38
+ echo "<div class=\"acx_fsmi_option_page_right\"> \n";
39
+ } add_action('acx_fsmi_hook_option_sidebar','acx_fsmi_option_sidebar_start',10);
40
+
41
+
42
+ function acx_fsmi_option_sidebar_end()
43
+ {
44
+ echo "</div> <!-- acx_fsmi_option_page_right --> \n";
45
+ acx_fsmi_hook_function('acx_fsmi_hook_option_footer');
46
+ echo "</div> <!-- acx_fsmi_option_page_holder --> \n";
47
+ } add_action('acx_fsmi_hook_option_sidebar','acx_fsmi_option_sidebar_end',500);
48
+
49
+ function acx_print_option_page_title()
50
+ {
51
+ $acx_string = __("Acurax Social Icons Options","floating-social-media-icon");
52
+ echo print_acx_fsmi_option_heading($acx_string);
53
+ } add_action('acx_fsmi_hook_option_form_head','acx_print_option_page_title',50);
54
+
55
+ function display_acx_fsmi_saved_success()
56
  { ?>
57
+ <div class="updated"><p><strong><?php _e('Settings Saved Successfully.','floating-social-media-icon'); ?></strong></p></div>
58
+ <script type="text/javascript">
59
+ setTimeout(function(){
60
+ jQuery('.updated').fadeOut('slow');
61
+
62
+ }, 4000);
63
+
64
+ </script>
65
  <?php
66
+ } add_action('acx_fsmi_hook_option_onpost','display_acx_fsmi_saved_success',5000);
67
+
68
+
69
+
70
+ function acx_fsmi_lb_infobox()
71
+ { ?>
72
+ <script type="text/javascript">
73
+ jQuery( ".fsmi_info_lb" ).click(function() {
74
+ var lb_title = jQuery(this).attr('lb_title');
75
+ var lb_content = jQuery(this).attr('lb_content');
76
+ var html= '<div id="acx_fsmi_c_icon_p_info_lb_h" style="display:none;"><div class="acx_fsmi_c_icon_p_info_c"><span class="acx_fsmi_c_icon_p_info_close" onclick="fsmi_remove_info()"></span><h4>'+lb_title+'</h4><div class="acx_fsmi_c_icon_p_info_content">'+lb_content+'</div></div></div> <!-- acx_fsmi_c_icon_p_info_lb_h -->';
77
+ jQuery( "body" ).append(html)
78
+ jQuery( "#acx_fsmi_c_icon_p_info_lb_h" ).fadeIn();
79
+ });
80
+
81
+ function fsmi_remove_info()
82
+ {
83
+ jQuery( "#acx_fsmi_c_icon_p_info_lb_h" ).fadeOut()
84
+ jQuery( "#acx_fsmi_c_icon_p_info_lb_h" ).remove();
85
+ };
86
+ </script>
87
+ <?php
88
+ } add_action('acx_fsmi_hook_option_footer','acx_fsmi_lb_infobox');
89
+
90
+ add_action('acx_fsmi_misc_hook_option_footer','acx_fsmi_lb_infobox');
91
+
92
+
93
+ function acx_fsmi_service_banners()
94
+ {
95
+ ?>
96
+ <div id="acx_fsmi_sidebar">
97
+ <?php $acx_fsmi_service_banners = get_option('acx_fsmi_acx_service_banners');
98
+ if ($acx_fsmi_service_banners != "no") { ?>
99
  <div id="acx_ad_banners_fsmi">
100
  <a href="http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=sidebar_banner_1" target="_blank" class="acx_ad_fsmi_1">
101
+ <div class="acx_ad_fsmi_title"><?php _e('Need Help on Wordpress?','floating-social-media-icon'); ?></div> <!-- acx_ad_fsmi_title -->
102
+ <div class="acx_ad_fsmi_desc"><?php _e('Instant Solutions for your wordpress Issues','floating-social-media-icon'); ?></div> <!-- acx_ad_fsmi_desc -->
103
  </a> <!-- acx_ad_fsmi_1 -->
104
 
105
  <a href="http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=sidebar_banner_2" target="_blank" class="acx_ad_fsmi_1">
106
+ <div class="acx_ad_fsmi_title"><?php _e('Unique Design For Better Branding','floating-social-media-icon'); ?></div> <!-- acx_ad_fsmi_title -->
107
+ <div class="acx_ad_fsmi_desc acx_ad_fsmi_desc2" style="padding-top: 0px; padding-left: 50px; height: 41px; font-size: 13px; text-align: center;"><?php _e('Get Responsive Custom Designed Website For High Conversion','floating-social-media-icon'); ?></div> <!-- acx_ad_fsmi_desc -->
108
  </a> <!-- acx_ad_fsmi_1 -->
109
 
110
+ <a href="http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=sidebar_banner_3" target="_blank" class="acx_ad_fsmi_1">
111
+ <div class="acx_ad_fsmi_title"><?php _e('Affordable Website Packages','floating-social-media-icon'); ?></div> <!-- acx_ad_fsmi_title -->
112
+ <div class="acx_ad_fsmi_desc acx_ad_fsmi_desc3" style="padding-top: 0px; height: 32px; font-size: 13px; text-align: center;"><?php _e('Get Feature Rich Packages For a Custom Designed Website','floating-social-media-icon'); ?></div> <!-- acx_ad_fsmi_desc -->
113
  </a> <!-- acx_ad_fsmi_1 -->
114
 
115
  </div> <!-- acx_ad_banners_fsmi -->
116
  <?php } else { ?>
117
+
118
+
119
  <div class="acx_fsmi_sidebar_widget">
120
+ <div class="acx_fsmi_sidebar_w_title"><?php _e('We Are Always Available','floating-social-media-icon');?></div> <!-- acx_ad_fsmi_title -->
121
  <div class="acx_fsmi_sidebar_w_content">
122
+ <?php _e('We know you are in the process of improving your website, and we the team at Acurax is always available for any help or support that you need. ','floating-social-media-icon'); ?><a href="http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=sidebar_text_1" target="_blank"><?php _e('Get in touch','floating-social-media-icon') ;?></a>
123
  </div>
124
  </div> <!-- acx_fsmi_sidebar_widget -->
125
 
126
 
127
  <div class="acx_fsmi_sidebar_widget">
128
+ <div class="acx_fsmi_sidebar_w_title"><?php _e('Do You Know?','floating-social-media-icon'); ?></div> <!-- acx_ad_fsmi_title -->
129
  <div class="acx_fsmi_sidebar_w_content acx_fsmi_sidebar_w_content_p_slide">
130
  </div>
131
  </div> <!-- acx_fsmi_sidebar_widget -->
132
  <script type="text/javascript">
133
+
134
+ var acx_fsmi = new Array("<?php _e('A professionally designed website is the most cost effective marketing tool available in the world today...','floating-social-media-icon'); ?>","<?php _e('Personalizing your website can create a unique one to one experience and convert your visitors into customers.','floating-social-media-icon'); ?>","<?php _e('70% of searches from mobile devices are followed up with an action within 1 hour.','floating-social-media-icon'); ?>");
135
+
136
  // jQuery(".acx_fsmi_sidebar_w_content_p_slide p").height('30px');
137
  function acx_fsmi_t_rotate()
138
  {
147
  });
148
  </script>
149
  <div class="acx_fsmi_sidebar_widget">
150
+ <div class="acx_fsmi_sidebar_w_title"><?php _e('Grab The Blending Creativity','floating-social-media-icon');?></div>
151
+ <div class="acx_fsmi_sidebar_w_content"><?php _e('Make your website user friendly and optimized for mobile devices for better user interaction and satisfaction','floating-social-media-icon');?> <a href="http://wordpress.acurax.com/?utm_source=fsmi&utm_campaign=sidebar_text_2" target="_blank"><?php _e('Click Here','floating-social-media-icon'); ?></a></div>
152
  </div> <!-- acx_fsmi_sidebar_widget -->
153
  <?php } ?>
154
  <div class="acx_fsmi_sidebar_widget">
155
+ <div class="acx_fsmi_sidebar_w_title"><?php _e('Rate us on wordpress.org','floating-social-media-icon'); ?></div>
156
+ <div class="acx_fsmi_sidebar_w_content" style="text-align:center;font-size:13px;"><b><?php _e('Thank you for being with us... If you like our plugin then please show us some love','floating-social-media-icon');?> </b></br>
157
+ <a href="https://wordpress.org/support/view/plugin-reviews/<?php echo ACX_FSMI_WP_SLUG; ?>/" target="_blank" style="text-decoration:none;">
158
  <span id="acx_fsmi_stars">
159
  <span class="dashicons dashicons-star-filled"></span>
160
  <span class="dashicons dashicons-star-filled"></span>
162
  <span class="dashicons dashicons-star-filled"></span>
163
  <span class="dashicons dashicons-star-filled"></span>
164
  </span>
165
+ <span class="acx_fsmi_star_button button button-primary"><?php _e('Click Here','floating-social-media-icon'); ?></span>
166
  </a>
167
+ <p><?php _e('If you are facing any issues, kindly post them at plugins support forum','floating-social-media-icon');?> <a href="http://wordpress.org/support/plugin/<?php echo ACX_FSMI_WP_SLUG; ?>/" target="_blank"><?php _e('here','floating-social-media-icon'); ?></a>
168
  </div>
169
  </div> <!-- acx_fsmi_sidebar_widget -->
170
+ </div> <!-- acx_fsmi_sidebar -->
171
  <?php
172
+ } add_action('acx_fsmi_hook_option_sidebar','acx_fsmi_service_banners',100);
173
+ add_action('acx_fsmi_misc_hook_option_sidebar','acx_fsmi_service_banners',100);
174
+
175
+
176
+
177
+ /********************************************** MISC Page*********************************************/
178
+ function acx_fsmi_misc_nonce_check()
179
+ {
180
+ if (!isset($_POST['acx_fsmi_misc_nonce'])) die("<br><br>".__('Unknown Error Occurred, Try Again... ','floating-social-media-icon')."<a href=''>Click Here</a>");
181
+ if (!wp_verify_nonce($_POST['acx_fsmi_misc_nonce'],'acx_fsmi_misc_nonce')) die("<br><br>".__('Unknown Error Occurred, Try Again... ','floating-social-media-icon')."<a href=''>Click Here</a>");
182
+ if(!current_user_can('manage_options')) die("<br><br>".__('Sorry, You have no permission to do this action...','floating-social-media-icon')."</a>");
183
+ } add_action('acx_fsmi_misc_hook_option_onpost','acx_fsmi_misc_nonce_check',1);
184
+
185
+
186
+ function acx_fsmi_misc_nonce_field()
187
+ {
188
+ echo "<input name='acx_fsmi_misc_nonce' type='hidden' value='".wp_create_nonce('acx_fsmi_misc_nonce')."' />";
189
+ echo "<input name='acx_fsmi_misc_hidden' type='hidden' value='Y' />";
190
+ } add_action('acx_fsmi_misc_hook_option_fields','acx_fsmi_misc_nonce_field',10);
191
+
192
+ function acx_fsmi_misc_option_form_start()
193
+ {
194
+ echo "<form name='acx_fsmi_misc_form' id='acx_fsmi_form' method='post' action='".str_replace( '%7E', '~',$_SERVER['REQUEST_URI'])."'>";
195
+ } add_action('acx_fsmi_misc_hook_option_form_head','acx_fsmi_misc_option_form_start',100);
196
+
197
+
198
+ function acx_fsmi_misc_option_form_end()
199
+ {
200
+ echo "</form>";
201
+ } add_action('acx_fsmi_misc_hook_option_form_footer','acx_fsmi_misc_option_form_end',100);
202
+
203
+ function acx_fsmi_misc_option_div_start()
204
+ {
205
+ echo "<div id=\"acx_fsmi_option_page_holder\"> \n";
206
+ acx_fsmi_hook_function('acx_fsmi_misc_hook_option_above_page_left');
207
+ echo "<div class=\"acx_fsmi_option_page_left\"> \n";
208
+ } add_action('acx_fsmi_misc_hook_option_form_head','acx_fsmi_misc_option_div_start',30);
209
+
210
+ function acx_fsmi_misc_option_sidebar_start()
211
+ {
212
+ echo "</div> <!-- acx_fsmi_option_page_left --> \n";
213
+ echo "<div class=\"acx_fsmi_option_page_right\"> \n";
214
+ } add_action('acx_fsmi_misc_hook_option_sidebar','acx_fsmi_misc_option_sidebar_start',10);
215
+
216
+
217
+ function acx_fsmi_misc_option_sidebar_end()
218
+ {
219
+ echo "</div> <!-- acx_fsmi_option_page_right --> \n";
220
+ acx_fsmi_hook_function('acx_fsmi_misc_hook_option_footer');
221
+ echo "</div> <!-- acx_fsmi_option_page_holder --> \n";
222
+ } add_action('acx_fsmi_misc_hook_option_sidebar','acx_fsmi_misc_option_sidebar_end',500);
223
+
224
+ function acx_misc_print_option_page_title()
225
+ {
226
+ $acx_string = __("Acurax Social Icons Misc Settings","floating-social-media-icon");
227
+ echo print_acx_fsmi_option_heading($acx_string);
228
+ } add_action('acx_fsmi_misc_hook_option_form_head','acx_misc_print_option_page_title',50);
229
+
230
+ function display_acx_fsmi_misc_saved_success()
231
+ { ?>
232
+ <div class="updated"><p><strong><?php _e('Acurax Floating Social Icons Misc Settings Saved!.','floating-social-media-icon' ); ?></strong></p></div>
233
+ <script type="text/javascript">
234
+ setTimeout(function(){
235
+ jQuery('.updated').fadeOut('slow');
236
+
237
+ }, 4000);
238
+
239
+ </script>
240
+
241
+ <?php
242
+ } add_action('acx_fsmi_misc_hook_option_onpost','display_acx_fsmi_misc_saved_success',5000);
243
+
244
+
245
+ /******************************************************* HELP *****************************************************/
246
+ function acx_fsmi_help_option_div_start()
247
+ {
248
+ echo "<div id=\"acx_fsmi_option_page_holder\"> \n";
249
+ acx_fsmi_hook_function('acx_fsmi_help_hook_option_above_page_left');
250
+ } add_action('acx_fsmi_help_hook_option_form_head','acx_fsmi_help_option_div_start',100);
251
+
252
+
253
+ function acx_fsmi_help_option_sidebar_end()
254
+ {
255
+
256
+ echo "</div> <!-- acx_fsmi_option_page_holder --> \n";
257
+ } add_action('acx_fsmi_help_hook_option_sidebar','acx_fsmi_help_option_sidebar_end',500);
258
+
259
+ /*********************************************** Expert Support *************************************************/
260
+ function acx_fsmi_exprt_option_div_start()
261
+ {
262
+ echo "<div id=\"acx_fsmi_option_page_holder\"> \n";
263
+
264
+ } add_action('acx_fsmi_exprt_hook_option_form_head','acx_fsmi_exprt_option_div_start',100);
265
+
266
+
267
+ function acx_fsmi_exprt_option_sidebar_end()
268
+ {
269
+ acx_fsmi_hook_function('acx_fsmi_exprt_hook_option_above_page_left');
270
+ echo "</div> <!-- acx_fsmi_option_page_holder --> \n";
271
+ }
272
+ add_action('acx_fsmi_exprt_hook_option_sidebar','acx_fsmi_exprt_option_sidebar_end',500);
273
+
274
  ?>
includes/hooks.php CHANGED
@@ -9,8 +9,131 @@ function acx_fsmi_hook_function($function_name)
9
  }
10
  }
11
  }
12
- function acx_fsmi_hook_sidebar_widget()
 
13
  {
14
- do_action('acx_fsmi_hook_sidebar_widget');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  }
16
  ?>
9
  }
10
  }
11
  }
12
+ /* Option Page */
13
+ function acx_fsmi_hook_option_above_ifpost()
14
  {
15
+ do_action('acx_fsmi_hook_option_above_ifpost');
16
+ }
17
+ function acx_fsmi_hook_option_onpost()
18
+ {
19
+ do_action('acx_fsmi_hook_option_onpost');
20
+ }
21
+ function acx_fsmi_hook_option_postelse()
22
+ {
23
+ do_action('acx_fsmi_hook_option_postelse');
24
+ }
25
+ function acx_fsmi_hook_option_after_else()
26
+ {
27
+ do_action('acx_fsmi_hook_option_after_else');
28
+ }
29
+ function acx_fsmi_hook_option_above_page_left()
30
+ {
31
+ do_action('acx_fsmi_hook_option_above_page_left');
32
+
33
+ }
34
+
35
+ function acx_fsmi_hook_option_form_head()
36
+ {
37
+ do_action('acx_fsmi_hook_option_form_head');
38
+ }
39
+ function acx_fsmi_hook_option_fields()
40
+ {
41
+ do_action('acx_fsmi_hook_option_fields');
42
+ }
43
+ function acx_fsmi_hook_option_form_footer()
44
+ {
45
+ do_action('acx_fsmi_hook_option_form_footer');
46
+ }
47
+ function acx_fsmi_hook_option_sidebar()
48
+ {
49
+ do_action('acx_fsmi_hook_option_sidebar');
50
+ }
51
+
52
+ function acx_fsmi_hook_option_footer()
53
+ {
54
+ do_action('acx_fsmi_hook_option_footer');
55
+ }
56
+ function acx_fsmi_icons_option_field()
57
+ {
58
+ do_action('acx_fsmi_icons_option_field');
59
+ }
60
+
61
+ /* Misc Page */
62
+
63
+ function acx_fsmi_misc_hook_option_onpost()
64
+ {
65
+ do_action('acx_fsmi_misc_hook_option_onpost');
66
+ }
67
+ function acx_fsmi_misc_hook_option_postelse()
68
+ {
69
+ do_action('acx_fsmi_misc_hook_option_postelse');
70
+ }
71
+ function acx_fsmi_misc_hook_option_after_else()
72
+ {
73
+ do_action('acx_fsmi_misc_hook_option_after_else');
74
+ }
75
+ function acx_fsmi_misc_hook_option_fields()
76
+ {
77
+ do_action('acx_fsmi_misc_hook_option_fields');
78
+ }
79
+ function acx_fsmi_misc_hook_option_above_page_left()
80
+ {
81
+ do_action('acx_fsmi_misc_hook_option_above_page_left');
82
+ }
83
+ function acx_fsmi_misc_hook_option_form_head()
84
+ {
85
+ do_action('acx_fsmi_misc_hook_option_form_head');
86
+ }
87
+ function acx_fsmi_misc_hook_option_form_footer()
88
+ {
89
+ do_action('acx_fsmi_misc_hook_option_form_footer');
90
+ }
91
+ function acx_fsmi_misc_hook_option_sidebar()
92
+ {
93
+ do_action('acx_fsmi_misc_hook_option_sidebar');
94
+ }
95
+ function acx_fsmi_misc_hook_option_footer()
96
+ {
97
+ do_action('acx_fsmi_misc_hook_option_footer');
98
+ }
99
+ /* Premium Page */
100
+ function acx_fsmi_premium_hook_option_footer()
101
+ {
102
+ do_action('acx_fsmi_premium_hook_option_footer');
103
+ }
104
+ /* Help Page */
105
+ function acx_fsmi_help_hook_option_form_head()
106
+ {
107
+ do_action('acx_fsmi_help_hook_option_form_head');
108
+ }
109
+ function acx_fsmi_help_hook_option_above_page_left()
110
+ {
111
+ do_action('acx_fsmi_help_hook_option_above_page_left');
112
+ }
113
+ function acx_fsmi_help_hook_option_sidebar()
114
+ {
115
+ do_action('acx_fsmi_help_hook_option_sidebar');
116
+ }
117
+ function acx_fsmi_help_hook_option_fields()
118
+ {
119
+ do_action('acx_fsmi_help_hook_option_fields');
120
+ }
121
+ /* Expert Page */
122
+
123
+ function acx_fsmi_exprt_hook_option_exprt_quick()
124
+ {
125
+ do_action('acx_fsmi_exprt_hook_option_exprt_quick');
126
+ }
127
+ function acx_fsmi_exprt_hook_option_above_page_left()
128
+ {
129
+ do_action('acx_fsmi_exprt_hook_option_above_page_left');
130
+ }
131
+ function acx_fsmi_exprt_hook_option_sidebar()
132
+ {
133
+ do_action('acx_fsmi_exprt_hook_option_sidebar');
134
+ }
135
+ function acx_fsmi_exprt_hook_option_form_head()
136
+ {
137
+ do_action('acx_fsmi_exprt_hook_option_form_head');
138
  }
139
  ?>
includes/option_fields.php ADDED
@@ -0,0 +1,1205 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /********************** ICON SETTINGS PAGE ******************************/
3
+ /* Premium Info HTML - Save - Get - Set Default Logic Starts Here */
4
+ function acx_fsmi_premium_advert_above_form()
5
+ {
6
+ global $acx_si_fsmi_hide_advert,$acx_si_credit;
7
+ if($acx_si_fsmi_hide_advert == "no")
8
+ {
9
+ echo "<span class='acx_fsmi_q_sep'></span>";
10
+ ?>
11
+ <div id="acx_fsmi_premium">
12
+ <a style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;" href="admin.php?page=Acurax-Social-Icons-Premium" target="_blank"><?php _e('Fully Featured - Premium Floating Social Media Icon is Available With Tons of Extra Features! - Click Here','floating-social-media-icon'); ?></a>
13
+ </div> <!-- acx_fsmi_premium -->
14
+ <?php } ?>
15
+ <h2 style="width: 100%; font-size: 2px; padding: 0px; line-height: 0px; color: white;">.</h2>
16
+ <?php
17
+ if($acx_si_credit != "yes")
18
+ {
19
+ echo "<span class='acx_fsmi_q_sep'></span>";?>
20
+ <div id='acx_backlink' align='center'>
21
+ <?php _e('Please do a favour by enabling back-link to our site. ','floating-social-media-icon'); ?><a href="admin.php?page=Acurax-Social-Icons-Settings&backlink=enable"><?php _e('Okay, Enable.','floating-social-media-icon'); ?></a>
22
+ </div>
23
+ <?php
24
+
25
+ }
26
+ echo "<span class='acx_fsmi_q_sep'></span>";
27
+ } add_action('acx_fsmi_hook_option_above_page_left','acx_fsmi_premium_advert_above_form',50);
28
+
29
+ /* Premium Info HTML - Save - Get - Set Default Logic Starts Here */
30
+ /* Current Theme HTML - Save - Get - Set Default Logic Starts Here */
31
+ function acx_fsmi_current_icon_html()
32
+ {
33
+ global $acx_si_theme , $acx_si_icon_size;
34
+ $acx_string = __("Your Current Theme is","floating-social-media-icon");
35
+ print_acx_fsmi_option_block_start($acx_string.' ' .$acx_si_theme);
36
+ echo "<div class='image_div'>
37
+ <img src='".ACX_FSMI_BASE_LOCATION."images/themes/".$acx_si_theme."/twitter.png' style='height:
38
+ ".$acx_si_icon_size."px'>
39
+ <img src='".ACX_FSMI_BASE_LOCATION."images/themes/".$acx_si_theme."/facebook.png' style='height:
40
+ ".$acx_si_icon_size."px'>
41
+ <img src='".ACX_FSMI_BASE_LOCATION."images/themes/".$acx_si_theme."/googleplus.png' style='height:
42
+ ".$acx_si_icon_size."px'>
43
+ <img src='".ACX_FSMI_BASE_LOCATION."images/themes/".$acx_si_theme."/pinterest.png' style='height:
44
+ ".$acx_si_icon_size."px'>
45
+ <img src='".ACX_FSMI_BASE_LOCATION."images/themes/".$acx_si_theme."/youtube.png' style='height:
46
+ ".$acx_si_icon_size."px'>
47
+ <img src='".ACX_FSMI_BASE_LOCATION."images/themes/".$acx_si_theme."/linkedin.png' style='height:
48
+ ".$acx_si_icon_size."px'>
49
+ <img src='".ACX_FSMI_BASE_LOCATION."images/themes/".$acx_si_theme."/feed.png' style='height:
50
+ ".$acx_si_icon_size."px'>
51
+ </div>";
52
+ echo "<span class='acx_fsmi_q_sep'></span>";
53
+ print_acx_fsmi_option_block_end();
54
+ } add_action('acx_fsmi_hook_option_fields','acx_fsmi_current_icon_html',100);
55
+
56
+ /* Current Theme Save - Get - Set Default Logic Ends Here */
57
+
58
+ /* Icon Theme Settings - Save - Get - Set Default Logic Starts Here */
59
+
60
+ function acx_fsmi_icon_theme_settings_html()
61
+ {
62
+ global $acx_si_theme,$social_icon_array_order,$acx_fsmi_themes_array;
63
+ if(is_serialized($social_icon_array_order))
64
+ {
65
+ $social_icon_array_order = unserialize($social_icon_array_order);
66
+ }
67
+ $acx_string = __('Icon Theme Settings','floating-social-media-icon');
68
+ print_acx_fsmi_option_block_start($acx_string);
69
+ ?>
70
+
71
+ <!--div class="acx_fsmi_admin_left_section_c"-->
72
+ <div id="acx_si_theme_display">
73
+ <?php
74
+
75
+ foreach($acx_fsmi_themes_array as $k => $v)
76
+ {
77
+ $k = $k+1 ;
78
+ ?>
79
+ <label class="acx_si_single_theme_display <?php if ($acx_si_theme == $k) { echo "selected"; } ?>" id="icon_selection">
80
+ <div class="acx_si_single_label"><?php _e('Theme','floating-social-media-icon');?> <?php echo $k; ?><br><input type="radio" name="acx_si_theme" value="<?php echo $k; ?>"<?php if ($acx_si_theme == $k) { echo " checked"; } ?>></div>
81
+ <div class="image_div">
82
+ <?php
83
+ foreach ($social_icon_array_order as $key => $value)
84
+ {
85
+ if ($value == 0)
86
+ {
87
+ echo "<img src='".$v['path']."images/themes/". $k ."/twitter.png'>";
88
+ } else
89
+ if ($value == 1)
90
+ {
91
+ echo "<img src='".$v['path']."images/themes/". $k ."/facebook.png'>";
92
+ } else
93
+ if ($value == 2)
94
+ {
95
+ echo "<img src='".$v['path']."images/themes/". $k ."/googleplus.png'>";
96
+ } else
97
+
98
+ if ($value == 3)
99
+ {
100
+ echo "<img src='".$v['path']."images/themes/". $k ."/pinterest.png'>";
101
+ } else
102
+ if ($value == 4)
103
+ {
104
+ echo "<img src='".$v['path']."images/themes/". $k ."/youtube.png'>";
105
+ } else
106
+ if ($value == 5)
107
+ {
108
+ echo "<img src='".$v['path']."images/themes/". $k ."/linkedin.png'>";
109
+ }
110
+
111
+ if ($value == 6)
112
+ {
113
+ echo "<img src='".$v['path']."images/themes/". $k ."/feed.png'>";
114
+ }
115
+ }
116
+ ?>
117
+ </div>
118
+ </label>
119
+ <?php
120
+ }
121
+ ?>
122
+ </div> <!-- acx_si_theme_display -->
123
+ <!--/div> <!-- acx_fsmi_admin_left_section_c -->
124
+ <?php
125
+ echo "<span class='note'></span>";
126
+ echo "<span class='acx_fsmi_q_sep'></span>";
127
+ print_acx_fsmi_option_block_end();
128
+ } add_action('acx_fsmi_hook_option_fields','acx_fsmi_icon_theme_settings_html',200);
129
+
130
+ function acx_fsmi_icon_theme_settings_ifpost()
131
+ {
132
+ global $acx_si_theme;
133
+ $acx_si_theme = sanitize_text_field(acx_fsmi_post_isset_check('acx_si_theme'));
134
+ if(!is_numeric($acx_si_theme))
135
+ {
136
+ $acx_si_theme = 1;
137
+ }
138
+ update_option('acx_si_theme', $acx_si_theme);
139
+ } add_action('acx_fsmi_hook_option_onpost','acx_fsmi_icon_theme_settings_ifpost');
140
+ function acx_fsmi_icon_theme_settings_else()
141
+ {
142
+ global $acx_si_theme,$social_icon_array_order;
143
+ $acx_si_theme = get_option('acx_si_theme');
144
+ $social_icon_array_order = get_option('social_icon_array_order');
145
+ if(is_serialized($social_icon_array_order))
146
+ {
147
+ $social_icon_array_order = unserialize($social_icon_array_order);
148
+ }
149
+
150
+ } add_action('acx_fsmi_hook_option_postelse','acx_fsmi_icon_theme_settings_else');
151
+ function acx_fsmi_icon_theme_settings_after_else()
152
+ {
153
+ global $acx_si_theme;
154
+ if ($acx_si_theme == "")
155
+ {
156
+ $acx_si_theme = "1";
157
+ }
158
+ } add_action('acx_fsmi_hook_option_after_else','acx_fsmi_icon_theme_settings_after_else');
159
+ /* Icon Theme Settings Save - Get - Set Default Logic Ends Here */
160
+ /* Icon Theme Size - Save - Get - Set Default Logic Starts Here */
161
+ function acx_fsmi_icon_theme_size_html()
162
+ {
163
+ global $acx_si_icon_size;
164
+ $acx_string = __('Icon Size Settings','floating-social-media-icon');
165
+ print_acx_fsmi_option_block_start($acx_string);
166
+ ?>
167
+ <select name="acx_si_icon_size" style="width: 99.7%">
168
+ <option value="16"<?php if ($acx_si_icon_size == "16") { echo 'selected="selected"'; } ?>>16<?php _e('px','floating-social-media-icon'); ?> X 16<?php _e('px','floating-social-media-icon'); ?> </option>
169
+ <option value="25"<?php if ($acx_si_icon_size == "25") { echo 'selected="selected"'; } ?>>25<?php _e('px','floating-social-media-icon'); ?> X 25<?php _e('px','floating-social-media-icon'); ?> </option>
170
+ <option value="32"<?php if ($acx_si_icon_size == "32") { echo 'selected="selected"'; } ?>>32<?php _e('px','floating-social-media-icon'); ?> X 32<?php _e('px','floating-social-media-icon'); ?> </option>
171
+ <option value="40"<?php if ($acx_si_icon_size == "40") { echo 'selected="selected"'; } ?>>40<?php _e('px','floating-social-media-icon'); ?> X 40<?php _e('px','floating-social-media-icon'); ?> </option>
172
+ <option value="48"<?php if ($acx_si_icon_size == "48") { echo 'selected="selected"'; } ?>>48<?php _e('px','floating-social-media-icon'); ?> X 48<?php _e('px','floating-social-media-icon'); ?> </option>
173
+ <option value="55"<?php if ($acx_si_icon_size == "55") { echo 'selected="selected"'; } ?>>55<?php _e('px','floating-social-media-icon'); ?> X 55<?php _e('px','floating-social-media-icon'); ?> </option>
174
+ </select>
175
+ <?php
176
+ echo "<span class='acx_fsmi_q_sep'></span>";
177
+ print_acx_fsmi_option_block_end();
178
+ } add_action('acx_fsmi_hook_option_fields','acx_fsmi_icon_theme_size_html',300);
179
+ function acx_fsmi_icon_theme_size_ifpost()
180
+ {
181
+ global $acx_si_icon_size;
182
+ $acx_si_icon_size = acx_fsmi_post_isset_check('acx_si_icon_size');
183
+ update_option('acx_si_icon_size', $acx_si_icon_size);
184
+
185
+ } add_action('acx_fsmi_hook_option_onpost','acx_fsmi_icon_theme_size_ifpost');
186
+ function acx_fsmi_icon_theme_size_else()
187
+ {
188
+ global $acx_si_icon_size;
189
+ $acx_si_icon_size = get_option('acx_si_icon_size');
190
+
191
+ } add_action('acx_fsmi_hook_option_postelse','acx_fsmi_icon_theme_size_else');
192
+ function acx_fsmi_icon_theme_size_after_else()
193
+ {
194
+ global $acx_si_icon_size;
195
+ if ($acx_si_icon_size == "") { $acx_si_icon_size = "32"; }
196
+
197
+ } add_action('acx_fsmi_hook_option_after_else','acx_fsmi_icon_theme_size_after_else');
198
+
199
+ /* Icon Theme Size Save - Get - Set Default Logic Ends Here */
200
+
201
+ /* Icon Theme Order - Save - Get - Set Default Logic Starts Here */
202
+
203
+
204
+ function acx_fsmi_icon_theme_order_html()
205
+ {
206
+ global $acx_si_icon_size,$social_icon_array_order,$acx_si_theme;
207
+ if(is_serialized($social_icon_array_order))
208
+ {
209
+ $social_icon_array_order = unserialize($social_icon_array_order);
210
+ }
211
+ $acx_string = __("Social Media Icon Display Order - Drag and Drop to Reorder","floating-social-media-icon");
212
+ print_acx_fsmi_option_block_start($acx_string);
213
+ ?>
214
+ <script type="text/javascript">
215
+ jQuery(document).ready(function()
216
+ {
217
+ jQuery(function()
218
+ {
219
+ jQuery("#contentLeft ul").sortable(
220
+ {
221
+ opacity: 0.5, cursor: 'move', update: function()
222
+ {
223
+ var order = jQuery(this).sortable("serialize") + '&action=acx_fsmi_saveorder'+'&acx_fsmi_saveorder_es=<?php echo wp_create_nonce("acx_fsmi_saveorder_es"); ?>';
224
+ jQuery.post(ajaxurl, order, function(theResponse)
225
+ {
226
+ jQuery("#contentRight").html(theResponse);
227
+ });
228
+ }
229
+ });
230
+ });
231
+ });
232
+ </script>
233
+ <?php
234
+ echo "<div class='acx_fsmi_admin_left_section_c'>
235
+ <div id='contentLeft'>
236
+ <ul>";
237
+
238
+ foreach ($social_icon_array_order as $key => $value)
239
+ {
240
+
241
+ echo "<li id='recordsArray_$value'>";
242
+
243
+ if ($value == 0)
244
+ {
245
+ echo "<img src='".ACX_FSMI_BASE_LOCATION."images/themes/". $acx_si_theme ."/twitter.png' border='0'><br> Twitter";
246
+ } else
247
+ if ($value == 1)
248
+ {
249
+ echo "<img src='".ACX_FSMI_BASE_LOCATION."images/themes/". $acx_si_theme ."/facebook.png' border='0'><br> Facebook";
250
+ } else
251
+ if ($value == 2)
252
+ {
253
+ echo "<img src='".ACX_FSMI_BASE_LOCATION."images/themes/". $acx_si_theme ."/googleplus.png' border='0'><br> Google Plus";
254
+ } else
255
+
256
+ if ($value == 3)
257
+ {
258
+ echo "<img src='".ACX_FSMI_BASE_LOCATION."images/themes/". $acx_si_theme ."/pinterest.png' border='0'><br> Pinterest";
259
+ } else
260
+ if ($value == 4)
261
+ {
262
+ echo "<img src='".ACX_FSMI_BASE_LOCATION."images/themes/". $acx_si_theme ."/youtube.png' border='0'><br> Youtube";
263
+ } else
264
+ if ($value == 5)
265
+ {
266
+ echo "<img src='".ACX_FSMI_BASE_LOCATION."images/themes/". $acx_si_theme ."/linkedin.png' border='0'><br> Linkedin";
267
+ }
268
+
269
+ if ($value == 6)
270
+ {
271
+ echo "<img src='".ACX_FSMI_BASE_LOCATION."images/themes/". $acx_si_theme ."/feed.png' border='0'><br> Rss Feed";
272
+ }
273
+
274
+ echo "</li> ";
275
+ }
276
+ echo "</ul>
277
+ </div>
278
+ <div id='contentRight'></div> <!-- contentRight -->";
279
+ _e("Drag and Reorder Icons (It will automatically save on reorder)","floating-social-media-icon" );
280
+ echo "</div> <!-- acx_fsmi_admin_left_section_c -->";
281
+
282
+ echo "<span class='acx_fsmi_q_sep'></span>";
283
+ print_acx_fsmi_option_block_end();
284
+ } add_action('acx_fsmi_hook_option_fields','acx_fsmi_icon_theme_order_html',400);
285
+
286
+ /* Icon Theme Order Save - Get - Set Default Logic Ends Here */
287
+ /* Social Media Configuration Save - Get - Set Default Logic Starts Here */
288
+ function acx_fsmi_social_media_config_html()
289
+ {
290
+ $acx_string = __('Social Media Configuration','floating-social-media-icon');
291
+ print_acx_fsmi_option_block_start($acx_string);
292
+ do_action('acx_fsmi_icons_option_field');
293
+ echo "<span class='acx_fsmi_q_sep'></span>";
294
+ print_acx_fsmi_option_block_end();
295
+ } add_action('acx_fsmi_hook_option_fields','acx_fsmi_social_media_config_html',500);
296
+
297
+
298
+ /* Social Media Icon Settings field Starts here */
299
+ function acx_fsmi_social_media_twitter_icon_field()
300
+ {
301
+ global $acx_si_twitter;
302
+ echo "<span class='label' style='width:50%;'>". __('Twitter Username:','floating-social-media-icon')."</span>";
303
+ echo "<input type='text' name='acx_si_twitter' style='width:49%;' value='".$acx_si_twitter."' placeholder='".__('eg: acuraxdotcom','floating-social-media-icon')."'>";
304
+ echo "<span class='acx_fsmi_q_sep'></span>";
305
+ }
306
+ add_action('acx_fsmi_icons_option_field','acx_fsmi_social_media_twitter_icon_field',100);
307
+
308
+
309
+ function acx_fsmi_twitter_post_if()
310
+ {
311
+ global $acx_si_twitter;
312
+ $acx_si_twitter = acx_fsmi_post_isset_check('acx_si_twitter');
313
+ update_option('acx_si_twitter', $acx_si_twitter);
314
+ } add_action('acx_fsmi_hook_option_onpost','acx_fsmi_twitter_post_if');
315
+
316
+ function acx_fsmi_twitter_post_else()
317
+ {
318
+ global $acx_si_twitter;
319
+ $acx_si_twitter = get_option('acx_si_twitter');
320
+ }
321
+ add_action('acx_fsmi_hook_option_postelse','acx_fsmi_twitter_post_else');
322
+
323
+ function acx_fsmi_social_media_facebook_icon_field()
324
+ {
325
+ global $acx_si_facebook;
326
+ echo "<span class='acx_fsmi_q_sep'></span>";
327
+ echo "<span class='label' style='width:50%;'>". __('Facebook Profile URL:','floating-social-media-icon')."</span>";
328
+ echo "<input type='text' name='acx_si_facebook' style='width:49%;' value='".$acx_si_facebook."' placeholder='".__('eg: http://www.facebook.com/AcuraxInternational','floating-social-media-icon')."'>";
329
+ echo "<span class='acx_fsmi_q_sep'></span>";
330
+ }
331
+ add_action('acx_fsmi_icons_option_field','acx_fsmi_social_media_facebook_icon_field',200);
332
+
333
+ function acx_fsmi_facebook_post_if()
334
+ {
335
+ global $acx_si_facebook;
336
+ $acx_si_facebook = acx_fsmi_post_isset_check('acx_si_facebook');
337
+ if($acx_si_facebook != "")
338
+ {
339
+ if (substr($acx_si_facebook, 0, 4) != 'http') {
340
+ $acx_si_facebook = 'http://' . $acx_si_facebook;
341
+ } if($acx_si_facebook == "http://#") { $acx_si_facebook = "#"; }
342
+ } update_option('acx_si_facebook', $acx_si_facebook);
343
+ } add_action('acx_fsmi_hook_option_onpost','acx_fsmi_facebook_post_if');
344
+
345
+ function acx_fsmi_facebook_post_else()
346
+ {
347
+ global $acx_si_facebook;
348
+ $acx_si_facebook = get_option('acx_si_facebook');
349
+ }
350
+ add_action('acx_fsmi_hook_option_postelse','acx_fsmi_facebook_post_else');
351
+ function acx_fsmi_social_media_gplus_icon_field()
352
+ { global $acx_si_gplus;
353
+ echo "<span class='label' style='width:50%;'> ". __('Google Plus URL:','floating-social-media-icon')."</span>";
354
+ echo "<input type='text' name='acx_si_gplus' style='width:49%;' value='".esc_url($acx_si_gplus)."' placeholder='".__('Enter Your Complete Google Plus Url Starting With http://','floating-social-media-icon')."'>";
355
+ echo "<span class='acx_fsmi_q_sep'></span>";
356
+ }
357
+ add_action('acx_fsmi_icons_option_field','acx_fsmi_social_media_gplus_icon_field',300);
358
+
359
+ function acx_fsmi_gplus_post_if()
360
+ {
361
+ global $acx_si_gplus;
362
+ $acx_si_gplus = esc_url_raw(acx_fsmi_post_isset_check('acx_si_gplus'));
363
+ update_option('acx_si_gplus', $acx_si_gplus);
364
+ } add_action('acx_fsmi_hook_option_onpost','acx_fsmi_gplus_post_if');
365
+
366
+ function acx_fsmi_gplus_post_else()
367
+ {
368
+ global $acx_si_gplus;
369
+ $acx_si_gplus = get_option('acx_si_gplus');
370
+ }
371
+ add_action('acx_fsmi_hook_option_postelse','acx_fsmi_gplus_post_else');
372
+ function acx_fsmi_social_media_pinterest_icon_field()
373
+ { global $acx_si_pinterest;
374
+ echo "<span class='label' style='width:50%;'> ". __('Pinterest URL:','floating-social-media-icon')."</span>";
375
+ echo "<input type='text' name='acx_si_pinterest' style='width:49%;' value='".esc_url($acx_si_pinterest)."' placeholder='".__('Enter Your Complete Pinterest Url Starting With http://','floating-social-media-icon')."'>";
376
+ echo "<span class='acx_fsmi_q_sep'></span>";
377
+ }
378
+ add_action('acx_fsmi_icons_option_field','acx_fsmi_social_media_pinterest_icon_field',400);
379
+
380
+ function acx_fsmi_pinterest_post_if()
381
+ {
382
+ global $acx_si_pinterest;
383
+ $acx_si_pinterest = esc_url_raw(acx_fsmi_post_isset_check('acx_si_pinterest'));
384
+ update_option('acx_si_pinterest', $acx_si_pinterest);
385
+ } add_action('acx_fsmi_hook_option_onpost','acx_fsmi_pinterest_post_if');
386
+
387
+ function acx_fsmi_pinterest_post_else()
388
+ {
389
+ global $acx_si_pinterest;
390
+ $acx_si_pinterest = get_option('acx_si_pinterest');
391
+ }
392
+ add_action('acx_fsmi_hook_option_postelse','acx_fsmi_pinterest_post_else');
393
+
394
+ function acx_fsmi_social_media_youtube_icon_field()
395
+ {
396
+ global $acx_si_youtube;
397
+ echo "<span class='label' style='width:50%;'>". __('Youtube URL:','floating-social-media-icon')."</span>";
398
+ echo "<input type='text' name='acx_si_youtube' style='width:49%;' value='".esc_url($acx_si_youtube)."' placeholder='".__('http://www.youtube.com/user/acuraxdotcom','floating-social-media-icon')."'>";
399
+ echo "<span class='acx_fsmi_q_sep'></span>";
400
+ }
401
+ add_action('acx_fsmi_icons_option_field','acx_fsmi_social_media_youtube_icon_field',500);
402
+
403
+ function acx_fsmi_youtube_post_if()
404
+ {
405
+ global $acx_si_youtube;
406
+ $acx_si_youtube = esc_url_raw(acx_fsmi_post_isset_check('acx_si_youtube'));
407
+ update_option('acx_si_youtube', $acx_si_youtube);
408
+ } add_action('acx_fsmi_hook_option_onpost','acx_fsmi_youtube_post_if');
409
+
410
+ function acx_fsmi_youtube_post_else()
411
+ {
412
+ global $acx_si_youtube;
413
+ $acx_si_youtube = get_option('acx_si_youtube');
414
+ }
415
+ add_action('acx_fsmi_hook_option_postelse','acx_fsmi_youtube_post_else');
416
+
417
+ function acx_fsmi_social_media_linkedin_icon_field()
418
+ {
419
+ global $acx_si_linkedin;
420
+ echo "<span class='label' style='width:50%;'>". __('Linkedin URL:','floating-social-media-icon')."</span>";
421
+ echo "<input type='text' name='acx_si_linkedin' style='width:49%;' value='".esc_url($acx_si_linkedin)."' placeholder='".__('http://www.linkedin.com/company/acurax-international','floating-social-media-icon')."'>";
422
+ echo "<span class='acx_fsmi_q_sep'></span>";
423
+ }
424
+ add_action('acx_fsmi_icons_option_field','acx_fsmi_social_media_linkedin_icon_field',600);
425
+
426
+ function acx_fsmi_linkedin_post_if()
427
+ {
428
+ global $acx_si_linkedin;
429
+ $acx_si_linkedin = esc_url_raw(acx_fsmi_post_isset_check('acx_si_linkedin'));
430
+ update_option('acx_si_linkedin', $acx_si_linkedin);
431
+ } add_action('acx_fsmi_hook_option_onpost','acx_fsmi_linkedin_post_if');
432
+
433
+ function acx_fsmi_linkedin_post_else()
434
+ {
435
+ global $acx_si_linkedin;
436
+ $acx_si_linkedin = get_option('acx_si_linkedin');
437
+ }
438
+ add_action('acx_fsmi_hook_option_postelse','acx_fsmi_linkedin_post_else');
439
+ function acx_fsmi_social_media_feed_field()
440
+ {
441
+ global $acx_si_feed;
442
+ echo "<span class='label' style='width:50%;'>". __('Feed URL:','floating-social-media-icon')."</span>";
443
+ echo "<input type='text' name='acx_si_feed' style='width:49%;' value='".esc_url($acx_si_feed)."' placeholder='".__('http://www.yourwebsite.com/feed','floating-social-media-icon')."'>";
444
+ echo "<span class='acx_fsmi_q_sep'></span>";
445
+ }
446
+ add_action('acx_fsmi_icons_option_field','acx_fsmi_social_media_feed_field',700);
447
+
448
+ function acx_fsmi_feed_post_if()
449
+ {
450
+ global $acx_si_feed;
451
+ $acx_si_feed = esc_url_raw(acx_fsmi_post_isset_check('acx_si_feed'));
452
+ update_option('acx_si_feed', $acx_si_feed);
453
+ } add_action('acx_fsmi_hook_option_onpost','acx_fsmi_feed_post_if');
454
+
455
+ function acx_fsmi_feed_post_else()
456
+ {
457
+ global $acx_si_feed;
458
+ $acx_si_feed = get_option('acx_si_feed');
459
+ }
460
+ add_action('acx_fsmi_hook_option_postelse','acx_fsmi_feed_post_else');
461
+
462
+ function acx_fsmi_custom_icon_btn_field()
463
+ {
464
+ ?><span class='button fsmi_info_premium fsmi_info_lb' lb_title='<?php _e('Adding Extra Icons Feature','floating-social-media-icon'); ?>' lb_content='<?php _e('Its possible to add any number of extra icons by uploading them and you can link them to anywhere you need.','floating-social-media-icon'); ?><br><br><?php _e('Lets say, you needs to have an icon which links to your contact page or services page, you can do that.','floating-social-media-icon'); ?><br><br><i><?php _e('This feature is only available in our premium version - ','floating-social-media-icon'); ?><a href="admin.php?page=Acurax-Social-Icons-Premium" target="_blank"><?php _e('Compare Features','floating-social-media-icon'); ?></a> / <a href="http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=fsmi&utm_campaign=premium-info" target="_blank"><?php _e('Order Now','floating-social-media-icon'); ?></a>'><?php _e('Add Custom Icon','floating-social-media-icon'); ?></span><?php
465
+ echo "<span class='acx_fsmi_q_sep'></span>";
466
+ }
467
+ add_action('acx_fsmi_icons_option_field','acx_fsmi_custom_icon_btn_field',800);
468
+
469
+ /* Social Media Icon Settings field Ends here */
470
+
471
+ /* Social Media Integration Settings Save - Get - Set Default Logic Starts Here
472
+ */
473
+ function acx_fsmi_social_media_integration_html()
474
+ {
475
+ global $acx_si_display;
476
+ $acx_string = __('Social Media Integration Settings','floating-social-media-icon');
477
+ print_acx_fsmi_option_block_start($acx_string);
478
+ ?>
479
+ <select name="acx_si_display">
480
+ <option value="auto"<?php if ($acx_si_display == "auto") { echo 'selected="selected"'; } ?>><?php _e('Automatic Only (Will Float) - Shortcode and PHP code will not show icons','floating-social-media-icon'); ?></option>
481
+ <option value="manual"<?php if ($acx_si_display == "manual") { echo 'selected="selected"'; } ?>><?php _e('Manual Only (Using Shortcode or PHP Code - Will not float)','floating-social-media-icon'); ?></option>
482
+ <option value="both"<?php if ($acx_si_display == "both") { echo 'selected="selected"'; } ?>><?php _e('Automatic and Manual (Shortcode/PHP will not float but Automatic will Float)','floating-social-media-icon'); ?></option>
483
+ </select>
484
+ <span class='acx_fsmi_q_sep'></span>
485
+
486
+ <?php $code = ' <?php if (function_exists("DISPLAY_ACURAX_ICONS")) { DISPLAY_ACURAX_ICONS(); } ?>';
487
+ ?><span class='acx_fsmi_q_sep'></span>
488
+ <span class='note'><?php _e('If you select display mode as "Automatic Only" , it will show automatically but will not show anything for shortcode or php code, If you select as "Manual Only", It will not automatically show floating icons but you can place','floating-social-media-icon');?></span>
489
+ <span class='acx_fsmi_q_sep'></span>
490
+ <?php highlight_string($code); ?><span class='acx_fsmi_q_sep'></span>
491
+ <span class='note'><?php _e('in your theme file or use the shortcode','floating-social-media-icon');?> <span style="color: #000000;background:rgba(0, 0, 0, 0.07) none repeat scroll 0 0;" class="code">&nbsp;[DISPLAY_ACURAX_ICONS]</span><?php _e(', to display the Social Icons where ever you want, If you select "Automatic and Manual", It will automatically show floating icons and will also show icons for shortcode and php code.','floating-social-media-icon');?></span>
492
+ <?php
493
+
494
+ echo "<span class='acx_fsmi_q_sep'></span>";
495
+ print_acx_fsmi_option_block_end();
496
+ } add_action('acx_fsmi_hook_option_fields','acx_fsmi_social_media_integration_html',600);
497
+
498
+ function acx_fsmi_social_media_integration_ifpost()
499
+ {
500
+ global $acx_si_display ;
501
+ $acx_si_display = acx_fsmi_post_isset_check('acx_si_display');
502
+ update_option('acx_si_display', $acx_si_display);
503
+
504
+ } add_action('acx_fsmi_hook_option_onpost','acx_fsmi_social_media_integration_ifpost');
505
+ function acx_fsmi_social_media_integration_else()
506
+ {
507
+ global $acx_si_display;
508
+ $acx_si_display = get_option('acx_si_display');
509
+ } add_action('acx_fsmi_hook_option_postelse','acx_fsmi_social_media_integration_else');
510
+ function acx_fsmi_social_media_integration_after_else()
511
+ {
512
+ global $acx_si_display;
513
+
514
+ if ($acx_si_display == "") { $acx_si_display = "both"; }
515
+ } add_action('acx_fsmi_hook_option_after_else','acx_fsmi_social_media_integration_after_else');
516
+
517
+ /* Social Media Integration Settings Save - Get - Set Default Logic Ends Here */
518
+
519
+ /* Define Fly Animation Start and End Position Save - Get - Set Default Logic Starts Here
520
+ */
521
+ function acx_fsmi_animation_position_html()
522
+ {
523
+ $acx_string = __('Define Fly Animation Start and End Position','floating-social-media-icon');
524
+ print_acx_fsmi_option_block_start($acx_string);
525
+
526
+ ?>
527
+ <span class="fsmi_p_info_start_end fsmi_info_premium fsmi_info_lb" lb_title="<?php _e('Configure Fly Animation Start and End Position','floating-social-media-icon');?>" lb_content="<?php _e('You can configure the floating social media icons fly animation start and end position, By default it fly from top left to bottom right.','floating-social-media-icon');?><br><br><i><?php _e('This feature is only available in our premium version - ','floating-social-media-icon');?><a href='admin.php?page=Acurax-Social-Icons-Premium' target='_blank'><?php _e('Compare Features','floating-social-media-icon');?></a> / <a href='http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=fsmi&utm_campaign=premium-info' target='_blank'><?php _e('Order Now','floating-social-media-icon');?></a>"></span>
528
+
529
+ <?php
530
+ echo "<span class='acx_fsmi_q_sep'></span>";
531
+ print_acx_fsmi_option_block_end();
532
+ }
533
+ $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
534
+ if($acx_si_fsmi_hide_advert == "no")
535
+ {
536
+ add_action('acx_fsmi_hook_option_fields','acx_fsmi_animation_position_html',700);
537
+ }
538
+ /* Credit Link Save - Get - Set Default Logic Starts Here */
539
+ function acx_fsmi_credit_link_html()
540
+ {
541
+ global $acx_si_credit;
542
+ $acx_string = __('Credit Link Settings','floating-social-media-icon');
543
+ print_acx_fsmi_option_block_start($acx_string);
544
+
545
+ ?>
546
+ <select name="acx_si_credit">
547
+ <option value="yes"<?php if ($acx_si_credit == "yes") { echo 'selected="selected"'; } ?>><?php _e('Yes, Its Okay to Show Credit Link','floating-social-media-icon');?> </option>
548
+ <option value="no"<?php if ($acx_si_credit == "no") { echo 'selected="selected"'; } ?>><?php _e('No, I dont Like to Show Credit Link','floating-social-media-icon');?></option>
549
+ </select>
550
+ <?php
551
+ echo "<span class='acx_fsmi_q_sep'></span>";
552
+ echo "<span class='note'>".__('We Appreciate You Link Back to Our Website, Its just a small font size link :)','floating-social-media-icon')."</span>";
553
+ print_acx_fsmi_option_block_end();
554
+ }
555
+ $acx_si_credit = get_option('acx_si_credit');
556
+ if($acx_si_credit == "yes")
557
+ {
558
+ add_action('acx_fsmi_hook_option_fields','acx_fsmi_credit_link_html',800);
559
+ }
560
+ function acx_fsmi_social_media_credit_ifpost()
561
+ {
562
+ global $acx_si_credit ;
563
+ $acx_si_credit = acx_fsmi_post_isset_check('acx_si_credit');
564
+ update_option('acx_si_credit', $acx_si_credit);
565
+
566
+ } add_action('acx_fsmi_hook_option_onpost','acx_fsmi_social_media_credit_ifpost');
567
+ /* Credit Link Save - Get - Set Default Logic Starts Here */
568
+
569
+ /* Define Submit Button Starts Here */
570
+ function acx_fsmi_submit_button_html()
571
+ {
572
+ echo "<span class='acx_fsmi_q_sep'></span>";?>
573
+ <span id='acx_fsmi_save_btn' style='clear:both;'><input type='submit' name='Submit' class='button button-primary' value='<?php _e('Save Configuration','floating-social-media-icon'); ?>' /></span>
574
+ <?php
575
+ echo "<span class='acx_fsmi_q_sep'></span>";
576
+ }
577
+ add_action('acx_fsmi_hook_option_fields','acx_fsmi_submit_button_html',900);
578
+ /* Define Submit Button Ends Here */
579
+ /* Define options above if post Starts Here */
580
+ function acx_fsmi_options_above_if()
581
+ {
582
+ global $acx_si_credit;
583
+ $acx_si_credit = get_option('acx_si_credit');
584
+ if ($acx_si_credit == "") { $acx_si_credit = 'no'; }
585
+ $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
586
+ if ($acx_si_fsmi_hide_advert == "") { $acx_si_fsmi_hide_advert = 'no'; }
587
+
588
+ if(ISSET($_GET["backlink"]))
589
+ {
590
+ $get_backlink = sanitize_text_field($_GET["backlink"]);
591
+ } else
592
+ {
593
+ $get_backlink = "";
594
+ }
595
+ if($get_backlink == "enable") {
596
+ update_option('acx_si_credit', 'yes');
597
+ ?>
598
+ <style type='text/css'>
599
+ #acx_backlink
600
+ {
601
+ display:none;
602
+ }
603
+ </style>
604
+ <?php }
605
+ }
606
+ add_action('acx_fsmi_hook_option_above_ifpost','acx_fsmi_options_above_if',100);
607
+ /*
608
+ Define options above if post Ends Here
609
+ */
610
+ /* Define options in else post Starts Here
611
+ */
612
+
613
+ function acx_fsmi_social_media_else()
614
+ {
615
+ global $acx_si_installed_date,$acx_si_credit,$social_icon_array_order,$acx_si_fsmi_hide_advert;
616
+ $acx_si_installed_date = get_option('acx_si_installed_date');
617
+ if ($acx_si_installed_date=="")
618
+ { $acx_si_installed_date = time();
619
+ update_option('acx_si_installed_date', $acx_si_installed_date);
620
+ }
621
+
622
+ $acx_si_credit = get_option('acx_si_credit');
623
+ if ($acx_si_credit == "") { $acx_si_credit = 'no'; }
624
+ $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
625
+ if ($acx_si_fsmi_hide_advert == "") { $acx_si_fsmi_hide_advert = 'no'; }
626
+ do_action('acx_fsmi_array_refresh');
627
+ $social_icon_array_order = get_option('social_icon_array_order');
628
+ $social_icon_array_order = unserialize($social_icon_array_order);
629
+ } add_action('acx_fsmi_hook_option_postelse','acx_fsmi_social_media_else',100);
630
+ /* Define options in else post Ends Here */
631
+
632
+ /* Comparison HTML Starts Here */
633
+ function acx_fsmi_show_comparison()
634
+ {
635
+ global $acx_si_fsmi_hide_advert;
636
+ if($acx_si_fsmi_hide_advert == "no")
637
+ {
638
+ echo "<span class='acx_fsmi_q_sep'></span>";
639
+ do_action('acx_fsmi_comparison_premium',1);
640
+ echo "<span class='acx_fsmi_q_sep'></span>";
641
+ }
642
+ }
643
+ add_action('acx_fsmi_hook_option_footer','acx_fsmi_show_comparison',400);
644
+
645
+ /* Comparison HTML Ends Here */
646
+
647
+ /* Footer HTML Starts Here */
648
+ function acx_fsmi_show_footer_contact_section()
649
+ {
650
+ ?><p class="widefat" style="padding:8px;width:99%;"><?php _e('Something Not Working Well? Have a Doubt? Have a Suggestion?','floating-social-media-icon'); ?> - <a href="http://www.acurax.com/contact.php" target="_blank"><?php _e('Contact us now','floating-social-media-icon'); ?></a> |<?php _e(' Need a Custom Designed Theme For your Blog or Website? Need a Custom Header Image?','floating-social-media-icon'); ?> - <a href="http://www.acurax.com/contact.php" target="_blank"><?php _e('Contact us now','floating-social-media-icon'); ?></a></p>
651
+ <?php
652
+ echo "<span class='acx_fsmi_q_sep'></span>";
653
+ }
654
+ add_action('acx_fsmi_hook_option_footer','acx_fsmi_show_footer_contact_section',500);
655
+ /* Footer HTML Ends Here */
656
+
657
+ /******************* MISC PAGE ****************************************/
658
+ /* Premium Info HTML - Save - Get - Set Default Logic Starts Here */
659
+ function acx_fsmi_misc_premium_advert_above_form()
660
+ {
661
+ global $acx_si_fsmi_hide_advert,$acx_si_credit;
662
+ if($acx_si_fsmi_hide_advert == "no")
663
+ {
664
+ echo "<span class='acx_fsmi_q_sep'></span>";
665
+ ?>
666
+ <div id="acx_fsmi_premium">
667
+ <a style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;" href="admin.php?page=Acurax-Social-Icons-Premium" target="_blank"><?php _e('Fully Featured - Premium Floating Social Media Icon is Available With Tons of Extra Features! - Click Here','floating-social-media-icon'); ?></a>
668
+ </div> <!-- acx_fsmi_premium -->
669
+ <?php
670
+ } ?>
671
+ <h2 style="width: 100%; font-size: 2px; padding: 0px; line-height: 0px; color: white;">.</h2>
672
+ <?php
673
+ if($acx_si_credit != "yes")
674
+ {
675
+ echo "<span class='acx_fsmi_q_sep'></span>";?>
676
+ <div id='acx_backlink' align='center'>
677
+ <?php _e('Please do a favour by enabling back-link to our site.','floating-social-media-icon'); ?> <a href="admin.php?page=Acurax-Social-Icons-Settings&backlink=enable"><?php _e('Okay, Enable.','floating-social-media-icon'); ?></a>
678
+ </div>
679
+ <?php
680
+
681
+ }
682
+ echo "<span class='acx_fsmi_q_sep'></span>";
683
+ } add_action('acx_fsmi_misc_hook_option_above_page_left','acx_fsmi_misc_premium_advert_above_form',50);
684
+
685
+ /* Premium Info HTML - Save - Get - Set Default Logic Starts Here */
686
+
687
+ /* Theme Conflict/Misc Settings HTML - Save - Get - Set Default Logic Starts Here */
688
+ function acx_fsmi_misc_theme_conflict_html()
689
+ {
690
+ $acx_string = __('Acurax Theme Conflict/Misc Settings','floating-social-media-icon');
691
+ print_acx_fsmi_option_block_start($acx_string);
692
+ do_action('acx_fsmi_misc_theme_conflict_option_field');
693
+ echo "<span class='acx_fsmi_q_sep'></span>";
694
+ print_acx_fsmi_option_block_end();
695
+ } add_action('acx_fsmi_misc_hook_option_fields','acx_fsmi_misc_theme_conflict_html',100);
696
+
697
+
698
+ function acx_fsmi_icon_vertical_field()
699
+ {
700
+ global $acx_si_fsmi_float_fix;?>
701
+ <span class="label" style="width:50%;"><?php _e("Icons Vertical Issue?","floating-social-media-icon"); ?><a style="cursor:pointer;" class="fsmi_info_premium fsmi_info_lb" lb_title="<?php _e("Icon Shows Vertical Instead of Horizontal","floating-social-media-icon"); ?>" lb_content="<?php _e("If your social media icons is displaying vertically instead of horizontal, You can change this settings.","floating-social-media-icon"); ?>">[?]</a></span>
702
+
703
+ <select name="acx_si_fsmi_float_fix" style="width:49%;">
704
+ <option value="yes"<?php if ($acx_si_fsmi_float_fix == "yes") { echo 'selected="selected"'; } ?>><?php _e('Yes,Make My Vertical Icons Horizontal','floating-social-media-icon'); ?></option>
705
+ <option value="no"<?php if ($acx_si_fsmi_float_fix == "no") { echo 'selected="selected"'; } ?>><?php _e('No, I Dont Have Any Issues','floating-social-media-icon'); ?></option>
706
+ </select>
707
+
708
+ <?php echo "<span class='acx_fsmi_q_sep'></span>";
709
+ }
710
+ add_action('acx_fsmi_misc_theme_conflict_option_field','acx_fsmi_icon_vertical_field',100);
711
+
712
+
713
+ function acx_fsmi_float_fix_if()
714
+ {
715
+ global $acx_si_fsmi_float_fix;
716
+ $acx_si_fsmi_float_fix = sanitize_text_field(acx_fsmi_post_isset_check('acx_si_fsmi_float_fix'));
717
+ update_option('acx_si_fsmi_float_fix', $acx_si_fsmi_float_fix);
718
+ } add_action('acx_fsmi_misc_hook_option_onpost','acx_fsmi_float_fix_if');
719
+
720
+ function acx_fsmi_fsmi_float_fix_else()
721
+ {
722
+ global $acx_si_fsmi_float_fix;
723
+ $acx_si_fsmi_float_fix = get_option('acx_si_fsmi_float_fix');
724
+ }
725
+ add_action('acx_fsmi_misc_hook_option_postelse','acx_fsmi_fsmi_float_fix_else');
726
+ function acx_fsmi_fsmi_float_fix_after_else()
727
+ {
728
+ global $acx_si_fsmi_float_fix;
729
+
730
+ if ($acx_si_fsmi_float_fix == "") { $acx_si_fsmi_float_fix = "no"; }
731
+ } add_action('acx_fsmi_misc_hook_option_after_else','acx_fsmi_fsmi_float_fix_after_else');
732
+ function acx_fsmi_theme_warning_ignore()
733
+ {
734
+ global $acx_si_fsmi_theme_warning_ignore;
735
+ echo "<span class='label' style='width:50%;'>". __('Ignore Theme Warning?','floating-social-media-icon')."</span>";
736
+ ?>
737
+ <select name="acx_si_fsmi_theme_warning_ignore" style="width:49%;">
738
+ <option value="yes"<?php if ($acx_si_fsmi_theme_warning_ignore == "yes") { echo 'selected="selected"'; } ?>><?php _e('Yes, Everything is working fine and and i still see theme warning - Fix This','floating-social-media-icon'); ?></option>
739
+ <option value="no"<?php if ($acx_si_fsmi_theme_warning_ignore == "no") { echo 'selected="selected"'; } ?>><?php _e('No, I Have No Issues','floating-social-media-icon'); ?></option>
740
+ </select>
741
+
742
+ <?php echo "<span class='acx_fsmi_q_sep'></span>";
743
+ }
744
+ add_action('acx_fsmi_misc_theme_conflict_option_field','acx_fsmi_theme_warning_ignore',200);
745
+ function acx_fsmi_theme_warning_ignore_if()
746
+ {
747
+ global $acx_si_fsmi_theme_warning_ignore;
748
+ $acx_si_fsmi_theme_warning_ignore = sanitize_text_field(acx_fsmi_post_isset_check('acx_si_fsmi_theme_warning_ignore'));
749
+ update_option('acx_si_fsmi_theme_warning_ignore', $acx_si_fsmi_theme_warning_ignore);
750
+ } add_action('acx_fsmi_misc_hook_option_onpost','acx_fsmi_theme_warning_ignore_if');
751
+
752
+ function acx_fsmi_theme_warning_ignore_else()
753
+ {
754
+ global $acx_si_fsmi_theme_warning_ignore;
755
+ $acx_si_fsmi_theme_warning_ignore = get_option('acx_si_fsmi_theme_warning_ignore');
756
+ }
757
+ add_action('acx_fsmi_misc_hook_option_postelse','acx_fsmi_theme_warning_ignore_else');
758
+ function acx_fsmi_theme_warning_ignore_after_else()
759
+ {
760
+ global $acx_si_fsmi_theme_warning_ignore;
761
+
762
+ if ($acx_si_fsmi_theme_warning_ignore == "") { $acx_si_fsmi_theme_warning_ignore = "no"; }
763
+ } add_action('acx_fsmi_misc_hook_option_after_else','acx_fsmi_theme_warning_ignore_after_else');
764
+ function acx_fsmi_set_icons_vertical()
765
+ {
766
+
767
+ echo "<span class='label' style='width:50%;'>". __('Set Icons Vertical?','floating-social-media-icon')."";
768
+ ?>
769
+ <a style="cursor:pointer;" class="fsmi_info_premium fsmi_info_lb" lb_title="<?php _e("Display Icons Vertically","floating-social-media-icon"); ?>" lb_content="<?php _e("Its possible to make the social icons align vertical or horizontal, You can set the number of icons to have a in a row, by adjusting the slider, So you can set # of icons in a row to 1 makes it looks vertical.","floating-social-media-icon"); ?><br><br><i><?php _e("This feature is only available in our premium version - ","floating-social-media-icon"); ?><a href='admin.php?page=Acurax-Social-Icons-Premium' target='_blank'><?php _e("Compare Features","floating-social-media-icon"); ?></a> / <a href='http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=fsmi&utm_campaign=premium-info' target='_blank'><?php _e("Order Now","floating-social-media-icon"); ?></a>">[?]</a></span>
770
+ <span name="acx_si_fsmi_theme_demo_vertical" class="fsmi_p_info_icon_h fsmi_info_premium fsmi_info_lb" lb_title="<?php _e("Display Icons Vertically","floating-social-media-icon"); ?>" lb_content="<?php _e("Its possible to make the social icons align vertical or horizontal, You can set the number of icons to have a in a row, by adjusting the slider, So you can set # of icons in a row to 1 makes it looks vertical.","floating-social-media-icon"); ?><br><br><i><?php _e("This feature is only available in our premium version - ","floating-social-media-icon"); ?><a href='admin.php?page=Acurax-Social-Icons-Premium' target='_blank'><?php _e("Compare Features","floating-social-media-icon"); ?></a> / <a href='http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=fsmi&utm_campaign=premium-info' target='_blank'><?php _e("Order Now","floating-social-media-icon"); ?></a>">
771
+ </span>
772
+
773
+ <?php echo "<span class='acx_fsmi_q_sep'></span>";
774
+ }
775
+ global $acx_si_fsmi_hide_advert;
776
+ if($acx_si_fsmi_hide_advert == "no")
777
+ {
778
+ add_action('acx_fsmi_misc_theme_conflict_option_field','acx_fsmi_set_icons_vertical',300);
779
+ }
780
+ function acx_fsmi_disable_mob_float()
781
+ {
782
+ global $acx_si_fsmi_disable_mobile;
783
+ echo "<span class='label' style='width:50%;'>".__('Disable Floating On Mob Devices?','floating-social-media-icon'). "<a style='cursor:pointer;' class='fsmi_info_premium fsmi_info_lb' lb_title='".__('Disable Floating Icons on Mobile Devices','floating-social-media-icon') ."' lb_content='". __('Depends on some theme design, the floating icons can make visibility issues on mobile devices, if you are experiencing such an issue, you can disable the floating icons on mobile devices.','floating-social-media-icon')."' >[?]</a> </span>";
784
+
785
+ ?>
786
+ <select name="acx_si_fsmi_disable_mobile" style="width:49%;">
787
+ <option value="yes"<?php if ($acx_si_fsmi_disable_mobile == "yes") { echo 'selected="selected"'; } ?>><?php _e('Yes, Lets disable it','floating-social-media-icon');?> </option>
788
+ <option value="no"<?php if ($acx_si_fsmi_disable_mobile == "no") { echo 'selected="selected"'; } ?>><?php _e('No, Thats fine','floating-social-media-icon' ); ?></option>
789
+ </select>
790
+
791
+ <?php echo "<span class='acx_fsmi_q_sep'></span>";
792
+ }
793
+ add_action('acx_fsmi_misc_theme_conflict_option_field','acx_fsmi_disable_mob_float',400);
794
+
795
+
796
+ function acx_fsmi_disable_mob_float_if()
797
+ {
798
+ global $acx_si_fsmi_disable_mobile;
799
+ $acx_si_fsmi_disable_mobile = sanitize_text_field(acx_fsmi_post_isset_check('acx_si_fsmi_disable_mobile'));
800
+ update_option('acx_si_fsmi_disable_mobile', $acx_si_fsmi_disable_mobile);
801
+ } add_action('acx_fsmi_misc_hook_option_onpost','acx_fsmi_disable_mob_float_if');
802
+
803
+ function acx_fsmi_disable_mob_float_else()
804
+ {
805
+ global $acx_si_fsmi_disable_mobile;
806
+ $acx_si_fsmi_disable_mobile = get_option('acx_si_fsmi_disable_mobile');
807
+ }
808
+ add_action('acx_fsmi_misc_hook_option_postelse','acx_fsmi_disable_mob_float_else');
809
+ function acx_fsmi_disable_mob_float_after_else()
810
+ {
811
+ global $acx_si_fsmi_disable_mobile;
812
+
813
+ if ($acx_si_fsmi_disable_mobile == "") { $acx_si_fsmi_disable_mobile = "no"; }
814
+ } add_action('acx_fsmi_misc_hook_option_after_else','acx_fsmi_disable_mob_float_after_else');
815
+
816
+
817
+
818
+ function acx_fsmi_no_follow_link()
819
+ {
820
+ global $acx_si_fsmi_no_follow;
821
+ echo "<span class='label' style='width:50%;'>". __('No follow links? ','floating-social-media-icon')."<a style='cursor:pointer;' class='fsmi_info_premium fsmi_info_lb' lb_title='Icon Link No Follow Settings' lb_content='Would you like to disable Nofollow on Icon links? You can configure this option to Yes'>[?]</a></span>";
822
+ ?>
823
+
824
+
825
+ <select name="acx_si_fsmi_no_follow" style="width:49%;">
826
+ <option value="yes"<?php if ($acx_si_fsmi_no_follow == "yes") { echo 'selected="selected"'; } ?>><?php _e('No,Thats fine','floating-social-media-icon'); ?></option>
827
+ <option value="no"<?php if ($acx_si_fsmi_no_follow == "no") { echo 'selected="selected"'; } ?>><?php _e('Yes, Lets Disable No Follow','floating-social-media-icon'); ?> </option>
828
+ </select>
829
+ <?php echo "<span class='acx_fsmi_q_sep'></span>";
830
+ }
831
+ add_action('acx_fsmi_misc_theme_conflict_option_field','acx_fsmi_no_follow_link',500);
832
+
833
+
834
+ function acx_fsmi_no_follow_if()
835
+ {
836
+ global $acx_si_fsmi_no_follow;
837
+ $acx_si_fsmi_no_follow = sanitize_text_field(acx_fsmi_post_isset_check('acx_si_fsmi_no_follow'));
838
+ update_option('acx_si_fsmi_no_follow', $acx_si_fsmi_no_follow);
839
+ } add_action('acx_fsmi_misc_hook_option_onpost','acx_fsmi_no_follow_if');
840
+
841
+ function acx_fsmi_no_follow_else()
842
+ {
843
+ global $acx_si_fsmi_no_follow;
844
+ $acx_si_fsmi_no_follow = get_option('acx_si_fsmi_no_follow');
845
+ }
846
+ add_action('acx_fsmi_misc_hook_option_postelse','acx_fsmi_no_follow_else');
847
+ function acx_fsmi_no_follow_after_else()
848
+ {
849
+ global $acx_si_fsmi_no_follow;
850
+
851
+ if ($acx_si_fsmi_no_follow == "") { $acx_si_fsmi_no_follow = "no"; }
852
+ } add_action('acx_fsmi_misc_hook_option_after_else','acx_fsmi_no_follow_after_else');
853
+ /* Theme Conflict/Misc Settings HTML - Get - Set Default Logic Ends Here */
854
+ /* Acurax Service/Info Settings HTML - Get - Set Default Logic Starts Here */
855
+ function acx_fsmi_misc_service_info_html()
856
+ {
857
+ $acx_string = __('Acurax Service/Info Settings','floating-social-media-icon');
858
+ print_acx_fsmi_option_block_start($acx_string);
859
+ do_action('acx_fsmi_misc_service_info');
860
+ echo "<span class='acx_fsmi_q_sep'></span>";
861
+ print_acx_fsmi_option_block_end();
862
+ } add_action('acx_fsmi_misc_hook_option_fields','acx_fsmi_misc_service_info_html',200);
863
+
864
+ function acx_fsmi_service_info_option()
865
+ {
866
+ global $acx_fsmi_acx_service_banners;
867
+ echo "<span class='label' style='width:50%;'>". __('Acurax Service Info ','floating-social-media-icon')."</span>";?>
868
+ <select name="acx_fsmi_acx_service_banners" style="width:49%;">
869
+ <option value="yes"<?php if ($acx_fsmi_acx_service_banners == "yes") { echo 'selected="selected"'; } ?>><?php _e('Show Acurax Service Banner','floating-social-media-icon');?></option>
870
+ <option value="no"<?php if ($acx_fsmi_acx_service_banners == "no") { echo 'selected="selected"'; } ?>><?php _e('Hide Acurax Service Banner','floating-social-media-icon'); ?></option>
871
+ </select>
872
+ <?php
873
+ echo "<span class='acx_fsmi_q_sep'></span>";
874
+
875
+ }
876
+ add_action('acx_fsmi_misc_service_info','acx_fsmi_service_info_option',100);
877
+
878
+
879
+ function acx_fsmi_service_info_if()
880
+ {
881
+ global $acx_fsmi_acx_service_banners;
882
+ $acx_fsmi_acx_service_banners = sanitize_text_field(acx_fsmi_post_isset_check('acx_fsmi_acx_service_banners'));
883
+ update_option('acx_fsmi_acx_service_banners', $acx_fsmi_acx_service_banners);
884
+ } add_action('acx_fsmi_misc_hook_option_onpost','acx_fsmi_service_info_if');
885
+
886
+ function acx_fsmi_service_info_else()
887
+ {
888
+ global $acx_fsmi_acx_service_banners;
889
+ $acx_fsmi_acx_service_banners = get_option('acx_fsmi_acx_service_banners');
890
+ }
891
+ add_action('acx_fsmi_misc_hook_option_postelse','acx_fsmi_service_info_else');
892
+ function acx_fsmi_service_info_after_else()
893
+ {
894
+ global $acx_fsmi_acx_service_banners;
895
+
896
+ if ($acx_fsmi_acx_service_banners == "") { $acx_fsmi_acx_service_banners = "yes"; }
897
+ } add_action('acx_fsmi_misc_hook_option_after_else','acx_fsmi_service_info_after_else');
898
+
899
+ /* Acurax Service/Info Settings HTML - Get - Set Default Logic Ends Here */
900
+
901
+ /* Premium Version Info Settings HTML - Get - Set Default Logic Starts Here */
902
+ function acx_fsmi_misc_premium_info_option()
903
+ {
904
+ global $acx_si_fsmi_hide_advert;
905
+ echo "<span class='label' style='width:50%;'>". __('Premium Version Info ','floating-social-media-icon')."</span>";?>
906
+ <select name="acx_si_fsmi_hide_advert" style="width:49%;">
907
+ <option value="yes"<?php if ($acx_si_fsmi_hide_advert == "yes") { echo 'selected="selected"'; } ?>><?php _e('Hide Premium Version Infos','floating-social-media-icon'); ?></option>
908
+ <option value="no"<?php if ($acx_si_fsmi_hide_advert == "no") { echo 'selected="selected"'; } ?>><?php _e('Show Premium Version Infos','floating-social-media-icon');?></option>
909
+ </select>
910
+ <?php
911
+ echo "<span class='acx_fsmi_q_sep'></span>";
912
+
913
+ }
914
+ add_action('acx_fsmi_misc_service_info','acx_fsmi_misc_premium_info_option',200);
915
+ function acx_fsmi_premium_info_if()
916
+ {
917
+ global $acx_si_fsmi_hide_advert;
918
+ $acx_si_fsmi_hide_advert = sanitize_text_field(acx_fsmi_post_isset_check('acx_si_fsmi_hide_advert'));
919
+ update_option('acx_si_fsmi_hide_advert', $acx_si_fsmi_hide_advert);
920
+ } add_action('acx_fsmi_misc_hook_option_onpost','acx_fsmi_premium_info_if');
921
+
922
+ function acx_fsmi_premium_info_else()
923
+ {
924
+ global $acx_si_fsmi_hide_advert;
925
+ $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
926
+ }
927
+ add_action('acx_fsmi_misc_hook_option_postelse','acx_fsmi_premium_info_else');
928
+ function acx_fsmi_premium_info_after_else()
929
+ {
930
+ global $acx_si_fsmi_hide_advert;
931
+ if ($acx_si_fsmi_hide_advert == "") { $acx_si_fsmi_hide_advert = "no"; }
932
+ } add_action('acx_fsmi_misc_hook_option_after_else','acx_fsmi_premium_info_after_else');
933
+
934
+ /* Premium Version Info Settings Settings HTML - Get - Set Default Logic Ends Here */
935
+ /* Expert Support Menu Settings HTML - Get - Set Default Logic Starts Here */
936
+
937
+
938
+ function acx_fsmi_misc_expert_support_option()
939
+ {
940
+ global $acx_si_fsmi_hide_expert_support_menu;
941
+ echo "<span class='label' style='width:50%;'>". __('Expert Support Menu','floating-social-media-icon')."</span>";?>
942
+ <select name="acx_si_fsmi_hide_expert_support_menu" style="width:49%;">
943
+ <option value="yes"<?php if ($acx_si_fsmi_hide_expert_support_menu == "yes") { echo 'selected="selected"'; } ?>><?php _e('Hide Expert Support Menu From Acurax');?></option>
944
+ <option value="no"<?php if ($acx_si_fsmi_hide_expert_support_menu == "no") { echo 'selected="selected"'; } ?>><?php _e('Show Expert Support Menu From Acurax');?></option>
945
+ </select>
946
+ <?php
947
+ echo "<span class='acx_fsmi_q_sep'></span>";
948
+
949
+ }
950
+ add_action('acx_fsmi_misc_service_info','acx_fsmi_misc_expert_support_option',300);
951
+
952
+
953
+ function acx_fsmi_expert_support_if()
954
+ {
955
+ global $acx_si_fsmi_hide_expert_support_menu;
956
+ $acx_si_fsmi_hide_expert_support_menu = sanitize_text_field(acx_fsmi_post_isset_check('acx_si_fsmi_hide_expert_support_menu'));
957
+ update_option('acx_si_fsmi_hide_expert_support_menu', $acx_si_fsmi_hide_expert_support_menu);
958
+ } add_action('acx_fsmi_misc_hook_option_onpost','acx_fsmi_expert_support_if');
959
+
960
+ function acx_fsmi_expert_support_else()
961
+ {
962
+ global $acx_si_fsmi_hide_expert_support_menu;
963
+ $acx_si_fsmi_hide_expert_support_menu = get_option('acx_si_fsmi_hide_expert_support_menu');
964
+ }
965
+ add_action('acx_fsmi_misc_hook_option_postelse','acx_fsmi_expert_support_else');
966
+ function acx_fsmi_expert_support_after_else()
967
+ {
968
+ global $acx_si_fsmi_hide_expert_support_menu;
969
+
970
+ if ($acx_si_fsmi_hide_expert_support_menu == "") { $acx_si_fsmi_hide_expert_support_menu = "no"; }
971
+ } add_action('acx_fsmi_misc_hook_option_after_else','acx_fsmi_expert_support_after_else');
972
+
973
+ /* Expert Support Menu Settings Settings HTML - Get - Set Default Logic Ends Here */
974
+
975
+ /* Define Misc Submit Button Starts Here */
976
+ function acx_fsmi_misc_submit_button_html()
977
+ {
978
+ echo "<span class='acx_fsmi_q_sep'></span>";?>
979
+ <input type='submit' name='Submit' class='button button-primary' value='<?php _e('Save Settings','floating-social-media-icon'); ?>' />
980
+ <?php
981
+ echo "<span class='acx_fsmi_q_sep'></span>";
982
+ }
983
+ add_action('acx_fsmi_misc_hook_option_fields','acx_fsmi_misc_submit_button_html',300);
984
+ /* Define Misc Submit Button Ends Here */
985
+ /* Comparison HTML Starts Here */
986
+ function acx_fsmi_misc_show_comparison()
987
+ {
988
+ global $acx_si_fsmi_hide_advert;
989
+ if($acx_si_fsmi_hide_advert == "no")
990
+ {
991
+ echo "<span class='acx_fsmi_q_sep'></span>";
992
+ do_action('acx_fsmi_comparison_premium',1);
993
+ echo "<span class='acx_fsmi_q_sep'></span>";
994
+ }
995
+ }
996
+ add_action('acx_fsmi_misc_hook_option_footer','acx_fsmi_misc_show_comparison',100);
997
+
998
+ /* Comparison HTML Starts Here */
999
+
1000
+ /* Footer HTML Starts Here */
1001
+ function acx_fsmi_misc_show_footer_contact_section()
1002
+ {
1003
+ echo "<span class='acx_fsmi_q_sep'></span>";
1004
+ ?><p class="widefat" style="padding:8px;width:99%;">
1005
+ <?php _e('Something Not Working Well? Have a Doubt? Have a Suggestion? -','floating-social-media-icon'); ?> <a href="http://www.acurax.com/contact.php" target="_blank"><?php _e('Contact us now','floating-social-media-icon'); ?></a> | <?php _e('Need a Custom Designed Theme For your Blog or Website? Need a Custom Header Image? ','floating-social-media-icon'); ?>- <a href="http://www.acurax.com/contact.php" target="_blank"><?php _e('Contact us now','floating-social-media-icon');?></a></p>
1006
+ <?php
1007
+ echo "<span class='acx_fsmi_q_sep'></span>";
1008
+ }
1009
+ add_action('acx_fsmi_misc_hook_option_footer','acx_fsmi_misc_show_footer_contact_section',200);
1010
+
1011
+ /* Footer HTML Ends Here */
1012
+
1013
+ /*********************************** PREMIUM *****************************************************************/
1014
+ /* Premium Updation HTML Starts Here */
1015
+ function acx_fsmi_premium_html()
1016
+ {
1017
+
1018
+ $td_get = "";
1019
+ if(ISSET($_GET['td']))
1020
+ {
1021
+ $td_get = $_GET['td'];
1022
+ }
1023
+ if($td_get == 'hide')
1024
+ {
1025
+ update_option('acx_si_td', "hide");
1026
+ ?>
1027
+ <style type='text/css'>
1028
+ #acx_td_fsmi
1029
+ {
1030
+ display:none;
1031
+ }
1032
+ </style>
1033
+
1034
+ <div class="error" style="background: none repeat scroll 0pt 0pt infobackground; border: 1px solid inactivecaption; padding: 5px;line-height:16px;">
1035
+ <?php _e('Thanks again for using the plugin.','floating-social-media-icon');?>
1036
+ </div>
1037
+ <?php
1038
+ }
1039
+ }
1040
+ add_action('acx_fsmi_premium_hook_option_footer','acx_fsmi_premium_html',100);
1041
+ /* Premium Updation HTML Ends Here */
1042
+ /* Comparison HTML Starts Here */
1043
+ function acx_fsmi_premium_comparison_html()
1044
+ {
1045
+ echo "<span class='acx_fsmi_q_sep'></span>";
1046
+ do_action('acx_fsmi_comparison_premium',1);
1047
+ echo "<span class='acx_fsmi_q_sep'></span>";
1048
+
1049
+ }
1050
+ add_action('acx_fsmi_premium_hook_option_footer','acx_fsmi_premium_comparison_html',200);
1051
+ /* Comparison HTML Ends Here */
1052
+
1053
+ /********************************************************* Help Page *****************************************************/
1054
+ /* Premium Ad on the top starts Here*/
1055
+ function acx_fsmi_help_html()
1056
+ {
1057
+ $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
1058
+
1059
+ if($acx_si_fsmi_hide_advert == "no")
1060
+ { ?>
1061
+ <div id="acx_fsmi_premium">
1062
+ <a style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;" href="admin.php?page=Acurax-Social-Icons-Premium" target="_blank"><?php _e('Fully Featured - Premium Floating Social Media Icon is Available With Tons of Extra Features! - Click Here'); ?></a>
1063
+ <!-- a style="margin: -14px 0px 0px 10px; float: left;" href="http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?utm_source=plugin&utm_medium=highlight_yellow&utm_campaign=fsmi" target="_blank"><img src="<?php echo plugins_url('images/yellow.png', __FILE__);?>"></a -->
1064
+ </div> <!-- acx_fsmi_premium -->
1065
+ <?php }
1066
+ }
1067
+ add_action('acx_fsmi_help_hook_option_above_page_left','acx_fsmi_help_html',100);
1068
+ /* Premium Ad on the top Ends Here*/
1069
+
1070
+ /* Help/Support HTML starts Here*/
1071
+ function acx_fsmi_help_support_html()
1072
+ {
1073
+ ?>
1074
+ <h2 style="text-align:center;"><?php _e('Floating Social Media Icon - Wordpress Plugin - Help/Support','floating-social-media-icon');?></h2>
1075
+ <p style="text-align:center;"><?php _e('Thank you for using Floating Social Media Icon Plugin For Your Wordpress Social Media Profile Linking Need.','floating-social-media-icon')?></p>
1076
+ <h3 style="text-align:center;"><a href="http://clients.acurax.com/link.php?id=8" target="_blank" class="button"><?php _e('Click here to open the FAQ and Help Page','floating-social-media-icon'); ?></a></h3>
1077
+ <?php }
1078
+ add_action('acx_fsmi_help_hook_option_above_page_left','acx_fsmi_help_support_html',200);
1079
+
1080
+ /* Help/Support HTML starts Here*/
1081
+ /* Comparison HTML starts Here*/
1082
+
1083
+ function acx_fsmi_help_show_comparison()
1084
+ {
1085
+ $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
1086
+ if($acx_si_fsmi_hide_advert == "no")
1087
+ {
1088
+ echo "<span class='acx_fsmi_q_sep'></span>";
1089
+ do_action('acx_fsmi_comparison_premium',1);
1090
+ echo "<span class='acx_fsmi_q_sep'></span>";
1091
+ }
1092
+ }
1093
+ add_action('acx_fsmi_help_hook_option_above_page_left','acx_fsmi_help_show_comparison',300);
1094
+ /* Comparison HTML Ends Here*/
1095
+ /********************************************************* Expert Page *****************************************************/
1096
+ /* Troubleshooter page options Starts Here*/
1097
+ function acx_fsmi_quick_fix_applied()
1098
+ {
1099
+ global $fix_applied;
1100
+ if($fix_applied == 1)
1101
+ {
1102
+ echo "<div style='background: none repeat scroll 0% 0% lightgreen; width: 300px; text-align: center; margin-right: auto; margin-left: auto; padding: 7px 7px 5px; border-top-right-radius: 7px; border-top-left-radius: 7px; border-bottom: 2px solid green;'>". __('Action Completed Successfully','floating-social-media-icon')."</div>";
1103
+ }
1104
+ }
1105
+ add_action('acx_fsmi_exprt_hook_option_form_head','acx_fsmi_quick_fix_applied',120);
1106
+
1107
+ function acx_fsmi_expert_icon_select_html()
1108
+ {
1109
+ global $page;
1110
+ if($page == "Acurax-Social-Icons-Troubleshooter")
1111
+ {
1112
+ echo "<h2 class='acx_fsmi_option_head'>". __('Floating Social Media Icon Troubleshooting','floating-social-media-icon')."</h2>";
1113
+ echo "<span class='acx_fsmi_q_sep'></span>";?>
1114
+ <p style="font-weight:bold;text-align:center;color:darkred;"><?php _e('IMPORTANT NOTE: Please do troubleshooting only if you got instructions from support or know what you are going to do.','floating-social-media-icon') ;?></p>
1115
+
1116
+ <?php
1117
+ echo "<span class='acx_fsmi_q_sep'></span>";?>
1118
+ <p class="widefat" style="background: none repeat scroll 0% 0% menu; border-bottom: 2px dashed lavender; border-right: 2px dashed lavender; margin-bottom: 15px; margin-top: 8px; padding: 8px; width: 99%;"> <?php _e("1) Icon Selection Display Fix: ","floating-social-media-icon" );
1119
+ echo "<span class='acx_fsmi_q_sep'></span>";
1120
+ }
1121
+
1122
+ }
1123
+ add_action('acx_fsmi_exprt_hook_option_above_page_left','acx_fsmi_expert_icon_select_html',200);
1124
+
1125
+ function acx_fsmi_expert_quick_fix_html()
1126
+ {
1127
+ global $page;
1128
+ if($page == "Acurax-Social-Icons-Troubleshooter")
1129
+ {
1130
+ echo "<span class='acx_fsmi_q_sep'></span>";?>
1131
+ <?php _e("If you cant find any icons on the icon theme/style selection section, try this fix","floating-social-media-icon" ); ?>
1132
+ <a href="admin.php?page=Acurax-Social-Icons-Troubleshooter&quickfix=1&sid=<?php echo wp_create_nonce('acx_fsmi_qfix'); ?>" class="acx_trouble_fixit"><?php _e('Click here to try this fix!','floating-social-media-icon');?></a>
1133
+ </p>
1134
+ <?php
1135
+ echo "<span class='acx_fsmi_q_sep'></span>";
1136
+ }
1137
+ }
1138
+ add_action('acx_fsmi_exprt_hook_option_above_page_left','acx_fsmi_expert_quick_fix_html',300);
1139
+ function acx_fsmi_exprt_quick_fix_add()
1140
+ {
1141
+ global $social_icon_array_order,$fix_applied,$page;
1142
+ if(is_serialized($social_icon_array_order))
1143
+ {
1144
+ $social_icon_array_order = unserialize($social_icon_array_order);
1145
+ }
1146
+ if(ISSET($_GET['page']))
1147
+ {
1148
+ $page = $_GET['page'];
1149
+ }
1150
+ else{
1151
+ $page = '';
1152
+ }
1153
+
1154
+ if(ISSET($_GET['quickfix']))
1155
+ {
1156
+ $quick_fix = sanitize_text_field($_GET['quickfix']);
1157
+ } else
1158
+ {
1159
+ $quick_fix = "";
1160
+ }
1161
+ if(ISSET($_GET['sid']))
1162
+ {
1163
+ $sid = sanitize_text_field($_GET['sid']);
1164
+ } else
1165
+ {
1166
+ $sid = "";
1167
+ }
1168
+ if (!wp_verify_nonce($sid,'acx_fsmi_qfix'))
1169
+ {
1170
+ $sid = "";
1171
+ }
1172
+ if(!current_user_can('manage_options'))
1173
+ {
1174
+ $sid = "";
1175
+ }
1176
+
1177
+ $fix_applied = 0;
1178
+ if($sid != "")
1179
+ {
1180
+ if($quick_fix == 1)
1181
+ {
1182
+ do_action('acx_fsmi_array_refresh');
1183
+ $fix_applied = 1;
1184
+ }
1185
+ }
1186
+ }
1187
+ add_action('acx_fsmi_exprt_hook_option_exprt_quick','acx_fsmi_exprt_quick_fix_add',100);
1188
+
1189
+
1190
+ function acx_fsmi_expert_down_note_html()
1191
+ {
1192
+ global $page;
1193
+ if($page == "Acurax-Social-Icons-Troubleshooter")
1194
+ {
1195
+ echo "<span class='acx_fsmi_q_sep'></span>";?>
1196
+ <p style="text-align:center;"><?php _e('We will be adding more troubleshooting quick fix options according to users requests','floating-social-media-icon');?></p>
1197
+ <?php
1198
+ echo "<span class='acx_fsmi_q_sep'></span>";
1199
+ acx_fsmi_quick_form();
1200
+ }
1201
+ }
1202
+ add_action('acx_fsmi_exprt_hook_option_above_page_left','acx_fsmi_expert_down_note_html',400);
1203
+
1204
+ /* Troubleshooter page options Ends Here*/
1205
+ ?>
index.php ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+ // Silence is golden.
3
+ ?>
premium.php DELETED
@@ -1,28 +0,0 @@
1
- <?php
2
- $td_get = "";
3
- if(ISSET($_GET['td']))
4
- {
5
- $td_get = $_GET['td'];
6
- }
7
- if($td_get == 'hide')
8
- {
9
- update_option('acx_si_td', "hide");
10
- ?>
11
- <style type='text/css'>
12
- #acx_td_fsmi
13
- {
14
- display:none;
15
- }
16
- </style>
17
-
18
- <div class="error" style="background: none repeat scroll 0pt 0pt infobackground; border: 1px solid inactivecaption; padding: 5px;line-height:16px;">
19
- Thanks again for using the plugin.
20
- </div>
21
- <?php
22
- }
23
- ?>
24
- <div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 8px; margin-top: 5px; border-radius: 15px; min-height: 450px; width: 98%;'>
25
- <?php
26
- socialicons_comparison(1);
27
- ?>
28
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.acurax.com/happy-clients.php
4
 
5
  Tags: floating social media, social network icon, social media widget, social media icon, socialmedia, social network widget, social floating icon, social profiles, floating social media button, social media button
6
  Requires at least: 2.8
7
- Tested up to: 4.4.1
8
  Stable tag: trunk
9
 
10
  Top rated easy to use social media plugin with 20+ social media icon themes, supports icon animation,widgets,shortcode, drag and drop reorder, set icon size...
@@ -106,7 +106,7 @@ Extract the zip file and just drop the contents in the wp-content/plugins/ direc
106
 
107
  Then Visit Plugin Configuration Settings and select a theme and size for icons. configure your social media profile url. You are done!
108
 
109
- You need to go to Appearance >> Widgets to add "Acx Social Icon" Widget to your sidebar
110
  If you selected display mode as manual, you can use the shortcodes which is clearly mentioned in [Faq](http://wordpress.org/extend/plugins/floating-social-media-icon/faq/ "Frequently Asked Questions") section.
111
 
112
  [youtube https://www.youtube.com/watch?v=UkeUYdjO_Z0]
@@ -170,7 +170,7 @@ Depending on the theme, the issue can happen, for this case, we have added a the
170
  = Can i have my own social icons instead of the default one? =
171
  Sorry, its only possible in our premium version, you can have unlimited number of extra icons in our premium version and you can even link icons to your website pages or anywhere.
172
 
173
- = How can i use the plugin widgets to displayt social media icons? =
174
  Plugin Support Social Media Widget with almost same features of the shortcodes, You can have **many number of widgets where on each widget you can configure the Social Media Icons size and Icon Design/Style**.
175
 
176
  To add a widget to your sidebar.. you theme must support sidebars. Go to **Appearance >> Widgets**,to add "Acx Social Icons" widget to your sidebar.
@@ -196,6 +196,9 @@ Sorry, Its only available in our premium version.
196
  = After Updating social media Plugin, Icons are not showing. why? =
197
  You need to visit the plugin settings page once after upgrading to complete the update process.Only after that it will show the icons.
198
 
 
 
 
199
 
200
  Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an Email") and we shall get back to you with the answers.
201
 
@@ -208,6 +211,14 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
208
 
209
  == Upgrade Notice ==
210
 
 
 
 
 
 
 
 
 
211
  = 3.0 =
212
  * Big Improvements on User Interface
213
  * Perfomance Improvements
@@ -384,6 +395,14 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
384
 
385
  == Changelog ==
386
 
 
 
 
 
 
 
 
 
387
  = 3.0 =
388
  * Big Improvements on User Interface
389
  * Perfomance Improvements
4
 
5
  Tags: floating social media, social network icon, social media widget, social media icon, socialmedia, social network widget, social floating icon, social profiles, floating social media button, social media button
6
  Requires at least: 2.8
7
+ Tested up to: 4.5.2
8
  Stable tag: trunk
9
 
10
  Top rated easy to use social media plugin with 20+ social media icon themes, supports icon animation,widgets,shortcode, drag and drop reorder, set icon size...
106
 
107
  Then Visit Plugin Configuration Settings and select a theme and size for icons. configure your social media profile url. You are done!
108
 
109
+ You need to go to Appearance >> Widgets to add "Acurax Social Icon" Widget to your sidebar
110
  If you selected display mode as manual, you can use the shortcodes which is clearly mentioned in [Faq](http://wordpress.org/extend/plugins/floating-social-media-icon/faq/ "Frequently Asked Questions") section.
111
 
112
  [youtube https://www.youtube.com/watch?v=UkeUYdjO_Z0]
170
  = Can i have my own social icons instead of the default one? =
171
  Sorry, its only possible in our premium version, you can have unlimited number of extra icons in our premium version and you can even link icons to your website pages or anywhere.
172
 
173
+ = How can i use the plugin widgets to display social media icons? =
174
  Plugin Support Social Media Widget with almost same features of the shortcodes, You can have **many number of widgets where on each widget you can configure the Social Media Icons size and Icon Design/Style**.
175
 
176
  To add a widget to your sidebar.. you theme must support sidebars. Go to **Appearance >> Widgets**,to add "Acx Social Icons" widget to your sidebar.
196
  = After Updating social media Plugin, Icons are not showing. why? =
197
  You need to visit the plugin settings page once after upgrading to complete the update process.Only after that it will show the icons.
198
 
199
+ = My floating icons are not floating, how can i resolve it? =
200
+ We use wordpress hooks to place the flying icons code, and in some themes, the wp_footer hooks may be called within some div or html elements and it can cause this issue, You can try enabling the floating fly fix at our misc page, or contact our support for a one to one issue resolution.
201
+
202
 
203
  Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an Email") and we shall get back to you with the answers.
204
 
211
 
212
  == Upgrade Notice ==
213
 
214
+ = 4.0 =
215
+ * Total Programming Logic Changes
216
+ * Perfomance Improvements
217
+ * Addon Support
218
+ * Optimized Speed
219
+ * Improved and Solid Structure
220
+ * Stable Release
221
+
222
  = 3.0 =
223
  * Big Improvements on User Interface
224
  * Perfomance Improvements
395
 
396
  == Changelog ==
397
 
398
+ = 4.0 =
399
+ * Total Programming Logic Changes
400
+ * Perfomance Improvements
401
+ * Addon Support
402
+ * Optimized Speed
403
+ * Improved and Solid Structure
404
+ * Stable Release
405
+
406
  = 3.0 =
407
  * Big Improvements on User Interface
408
  * Perfomance Improvements
social-help.php DELETED
@@ -1,22 +0,0 @@
1
- <div id="acx_help_page"><div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 8px; margin-top: 5px; border-radius: 15px; min-height: 450px; width: 98%;'>
2
- <?php
3
- $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
4
- if ($acx_si_fsmi_hide_advert == "") { $acx_si_fsmi_hide_advert = "no"; }
5
- if($acx_si_fsmi_hide_advert == "no")
6
- { ?>
7
- <div id="acx_fsmi_premium">
8
- <a style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;" href="admin.php?page=Acurax-Social-Icons-Premium" target="_blank">Fully Featured - Premium Floating Social Media Icon is Available With Tons of Extra Features! - Click Here</a>
9
- <!-- a style="margin: -14px 0px 0px 10px; float: left;" href="http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?utm_source=plugin&utm_medium=highlight_yellow&utm_campaign=fsmi" target="_blank"><img src="<?php echo plugins_url('images/yellow.png', __FILE__);?>"></a -->
10
- </div> <!-- acx_fsmi_premium -->
11
- <?php } ?>
12
- <h2 style="text-align:center;">Floating Social Media Icon - Wordpress Plugin - Help/Support</h2>
13
- <p style="text-align:center;">Thank you for using Floating Social Media Icon Plugin For Your Wordpress Social Media Profile Linking Need.</p>
14
- <h3 style="text-align:center;"><a href="http://clients.acurax.com/link.php?id=8" target="_blank" class="button">Click here to open the FAQ and Help Page</a></h3>
15
- <?php
16
- if($acx_si_fsmi_hide_advert == "no")
17
- {
18
- socialicons_comparison(1);
19
- }
20
- ?>
21
- </div> <!-- acx_help_page -->
22
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
social-icon.php DELETED
@@ -1,435 +0,0 @@
1
- <?php
2
- /**********************************************/
3
- $total_themes = ACX_SOCIALMEDIA_TOTAL_THEMES; // DEFINE NUMBER OF THEMES HERE
4
- $total_themes = ($total_themes+1); // DO NOT EDIT THIS
5
- /**********************************************/
6
- $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
7
- if ($acx_si_fsmi_hide_advert == "") { $acx_si_fsmi_hide_advert = "no"; }
8
- if(ISSET($_GET["backlink"]))
9
- {
10
- $get_backlink = sanitize_text_field($_GET["backlink"]);
11
- } else
12
- {
13
- $get_backlink = "";
14
- }
15
- if($get_backlink == "enable") {
16
- $acx_si_credit = "yes";
17
- update_option('acx_si_credit', $acx_si_credit);
18
- ?>
19
- <style type='text/css'>
20
- #acx_backlink
21
- {
22
- display:none;
23
- }
24
- </style>
25
- <?php }
26
- if(ISSET($_POST['acurax_social_icon_hidden']))
27
- {
28
- $acurax_social_icon_hidden = $_POST['acurax_social_icon_hidden'];
29
- }
30
- else
31
- {
32
- $acurax_social_icon_hidden = '';
33
- }
34
- if($acurax_social_icon_hidden == 'Y')
35
- {
36
- if (!isset($_POST['acx_fsmi_save_config'])) die("<br><br>Unknown Error Occurred, Try Again... <a href=''>Click Here</a>");
37
- if (!wp_verify_nonce($_POST['acx_fsmi_save_config'],'acx_fsmi_save_config')) die("<br><br>Unknown Error Occurred, Try Again... <a href=''>Click Here</a>");
38
- if(!current_user_can('manage_options')) die("<br><br>Sorry, You have no permission to do this action...</a>");
39
-
40
- //Form data sent
41
- $acx_si_theme = sanitize_text_field($_POST['acx_si_theme']);
42
- if(!is_numeric($acx_si_theme))
43
- {
44
- $acx_si_theme = 1;
45
- }
46
- update_option('acx_si_theme', $acx_si_theme);
47
-
48
- $acx_si_twitter = sanitize_text_field($_POST['acx_si_twitter']);
49
- update_option('acx_si_twitter', $acx_si_twitter);
50
- $acx_si_facebook = $_POST['acx_si_facebook'];
51
- if($acx_si_facebook != "")
52
- {
53
- if (substr($acx_si_facebook, 0, 4) != 'http') {
54
- $acx_si_facebook = 'http://' . $acx_si_facebook;
55
- } if($acx_si_facebook == "http://#") { $acx_si_facebook = "#"; }
56
- } update_option('acx_si_facebook', $acx_si_facebook);
57
- $acx_si_youtube = esc_url_raw($_POST['acx_si_youtube']);
58
- update_option('acx_si_youtube', $acx_si_youtube);
59
- $acx_si_linkedin = esc_url_raw($_POST['acx_si_linkedin']);
60
- update_option('acx_si_linkedin', $acx_si_linkedin);
61
- $acx_si_gplus = esc_url_raw($_POST['acx_si_gplus']);
62
- update_option('acx_si_gplus', $acx_si_gplus);
63
- $acx_si_credit = ISSET($_POST['acx_si_credit']);
64
- update_option('acx_si_credit', $acx_si_credit);
65
- $acx_si_icon_size = $_POST['acx_si_icon_size'];
66
- update_option('acx_si_icon_size', $acx_si_icon_size);
67
- $acx_si_display = $_POST['acx_si_display'];
68
- update_option('acx_si_display', $acx_si_display);
69
- $acx_si_pinterest = esc_url_raw($_POST['acx_si_pinterest']);
70
- update_option('acx_si_pinterest', $acx_si_pinterest);
71
-
72
- $acx_si_feed = esc_url_raw($_POST['acx_si_feed']);
73
- update_option('acx_si_feed', $acx_si_feed);
74
- $social_icon_array_order = get_option('social_icon_array_order');
75
- $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
76
- ?>
77
- <div class="updated"><p><strong><?php _e('Acurax Floating Social Icons Settings Saved!.' ); ?></strong></p></div>
78
- <script type="text/javascript">
79
- setTimeout(function(){
80
- jQuery('.updated').fadeOut('slow');
81
-
82
- }, 4000);
83
-
84
- </script>
85
- <?php
86
- }
87
- else
88
- { //Normal page display
89
- $acx_si_installed_date = get_option('acx_si_installed_date');
90
- if ($acx_si_installed_date=="") { $acx_si_installed_date = time();
91
- update_option('acx_si_installed_date', $acx_si_installed_date);
92
- }
93
- $acx_si_theme = get_option('acx_si_theme');
94
- $acx_si_twitter = get_option('acx_si_twitter');
95
- $acx_si_facebook = get_option('acx_si_facebook');
96
- $acx_si_youtube = get_option('acx_si_youtube');
97
- $acx_si_linkedin = get_option('acx_si_linkedin');
98
- $acx_si_pinterest = get_option('acx_si_pinterest');
99
- $acx_si_feed = get_option('acx_si_feed');
100
- $acx_si_gplus = get_option('acx_si_gplus');
101
- $acx_si_credit = get_option('acx_si_credit');
102
- $acx_si_icon_size = get_option('acx_si_icon_size');
103
- $acx_si_display = get_option('acx_si_display');
104
- acx_fsmi_orderarray_refresh();
105
- $social_icon_array_order = get_option('social_icon_array_order');
106
- $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
107
- // Setting Defaults
108
- if ($acx_si_credit == "") { $acx_si_credit = "no"; }
109
- if ($acx_si_icon_size == "") { $acx_si_icon_size = "32"; }
110
- if ($acx_si_display == "") { $acx_si_display = "both"; }
111
- if ($acx_si_theme == "") { $acx_si_theme = "1"; }
112
- if ($acx_si_fsmi_hide_advert == "") { $acx_si_fsmi_hide_advert = "no"; }
113
- } //Main else
114
- ?>
115
- <!-- To Update Drag and Drop -->
116
- <script type="text/javascript">
117
- jQuery(document).ready(function()
118
- {
119
- jQuery(function()
120
- {
121
- jQuery("#contentLeft ul").sortable(
122
- {
123
- opacity: 0.5, cursor: 'move', update: function()
124
- {
125
- var order = jQuery(this).sortable("serialize") + '&action=acx_fsmi_saveorder';
126
- jQuery.post(ajaxurl, order, function(theResponse)
127
- {
128
- jQuery("#contentRight").html(theResponse);
129
- });
130
- }
131
- });
132
- });
133
- });
134
- </script>
135
-
136
-
137
- <div class="wrap" >
138
- <div style='background: white none repeat scroll 0% 0%; height: 100%; margin-top: 5px; border-radius: 15px; min-height: 450px; box-sizing: border-box; margin-left: auto; margin-right: auto; width: 100%; padding: 1%;display: inline-block;'>
139
- <?php
140
- if($acx_si_fsmi_hide_advert == "no")
141
- {
142
- ?>
143
- <div id="acx_fsmi_premium">
144
- <a style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;" href="admin.php?page=Acurax-Social-Icons-Premium" target="_blank">Fully Featured - Premium Floating Social Media Icon is Available With Tons of Extra Features! - Click Here</a>
145
- </div> <!-- acx_fsmi_premium -->
146
- <?php } ?>
147
- <h2 style="width: 100%; font-size: 2px; padding: 0px; line-height: 0px; color: white;">.</h2>
148
- <?php
149
- if($acx_si_credit != "yes")
150
- { ?>
151
- <div id='acx_backlink' align='center'>
152
- Please do a favour by enabling back-link to our site. <a href="admin.php?page=Acurax-Social-Icons-Settings&backlink=enable">Okay, Enable.</a>
153
- </div>
154
- <?php
155
- } ?>
156
- <div class="acx_fsmi_admin_left">
157
- <form name="acurax_si_form" id="acurax_si_form" method="post" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>">
158
- <input type="hidden" name="acurax_social_icon_hidden" value="Y">
159
-
160
- <h2 class="acx_fsmi_page_h2">Acurax Social Icons Options</h2>
161
-
162
-
163
- <div id="acx_fsmi_admin_left_section">
164
- <?php echo "<h4>" . "Your Current Theme is <b>Theme" . $acx_si_theme."</b>" . "</h4>"; ?>
165
- <div class="acx_fsmi_admin_left_section_c">
166
- <div class="image_div" style="margin-top:8px;">
167
- <img src="<?php echo plugins_url('images/themes/'.$acx_si_theme.'/twitter.png', __FILE__);?>" style="height:<?php
168
- echo $acx_si_icon_size;?>px;">
169
- <img src="<?php echo plugins_url('images/themes/'.$acx_si_theme.'/facebook.png', __FILE__);?>" style="height:
170
- <?php echo $acx_si_icon_size;?>px;">
171
- <img src="<?php echo plugins_url('images/themes/'.$acx_si_theme.'/googleplus.png', __FILE__);?>" style="height:
172
- <?php echo $acx_si_icon_size;?>px;">
173
- <img src="<?php echo plugins_url('images/themes/'.$acx_si_theme.'/pinterest.png', __FILE__);?>" style="height:
174
- <?php echo $acx_si_icon_size;?>px;">
175
- <img src="<?php echo plugins_url('images/themes/'.$acx_si_theme.'/youtube.png', __FILE__);?>" style="height:<?php
176
- echo $acx_si_icon_size;?>px;">
177
- <img src="<?php echo plugins_url('images/themes/'.$acx_si_theme.'/linkedin.png', __FILE__);?>" style="height:
178
- <?php echo $acx_si_icon_size;?>px;">
179
- <img src="<?php echo plugins_url('images/themes/'.$acx_si_theme.'/feed.png', __FILE__);?>" style="height:
180
- <?php echo $acx_si_icon_size;?>px;">
181
- </div>
182
- </div> <!-- acx_fsmi_admin_left_section_c -->
183
- </div> <!-- acx_fsmi_admin_left_section -->
184
- <?php
185
- $social_icon_array_order = unserialize($social_icon_array_order);
186
- // Starting The Theme List
187
- ?>
188
- <div id="acx_fsmi_admin_left_section">
189
- <?php echo "<h4>Icon Theme Settings</h4>"; ?>
190
- <div class="acx_fsmi_admin_left_section_c">
191
- <div id="acx_si_theme_display">
192
- <?php
193
- for ($i=1; $i < $total_themes; $i++)
194
- { ?>
195
- <label class="acx_si_single_theme_display <?php if ($acx_si_theme == $i) { echo "selected"; } ?>" id="icon_selection">
196
- <div class="acx_si_single_label">Theme <?php echo $i; ?><br><input type="radio" name="acx_si_theme" value="<?php echo $i; ?>"<?php if ($acx_si_theme == $i) { echo " checked"; } ?>></div>
197
- <div class="image_div">
198
- <?php
199
- foreach ($social_icon_array_order as $key => $value)
200
- {
201
- if ($value == 0)
202
- {
203
- echo "<img src=" . plugins_url('images/themes/'. $i .'/twitter.png', __FILE__) . ">";
204
- } else
205
- if ($value == 1)
206
- {
207
- echo "<img src=" . plugins_url('images/themes/'. $i .'/facebook.png', __FILE__) . ">";
208
- } else
209
- if ($value == 2)
210
- {
211
- echo "<img src=" . plugins_url('images/themes/'. $i .'/googleplus.png', __FILE__) . ">";
212
- } else
213
-
214
- if ($value == 3)
215
- {
216
- echo "<img src=" . plugins_url('images/themes/'. $i .'/pinterest.png', __FILE__) . ">";
217
- } else
218
- if ($value == 4)
219
- {
220
- echo "<img src=" . plugins_url('images/themes/'. $i .'/youtube.png', __FILE__) . ">";
221
- } else
222
- if ($value == 5)
223
- {
224
- echo "<img src=" . plugins_url('images/themes/'. $i .'/linkedin.png', __FILE__) . ">";
225
- }
226
-
227
- if ($value == 6)
228
- {
229
- echo "<img src=" . plugins_url('images/themes/'. $i .'/feed.png', __FILE__) . ">";
230
- }
231
- }
232
- ?>
233
- </div>
234
- </label>
235
- <?php
236
- }
237
- ?>
238
- </div> <!-- acx_si_theme_display -->
239
- </div> <!-- acx_fsmi_admin_left_section_c -->
240
- </div> <!-- acx_fsmi_admin_left_section -->
241
- <div id="acx_fsmi_admin_left_section">
242
- <?php echo "<h4>Icon Size Settings</h4>"; ?>
243
- <div class="acx_fsmi_admin_left_section_c">
244
- <select name="acx_si_icon_size" style="width: 99.7%">
245
- <option value="16"<?php if ($acx_si_icon_size == "16") { echo 'selected="selected"'; } ?>>16px X 16px </option>
246
- <option value="25"<?php if ($acx_si_icon_size == "25") { echo 'selected="selected"'; } ?>>25px X 25px </option>
247
- <option value="32"<?php if ($acx_si_icon_size == "32") { echo 'selected="selected"'; } ?>>32px X 32px </option>
248
- <option value="40"<?php if ($acx_si_icon_size == "40") { echo 'selected="selected"'; } ?>>40px X 40px </option>
249
- <option value="48"<?php if ($acx_si_icon_size == "48") { echo 'selected="selected"'; } ?>>48px X 48px </option>
250
- <option value="55"<?php if ($acx_si_icon_size == "55") { echo 'selected="selected"'; } ?>>55px X 55px </option>
251
- </select>
252
- </div> <!-- acx_fsmi_admin_left_section_c -->
253
- </div> <!-- acx_fsmi_admin_left_section -->
254
- <div id="acx_fsmi_admin_left_section">
255
- <?php echo "<h4>" . "Social Media Icon Display Order - Drag and Drop to Reorder" . "</h4>"; ?>
256
- <div class="acx_fsmi_admin_left_section_c">
257
- <div id="contentLeft">
258
- <ul>
259
- <?php
260
- foreach ($social_icon_array_order as $key => $value)
261
- {
262
- ?>
263
- <li id="recordsArray_<?php echo $value; ?>">
264
- <?php
265
- if ($value == 0)
266
- {
267
- echo "<img src=" . plugins_url('images/themes/'. $acx_si_theme .'/twitter.png', __FILE__) . "
268
- border='0'><br> Twitter";
269
- } else
270
- if ($value == 1)
271
- {
272
- echo "<img src=" . plugins_url('images/themes/'. $acx_si_theme .'/facebook.png', __FILE__) . "
273
- border='0'><br> Facebook";
274
- } else
275
- if ($value == 2)
276
- {
277
- echo "<img src=" . plugins_url('images/themes/'. $acx_si_theme .'/googleplus.png', __FILE__) . "
278
- border='0'><br> Google Plus";
279
- } else
280
-
281
- if ($value == 3)
282
- {
283
- echo "<img src=" . plugins_url('images/themes/'. $acx_si_theme .'/pinterest.png', __FILE__) . "
284
- border='0'><br> Pinterest";
285
- } else
286
- if ($value == 4)
287
- {
288
- echo "<img src=" . plugins_url('images/themes/'. $acx_si_theme .'/youtube.png', __FILE__) . "
289
- border='0'><br> Youtube";
290
- } else
291
- if ($value == 5)
292
- {
293
- echo "<img src=" . plugins_url('images/themes/'. $acx_si_theme .'/linkedin.png', __FILE__) . "
294
- border='0'><br> Linkedin";
295
- }
296
-
297
- if ($value == 6)
298
- {
299
- echo "<img src=" . plugins_url('images/themes/'. $acx_si_theme .'/feed.png', __FILE__) . "
300
- border='0'><br> Rss Feed";
301
- }
302
- ?>
303
- </li> <?php
304
- } ?>
305
- </ul>
306
- </div>
307
- <div id="contentRight"></div> <!-- contentRight -->
308
- <?php _e("Drag and Reorder Icons (It will automatically save on reorder)" ); ?>
309
- </div> <!-- acx_fsmi_admin_left_section_c -->
310
- </div> <!-- acx_fsmi_admin_left_section -->
311
-
312
- <div id="acx_fsmi_admin_left_section">
313
- <?php echo "<h4>" . "Social Media Configuration" . "</h4>"; ?>
314
- <div class="acx_fsmi_admin_left_section_c">
315
- <p class="field_label">
316
- <?php _e("Twitter Username: " ); ?>
317
- </p>
318
- <input type="text" name="acx_si_twitter" value="<?php echo $acx_si_twitter; ?>" size="50" placeholder="eg: acuraxdotcom">
319
- <span class="field_sep"></span>
320
- <p class="field_label">
321
- <?php _e("Facebook Profile URL: " ); ?>
322
- </p>
323
- <input type="text" name="acx_si_facebook" value="<?php echo $acx_si_facebook; ?>" size="50" placeholder="eg: http://www.facebook.com/AcuraxInternational">
324
- <span class="field_sep"></span>
325
- <p class="field_label">
326
- <?php _e("Google Plus URL: " ); ?>
327
- </p>
328
- <input type="text" name="acx_si_gplus" value="<?php echo esc_url($acx_si_gplus); ?>" size="50" placeholder="Enter Your Complete Google Plus Url Starting With http://">
329
- <span class="field_sep"></span>
330
- <p class="field_label">
331
- <?php _e("Pinterest URL: " ); ?>
332
- </p>
333
- <input type="text" name="acx_si_pinterest" value="<?php echo esc_url($acx_si_pinterest); ?>" size="50" placeholder="Enter Your Complete Pinterest Url Starting With http://">
334
- <span class="field_sep"></span>
335
- <p class="field_label">
336
- <?php _e("Youtube URL: " ); ?>
337
- </p>
338
- <input type="text" name="acx_si_youtube" value="<?php echo esc_url($acx_si_youtube); ?>" size="50" placeholder="http://www.youtube.com/user/acuraxdotcom">
339
- <span class="field_sep"></span>
340
- <p class="field_label">
341
- <?php _e("Linkedin URL: " ); ?>
342
- </p>
343
- <input type="text" name="acx_si_linkedin" value="<?php echo esc_url($acx_si_linkedin); ?>" size="50" placeholder="http://www.linkedin.com/company/acurax-international">
344
- <span class="field_sep"></span>
345
- <p class="field_label">
346
- <?php _e("Feed URL: " ); ?>
347
- </p>
348
- <input type="text" name="acx_si_feed" value="<?php echo esc_url($acx_si_feed); ?>" size="50" placeholder="http://www.yourwebsite.com/feed">
349
- <span class="field_sep"></span>
350
- <span class="button fsmi_info_premium" lb_title="Adding Extra Icons Feature" lb_content="Its possible to add any number of extra icons by uploading them and you can link them to anywhere you need.<br><br>Lets say, you needs to have an icon which links to your contact page or services page, you can do that.<br><br><i>This feature is only available in our premium version - <a href='admin.php?page=Acurax-Social-Icons-Premium' target='_blank'>Compare Features</a> / <a href='http://clients.acurax.com/floating-socialmedia.php?utm_source=fsmi&utm_campaign=premium-info' target='_blank'>Order Now</a>">Add Custom Icon</span>
351
- <span class="field_sep"></span>
352
- </div> <!-- acx_fsmi_admin_left_section_c -->
353
- </div> <!-- acx_fsmi_admin_left_section -->
354
-
355
- <div id="acx_fsmi_admin_left_section">
356
- <?php echo "<h4>" . "Social Media Integration Settings" . "</h4>"; ?>
357
- <div class="acx_fsmi_admin_left_section_c">
358
- <select name="acx_si_display" style="width: 99.7%">
359
- <option value="auto"<?php if ($acx_si_display == "auto") { echo 'selected="selected"'; } ?>>Automatic Only (Will
360
- Float) - Shortcode and PHP code will not show icons</option>
361
- <option value="manual"<?php if ($acx_si_display == "manual") { echo 'selected="selected"'; } ?>>Manual Only
362
- (Using Shortcode or PHP Code - Will not float)</option>
363
- <option value="both"<?php if ($acx_si_display == "both") { echo 'selected="selected"'; } ?>>Automatic and Manual
364
- (Shortcode/PHP will not float but Automatic will Float)</option>
365
- </select>
366
- <span class="field_sep"></span>
367
- <?php
368
- $code = ' <?php if (function_exists("DISPLAY_ACURAX_ICONS")) { DISPLAY_ACURAX_ICONS(); } ?>';
369
- ?>
370
- <p style="float: left; font-family: arial; font-size: 12px; line-height: 23px; text-align: left;">If you select display mode as "Automatic Only" , it will show automatically but will not show anything for shortcode or php code, If you select as "Manual Only", It will not automatically show floating icons but you can place</p>
371
- <?php highlight_string($code); ?>
372
- <p>in your theme file or use the shortcode <span style="color: #000000;background:rgba(0, 0, 0, 0.07) none repeat scroll 0 0;" class="code">&nbsp;[DISPLAY_ACURAX_ICONS]</span>, to display the Social Icons where ever you want, If you select "Automatic and Manual", It will automatically show floating icons and will also show icons for shortcode and php code.</p>
373
- </div> <!-- acx_fsmi_admin_left_section_c -->
374
- </div> <!-- acx_fsmi_admin_left_section -->
375
- <?php if($acx_si_fsmi_hide_advert == "no")
376
- { ?>
377
- <div id="acx_fsmi_admin_left_section">
378
- <?php echo "<h4>" . "Define Fly Animation Start and End Position" . "</h4>"; ?>
379
- <div class="acx_fsmi_admin_left_section_c">
380
- <span class="fsmi_p_info_start_end fsmi_info_premium" lb_title="Configure Fly Animation Start and End Position" lb_content="You can configure the floating social media icons fly animation start and end position, By default it fly from top left to bottom right.<br><br><i>This feature is only available in our premium version - <a href='admin.php?page=Acurax-Social-Icons-Premium' target='_blank'>Compare Features</a> / <a href='http://clients.acurax.com/floating-socialmedia.php?utm_source=fsmi&utm_campaign=premium-info' target='_blank'>Order Now</a>"></span>
381
- </div> <!-- acx_fsmi_admin_left_section_c -->
382
- </div> <!-- acx_fsmi_admin_left_section -->
383
- <?php } ?>
384
- <?php if($acx_si_credit == "yes")
385
- { ?>
386
- <div id="acx_fsmi_admin_left_section">
387
- <?php echo "<h4>" . "Credit Link Settings" . "</h4>"; ?>
388
- <div class="acx_fsmi_admin_left_section_c">
389
- <select name="acx_si_credit">
390
- <option value="yes"<?php if ($acx_si_credit == "yes") { echo 'selected="selected"'; } ?>>Yes, Its Okay to Show Credit Link </option>
391
- <option value="no"<?php if ($acx_si_credit == "no") { echo 'selected="selected"'; } ?>>No, I dont Like to Show Credit Link</option>
392
- </select>
393
- <span class="field_sep"></span>
394
- <p style="width:100%;float:left;"><?php _e("We Appreciate You Link Back to Our Website, Its just a small font size link :)" ); ?></p>
395
- </div> <!-- acx_fsmi_admin_left_section_c -->
396
- </div> <!-- acx_fsmi_admin_left_section -->
397
- <?php
398
- } ?>
399
- <input name="acx_fsmi_save_config" type="hidden" value="<?php echo wp_create_nonce('acx_fsmi_save_config'); ?>" />
400
- <p class="submit">
401
- <input type="submit" name="Submit" class="button button-primary" value="<?php _e('Save Configuration', 'acx_si_config' ) ?>" />
402
- <a name="updated">.</a>
403
- </p>
404
- </form>
405
- <div id="acx_fsmi_sidebar">
406
- <?php acx_fsmi_hook_function('acx_fsmi_hook_sidebar_widget'); ?>
407
- </div> <!-- acx_fsmi_sidebar -->
408
- </div> <!-- acx_fsmi_admin_left -->
409
- <?php
410
- if($acx_si_fsmi_hide_advert == "no")
411
- {
412
- socialicons_comparison(1);
413
- } ?>
414
- <br>
415
- <p class="widefat" style="padding:8px;width:99%;">
416
- Something Not Working Well? Have a Doubt? Have a Suggestion? - <a href="http://www.acurax.com/contact.php" target="_blank">Contact us now</a> | Need a Custom Designed Theme For your Blog or Website? Need a Custom Header Image? - <a href="http://www.acurax.com/contact.php" target="_blank">Contact us now</a>
417
- </p>
418
-
419
- </div>
420
- </div>
421
- <script type="text/javascript">
422
- jQuery( ".fsmi_info_premium" ).click(function() {
423
- var lb_title = jQuery(this).attr('lb_title');
424
- var lb_content = jQuery(this).attr('lb_content');
425
- var html= '<div id="acx_fsmi_c_icon_p_info_lb_h" style="display:none;"><div class="acx_fsmi_c_icon_p_info_c"><span class="acx_fsmi_c_icon_p_info_close" onclick="remove_info()"></span><h4>'+lb_title+'</h4><div class="acx_fsmi_c_icon_p_info_content">'+lb_content+'</div></div></div> <!-- acx_fsmi_c_icon_p_info_lb_h -->';
426
- jQuery( "body" ).append(html)
427
- jQuery( "#acx_fsmi_c_icon_p_info_lb_h" ).fadeIn();
428
- });
429
-
430
- function remove_info()
431
- {
432
- jQuery( "#acx_fsmi_c_icon_p_info_lb_h" ).fadeOut()
433
- jQuery( "#acx_fsmi_c_icon_p_info_lb_h" ).remove();
434
- };
435
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
style_for_admin.css DELETED
@@ -1,1235 +0,0 @@
1
- @import url(https://fonts.googleapis.com/css?family=Roboto);
2
- @font-face {
3
- font-family: 'agency_fbbold';
4
- src: url('images/fonts/agencyb-webfont.eot');
5
- src: url('images/fonts/agencyb-webfont.eot?#iefix') format('embedded-opentype'),
6
- url('images/fonts/agencyb-webfont.woff') format('woff'),
7
- url('images/fonts/agencyb-webfont.ttf') format('truetype'),
8
- url('images/fonts/agencyb-webfont.svg#agency_fbbold') format('svg');
9
- font-weight: normal;
10
- font-style: normal;
11
- }
12
- /* Regular */
13
- @font-face {
14
- font-family: 'OpenSans-Regular';
15
-
16
- src: url('images/fonts/OpenSans-Regular-webfont.eot');
17
- src: url('images/fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
18
- url('images/fonts/OpenSans-Regular-webfont.woff') format('woff'),
19
- url('images/fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
20
- url('images/fonts/OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg');
21
- font-weight: normal;
22
- font-weight: 400;
23
- font-style: normal;
24
- }
25
- /* Semibold */
26
- @font-face {
27
- font-family: 'OpenSans-Semibold';
28
- src: url('images/fonts/OpenSans-Semibold-webfont.eot');
29
- src: url('images/fonts/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'),
30
- url('images/fonts/OpenSans-Semibold-webfont.woff') format('woff'),
31
- url('images/fonts/OpenSans-Semibold-webfont.ttf') format('truetype'),
32
- url('images/fonts/OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg');
33
- font-weight: 500;
34
- font-style: normal;
35
- }
36
- /* Oswald-Regular */
37
- @font-face {
38
- font-family: 'Oswald-Regular';
39
- src:url('images/fonts/Oswald-Regular.ttf') format('truetype');
40
- font-weight:normal;
41
- font-style: normal;
42
- }
43
- @font-face {
44
- font-family: 'Raleway';
45
- font-style: normal;
46
- font-weight: 400;
47
- src: url('images/fonts/raleway.woff') format('woff');
48
- }
49
- @font-face {
50
- font-family: 'Courgette';
51
- font-style: normal;
52
- font-weight: 400;
53
- src: url('images/fonts/courgette.woff') format('woff');
54
- }
55
- #icon_selection
56
- {
57
- background: none repeat scroll 0 0 white;
58
- color: black;
59
- text-shadow: 0 0 1px white;
60
- }
61
- #icon_selection:hover
62
- {
63
- background: none repeat scroll 0 0 LightYellow;
64
- display: block;
65
- }
66
- #acx_si_theme_display .selected
67
- {
68
- background: none repeat scroll 0 0 LightYellow;
69
- border: 1px dashed gray !important;
70
- display: block;
71
- }
72
- /********************************************************************************/
73
- .acx_fsmi_page_h2
74
- {
75
- font-family: Roboto,"Open Sans",sans-serif;
76
- font-size: 22px !important;
77
- margin: 0 !important;
78
- width: 100%;
79
- }
80
- #acx_fsmi_admin_left_section h4 {
81
- box-sizing: border-box;
82
- color: #393939;
83
- font-weight: normal;
84
- margin: 0;
85
- padding: 7px;
86
- text-transform: capitalize;
87
- width: 100%;
88
- }
89
- .acx_fsmi_admin_left {
90
- display: inline-block;
91
- max-width: 99%;
92
- padding-left: 1%;
93
- }
94
- #acx_fsmi_admin_left_section
95
- {
96
- background: #f0f0f0 none repeat scroll 0 0;
97
- border: 1px solid lightgray;
98
- box-sizing: border-box;
99
- display: inline-block;
100
- margin-bottom: 10px;
101
- width: 100%;
102
- }
103
- .acx_fsmi_admin_left_section_c
104
- {
105
- background: white none repeat scroll 0 0;
106
- box-sizing: border-box;
107
- padding: 5px;
108
- width: 100%;
109
- display:inline-block;
110
- }
111
- .acx_fsmi_admin_left_section_c .field_label
112
- {
113
- float: left;
114
- width: 20%;
115
- }
116
- .acx_fsmi_admin_left_section_c .field_sep {
117
- float: left;
118
- height: 10px;
119
- width: 100%;
120
- }
121
-
122
- .acx_fsmi_admin_left_section_c input {
123
- float: left;
124
- margin-top: 10px;
125
- width: 78%;
126
- }
127
- .acx_fsmi_admin_left_section_c select {
128
- float: left;
129
- margin-top: 10px;
130
- width: 78%;
131
- }
132
- #acurax_si_form, #acurax_si_misc_form
133
- {
134
- max-width: 95%;
135
- width: 765px;
136
- float:left;
137
- }
138
- /* sidebar */
139
- #acx_fsmi_sidebar
140
- {
141
- float:left;
142
- width:28%;
143
- margin-left:2%;
144
- display:none;
145
- }
146
- #acx_fsmi_sidebar .acx_fsmi_sidebar_widget
147
- {
148
- border: 1px dotted lightgray;
149
- box-sizing: border-box;
150
- float: left;
151
- margin-bottom: 15px;
152
- min-height: 100px;
153
- width: 100%;
154
- }
155
- #acx_fsmi_sidebar .acx_fsmi_sidebar_w_title
156
- {
157
- background: lavender none repeat scroll 0 0;
158
- box-sizing: border-box;
159
- font-family: arial;
160
- font-size: 14px;
161
- font-weight: bold;
162
- padding: 10px;
163
- width: 100%;
164
- }
165
- #acx_fsmi_sidebar .acx_fsmi_sidebar_w_content
166
- {
167
- box-sizing: border-box;
168
- display: table;
169
- font-family: arial;
170
- font-size: 12px;
171
- line-height: 20px;
172
- padding: 10px;
173
- width: 100%;
174
- }
175
- /* End sidebar */
176
- #acx_fsmi_c_icon_p_info_lb_h
177
- {
178
- background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
179
- height: 100%;
180
- left: 0;
181
- position: fixed;
182
- top: 0;
183
- width: 100%;
184
- z-index: 199999;
185
- }
186
- #acx_fsmi_c_icon_p_info_lb_h .acx_fsmi_c_icon_p_info_c
187
- {
188
- background: white none repeat scroll 0 0;
189
- border: 1px solid lightblue;
190
- border-radius: 2px;
191
- box-sizing: border-box;
192
- margin-left: 24%;
193
- margin-top: 7%;
194
- position: relative;
195
- width: 50%;
196
- }
197
- #acx_fsmi_c_icon_p_info_lb_h .acx_fsmi_c_icon_p_info_close
198
- {
199
- background: rgba(0, 0, 0, 0) url("images/close.png") repeat scroll 0 0;
200
- cursor: pointer;
201
- height: 30px;
202
- position: absolute;
203
- right: 0;
204
- top: 0;
205
- width: 35px;
206
- }
207
- #acx_fsmi_c_icon_p_info_lb_h h4
208
- {
209
- background: #f0f0f0 none repeat scroll 0 0;
210
- box-sizing: border-box;
211
- font-family: arial;
212
- font-size: 16px;
213
- font-weight: normal;
214
- margin: 0;
215
- padding: 8px;
216
- }
217
- #acx_fsmi_c_icon_p_info_lb_h .acx_fsmi_c_icon_p_info_content
218
- {
219
- background: white none repeat scroll 0 0;
220
- box-sizing: border-box;
221
- font-family: arial;
222
- font-size: 16px;
223
- line-height: 22px;
224
- min-height: 100px;
225
- padding: 15px;
226
- color:#707171;
227
- }
228
- .acx_fsmi_c_icon_p_info_content a {
229
- border-bottom: 1px dashed;
230
- font-family: arial;
231
- font-size: 15px;
232
- font-style: normal;
233
- text-decoration: none;
234
- }
235
- .fsmi_p_info_icon_h
236
- {
237
- background: rgba(0, 0, 0, 0) url("images/p-info-icon-hori.jpg") repeat scroll 0 0;
238
- display: block;
239
- float: left;
240
- height: 33px;
241
- margin-top: 5px;
242
- max-width: 78%;
243
- width: 582px;
244
- cursor:pointer;
245
- }
246
- .fsmi_p_info_start_end
247
- {
248
- background: rgba(0, 0, 0, 0) url("images/p-info-start-end.jpg") repeat scroll 0 0 / 100% auto;
249
- display: block;
250
- height: 463px;
251
- margin-left: auto;
252
- margin-right: auto;
253
- max-width: 100%;
254
- cursor:pointer;
255
- width: 686px;
256
- }
257
- /********************************************************************************/
258
- #acx_si_theme_display
259
- {
260
- color: #737171;
261
- display: block;
262
- font-size: 12px;
263
- margin-left: auto;
264
- margin-right: auto;
265
- max-height: 312px;
266
- overflow-y: scroll;
267
- padding: 5px 7px 10px;
268
- text-shadow: 0 0 1px #F7F7F7;
269
- width: 99%;
270
- }
271
- #acx_si_theme_display .acx_si_single_theme_display
272
- {
273
- border: 1px solid lightgray;
274
- float: left;
275
- height: 51px;
276
- margin-bottom: 8px;
277
- margin-left: 7px;
278
- padding: 2px;
279
- width: 340px;
280
- }
281
- #acx_si_theme_display .acx_si_single_label
282
- {
283
- float: left;
284
- font-weight: bold;
285
- padding-top: 6px;
286
- text-align: center;
287
- width: 70px;
288
- }
289
- #acx_si_theme_display .image_div
290
- {
291
- float:left;
292
- }
293
- #acx_si_theme_display .image_div img
294
- {
295
- border: 0 none;
296
- margin-top: 6px;
297
- width: 36px;
298
- margin-left:1px;
299
- }
300
- #acx_help_page
301
- {
302
- }
303
- #acx_help_page h3
304
- {
305
- color: SeaGreen;
306
- font-family: arial;
307
- font-size: 18px;
308
- padding-bottom: 5px;
309
- }
310
- #acx_help_page .q
311
- {
312
- border-bottom: 1px dotted lightgray;
313
- color: gray;
314
- font-family: arial;
315
- font-size: 14px;
316
- font-weight: bold;
317
- margin-top: 50px;
318
- padding-top: 5px;
319
- }
320
- #acx_help_page .a
321
- {
322
- font-style: italic;
323
- }
324
- #acurax_notice
325
- {
326
- background-color: #FFEBE8;
327
- border: 1px solid #E6DB55;
328
- border-radius: 5px 5px 5px 5px;
329
- color: darkRed;
330
- font-family: arial;
331
- font-weight: bold;
332
- padding: 8px;
333
- font-size:14px;
334
- }
335
- #acurax_notice select
336
- {
337
- font-weight:normal;
338
- }
339
- #contentLeft ul{
340
- display: inline-block;
341
- list-style: none outside none;
342
- }
343
- #contentLeft img
344
- {
345
- width: 40px;
346
- }
347
- #contentLeft li {
348
- border: 1px solid #CCCCCC;
349
- background:white;
350
- color: black;
351
- cursor: move;
352
- float: left;
353
- font-family: arial;
354
- font-size: 15px;
355
- list-style: none outside none;
356
- margin-left: 3px;
357
- min-width: 70px;
358
- padding: 5px;
359
- text-align: center;
360
- }
361
- #wtd
362
- {
363
- background: url("images/wtd.jpg") repeat scroll 0 0 transparent;
364
- display: block;
365
- height: 50px;
366
- margin-right: 8px;
367
- margin-top: 4px;
368
- width: 240px;
369
- float:left;
370
- border: 3px solid gray;
371
- box-shadow: 1px 1px 11px -5px black;
372
- }
373
- #wd
374
- {
375
- background: url("images/wd.jpg") repeat scroll 0 0 transparent;
376
- display: block;
377
- height: 50px;
378
- margin-right: 8px;
379
- margin-top: 4px;
380
- width: 240px;
381
- float:left;
382
- border: 3px solid gray;
383
- box-shadow: 1px 1px 11px -5px black;
384
- }
385
- #wrd
386
- {
387
- background: url("images/wr.jpg") repeat scroll 0 0 transparent;
388
- display: block;
389
- height: 50px;
390
- margin-right: 8px;
391
- margin-top: 4px;
392
- width: 240px;
393
- float:left;
394
- border: 3px solid gray;
395
- box-shadow: 1px 1px 11px -5px black;
396
- }
397
- #spd
398
- {
399
- background: url("images/spd.jpg") repeat scroll 0 0 transparent;
400
- display: block;
401
- height: 50px;
402
- margin-right: 8px;
403
- margin-top: 4px;
404
- width: 240px;
405
- float:left;
406
- border: 3px solid gray;
407
- box-shadow: 1px 1px 11px -5px black;
408
- }
409
- #ad_fsmi_2
410
- {
411
- background: url("images/lq.jpg") repeat scroll 0 0 transparent;
412
- border: 2px dashed black;
413
- border-radius: 10px 10px 10px 10px;
414
- height: 366px;
415
- margin-left: auto;
416
- margin-right: auto;
417
- margin-top: 10px;
418
- position: relative;
419
- width: 653px;
420
- }
421
- #ad_fsmi_2_button
422
- {
423
- bottom: 5px;
424
- cursor: pointer;
425
- display: block;
426
- height: 32px;
427
- position: absolute;
428
- right: 4px;
429
- width: 130px;
430
- }
431
- #ad_fsmi_2_button_order
432
- {
433
- background: url("images/button.jpg") no-repeat scroll center 0 #FFFFFF;
434
- cursor: pointer;
435
- display: block;
436
- height: 115px;
437
- margin-left: auto;
438
- margin-right: auto;
439
- width: 283px;
440
- }
441
- #ad_fsmi_2_button_order_link
442
- {
443
- cursor: pointer;
444
- display: block;
445
- height: 115px;
446
- margin-left: auto;
447
- margin-right: auto;
448
- width: 283px;
449
- }
450
- #ad_fsmi_2_button_payments
451
- {
452
- background: url("images/payments.jpg") repeat scroll 0 0 transparent;
453
- height: 86px;
454
- display: block;
455
- cursor: pointer;
456
- margin-left: auto;
457
- margin-right: auto;
458
- width: 601px;
459
- }
460
- #ad_fsmi_2_button_payments_link
461
- {
462
- height: 86px;
463
- display: block;
464
- cursor: pointer;
465
- width: 601px;
466
- }
467
- #acx_fsmi_premium {
468
- background: url("images/dyk.png") no-repeat scroll 20px 3px #fff6d6;
469
- border: 1px solid #fcc328;
470
- float: left;
471
- margin-bottom: 20px;
472
- margin-top: 0;
473
- min-height: 40px;
474
- padding: 5px 0;
475
- text-align: left;
476
- text-indent: 105px;
477
- width: 100%;
478
- }
479
- #acx_fsmi_premium a
480
- {
481
- font-family: sans-serif;
482
- font-size: 21px;
483
- text-decoration:none;
484
- }
485
- #acx_backlink
486
- {
487
- background-color: #FFECB3;
488
- border: 1px solid #E0AB1B;
489
- border-radius: 5px 5px 5px 5px;
490
- float: left;
491
- padding: 0 5px;
492
- margin-bottom:6px;
493
- }
494
- #acx_td_fsmi {
495
- background: white url("images/thank-you.png") no-repeat scroll 25px center;
496
- border: 1px solid lightsteelblue;
497
- border-radius: 3px;
498
- box-sizing: border-box;
499
- font-family: arial;
500
- font-size: 12px;
501
- line-height: 25px !important;
502
- padding: 10px 10px 10px 93px;
503
- text-align: center;
504
- }
505
- #acx_td_fsmi a {
506
- font-family: arial;
507
- font-weight: bold;
508
- margin-left: 16px;
509
- text-transform: capitalize;
510
- }
511
- /* Comparison 2014 Starts Here */
512
- #ss_middle_wrapper
513
- {
514
- background: none repeat scroll 0 0 #D5D5D5;
515
- border-top: 1px solid #29A2DF;
516
- min-height: 500px;
517
- width: 100%;
518
- float:left;
519
- }
520
- #ss_middle_wrapper h2
521
- {
522
- color: #000000;
523
- font-family: 'agency_fbbold';
524
- font-size: 52px;
525
- font-weight: normal;
526
- margin: 0;
527
- line-height: 1;
528
- text-transform: uppercase;
529
- }
530
- #ss_middle_wrapper h3
531
- {
532
- line-height: 1;
533
- color: #29a2df;
534
- font-family: 'agency_fbbold';
535
- font-size: 26px;
536
- font-weight: normal;
537
- margin: 0;
538
- text-transform: uppercase;
539
- }
540
- #ss_middle_center
541
- {
542
- background: #ececec;
543
- margin: 0 auto;
544
- width: 1006px;
545
- }
546
- #ss_middle_inline_block
547
- {
548
- display: inline-block;
549
- padding: 33px;
550
- width: 940px;
551
- }
552
- .middle_h2_1
553
- {
554
- background: url("images/girl.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
555
- height: 149px;
556
- padding-left: 154px;
557
- padding-top: 53px;
558
- width: 786px;
559
- float: left;
560
- }
561
- #ss_features_table
562
- {
563
- background: url("images/ss_table_footer.png") no-repeat scroll center bottom rgba(0, 0, 0, 0);
564
- float: left;
565
- margin: -62px 0 0;
566
- width: 940px;
567
- }
568
- #ss_table_header
569
- {
570
- width: 940px;
571
- float: left;
572
- height: 118px;
573
- }
574
- #ss_table_header h3
575
- {
576
- color: #FFFFFF;
577
- font-family: arial;
578
- font-size: 14px;
579
- font-weight: bolder;
580
- line-height: 1;
581
- text-align: center;
582
- }
583
- .tb_h1
584
- {
585
- background: url("images/table_head_1.jpg") no-repeat scroll left 0 rgba(0, 0, 0, 0);
586
- padding: 21px 0;
587
- width: 178px;
588
- float: left;
589
- margin: 62px 0 0;
590
- }
591
- .tb_h2
592
- {
593
- background: url("images/table_head_2.jpg") no-repeat scroll left 0 rgba(0, 0, 0, 0);
594
- padding: 21px 0;
595
- width: 340px;
596
- float: left;
597
- margin: 62px 0 0;
598
- }
599
- .tb_h3
600
- {
601
- background: url("images/table_head_3.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
602
- width: 211px;
603
- height: 88px;
604
- float: left;
605
- margin: 30px 0 0;
606
- position: relative;
607
- }
608
- .ss_download
609
- {
610
- height: 32px;
611
- left: 94px;
612
- position: absolute;
613
- top: 44px;
614
- width: 102px;
615
- }
616
- .tb_h4
617
- {
618
- background: url("images/table_head_4.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
619
- width: 211px;
620
- height: 118px;
621
- float: left;
622
- position: relative;
623
- }
624
- .ss_buy_now
625
- {
626
- height: 65px;
627
- left: 2px;
628
- position: absolute;
629
- top: 51px;
630
- width: 207px;
631
- }
632
- .ss_column_holder
633
- {
634
- background: none repeat scroll 0 0 #FFFFFF;
635
- border-bottom: 1px solid #E6E6E6;
636
- float: left;
637
- width: 940px;
638
- }
639
- .ss_feature_group
640
- {
641
- color: #33a9e1;
642
- font-family: arial;
643
- font-size: 14px;
644
- font-weight: bolder;
645
- line-height: 1;
646
- text-align: center;
647
- float: left;
648
- width: 176px;
649
- }
650
- .ss_features
651
- {
652
- border-left: 1px solid #E6E6E6;
653
- color: #737373;
654
- font-family: arial;
655
- font-size: 12px;
656
- line-height: 1;
657
- float: left;
658
- }
659
- .ss_features ul
660
- {
661
- margin: 0;
662
- padding: 0;
663
- }
664
- .ss_features ul li
665
- {
666
- border-bottom: 1px solid #E6E6E6;
667
- list-style: none outside none;
668
- padding: 13px;
669
- width: 315px;
670
- margin-bottom: 0;
671
- }
672
- .ss_features ul li a
673
- {
674
- color: #29A2DF;
675
- float: right;
676
- font-family: arial;
677
- font-size: 12px;
678
- font-weight: normal;
679
- text-decoration: none;
680
- transition: all 0.3s ease 0s;
681
- }
682
- .ss_features ul li a:hover
683
- {
684
- color: #006496;
685
- }
686
- .ss_last_one
687
- {
688
- border: 0 none !important;
689
- }
690
- .ss_y_n_holder
691
- {
692
- border-left: 1px solid #E6E6E6;
693
- float: left;
694
- width: 210px;
695
- }
696
- .ss_yes
697
- {
698
- background: url("images/ss_yes.png") no-repeat scroll center center rgba(0, 0, 0, 0);
699
- border-bottom: 1px solid #E6E6E6;
700
- height: 38px;
701
- width: 210px;
702
- }
703
- .ss_no
704
- {
705
- background: url("images/ss_no.png") no-repeat scroll center center rgba(0, 0, 0, 0);
706
- border-bottom: 1px solid #E6E6E6;
707
- height: 38px;
708
- width: 210px;
709
- }
710
- .order_now
711
- {
712
- float: left;
713
- height: 105px;
714
- margin: 28px 0 19px 323px;
715
- width: 310px;
716
- }
717
- .ss_column_holder .mini
718
- {
719
- display:none;
720
- }
721
-
722
- /* Comparison 2014 Ends Here */
723
- #acx_td p .button
724
- {
725
- border: 1px solid lightgray;
726
- margin: 0 3px 0 0 !important;
727
- min-height: 30px !important;
728
- padding: 3px 10px !important;
729
- }
730
- #acx_td p .button:hover
731
- {
732
- background: azure;
733
- }
734
- #acx_trouble_ul
735
- {
736
- display: inline-block;
737
- list-style: none outside none;
738
- width: 100%;
739
- }
740
- #acx_trouble_ul li
741
- {
742
- background: url("images/tag.png") no-repeat scroll 6px center #F8F8FF;
743
- border: 1px dashed #808080;
744
- color: #006400;
745
- float: left;
746
- font-size: 13px;
747
- list-style: none outside none;
748
- margin-left: 2px;
749
- margin-right: 2px;
750
- padding: 5px;
751
- text-indent: 24px;
752
- text-transform: capitalize;
753
- }
754
- #acx_trouble_ul li a
755
- {
756
- text-decoration:none !important;
757
- color:#006400;
758
- }
759
- .acx_trouble_fixit
760
- {
761
- background: url("images/fix.png") no-repeat scroll 5px center #F0FFF0;
762
- border-bottom: 1px solid #D3D3D3;
763
- border-radius: 5px;
764
- border-right: 1px solid #D3D3D3;
765
- margin-left: 10px;
766
- padding: 4px 10px 4px 28px;
767
- }
768
- /* Starting CSS for Quick Request Form */
769
- #acx_quick_request_form
770
- {
771
- background: none repeat scroll 0 0 white;
772
- border: 1px solid lightgray;
773
- border-radius: 1px;
774
- height: 390px;
775
- margin-left: auto;
776
- margin-right: auto;
777
- margin-top: 20px;
778
- padding: 10px;
779
- width: 350px;
780
- }
781
- #acx_quick_request_form input
782
- {
783
- border: 1px solid #20B2AA;
784
- width: 245px;
785
- }
786
- #acx_quick_request_form textarea
787
- {
788
- border: 1px solid #20B2AA;
789
- width: 245px;
790
- height:100px;
791
- }
792
- #acx_quick_request_form .acx_qr_label
793
- {
794
- float: left;
795
- font-family: arial;
796
- min-width: 90px;
797
- padding-right: 10px;
798
- padding-top: 6px;
799
- margin-bottom:5px;
800
- }
801
- #acx_quick_request_form .acx_qr_field
802
- {
803
- float: left;
804
- margin-bottom:5px;
805
- }
806
- #acx_quick_request_form span
807
- {
808
- color:red;
809
- }
810
- #acx_quick_request_form h2
811
- {
812
- font-family: arial;
813
- font-size: 17px;
814
- line-height: 28px;
815
- margin: 0 0 14px;
816
- text-align: center;
817
- text-transform: capitalize;
818
- }
819
- /* Ending CSS for Quick Request Form */
820
- /* Starting Ad Banner Code */
821
- #acx_ad_banners_fsmi
822
- {
823
- float: left;
824
- margin-bottom: 10px;
825
- min-height: 80px;
826
- width: 100%;
827
- }
828
- #acx_ad_banners_fsmi .acx_ad_fsmi_1
829
- {
830
- border: 1px solid lightgray;
831
- display: block;
832
- float: left;
833
- height: auto;
834
- margin-bottom: 12px;
835
- overflow: hidden;
836
- padding-bottom: 15px;
837
- text-decoration: none;
838
- width: 100%;
839
- }
840
- #acx_ad_banners_fsmi .acx_ad_fsmi_title
841
- {
842
- background: lavender none repeat scroll 0 0;
843
- box-sizing: border-box;
844
- color: black;
845
- float: left;
846
- font-family: arial;
847
- font-size: 14px;
848
- font-weight: bold;
849
- opacity: 0.8;
850
- padding: 10px;
851
- text-align: left;
852
- width: 100%;
853
- }
854
- #acx_ad_banners_fsmi .acx_ad_fsmi_1:hover {
855
- border: 1px solid #00a0d2;
856
- }
857
- #acx_ad_banners_fsmi .acx_ad_fsmi_desc
858
- {
859
- background: rgba(0, 0, 0, 0) url("images/wp.png") no-repeat scroll 5px 0;
860
- box-sizing: border-box;
861
- color: black;
862
- float: left;
863
- font-family: arial;
864
- font-size: 13px;
865
- height: 32px;
866
- padding-right:3px;
867
- margin-top: 15px;
868
- padding-left: 42px;
869
- padding-top: 6px;
870
- text-transform: capitalize;
871
- width: 100%;
872
- }
873
- #acx_ad_banners_fsmi .acx_ad_fsmi_desc2
874
- {
875
- background: url("images/des.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
876
- }
877
- #acx_ad_banners_fsmi .acx_ad_fsmi_desc3
878
- {
879
- background: url("images/plug.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
880
- }
881
- #acx_ad_banners_fsmi .acx_ad_fsmi_desc4
882
- {
883
- background: url("images/quick.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
884
- }
885
- /* Ending Ad Banner Code */
886
- #floating-social-media-icon, #floating-social-media-icon .column-description,#floating-social-media-icon .check-column
887
- {
888
- background: url("images/plugin_page_bg.png") repeat-x scroll 0 0 #FFFFFF;
889
- }
890
- #plugin_page_links
891
- {
892
- background: none repeat scroll 0 0 #87CEFA;
893
- border-radius: 8px;
894
- color: #2F4F4F;
895
- min-height: 22px;
896
- margin-top: 15px;
897
- padding: 5px;
898
- text-align: center;
899
- }
900
- #floating-social-media-icon .plugin-title
901
- {
902
- background: url("images/from.png") no-repeat scroll 45% 90% transparent;
903
- }
904
- #plugin_page_links a
905
- {
906
- color: #2f4f4f;
907
- font-family: arial;
908
- font-size: 12px;
909
- padding: 1px 8px;
910
- }
911
- #plugin_page_links a:hover
912
- {
913
- text-decoration:underline;
914
- }
915
-
916
- @media screen and (min-width:840px)
917
- {
918
- #acx_fsmi_sidebar
919
- {
920
- display:block;
921
- }
922
- #acurax_si_form, #acurax_si_misc_form
923
- {
924
- max-width: 68%;
925
- }
926
- }
927
- /* STYLES Expert Support */
928
- .acx_fsmi_es_common_raw
929
- {
930
- border: 1px dotted white;
931
- border-radius: 8px;
932
- float: left;
933
- width: 98%;
934
- }
935
-
936
- .acx_fsmi_es_common_bg
937
- {
938
- background:#004050;
939
- }
940
- .acx_fsmi_es_middle_section
941
- {
942
- margin-left:auto;
943
- margin-right:auto;
944
- }
945
-
946
- .acx_fsmi_es_acx_content_area
947
- {
948
- float:left;
949
- width:100%;
950
- padding: 25px 0;
951
- }
952
-
953
- .acx_fsmi_es_wp_left_area
954
- {
955
- float:left;
956
- width:550px;
957
- padding-right: 60px;
958
- }
959
- .acx_fsmi_es_wp_left_content_inner
960
- {
961
- float:left;
962
- width:100%;
963
- }
964
-
965
- .acx_fsmi_es_wp_main_head
966
- {
967
- float:left;
968
- display:table;
969
- color:#66d1ec;
970
- font-family:Oswald-Regular;
971
- font-size:32px;
972
- line-height:44px;
973
- text-align:left;
974
- margin-bottom: 20px;
975
- }
976
-
977
- .acx_fsmi_es_wp_sub_para_des
978
- {
979
- float:left;
980
- display:table;
981
- color:#fff;
982
- font-family:Opensans-Regular;
983
- font-size:14px;
984
- line-height:24px;
985
- text-align:left;
986
- margin-bottom: 15px;
987
- }
988
-
989
- .acx_fsmi_es_wp_sub_para_des a,
990
- .acx_fsmi_es_wp_footer_area_desc a
991
- {
992
- color:#3ad0f5;
993
- display:inline;
994
- text-decoration:underline;
995
- }
996
-
997
- .acx_fsmi_es_wp_sub_para_des a:hover
998
- {
999
- color:#ffbf43;
1000
- }
1001
-
1002
- .acx_fsmi_es_wp_acx_service_list
1003
- {
1004
- float:left;
1005
- width:100%;
1006
- }
1007
-
1008
- .acx_fsmi_es_wp_acx_service_list ul
1009
- {
1010
- display:block;
1011
- float:left;
1012
- width:100%;
1013
- }
1014
-
1015
- .acx_fsmi_es_wp_acx_service_list ul li
1016
- {
1017
- color:#fff;
1018
- font-family:Opensans-Semibold;
1019
- font-size:14px;
1020
- text-align:left;
1021
- display:block;
1022
- margin-top:10px;
1023
- padding-left:20px;
1024
- background-repeat:no-repeat;
1025
- background-position:0px 6px;
1026
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAJCAYAAAAPU20uAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAExJREFUeNqM0LENgDAQQ9FLxwJMwUBswhjUbJJxmIGa4lGgdFzIl9xZlu1AxYL4Uni5cWDODI0LG6bM0DixohSInP03YbhDd0X3h2cAIc3gGqTftKUAAAAASUVORK5CYII=);
1027
- }
1028
-
1029
-
1030
- .acx_fsmi_es_wp_send_ylw_para
1031
- {
1032
- float:left;
1033
- display:table;
1034
- color:#ffde9e;
1035
- font-family:Opensans-Regular;
1036
- font-size:13px;
1037
- line-height:22px;
1038
- text-align:left;
1039
- margin-top:25px;
1040
- }
1041
-
1042
-
1043
- .acx_fsmi_es_wp_right_area
1044
- {
1045
- width:350px;
1046
- float:left;
1047
- }
1048
-
1049
- .acx_fsmi_es_wp_right_inner_form_wrap
1050
- {
1051
- float:left;
1052
- width:100%;
1053
- }
1054
-
1055
- .acx_fsmi_es_wp_inner_wp_form
1056
- {
1057
- width:100%;
1058
- float:left;
1059
- background:#134d5b;
1060
- padding:40px 30px;
1061
- border-radius:3px;
1062
- }
1063
-
1064
- .acx_fsmi_es_wp_form_head
1065
- {
1066
- float:left;
1067
- display:table;
1068
- color:#ffde9e;
1069
- font-family:Opensans-Semibold;
1070
- font-size:18px;
1071
- line-height:26px;
1072
- text-align:center;
1073
- margin-bottom: 20px;
1074
- }
1075
-
1076
- form.acx_fsmi_es_wp_support_acx
1077
- {
1078
- display:block;
1079
- float:left;
1080
- width:100%;
1081
- }
1082
- span.acx_fsmi_es_cnvas_input
1083
- {
1084
- display:block;
1085
- float:left;
1086
- width:100%;
1087
- margin-bottom:8px;
1088
- }
1089
-
1090
- span.acx_fsmi_es_cnvas_input input,
1091
- span.acx_fsmi_es_cnvas_input textarea
1092
- {
1093
- display:block;
1094
- float:left;
1095
- width:100%;
1096
- padding:8px 10px;
1097
- font-family:Opensans-Regular;
1098
- font-size:14px;
1099
- color:#444;
1100
- border:none;
1101
- border-radius:3px;
1102
- }
1103
-
1104
- span.acx_fsmi_es_cnvas_input input.acx_fsmi_es_wp_acx_submit
1105
- {
1106
- background:#ffb11a;
1107
- font-family:Opensans-Semibold;
1108
- font-size:16px;
1109
- color:#7d5200;
1110
- cursor:pointer;
1111
- }
1112
- span.acx_fsmi_es_cnvas_input input.acx_fsmi_es_wp_acx_submit:hover
1113
- {
1114
- background:#ff961a;
1115
- }
1116
-
1117
- .acx_fsmi_es_footer_content_cvr
1118
- {
1119
- display:block;
1120
- float:left;
1121
- width:100%;
1122
- padding: 20px 0;
1123
- border-top:1px solid #072e38;
1124
- }
1125
-
1126
- .acx_fsmi_es_wp_footer_area_desc
1127
- {
1128
- float:left;
1129
- display:table;
1130
- color:#5f93a0;
1131
- font-family:Opensans-Regular;
1132
- font-size:11px;
1133
- line-height:14px;
1134
- text-align:left;
1135
- }
1136
- /***** Desktop *****/
1137
-
1138
- @media screen and (min-width:1024px)
1139
- {
1140
- .acx_fsmi_es_middle_section
1141
- {
1142
- max-width:1000px;
1143
- }
1144
- }
1145
-
1146
- /***** Small Desktop Tablets *****/
1147
-
1148
- @media screen and (min-width:960px) and (max-width:1023px)
1149
- {
1150
- .acx_fsmi_es_middle_section
1151
- {
1152
- max-width:900px;
1153
- }
1154
- .acx_fsmi_es_wp_right_area {
1155
- width: 380px;
1156
- }
1157
-
1158
- .acx_fsmi_es_wp_left_area {
1159
- width: 520px;
1160
- }
1161
- }
1162
-
1163
- /***** portrait Tablets *****/
1164
-
1165
- @media screen and (min-width:768px) and (max-width:1245px)
1166
- {
1167
- .acx_fsmi_es_middle_section
1168
- {
1169
- max-width:700px;
1170
- }
1171
- .acx_fsmi_es_wp_right_area {
1172
- width: 100%;
1173
- margin-top:50px
1174
- }
1175
-
1176
- .acx_fsmi_es_wp_left_area {
1177
- width:100%;
1178
- padding:0;
1179
- }
1180
- .acx_fsmi_es_half_width_sec {
1181
- width: 49% !important;
1182
- }
1183
-
1184
- .acx_fsmi_es_haif_marg_left
1185
- {
1186
- margin-left:1%;
1187
- }
1188
-
1189
- .acx_fsmi_es_haif_marg_right
1190
- {
1191
- margin-right:1%;
1192
- }
1193
- }
1194
- /***** Smart Phones *****/
1195
-
1196
- @media screen and (min-width:540px) and (max-width:767px)
1197
- {
1198
- .acx_fsmi_es_middle_section
1199
- {
1200
- max-width:500px;
1201
- }
1202
- .acx_fsmi_es_wp_right_area {
1203
- width: 100%;
1204
- margin-top:50px
1205
- }
1206
-
1207
- .acx_fsmi_es_wp_left_area {
1208
- width:100%;
1209
- padding:0;
1210
- }
1211
- }
1212
-
1213
- /***** Small Screens (Mobiles) *****/
1214
-
1215
- @media screen and (max-width:539px)
1216
- {
1217
- .acx_fsmi_es_middle_section
1218
- {
1219
- max-width:90%;
1220
- }
1221
- .acx_fsmi_es_wp_right_area
1222
- {
1223
- width: 100%;
1224
- margin-top:50px
1225
- }
1226
- .acx_fsmi_es_wp_left_area
1227
- {
1228
- width:100%;
1229
- padding:0;
1230
- }
1231
- .acx_fsmi_es_wp_inner_wp_form
1232
- {
1233
- padding: 40px 15px;
1234
- }
1235
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
troubleshoot.php DELETED
@@ -1,72 +0,0 @@
1
- <?php
2
- if(ISSET($_GET['quickfix']))
3
- {
4
- $quick_fix = sanitize_text_field($_GET['quickfix']);
5
- } else
6
- {
7
- $quick_fix = "";
8
- }
9
- if(ISSET($_GET['sid']))
10
- {
11
- $sid = sanitize_text_field($_GET['sid']);
12
- } else
13
- {
14
- $sid = "";
15
- }
16
- if (!wp_verify_nonce($sid,'acx_fsmi_qfix'))
17
- {
18
- $sid = "";
19
- }
20
- if(!current_user_can('manage_options'))
21
- {
22
- $sid = "";
23
- }
24
-
25
- $fix_applied = 0;
26
- if($sid != "")
27
- {
28
- if($quick_fix == 1)
29
- {
30
- $social_icon_array_order = array(0,1,2,3,4,5,6); // Number Of Services
31
- $social_icon_array_order = serialize($social_icon_array_order);
32
- update_option('social_icon_array_order', $social_icon_array_order);
33
- $fix_applied = 1;
34
- }
35
- }
36
- $acx_installation_domain = $_SERVER['HTTP_HOST'];
37
- $acx_installation_domain = str_replace("www.","",$acx_installation_domain);
38
- $acx_installation_domain = str_replace(".","_",$acx_installation_domain);
39
- if($acx_installation_domain == "") { $acx_installation_domain = "not_defined";}
40
-
41
- if($_GET['page'] == "Acurax-Social-Icons-Expert-Support")
42
- {
43
- $acx_page_loaded = "_es";
44
- } else
45
- {
46
- $acx_page_loaded = "";
47
- }
48
-
49
-
50
- echo "<div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 15px; width: 95%; margin-top: 15px; border-radius: 15px; min-height: 450px;'>";
51
-
52
- if($fix_applied == 1)
53
- {
54
- echo "<div style='background: none repeat scroll 0% 0% lightgreen; width: 300px; text-align: center; margin-right: auto; margin-left: auto; padding: 7px 7px 5px; border-top-right-radius: 7px; border-top-left-radius: 7px; border-bottom: 2px solid green;'>Action Completed Successfully</div>";
55
- }
56
- if($_GET['page'] == "Acurax-Social-Icons-Expert-Support")
57
- {
58
- acx_fsmi_quick_form();
59
- } else
60
- {
61
- echo "<h2 class='acx_fsmi_page_h2'>Floating Social Media Icon Troubleshooting</h2>"; ?>
62
- <p style="font-weight:bold;text-align:center;color:darkred;">IMPORTANT NOTE: Please do troubleshooting only if you got instructions from support or know what you are going to do.</p>
63
- <p class="widefat" style="background: none repeat scroll 0% 0% menu; border-bottom: 2px dashed lavender; border-right: 2px dashed lavender; margin-bottom: 15px; margin-top: 8px; padding: 8px; width: 99%;"> <?php _e("1) Icon Selection Display Fix: " ); ?>
64
- <?php _e("If you cant find any icons on the icon theme/style selection section, try this fix" ); ?>
65
- <a href="admin.php?page=Acurax-Social-Icons-Troubleshooter&quickfix=1&sid=<?php echo wp_create_nonce('acx_fsmi_qfix'); ?>" class="acx_trouble_fixit">Click here to try this fix!</a>
66
- </p>
67
- <p style="text-align:center;">We will be adding more troubleshooting quick fix options according to users requests</p>
68
- <?php
69
- acx_fsmi_quick_form();
70
- }
71
- echo "</div>";
72
- ?>