WordPress Social Share, Social Login and Social Comments Plugin – Super Socializer - Version 7.0

Version Description

  • [New] Added more options to customize social share icons and counters
  • [New] Now choose from over 100 social sharing and bookmarking services, to display in sharing bar
  • [New] Official Like/Tweet/+1 buttons can also be included in sharing bar with other sharing icons
  • [New] Added option to load all Javascript files combined in single file in single request
  • [New] Added option to enable OpenShareCount and NewShareCounts APIs to fetch Twitter share counts
  • [New] Added option to specify custom CSS at "Super Socializer > General Options" page
  • [Bugfix] Social Login icons were appearing misaligned at WooCommerce Customer Login form
  • [Bugfix] Social Commenting was getting enabled on default pages and posts automatically, after updating the plugin to new version
  • [Bugfix] Vertical/Floating sharing bar/like buttons at homepage was sharing the url of first article at the page, instead of that of homepage
  • [Bugfix] User was not getting redirected to the same tab after saving changes, at plugin options page
  • [Improvement] Share counts are being rounded off instead of K+, M+ format
  • [Improvement] Admin UI improvement
  • [Improvement] Compatible with PHP 7 (Still, we recommend to check it first on your development environment before moving to production)
Download this release

Release Info

Developer the_champ
Plugin Icon 128x128 WordPress Social Share, Social Login and Social Comments Plugin – Super Socializer
Version 7.0
Comparing to
See all releases

Code changes from version 6.6.4 to 7.0

Files changed (43) hide show
  1. admin/general_options.php +98 -0
  2. admin/help.php +10 -4
  3. admin/like_buttons.php +210 -198
  4. admin/social_commenting.php +36 -30
  5. admin/social_login.php +32 -40
  6. admin/social_sharing.php +1167 -714
  7. css/admin.css +4 -1
  8. css/front.css +2 -1
  9. css/share-default-svg-horizontal.css +1 -0
  10. css/share-default-svg-vertical.css +1 -0
  11. css/share-hover-svg-horizontal.css +1 -0
  12. css/share-hover-svg-vertical.css +1 -0
  13. css/share-svg.css +8 -0
  14. helper.php +77 -25
  15. images/sharing/buffer_share.png +0 -0
  16. images/sharing/facebook_like.png +0 -0
  17. images/sharing/facebook_recommend.png +0 -0
  18. images/sharing/google_plus_share.png +0 -0
  19. images/sharing/google_plusone.png +0 -0
  20. images/sharing/index.php +1 -1
  21. images/sharing/linkedin_share.png +0 -0
  22. images/sharing/more_sprite.png +0 -0
  23. images/sharing/pinterest_pin.png +0 -0
  24. images/sharing/pullout.png +0 -0
  25. images/sharing/pushin.png +0 -0
  26. images/sharing/reddit_badge.png +0 -0
  27. images/sharing/sharing.png +0 -0
  28. images/sharing/stumbleupon_badge.png +0 -0
  29. images/sharing/twitter_tweet.png +0 -0
  30. images/sharing/xing_share.png +0 -0
  31. images/sharing/yummly_share.png +0 -0
  32. images/snaps/ss_twitter_username.png +0 -0
  33. inc/social_login.php +1 -1
  34. inc/social_sharing.php +158 -143
  35. inc/social_sharing_networks.php +114 -0
  36. inc/widget.php +20 -20
  37. js/admin/admin.js +39 -1
  38. js/admin/sharing/admin.js +250 -19
  39. js/front/combined.js +703 -0
  40. js/front/sharing/sharing.js +307 -345
  41. js/front/social_login/common.js +1 -1
  42. js/modernizr.custom.82187.js +0 -4
  43. languages/Super-Socializer.pot +1524 -0
admin/general_options.php ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') or die("Cheating........Uh!!");
3
+ ?>
4
+ <div id="fb-root"></div>
5
+
6
+ <div class="metabox-holder columns-2" id="post-body">
7
+ <form action="options.php" method="post">
8
+ <?php settings_fields('the_champ_general_options'); ?>
9
+ <div class="the_champ_left_column">
10
+ <div class="stuffbox">
11
+ <h3><label><?php _e('General Options', 'Super-Socializer');?></label></h3>
12
+ <div class="inside">
13
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
14
+ <tr>
15
+ <th>
16
+ <img id="the_champ_footer_script_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
17
+ <label for="the_champ_footer_script"><?php _e("Include Javascript in website footer", 'Super-Socializer'); ?></label>
18
+ </th>
19
+ <td>
20
+ <input id="the_champ_footer_script" name="the_champ_general[footer_script]" type="checkbox" <?php echo isset($theChampGeneralOptions['footer_script']) ? 'checked = "checked"' : '';?> value="1" />
21
+ </td>
22
+ </tr>
23
+
24
+ <tr class="the_champ_help_content" id="the_champ_footer_script_help_cont">
25
+ <td colspan="2">
26
+ <div>
27
+ <?php _e('If enabled (recommended), Javascript files will be included in the footer of your website.', 'Super-Socializer') ?>
28
+ </div>
29
+ </td>
30
+ </tr>
31
+
32
+ <tr>
33
+ <th>
34
+ <img id="the_champ_combined_script_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
35
+ <label for="the_champ_combined_script"><?php _e("Load all Javascript files in single file", 'Super-Socializer'); ?></label>
36
+ </th>
37
+ <td>
38
+ <input id="the_champ_combined_script" name="the_champ_general[combined_script]" type="checkbox" <?php echo isset($theChampGeneralOptions['combined_script']) ? 'checked = "checked"' : '';?> value="1" />
39
+ </td>
40
+ </tr>
41
+
42
+ <tr class="the_champ_help_content" id="the_champ_combined_script_help_cont">
43
+ <td colspan="2">
44
+ <div>
45
+ <?php _e('Loads Javascript in single request.', 'Super-Socializer') ?>
46
+ </div>
47
+ </td>
48
+ </tr>
49
+
50
+ <tr>
51
+ <th>
52
+ <img id="the_champ_delete_options_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
53
+ <label for="the_champ_delete_options"><?php _e("Delete all the options on plugin deletion", 'Super-Socializer'); ?></label>
54
+ </th>
55
+ <td>
56
+ <input id="the_champ_delete_options" name="the_champ_general[delete_options]" type="checkbox" <?php echo isset($theChampGeneralOptions['delete_options']) ? 'checked = "checked"' : '';?> value="1" />
57
+ </td>
58
+ </tr>
59
+
60
+ <tr class="the_champ_help_content" id="the_champ_delete_options_help_cont">
61
+ <td colspan="2">
62
+ <div>
63
+ <?php _e('If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time.', 'Super-Socializer') ?>
64
+ </div>
65
+ </td>
66
+ </tr>
67
+
68
+ <tr>
69
+ <th>
70
+ <img id="the_champ_custom_css_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
71
+ <label for="the_champ_custom_css"><?php _e("Custom CSS", 'Super-Socializer' ); ?></label>
72
+ </th>
73
+ <td>
74
+ <textarea rows="7" cols="63" id="the_champ_custom_css" name="the_champ_general[custom_css]"><?php echo isset( $theChampGeneralOptions['custom_css'] ) ? $theChampGeneralOptions['custom_css'] : '' ?></textarea>
75
+ </td>
76
+ </tr>
77
+
78
+ <tr class="the_champ_help_content" id="the_champ_custom_css_help_cont">
79
+ <td colspan="2">
80
+ <div>
81
+ <?php _e('You can specify any additional CSS rules (without &lt;style&gt; tag)', 'Super-Socializer' ) ?>
82
+ </div>
83
+ </td>
84
+ </tr>
85
+ </table>
86
+
87
+ <div class="the_champ_clear"></div>
88
+ <p class="submit">
89
+ <input id="the_champ_enable_fblike" style="margin-left:8px" type="submit" name="save" class="button button-primary" value="<?php _e("Save Changes", 'Super-Socializer'); ?>" />
90
+ </p>
91
+
92
+ </div>
93
+ </div>
94
+
95
+ </div>
96
+ <?php include 'help.php'; ?>
97
+ </form>
98
+ </div>
admin/help.php CHANGED
@@ -12,6 +12,14 @@
12
  </div>
13
  </div>
14
  </div>
 
 
 
 
 
 
 
 
15
 
16
  <div style="margin-bottom: 21px">
17
  <div class="inside" style="padding-top:10px">
@@ -21,7 +29,7 @@
21
 
22
  <div style="margin-bottom: 21px">
23
  <div class="inside" style="padding-top:10px">
24
- <a target="_blank" style="text-decoration:none" href="https://www.heateor.com/social-analytics-sharing"><input type="button" class="ss_demo" value="<?php _e('Integrate Social Sharing with Google Analytics', 'Super-Socializer') ?>" /></a>
25
  </div>
26
  </div>
27
 
@@ -54,7 +62,7 @@
54
  <h3><label><?php _e('Support Us', 'Super-Socializer');?></label></h3>
55
  <div class="inside" style="padding-top: 10px">
56
  <div style="height: 24px;">
57
- <div style="float: left;margin-right: 36px;"><strong><?php _e('Rate 5-star', 'Super-Socializer'); ?></strong></div>
58
  <div style="float: left; margin-left: 28px;">
59
  <a style="text-decoration: none" href="//wordpress.org/support/view/plugin-reviews/super-socializer" target="_blank">
60
  <img title="<?php _e('Rate 5-star', 'Super-Socializer'); ?>" src="<?php echo plugins_url('../images/star.png', __FILE__) ?>" />
@@ -69,7 +77,6 @@
69
  <div class="the_champ_clear"></div>
70
 
71
  <div style="height: 24px;">
72
- <div style="float: left;margin-right: 75px;"><strong><?php _e('Facebook', 'Super-Socializer'); ?></strong></div>
73
  <div style="float: left; width: 40px;">
74
  <div class="fb-like" data-href="https://facebook.com/heateor" data-layout="button_count" data-action="like" data-show-faces="false" data-share="true"></div>
75
  </div>
@@ -78,7 +85,6 @@
78
  <div class="the_champ_clear"></div>
79
 
80
  <div style="height: 24px;">
81
- <div style="float: left;margin-right: 89px;"><strong>Twitter</strong></div>
82
  <div style="float: left; width: 40px;">
83
  <iframe allowtransparency="true" frameborder="0" scrolling="no" src="//platform.twitter.com/widgets/follow_button.html?screen_name=heateor" style="width:250px; height:20px;"></iframe>
84
  </div>
12
  </div>
13
  </div>
14
  </div>
15
+
16
+ <div class="stuffbox">
17
+ <h3><label><?php _e('Donate', 'Super-Socializer');?></label></h3>
18
+ <div class="inside">
19
+ <p><?php _e('You can help us continue the development of this free plugin by donating', 'Super-Socializer') ?></p>
20
+ <a href="https://www.heateor.com/donate/?action=Super+Socializer" style="text-decoration:none" target="_blank"><input type="button" style="width:52%;background-color:#D51F1F" class="ss_demo" value="<?php _e( 'Donate Now', 'Super-Socializer' ) ?>" /></a>
21
+ </div>
22
+ </div>
23
 
24
  <div style="margin-bottom: 21px">
25
  <div class="inside" style="padding-top:10px">
29
 
30
  <div style="margin-bottom: 21px">
31
  <div class="inside" style="padding-top:10px">
32
+ <a target="_blank" style="text-decoration:none" href="https://www.heateor.com/social-analytics-sharing"><input type="button" class="ss_demo" value="<?php _e('Integrate with Google Analytics', 'Super-Socializer') ?>" /></a>
33
  </div>
34
  </div>
35
 
62
  <h3><label><?php _e('Support Us', 'Super-Socializer');?></label></h3>
63
  <div class="inside" style="padding-top: 10px">
64
  <div style="height: 24px;">
65
+ <div style="float: left;"><strong><?php _e('Rate 5-star', 'Super-Socializer'); ?></strong></div>
66
  <div style="float: left; margin-left: 28px;">
67
  <a style="text-decoration: none" href="//wordpress.org/support/view/plugin-reviews/super-socializer" target="_blank">
68
  <img title="<?php _e('Rate 5-star', 'Super-Socializer'); ?>" src="<?php echo plugins_url('../images/star.png', __FILE__) ?>" />
77
  <div class="the_champ_clear"></div>
78
 
79
  <div style="height: 24px;">
 
80
  <div style="float: left; width: 40px;">
81
  <div class="fb-like" data-href="https://facebook.com/heateor" data-layout="button_count" data-action="like" data-show-faces="false" data-share="true"></div>
82
  </div>
85
  <div class="the_champ_clear"></div>
86
 
87
  <div style="height: 24px;">
 
88
  <div style="float: left; width: 40px;">
89
  <iframe allowtransparency="true" frameborder="0" scrolling="no" src="//platform.twitter.com/widgets/follow_button.html?screen_name=heateor" style="width:250px; height:20px;"></iframe>
90
  </div>
admin/like_buttons.php CHANGED
@@ -3,208 +3,54 @@
3
  <div id="fb-root"></div>
4
 
5
  <div class="metabox-holder columns-2" id="post-body">
6
- <div class="menu_div" id="tabs">
7
- <form action="options.php" method="post">
8
- <?php settings_fields('the_champ_counter_options'); ?>
9
- <h2 class="nav-tab-wrapper" style="height:36px">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  <ul>
11
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-1"><?php _e('Basic Configuration', 'Super-Socializer') ?></a></li>
12
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-2"><?php _e('Like Buttons', 'Super-Socializer') ?></a></li>
13
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-3"><?php _e('Shortcode & Widget', 'Super-Socializer') ?></a></li>
 
14
  </ul>
15
  </h2>
16
  <div class="menu_containt_div" id="tabs-1">
17
  <div class="the_champ_left_column">
18
- <div class="stuffbox" >
19
- <h3><label><?php _e('Basic Configuration', 'Super-Socializer');?></label></h3>
20
- <div class="inside">
21
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
22
- <tr>
23
- <th>
24
- <img id="the_champ_sc_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
25
- <label for="the_champ_counter_enable"><?php _e("Enable Like Buttons", 'Super-Socializer'); ?></label>
26
- </th>
27
- <td>
28
- <input id="the_champ_counter_enable" name="the_champ_counter[enable]" type="checkbox" <?php echo isset($theChampCounterOptions['enable']) ? 'checked = "checked"' : '';?> value="1" />
29
- </td>
30
- </tr>
31
-
32
- <tr class="the_champ_help_content" id="the_champ_sc_enable_help_cont">
33
- <td colspan="2">
34
- <div>
35
- <?php _e('Master control for like buttons. It must be checked to enable like buttons functionality', 'Super-Socializer') ?>
36
- </div>
37
- </td>
38
- </tr>
39
- </table>
40
- </div>
41
- </div>
42
-
43
- </div>
44
- <?php include 'help.php'; ?>
45
- </div>
46
-
47
- <div class="menu_containt_div" id="tabs-2">
48
- <div class="the_champ_left_column">
49
-
50
- <div class="stuffbox">
51
- <h3><label><?php _e('Url shortener', 'Super-Socializer');?></label></h3>
52
- <div class="inside">
53
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
54
- <tr>
55
- <th>
56
- <img id="the_champ_surl_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
57
- <label for="the_champ_surl_enable"><?php _e("Use shortlinks already installed, for tweet button", 'Super-Socializer'); ?></label>
58
- </th>
59
- <td>
60
- <input id="the_champ_surl_enable" name="the_champ_counter[use_shortlinks]" type="checkbox" <?php echo isset($theChampCounterOptions['use_shortlinks']) ? 'checked = "checked"' : '';?> value="1" />
61
- </td>
62
- </tr>
63
-
64
- <tr class="the_champ_help_content" id="the_champ_surl_enable_help_cont">
65
- <td colspan="2">
66
- <div>
67
- <?php _e('Allows for shortened URLs to be used when sharing content if a shortening plugin is installed', 'Super-Socializer') ?>
68
- </div>
69
- </td>
70
- </tr>
71
-
72
- <tr>
73
- <th>
74
- <img id="the_champ_sc_bitly_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
75
- <label for="the_champ_sc_bitly_enable"><?php _e("Enable bit.ly url shortener for tweet button", 'Super-Socializer'); ?></label>
76
- </th>
77
- <td>
78
- <input id="the_champ_sc_bitly_enable" name="the_champ_counter[bitly_enable]" type="checkbox" <?php echo isset($theChampCounterOptions['bitly_enable']) ? 'checked = "checked"' : '';?> value="1" />
79
- </td>
80
- </tr>
81
-
82
- <tr class="the_champ_help_content" id="the_champ_sc_bitly_enable_help_cont">
83
- <td colspan="2">
84
- <div>
85
- <?php _e('Master control to enable bit.ly url shortening for sharing', 'Super-Socializer') ?>
86
- </div>
87
- </td>
88
- </tr>
89
-
90
- <tr>
91
- <th>
92
- <img id="the_champ_sc_bitly_login_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
93
- <label for="the_champ_sc_bitly_login"><?php _e("bit.ly username", 'Super-Socializer'); ?></label>
94
- </th>
95
- <td>
96
- <input id="the_champ_sc_bitly_login" name="the_champ_counter[bitly_username]" type="text" value="<?php echo isset($theChampCounterOptions['bitly_username']) ? $theChampCounterOptions['bitly_username'] : '' ?>" />
97
- </td>
98
- </tr>
99
-
100
- <tr class="the_champ_help_content" id="the_champ_sc_bitly_login_help_cont">
101
- <td colspan="2">
102
- <div>
103
- <?php echo sprintf(__('Login to your bit.ly account and navigate to <a href="%s" target="_blank">this link</a> to get bit.ly username', 'Super-Socializer'), 'https://bitly.com/a/your_api_key') ?>
104
- <img width="550" src="<?php echo plugins_url('../images/snaps/ss_bitly_username.png', __FILE__); ?>" />
105
- </div>
106
- </td>
107
- </tr>
108
-
109
- <tr>
110
- <th>
111
- <img id="the_champ_sc_bitly_key_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
112
- <label for="the_champ_sc_bitly_key"><?php _e("bit.ly API Key", 'Super-Socializer'); ?></label>
113
- </th>
114
- <td>
115
- <input id="the_champ_sc_bitly_key" name="the_champ_counter[bitly_key]" type="text" value="<?php echo isset($theChampCounterOptions['bitly_key']) ? $theChampCounterOptions['bitly_key'] : '' ?>" />
116
- </td>
117
- </tr>
118
-
119
- <tr class="the_champ_help_content" id="the_champ_sc_bitly_key_help_cont">
120
- <td colspan="2">
121
- <div>
122
- <?php echo sprintf(__('Login to your bit.ly account and navigate to <a href="%s" target="_blank">this link</a> to get your API key', 'Super-Socializer'), 'https://bitly.com/a/your_api_key') ?>
123
- <img width="550" src="<?php echo plugins_url('../images/snaps/ss_bitly_apikey.png', __FILE__); ?>" />
124
- </div>
125
- </td>
126
- </tr>
127
- </table>
128
- </div>
129
- </div>
130
 
131
  <div class="stuffbox">
132
- <h3><label><?php _e('Language', 'Super-Socializer');?></label></h3>
133
- <div class="inside">
134
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
135
- <tr>
136
- <th>
137
- <img id="the_champ_sc_language_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
138
- <label for="the_champ_sc_language"><?php _e("Language", 'Super-Socializer'); ?></label>
139
- </th>
140
- <td>
141
- <input id="the_champ_sc_language" name="the_champ_counter[language]" type="text" value="<?php echo isset($theChampCounterOptions['language']) ? $theChampCounterOptions['language'] : '' ?>" />
142
- </td>
143
- </tr>
144
-
145
- <tr class="the_champ_help_content" id="the_champ_sc_language_help_cont">
146
- <td colspan="2">
147
- <div>
148
- <?php echo sprintf(__('Enter the code of the language you want to use to render counters. You can find the language codes at <a href="%s" target="_blank">this link</a>. Leave it empty for default language(English)', 'Super-Socializer'), '//www.facebook.com/translations/FacebookLocales.xml') ?>
149
- </div>
150
- </td>
151
- </tr>
152
- </table>
153
- </div>
154
- </div>
155
-
156
- <div class="stuffbox">
157
- <h3><label><?php _e('Twitter Username', 'Super-Socializer');?></label></h3>
158
- <div class="inside">
159
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
160
- <tr>
161
- <th>
162
- <img id="the_champ_sc_twitter_username_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
163
- <label for="the_champ_sc_twitter_username"><?php _e("Twitter username for Tweet (without @)", 'Super-Socializer'); ?></label>
164
- </th>
165
- <td>
166
- <input id="the_champ_sc_twitter_username" name="the_champ_counter[twitter_username]" type="text" value="<?php echo isset($theChampCounterOptions['twitter_username']) ? $theChampCounterOptions['twitter_username'] : '' ?>" />
167
- </td>
168
- </tr>
169
-
170
- <tr class="the_champ_help_content" id="the_champ_sc_twitter_username_help_cont">
171
- <td colspan="2">
172
- <div>
173
- <?php _e('Provided username will be appended after the content being tweeted as "via @USERNAME". Leave empty if you do not want any username.', 'Super-Socializer') ?>
174
- <img width="550" src="<?php echo plugins_url('../images/snaps/ss_twitter_username.png', __FILE__); ?>" />
175
- </div>
176
- </td>
177
- </tr>
178
-
179
- <tr>
180
- <th>
181
- <img id="the_champ_sc_buffer_username_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
182
- <label for="the_champ_sc_buffer_username"><?php _e("Twitter username for Buffer sharing (without @)", 'Super-Socializer'); ?></label>
183
- </th>
184
- <td>
185
- <input id="the_champ_sc_buffer_username" name="the_champ_counter[buffer_username]" type="text" value="<?php echo isset($theChampCounterOptions['buffer_username']) ? $theChampCounterOptions['buffer_username'] : '' ?>" />
186
- </td>
187
- </tr>
188
-
189
- <tr class="the_champ_help_content" id="the_champ_sc_buffer_username_help_cont">
190
- <td colspan="2">
191
- <div>
192
- <?php _e('Provided username will be appended after the content in Buffer sharing as "via @USERNAME". Leave empty if you do not want any username.', 'Super-Socializer') ?>
193
- </div>
194
- </td>
195
- </tr>
196
- </table>
197
- </div>
198
- </div>
199
-
200
- <div class="stuffbox">
201
- <h3><label><?php _e('Horizontal Interface Options', 'Super-Socializer');?></label></h3>
202
  <div class="inside">
203
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
204
  <tr>
205
  <th>
206
  <img id="the_champ_sc_horizontal_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
207
- <label for="the_champ_sc_horizontal_enable"><?php _e("Enable horizontal interface", 'Super-Socializer'); ?></label>
208
  </th>
209
  <td>
210
  <input id="the_champ_sc_horizontal_enable" onclick="theChampHorizontalCounterOptionsToggle(this)" name="the_champ_counter[hor_enable]" type="checkbox" <?php echo isset($theChampCounterOptions['hor_enable']) ? 'checked = "checked"' : '';?> value="1" />
@@ -437,6 +283,13 @@
437
  </table>
438
  </div>
439
  </div>
 
 
 
 
 
 
 
440
 
441
  <div class="stuffbox">
442
  <h3><label><?php _e('Vertical (Floating) like buttons Options', 'Super-Socializer');?></label></h3>
@@ -445,7 +298,7 @@
445
  <tr>
446
  <th>
447
  <img id="the_champ_sc_vertical_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
448
- <label for="the_champ_sc_vertical_enable"><?php _e("Enable vertical (floating) like buttons", 'Super-Socializer'); ?></label>
449
  </th>
450
  <td>
451
  <input id="the_champ_sc_vertical_enable" onclick="theChampVerticalCounterOptionsToggle(this)" name="the_champ_counter[vertical_enable]" type="checkbox" <?php echo isset($theChampCounterOptions['vertical_enable']) ? 'checked = "checked"' : '';?> value="1" />
@@ -712,25 +565,184 @@
712
  </div>
713
 
714
  </div>
 
715
  <?php include 'help.php'; ?>
716
  </div>
717
-
718
  <div class="menu_containt_div" id="tabs-3">
719
  <div class="the_champ_left_column">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
720
  <div class="stuffbox">
721
  <h3><label><?php _e('Shortcode & Widget', 'Super-Socializer');?></label></h3>
722
  <div class="inside">
723
- <p><a href="http://support.heateor.com/like-buttons-shortcode-and-widget/" target="_blank"><?php _e('Like Buttons Shortcode & Widget', 'Super-Socializer') ?></a></p>
724
  </div>
725
  </div>
726
  </div>
727
  <?php include 'help.php'; ?>
728
  </div>
729
 
730
- <div class="the_champ_clear"></div>
731
- <p class="submit">
732
- <input style="margin-left:8px" type="submit" name="save" class="button button-primary" value="<?php _e("Save Changes", 'Super-Socializer'); ?>" />
733
- </p>
734
- </form>
735
  </div>
 
 
 
 
 
 
736
  </div>
3
  <div id="fb-root"></div>
4
 
5
  <div class="metabox-holder columns-2" id="post-body">
6
+ <form action="options.php" method="post">
7
+ <?php settings_fields('the_champ_counter_options'); ?>
8
+
9
+ <div class="stuffbox" style="width:98.7%">
10
+ <h3><label><?php _e('Master Control', 'Super-Socializer' );?></label></h3>
11
+ <div class="inside">
12
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
13
+ <tr>
14
+ <th>
15
+ <img id="the_champ_sc_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
16
+ <label for="the_champ_counter_enable"><?php _e("Enable Like Buttons", 'Super-Socializer'); ?></label>
17
+ </th>
18
+ <td>
19
+ <input id="the_champ_counter_enable" name="the_champ_counter[enable]" type="checkbox" <?php echo isset($theChampCounterOptions['enable']) ? 'checked = "checked"' : '';?> value="1" />
20
+ </td>
21
+ </tr>
22
+
23
+ <tr class="the_champ_help_content" id="the_champ_sc_enable_help_cont">
24
+ <td colspan="2">
25
+ <div>
26
+ <?php _e('Master control for like buttons. It must be checked to enable like buttons functionality', 'Super-Socializer') ?>
27
+ </div>
28
+ </td>
29
+ </tr>
30
+ </table>
31
+ </div>
32
+ </div>
33
+
34
+ <div class="menu_div" id="tabs" <?php echo isset($theChampCounterOptions['enable']) ? '' : 'style="display:none"' ?>>
35
+ <h2 class="nav-tab-wrapper" style="height:34px">
36
  <ul>
37
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-1"><?php _e('Standard Interface', 'Super-Socializer' ) ?></a></li>
38
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-2"><?php _e('Floating Interface', 'Super-Socializer' ) ?></a></li>
39
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-3"><?php _e('Miscellaneous', 'Super-Socializer' ) ?></a></li>
40
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-4"><?php _e('Shortcode & Widget', 'Super-Socializer') ?></a></li>
41
  </ul>
42
  </h2>
43
  <div class="menu_containt_div" id="tabs-1">
44
  <div class="the_champ_left_column">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
46
  <div class="stuffbox">
47
+ <h3><label><?php _e('Standard Interface Options', 'Super-Socializer');?></label></h3>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  <div class="inside">
49
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
50
  <tr>
51
  <th>
52
  <img id="the_champ_sc_horizontal_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
53
+ <label for="the_champ_sc_horizontal_enable"><?php _e("Enable standard interface", 'Super-Socializer'); ?></label>
54
  </th>
55
  <td>
56
  <input id="the_champ_sc_horizontal_enable" onclick="theChampHorizontalCounterOptionsToggle(this)" name="the_champ_counter[hor_enable]" type="checkbox" <?php echo isset($theChampCounterOptions['hor_enable']) ? 'checked = "checked"' : '';?> value="1" />
283
  </table>
284
  </div>
285
  </div>
286
+
287
+ </div>
288
+ <?php include 'help.php'; ?>
289
+ </div>
290
+
291
+ <div class="menu_containt_div" id="tabs-2">
292
+ <div class="the_champ_left_column">
293
 
294
  <div class="stuffbox">
295
  <h3><label><?php _e('Vertical (Floating) like buttons Options', 'Super-Socializer');?></label></h3>
298
  <tr>
299
  <th>
300
  <img id="the_champ_sc_vertical_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
301
+ <label for="the_champ_sc_vertical_enable"><?php _e("Enable floating like buttons", 'Super-Socializer'); ?></label>
302
  </th>
303
  <td>
304
  <input id="the_champ_sc_vertical_enable" onclick="theChampVerticalCounterOptionsToggle(this)" name="the_champ_counter[vertical_enable]" type="checkbox" <?php echo isset($theChampCounterOptions['vertical_enable']) ? 'checked = "checked"' : '';?> value="1" />
565
  </div>
566
 
567
  </div>
568
+
569
  <?php include 'help.php'; ?>
570
  </div>
571
+
572
  <div class="menu_containt_div" id="tabs-3">
573
  <div class="the_champ_left_column">
574
+
575
+ <div class="stuffbox">
576
+ <h3><label><?php _e('Url shortener', 'Super-Socializer');?></label></h3>
577
+ <div class="inside">
578
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
579
+ <tr>
580
+ <th>
581
+ <img id="the_champ_surl_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
582
+ <label for="the_champ_surl_enable"><?php _e("Use shortlinks already installed, for tweet button", 'Super-Socializer'); ?></label>
583
+ </th>
584
+ <td>
585
+ <input id="the_champ_surl_enable" name="the_champ_counter[use_shortlinks]" type="checkbox" <?php echo isset($theChampCounterOptions['use_shortlinks']) ? 'checked = "checked"' : '';?> value="1" />
586
+ </td>
587
+ </tr>
588
+
589
+ <tr class="the_champ_help_content" id="the_champ_surl_enable_help_cont">
590
+ <td colspan="2">
591
+ <div>
592
+ <?php _e('Allows for shortened URLs to be used when sharing content if a shortening plugin is installed', 'Super-Socializer') ?>
593
+ </div>
594
+ </td>
595
+ </tr>
596
+
597
+ <tr>
598
+ <th>
599
+ <img id="the_champ_sc_bitly_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
600
+ <label for="the_champ_sc_bitly_enable"><?php _e("Enable bit.ly url shortener for tweet button", 'Super-Socializer'); ?></label>
601
+ </th>
602
+ <td>
603
+ <input id="the_champ_sc_bitly_enable" name="the_champ_counter[bitly_enable]" type="checkbox" <?php echo isset($theChampCounterOptions['bitly_enable']) ? 'checked = "checked"' : '';?> value="1" />
604
+ </td>
605
+ </tr>
606
+
607
+ <tr class="the_champ_help_content" id="the_champ_sc_bitly_enable_help_cont">
608
+ <td colspan="2">
609
+ <div>
610
+ <?php _e('Master control to enable bit.ly url shortening for sharing', 'Super-Socializer') ?>
611
+ </div>
612
+ </td>
613
+ </tr>
614
+
615
+ <tr>
616
+ <th>
617
+ <img id="the_champ_sc_bitly_login_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
618
+ <label for="the_champ_sc_bitly_login"><?php _e("bit.ly username", 'Super-Socializer'); ?></label>
619
+ </th>
620
+ <td>
621
+ <input id="the_champ_sc_bitly_login" name="the_champ_counter[bitly_username]" type="text" value="<?php echo isset($theChampCounterOptions['bitly_username']) ? $theChampCounterOptions['bitly_username'] : '' ?>" />
622
+ </td>
623
+ </tr>
624
+
625
+ <tr class="the_champ_help_content" id="the_champ_sc_bitly_login_help_cont">
626
+ <td colspan="2">
627
+ <div>
628
+ <?php echo sprintf(__('Login to your bit.ly account and navigate to <a href="%s" target="_blank">this link</a> to get bit.ly username', 'Super-Socializer'), 'https://bitly.com/a/your_api_key') ?>
629
+ <img width="550" src="<?php echo plugins_url('../images/snaps/ss_bitly_username.png', __FILE__); ?>" />
630
+ </div>
631
+ </td>
632
+ </tr>
633
+
634
+ <tr>
635
+ <th>
636
+ <img id="the_champ_sc_bitly_key_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
637
+ <label for="the_champ_sc_bitly_key"><?php _e("bit.ly API Key", 'Super-Socializer'); ?></label>
638
+ </th>
639
+ <td>
640
+ <input id="the_champ_sc_bitly_key" name="the_champ_counter[bitly_key]" type="text" value="<?php echo isset($theChampCounterOptions['bitly_key']) ? $theChampCounterOptions['bitly_key'] : '' ?>" />
641
+ </td>
642
+ </tr>
643
+
644
+ <tr class="the_champ_help_content" id="the_champ_sc_bitly_key_help_cont">
645
+ <td colspan="2">
646
+ <div>
647
+ <?php echo sprintf(__('Login to your bit.ly account and navigate to <a href="%s" target="_blank">this link</a> to get your API key', 'Super-Socializer'), 'https://bitly.com/a/your_api_key') ?>
648
+ <img width="550" src="<?php echo plugins_url('../images/snaps/ss_bitly_apikey.png', __FILE__); ?>" />
649
+ </div>
650
+ </td>
651
+ </tr>
652
+ </table>
653
+ </div>
654
+ </div>
655
+
656
+ <div class="stuffbox">
657
+ <h3><label><?php _e('Language', 'Super-Socializer');?></label></h3>
658
+ <div class="inside">
659
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
660
+ <tr>
661
+ <th>
662
+ <img id="the_champ_sc_language_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
663
+ <label for="the_champ_sc_language"><?php _e("Language", 'Super-Socializer'); ?></label>
664
+ </th>
665
+ <td>
666
+ <input id="the_champ_sc_language" name="the_champ_counter[language]" type="text" value="<?php echo isset($theChampCounterOptions['language']) ? $theChampCounterOptions['language'] : '' ?>" />
667
+ </td>
668
+ </tr>
669
+
670
+ <tr class="the_champ_help_content" id="the_champ_sc_language_help_cont">
671
+ <td colspan="2">
672
+ <div>
673
+ <?php echo sprintf(__('Enter the code of the language you want to use to render counters. You can find the language codes at <a href="%s" target="_blank">this link</a>. Leave it empty for default language(English)', 'Super-Socializer'), '//www.facebook.com/translations/FacebookLocales.xml') ?>
674
+ </div>
675
+ </td>
676
+ </tr>
677
+ </table>
678
+ </div>
679
+ </div>
680
+
681
+ <div class="stuffbox">
682
+ <h3><label><?php _e('Twitter Username', 'Super-Socializer');?></label></h3>
683
+ <div class="inside">
684
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
685
+ <tr>
686
+ <th>
687
+ <img id="the_champ_sc_twitter_username_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
688
+ <label for="the_champ_sc_twitter_username"><?php _e("Twitter username for Tweet (without @)", 'Super-Socializer'); ?></label>
689
+ </th>
690
+ <td>
691
+ <input id="the_champ_sc_twitter_username" name="the_champ_counter[twitter_username]" type="text" value="<?php echo isset($theChampCounterOptions['twitter_username']) ? $theChampCounterOptions['twitter_username'] : '' ?>" />
692
+ </td>
693
+ </tr>
694
+
695
+ <tr class="the_champ_help_content" id="the_champ_sc_twitter_username_help_cont">
696
+ <td colspan="2">
697
+ <div>
698
+ <?php _e('Provided username will be appended after the content being tweeted as "via @USERNAME". Leave empty if you do not want any username.', 'Super-Socializer') ?>
699
+ <img width="550" src="<?php echo plugins_url('../images/snaps/ss_twitter_username.png', __FILE__); ?>" />
700
+ </div>
701
+ </td>
702
+ </tr>
703
+
704
+ <tr>
705
+ <th>
706
+ <img id="the_champ_sc_buffer_username_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
707
+ <label for="the_champ_sc_buffer_username"><?php _e("Twitter username for Buffer sharing (without @)", 'Super-Socializer'); ?></label>
708
+ </th>
709
+ <td>
710
+ <input id="the_champ_sc_buffer_username" name="the_champ_counter[buffer_username]" type="text" value="<?php echo isset($theChampCounterOptions['buffer_username']) ? $theChampCounterOptions['buffer_username'] : '' ?>" />
711
+ </td>
712
+ </tr>
713
+
714
+ <tr class="the_champ_help_content" id="the_champ_sc_buffer_username_help_cont">
715
+ <td colspan="2">
716
+ <div>
717
+ <?php _e('Provided username will be appended after the content in Buffer sharing as "via @USERNAME". Leave empty if you do not want any username.', 'Super-Socializer') ?>
718
+ </div>
719
+ </td>
720
+ </tr>
721
+ </table>
722
+ </div>
723
+ </div>
724
+
725
+ </div>
726
+ <?php include 'help.php'; ?>
727
+ </div>
728
+
729
+ <div class="menu_containt_div" id="tabs-4">
730
+ <div class="the_champ_left_column">
731
  <div class="stuffbox">
732
  <h3><label><?php _e('Shortcode & Widget', 'Super-Socializer');?></label></h3>
733
  <div class="inside">
734
+ <p><a style="text-decoration:none" href="http://support.heateor.com/like-buttons-shortcode-and-widget/" target="_blank"><?php _e('Like Buttons Shortcode & Widget', 'Super-Socializer') ?></a></p>
735
  </div>
736
  </div>
737
  </div>
738
  <?php include 'help.php'; ?>
739
  </div>
740
 
 
 
 
 
 
741
  </div>
742
+
743
+ <div class="the_champ_clear"></div>
744
+ <p class="submit">
745
+ <input style="margin-left:8px" type="submit" name="save" class="button button-primary" value="<?php _e("Save Changes", 'Super-Socializer'); ?>" />
746
+ </p>
747
+ </form>
748
  </div>
admin/social_commenting.php CHANGED
@@ -2,10 +2,34 @@
2
  <div id="fb-root"></div>
3
 
4
  <div class="metabox-holder columns-2" id="post-body">
5
- <div class="menu_div" id="tabs">
6
- <form action="options.php" method="post">
7
- <?php settings_fields('the_champ_facebook_options'); ?>
8
- <h2 class="nav-tab-wrapper" style="height:36px">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  <ul>
10
  <li><a style="margin:0; height: 23px" class="nav-tab" href="#tabs-1"><?php _e('Social Commenting', 'Super-Socializer') ?></a></li>
11
  <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-2"><?php _e('Shortcode', 'Super-Socializer') ?></a></li>
@@ -18,24 +42,6 @@
18
  <h3><label><?php _e('General Options', 'Super-Socializer');?></label></h3>
19
  <div class="inside">
20
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
21
- <tr>
22
- <th>
23
- <img id="the_champ_enable_commenting_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
24
- <label for="the_champ_enable_commenting"><?php _e("Enable Social Commenting", 'Super-Socializer'); ?></label>
25
- </th>
26
- <td>
27
- <input id="the_champ_enable_commenting" name="the_champ_facebook[enable_commenting]" type="checkbox" <?php echo isset($theChampFacebookOptions['enable_commenting']) ? 'checked = "checked"' : '';?> value="1" />
28
- </td>
29
- </tr>
30
-
31
- <tr class="the_champ_help_content" id="the_champ_enable_commenting_help_cont">
32
- <td colspan="2">
33
- <div>
34
- <?php _e('Master control to enable Social Commenting', 'Super-Socializer') ?>
35
- </div>
36
- </td>
37
- </tr>
38
-
39
  <tr>
40
  <th>
41
  <img id="the_champ_commenting_tab_order_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
@@ -433,7 +439,7 @@
433
  <div class="stuffbox">
434
  <h3><label><?php _e('Shortcode', 'Super-Socializer');?></label></h3>
435
  <div class="inside">
436
- <p><a href="http://support.heateor.com/social-commenting-shortcode/" target="_blank"><?php _e('Social Commenting Shortcode', 'Super-Socializer') ?></a></p>
437
  </div>
438
  </div>
439
  </div>
@@ -445,17 +451,17 @@
445
  <div class="stuffbox">
446
  <h3><label><?php _e('FAQ', 'Super-Socializer') ?></label></h3>
447
  <div class="inside">
448
- <p><a href="http://support.heateor.com/how-can-i-disable-social-commenting-at-individual-pagepost/" target="_blank"><?php _e('How can I disable Social Commenting at individual page/post?', 'Super-Socializer') ?></a></p>
449
- <p><a href="http://support.heateor.com/how-to-disable-default-comment-form-from-social-commenting/" target="_blank"><?php _e('How to disable default comment form from Social Commenting?', 'Super-Socializer') ?></a></p>
450
  </div>
451
  </div>
452
  </div>
453
  <?php include 'help.php'; ?>
454
  </div>
455
- <div class="the_champ_clear"></div>
456
- <p class="submit">
457
- <input id="the_champ_enable_fblike" style="margin-left:8px" type="submit" name="save" class="button button-primary" value="<?php _e("Save Changes", 'Super-Socializer'); ?>" />
458
- </p>
459
- </form>
460
  </div>
 
 
 
 
 
461
  </div>
2
  <div id="fb-root"></div>
3
 
4
  <div class="metabox-holder columns-2" id="post-body">
5
+ <form action="options.php" method="post">
6
+ <?php settings_fields('the_champ_facebook_options'); ?>
7
+ <div class="stuffbox" style="width:98.7%">
8
+ <h3><label><?php _e('Master Control', 'Super-Socializer' );?></label></h3>
9
+ <div class="inside">
10
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
11
+ <tr>
12
+ <th>
13
+ <label for="the_champ_enable_commenting"><?php _e( 'Enable Social Commenting', 'Super-Socializer' ) ?></label>
14
+ </th>
15
+ <td>
16
+ <input type="checkbox" id="the_champ_enable_commenting" name="the_champ_facebook[enable_commenting]" <?php echo isset($theChampFacebookOptions['enable_commenting']) ? 'checked="checked"' : '' ?> value="1" />
17
+ </td>
18
+ </tr>
19
+
20
+ <tr class="the_champ_help_content" id="the_champ_enable_commenting_help_cont">
21
+ <td colspan="2">
22
+ <div>
23
+ <?php _e('Master control to enable Social Commenting', 'Super-Socializer') ?>
24
+ </div>
25
+ </td>
26
+ </tr>
27
+ </table>
28
+ </div>
29
+ </div>
30
+
31
+ <div class="menu_div" id="tabs" <?php echo isset($theChampFacebookOptions['enable_commenting']) ? '' : 'style="display:none"' ?>>
32
+ <h2 class="nav-tab-wrapper" style="height:34px">
33
  <ul>
34
  <li><a style="margin:0; height: 23px" class="nav-tab" href="#tabs-1"><?php _e('Social Commenting', 'Super-Socializer') ?></a></li>
35
  <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-2"><?php _e('Shortcode', 'Super-Socializer') ?></a></li>
42
  <h3><label><?php _e('General Options', 'Super-Socializer');?></label></h3>
43
  <div class="inside">
44
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  <tr>
46
  <th>
47
  <img id="the_champ_commenting_tab_order_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
439
  <div class="stuffbox">
440
  <h3><label><?php _e('Shortcode', 'Super-Socializer');?></label></h3>
441
  <div class="inside">
442
+ <p><a style="text-decoration:none" href="http://support.heateor.com/social-commenting-shortcode/" target="_blank"><?php _e('Social Commenting Shortcode', 'Super-Socializer') ?></a></p>
443
  </div>
444
  </div>
445
  </div>
451
  <div class="stuffbox">
452
  <h3><label><?php _e('FAQ', 'Super-Socializer') ?></label></h3>
453
  <div class="inside">
454
+ <p><a style="text-decoration:none" href="http://support.heateor.com/how-can-i-disable-social-commenting-at-individual-pagepost/" target="_blank"><?php _e('How can I disable Social Commenting at individual page/post?', 'Super-Socializer') ?></a></p>
455
+ <p><a style="text-decoration:none" href="http://support.heateor.com/how-to-disable-default-comment-form-from-social-commenting/" target="_blank"><?php _e('How to disable default comment form from Social Commenting?', 'Super-Socializer') ?></a></p>
456
  </div>
457
  </div>
458
  </div>
459
  <?php include 'help.php'; ?>
460
  </div>
 
 
 
 
 
461
  </div>
462
+ <div class="the_champ_clear"></div>
463
+ <p class="submit">
464
+ <input id="the_champ_enable_fblike" style="margin-left:8px" type="submit" name="save" class="button button-primary" value="<?php _e("Save Changes", 'Super-Socializer'); ?>" />
465
+ </p>
466
+ </form>
467
  </div>
admin/social_login.php CHANGED
@@ -1,10 +1,36 @@
1
  <?php defined('ABSPATH') or die("Cheating........Uh!!"); ?>
2
  <div id="fb-root"></div>
3
  <div class="metabox-holder">
4
- <div class="menu_div" id="tabs">
5
  <form action="options.php" method="post">
6
  <?php settings_fields('the_champ_login_options'); ?>
7
- <h2 class="nav-tab-wrapper" style="height:37px">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  <ul>
9
  <li style="margin-left:9px"><a style="margin:0; line-height:auto !important; height:23px" class="nav-tab" href="#tabs-1"><?php _e('Basic Configuration', 'Super-Socializer') ?></a></li>
10
  <li style="margin-left:9px"><a style="margin:0; line-height:auto !important; height:23px" class="nav-tab" href="#tabs-2"><?php _e('Social Login', 'Super-Socializer') ?></a></li>
@@ -17,23 +43,6 @@
17
  <h3 class="hndle"><label><?php _e('Basic Configuration', 'Super-Socializer');?></label></h3>
18
  <div class="inside">
19
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
20
- <tr>
21
- <th>
22
- <img id="the_champ_sl_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
23
- <label for="the_champ_login_enable"><?php _e("Enable Social Login", 'Super-Socializer'); ?></label>
24
- </th>
25
- <td>
26
- <input id="the_champ_login_enable" name="the_champ_login[enable]" type="checkbox" <?php echo isset($theChampLoginOptions['enable']) ? 'checked = "checked"' : '';?> value="1" />
27
- </td>
28
- </tr>
29
-
30
- <tr class="the_champ_help_content" id="the_champ_sl_enable_help_cont">
31
- <td colspan="2">
32
- <div>
33
- <?php _e('Master control for Social Login. It must be checked to enable Social Login functionality', 'Super-Socializer') ?>
34
- </div>
35
- </td>
36
- </tr>
37
 
38
  <tr>
39
  <th>
@@ -315,24 +324,6 @@
315
  </div>
316
  </td>
317
  </tr>
318
-
319
- <tr>
320
- <th>
321
- <img id="the_champ_sl_footer_script_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
322
- <label for="the_champ_login_footer_script"><?php _e("Include Javascript in website footer", 'Super-Socializer'); ?></label>
323
- </th>
324
- <td>
325
- <input id="the_champ_login_footer_script" name="the_champ_login[footer_script]" type="checkbox" <?php echo isset($theChampLoginOptions['footer_script']) ? 'checked = "checked"' : '';?> value="1" />
326
- </td>
327
- </tr>
328
-
329
- <tr class="the_champ_help_content" id="the_champ_sl_footer_script_help_cont">
330
- <td colspan="2">
331
- <div>
332
- <?php _e('If enabled (recommended), Javascript files will be included in the footer of your website.', 'Super-Socializer') ?>
333
- </div>
334
- </td>
335
- </tr>
336
  </table>
337
  </div>
338
  </div>
@@ -772,19 +763,20 @@
772
  <div class="stuffbox">
773
  <h3><label><?php _e('Shortcode & Widget', 'Super-Socializer');?></label></h3>
774
  <div class="inside">
775
- <p><a href="http://support.heateor.com/social-login-shortcode-and-widget/" target="_blank"><?php _e('Social Login Shortcode & Widget', 'Super-Socializer') ?></a></p>
776
- <p><a href="http://support.heateor.com/social-linking-shortcode" target="_blank"><?php _e('Social Linking Shortcode', 'Super-Socializer') ?></a></p>
777
  </div>
778
  </div>
779
  </div>
780
  <?php include 'help.php'; ?>
781
  </div>
782
 
 
 
783
  <div class="the_champ_clear"></div>
784
  <p class="submit">
785
  <input style="margin-left:8px" type="submit" name="save" class="button button-primary" value="<?php _e("Save Changes", 'Super-Socializer'); ?>" />
786
  </p>
787
  </form>
788
- </div>
789
 
790
  </div>
1
  <?php defined('ABSPATH') or die("Cheating........Uh!!"); ?>
2
  <div id="fb-root"></div>
3
  <div class="metabox-holder">
 
4
  <form action="options.php" method="post">
5
  <?php settings_fields('the_champ_login_options'); ?>
6
+
7
+ <div class="stuffbox" style="width:98.7%">
8
+ <h3><label><?php _e('Master Control', 'Super-Socializer' );?></label></h3>
9
+ <div class="inside">
10
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
11
+ <tr>
12
+ <th>
13
+ <img id="the_champ_sl_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
14
+ <label for="the_champ_login_enable"><?php _e("Enable Social Login", 'Super-Socializer'); ?></label>
15
+ </th>
16
+ <td>
17
+ <input id="the_champ_login_enable" name="the_champ_login[enable]" type="checkbox" <?php echo isset($theChampLoginOptions['enable']) ? 'checked = "checked"' : '';?> value="1" />
18
+ </td>
19
+ </tr>
20
+
21
+ <tr class="the_champ_help_content" id="the_champ_sl_enable_help_cont">
22
+ <td colspan="2">
23
+ <div>
24
+ <?php _e('Master control for Social Login. It must be checked to enable Social Login functionality', 'Super-Socializer') ?>
25
+ </div>
26
+ </td>
27
+ </tr>
28
+ </table>
29
+ </div>
30
+ </div>
31
+
32
+ <div class="menu_div" id="tabs" <?php echo isset($theChampLoginOptions['enable']) ? '' : 'style="display:none"' ?>>
33
+ <h2 class="nav-tab-wrapper" style="height:34px">
34
  <ul>
35
  <li style="margin-left:9px"><a style="margin:0; line-height:auto !important; height:23px" class="nav-tab" href="#tabs-1"><?php _e('Basic Configuration', 'Super-Socializer') ?></a></li>
36
  <li style="margin-left:9px"><a style="margin:0; line-height:auto !important; height:23px" class="nav-tab" href="#tabs-2"><?php _e('Social Login', 'Super-Socializer') ?></a></li>
43
  <h3 class="hndle"><label><?php _e('Basic Configuration', 'Super-Socializer');?></label></h3>
44
  <div class="inside">
45
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
 
47
  <tr>
48
  <th>
324
  </div>
325
  </td>
326
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
327
  </table>
328
  </div>
329
  </div>
763
  <div class="stuffbox">
764
  <h3><label><?php _e('Shortcode & Widget', 'Super-Socializer');?></label></h3>
765
  <div class="inside">
766
+ <p><a style="text-decoration:none" href="http://support.heateor.com/social-login-shortcode-and-widget/" target="_blank"><?php _e('Social Login Shortcode & Widget', 'Super-Socializer') ?></a></p>
767
+ <p><a style="text-decoration:none" href="http://support.heateor.com/social-linking-shortcode" target="_blank"><?php _e('Social Linking Shortcode', 'Super-Socializer') ?></a></p>
768
  </div>
769
  </div>
770
  </div>
771
  <?php include 'help.php'; ?>
772
  </div>
773
 
774
+ </div>
775
+
776
  <div class="the_champ_clear"></div>
777
  <p class="submit">
778
  <input style="margin-left:8px" type="submit" name="save" class="button button-primary" value="<?php _e("Save Changes", 'Super-Socializer'); ?>" />
779
  </p>
780
  </form>
 
781
 
782
  </div>
admin/social_sharing.php CHANGED
@@ -1,222 +1,656 @@
1
  <?php defined('ABSPATH') or die("Cheating........Uh!!"); ?>
2
-
3
  <div id="fb-root"></div>
4
 
5
- <div class="metabox-holder columns-2" id="post-body">
6
- <div class="menu_div" id="tabs">
7
- <form id="the_champ_sharing_form" action="options.php" method="post">
8
- <?php settings_fields('the_champ_sharing_options'); ?>
9
- <h2 class="nav-tab-wrapper" style="height:36px">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  <ul>
11
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-1"><?php _e('Basic Configuration', 'Super-Socializer') ?></a></li>
12
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-2"><?php _e('Sharing Interface', 'Super-Socializer') ?></a></li>
13
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-3"><?php _e('Sharing Options', 'Super-Socializer') ?></a></li>
14
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-4"><?php _e('Shortcode & Widget', 'Super-Socializer') ?></a></li>
15
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-5"><?php _e('Troubleshooter', 'Super-Socializer') ?></a></li>
16
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-6"><?php _e('FAQ', 'Super-Socializer') ?></a></li>
 
17
  </ul>
18
  </h2>
19
- <div class="menu_containt_div" id="tabs-1">
20
- <div class="the_champ_left_column">
21
- <div class="stuffbox" >
22
- <h3><label><?php _e('Basic Configuration', 'Super-Socializer');?></label></h3>
23
- <div class="inside">
24
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
25
- <tr>
26
- <th>
27
- <img id="the_champ_ss_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
28
- <label for="the_champ_sharing_enable"><?php _e("Enable Social Sharing", 'Super-Socializer'); ?></label>
29
- </th>
30
- <td>
31
- <input id="the_champ_sharing_enable" name="the_champ_sharing[enable]" type="checkbox" <?php echo isset($theChampSharingOptions['enable']) ? 'checked = "checked"' : '';?> value="1" />
32
- </td>
33
- </tr>
34
-
35
- <tr class="the_champ_help_content" id="the_champ_ss_enable_help_cont">
36
- <td colspan="2">
37
- <div>
38
- <?php _e('Master control for Social Sharing. It must be checked to enable Social Sharing functionality', 'Super-Socializer') ?>
39
- </div>
40
- </td>
41
- </tr>
42
-
43
- <tr>
44
- <th>
45
- <img id="the_champ_delete_options_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
46
- <label for="the_champ_delete_options"><?php _e("Delete all the options on plugin deletion", 'Super-Socializer'); ?></label>
47
- </th>
48
- <td>
49
- <input id="the_champ_delete_options" name="the_champ_sharing[delete_options]" type="checkbox" <?php echo isset($theChampSharingOptions['delete_options']) ? 'checked = "checked"' : '';?> value="1" />
50
- </td>
51
- </tr>
52
-
53
- <tr class="the_champ_help_content" id="the_champ_delete_options_help_cont">
54
- <td colspan="2">
55
- <div>
56
- <?php _e('If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time.', 'Super-Socializer') ?>
57
- </div>
58
- </td>
59
- </tr>
60
- </table>
61
- </div>
62
- </div>
63
-
64
- </div>
65
- <?php include 'help.php'; ?>
66
- </div>
67
 
68
- <div class="menu_containt_div" id="tabs-2">
69
  <div class="the_champ_left_column">
70
  <div class="stuffbox">
71
- <h3><label><?php _e('Horizontal interface options', 'Super-Socializer');?></label></h3>
72
  <div class="inside">
73
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
74
  <tr>
75
  <th>
76
- <img id="the_champ_sharing_icon_shape_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
77
- <label><?php _e("Shape", 'Super-Socializer'); ?></label>
78
  </th>
79
  <td>
80
  <?php
81
- $sharingShape = isset($theChampSharingOptions['horizontal_sharing_shape']) ? $theChampSharingOptions['horizontal_sharing_shape'] : 'round';
82
- $sharingSize = isset($theChampSharingOptions['horizontal_sharing_size']) ? $theChampSharingOptions['horizontal_sharing_size'] : 32;
 
 
 
 
 
 
 
 
 
 
 
83
  ?>
84
- <input id="the_champ_sharing_icon_round" onclick="tempHorShape = 'round';theChampSharingPreview('horizontal', document.getElementById('the_champ_sharing_icon_size').value, 'round')" name="the_champ_sharing[horizontal_sharing_shape]" type="radio" <?php echo $sharingShape == 'round' ? 'checked = "checked"' : '';?> value="round" />
85
- <label for="the_champ_sharing_icon_round"><?php _e("Round", 'Super-Socializer'); ?></label><br/>
86
- <input id="the_champ_sharing_icon_square" onclick="tempHorShape = 'square';theChampSharingPreview('horizontal', document.getElementById('the_champ_sharing_icon_size').value, 'square')" name="the_champ_sharing[horizontal_sharing_shape]" type="radio" <?php echo $sharingShape == 'square' ? 'checked = "checked"' : '';?> value="square" />
87
- <label for="the_champ_sharing_icon_square"><?php _e("Square", 'Super-Socializer'); ?></label>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  </td>
89
  </tr>
90
 
91
- <tr class="the_champ_help_content" id="the_champ_sharing_icon_shape_help_cont">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  <td colspan="2">
93
  <div>
94
- <?php _e('Shape of the sharing icons', 'Super-Socializer') ?>
95
  </div>
96
  </td>
97
  </tr>
98
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  <tr>
100
  <th>
101
- <img id="the_champ_sharing_icon_size_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
102
- <label><?php _e("Size (in pixels)", 'Super-Socializer'); ?></label>
103
  </th>
104
  <td>
105
- <input style="width:50px" id="the_champ_sharing_icon_size" onkeyup="theChampSharingSizeValidate(this)" name="the_champ_sharing[horizontal_sharing_size]" type="text" value="<?php echo $sharingSize; ?>" />
106
- <input id="the_champ_sharing_size_plus" type="button" value="+" onmouseup="tempHorSize = document.getElementById('the_champ_sharing_icon_size').value;theChampSharingPreview('horizontal', tempHorSize, tempHorShape)" />
107
- <input id="the_champ_sharing_size_minus" type="button" value="-" onmouseup="tempHorSize = document.getElementById('the_champ_sharing_icon_size').value;theChampSharingPreview('horizontal', tempHorSize, tempHorShape)" />
108
- <script type="text/javascript">
109
- var tempHorShape = '<?php echo $sharingShape ?>';
110
- var tempHorSize = '<?php echo $sharingSize ?>';
111
- theChampIncrement(document.getElementById('the_champ_sharing_size_plus'), "add", document.getElementById('the_champ_sharing_icon_size'), 300, 0.7);
112
- theChampIncrement(document.getElementById('the_champ_sharing_size_minus'), "subtract", document.getElementById('the_champ_sharing_icon_size'), 300, 0.7);
113
- </script>
114
  </td>
115
  </tr>
116
 
117
- <tr class="the_champ_help_content" id="the_champ_sharing_icon_size_help_cont">
118
  <td colspan="2">
119
  <div>
120
- <?php _e('Size of the sharing icons', 'Super-Socializer') ?>
121
  </div>
122
  </td>
123
  </tr>
124
 
125
  <tr>
126
  <th>
127
- <label style="float:left"><?php _e("Icon Preview", 'Super-Socializer'); ?></label>
 
128
  </th>
129
  <td>
130
- <div id="the_champ_sharing_preview" style="background-color:#3C589A">
131
- <div class="theChampFacebookSvg" style="width:100%;height:100%;"></div>
132
- </div>
133
- <script type="text/javascript">
134
- theChampSharingPreview('horizontal', <?php echo $sharingSize .', "'. $sharingShape . '"' ?>);
135
- </script>
 
 
 
 
136
  </td>
137
  </tr>
138
 
139
  <tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140
  <td colspan="2">
141
- <div id="the_champ_sharing_preview_message" style="color:green;display:none"><?php _e('Do not forget to save the configuration after making changes by clicking the save button below', 'Super-Socializer'); ?></div>
 
 
142
  </td>
143
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
  </table>
145
  </div>
146
  </div>
147
 
148
  <div class="stuffbox">
149
- <h3><label><?php _e('Vertical interface options', 'Super-Socializer');?></label></h3>
150
  <div class="inside">
151
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
152
  <tr>
153
  <th>
154
- <img id="the_champ_vertical_sharing_icon_shape_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
155
- <label><?php _e("Shape", 'Super-Socializer'); ?></label>
156
  </th>
157
  <td>
158
  <?php
159
- $verticalSharingShape = isset($theChampSharingOptions['vertical_sharing_shape']) ? $theChampSharingOptions['vertical_sharing_shape'] : 'round';
160
- $verticalSharingSize = isset($theChampSharingOptions['vertical_sharing_size']) ? $theChampSharingOptions['vertical_sharing_size'] : 32;
 
 
 
 
 
 
 
 
 
 
 
 
161
  ?>
162
- <input id="the_champ_vertical_sharing_icon_round" onclick="tempVerticalShape = 'round';theChampSharingPreview('vertical', document.getElementById('the_champ_vertical_sharing_icon_size').value, 'round')" name="the_champ_sharing[vertical_sharing_shape]" type="radio" <?php echo $verticalSharingShape == 'round' ? 'checked = "checked"' : '';?> value="round" />
163
- <label for="the_champ_vertical_sharing_icon_round"><?php _e("Round", 'Super-Socializer'); ?></label><br/>
164
- <input id="the_champ_vertical_sharing_icon_square" onclick="tempVerticalShape = 'square';theChampSharingPreview('vertical', document.getElementById('the_champ_vertical_sharing_icon_size').value, 'square')" name="the_champ_sharing[vertical_sharing_shape]" type="radio" <?php echo $verticalSharingShape == 'square' ? 'checked = "checked"' : '';?> value="square" />
165
- <label for="the_champ_vertical_sharing_icon_square"><?php _e("Square", 'Super-Socializer'); ?></label>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  </td>
167
  </tr>
168
 
169
  <tr class="the_champ_help_content" id="the_champ_vertical_sharing_icon_shape_help_cont">
170
  <td colspan="2">
171
  <div>
172
- <?php _e('Shape of the sharing icons', 'Super-Socializer') ?>
173
  </div>
174
  </td>
175
  </tr>
176
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177
  <tr>
178
  <th>
179
- <img id="the_champ_vertical_sharing_icon_size_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
180
- <label><?php _e("Size (in pixels)", 'Super-Socializer'); ?></label>
181
  </th>
182
  <td>
183
- <input style="width:50px" id="the_champ_vertical_sharing_icon_size" onkeyup="theChampSharingSizeValidate(this)" name="the_champ_sharing[vertical_sharing_size]" type="text" value="<?php echo $verticalSharingSize; ?>" />
184
- <input id="the_champ_vertical_sharing_size_plus" type="button" value="+" onmouseup="tempVerticalSize = document.getElementById('the_champ_vertical_sharing_icon_size').value;theChampSharingPreview('vertical', tempVerticalSize, tempVerticalShape)" />
185
- <input id="the_champ_vertical_sharing_size_minus" type="button" value="-" onmouseup="tempVerticalSize = document.getElementById('the_champ_vertical_sharing_icon_size').value;theChampSharingPreview('vertical', tempVerticalSize, tempVerticalShape)" />
186
- <script type="text/javascript">
187
- var tempVerticalShape = '<?php echo $verticalSharingShape ?>';
188
- var tempVerticalSize = '<?php echo $verticalSharingSize ?>';
189
- theChampIncrement(document.getElementById('the_champ_vertical_sharing_size_plus'), "add", document.getElementById('the_champ_vertical_sharing_icon_size'), 300, 0.7);
190
- theChampIncrement(document.getElementById('the_champ_vertical_sharing_size_minus'), "subtract", document.getElementById('the_champ_vertical_sharing_icon_size'), 300, 0.7);
191
- </script>
192
  </td>
193
  </tr>
194
 
195
- <tr class="the_champ_help_content" id="the_champ_vertical_sharing_icon_size_help_cont">
196
  <td colspan="2">
197
  <div>
198
- <?php _e('Size of the sharing icons', 'Super-Socializer') ?>
199
  </div>
200
  </td>
201
  </tr>
202
 
203
  <tr>
204
  <th>
205
- <label style="float:left"><?php _e("Icon Preview", 'Super-Socializer'); ?></label>
 
206
  </th>
207
  <td>
208
- <div id="the_champ_vertical_sharing_preview" style="background-color:#3C589A">
209
- <div class="theChampFacebookSvg" style="width:100%;height:100%;"></div>
210
- </div>
211
- <script type="text/javascript">
212
- theChampSharingPreview('vertical', <?php echo $verticalSharingSize .', "'. $verticalSharingShape . '"' ?>);
213
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  </td>
215
  </tr>
216
 
217
  <tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218
  <td colspan="2">
219
- <div id="the_champ_vertical_sharing_preview_message" style="color:green;display:none"><?php _e('Do not forget to save the configuration after making changes by clicking the save button below', 'Super-Socializer'); ?></div>
 
 
220
  </td>
221
  </tr>
222
  </table>
@@ -226,461 +660,291 @@
226
  <?php include 'help.php'; ?>
227
  </div>
228
 
229
- <div class="menu_containt_div" id="tabs-3">
230
  <div class="the_champ_left_column">
231
 
232
  <div class="stuffbox">
233
- <h3><label><?php _e('Modernizr', 'Super-Socializer');?></label></h3>
234
  <div class="inside">
235
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
236
  <tr>
237
  <th>
238
- <img id="the_champ_remove_modernizr_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
239
- <label for="the_champ_remove_modernizr"><?php _e("Do not load Modernizr JS", 'Super-Socializer'); ?></label>
240
  </th>
241
  <td>
242
- <input id="the_champ_remove_modernizr" name="the_champ_sharing[remove_modernizr]" type="checkbox" <?php echo isset($theChampSharingOptions['remove_modernizr']) ? 'checked = "checked"' : '';?> value="1" />
243
  </td>
244
  </tr>
245
 
246
- <tr class="the_champ_help_content" id="the_champ_remove_modernizr_help_cont">
247
  <td colspan="2">
248
  <div>
249
- <?php _e('If you find the plugin breaking your theme, you can try enabling this option', 'Super-Socializer') ?>
 
250
  </div>
251
  </td>
252
  </tr>
253
- </table>
254
- </div>
255
- </div>
256
-
257
- <div class="stuffbox">
258
- <h3><label><?php _e('Url shortener', 'Super-Socializer');?></label></h3>
259
- <div class="inside">
260
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
261
- <tr>
262
- <th>
263
- <img id="the_champ_surl_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
264
- <label for="the_champ_surl_enable"><?php _e("Use shortlinks already installed", 'Super-Socializer'); ?></label>
265
- </th>
266
- <td>
267
- <input id="the_champ_surl_enable" name="the_champ_sharing[use_shortlinks]" type="checkbox" <?php echo isset($theChampSharingOptions['use_shortlinks']) ? 'checked = "checked"' : '';?> value="1" />
268
- </td>
269
- </tr>
270
 
271
- <tr class="the_champ_help_content" id="the_champ_surl_enable_help_cont">
272
- <td colspan="2">
273
- <div>
274
- <?php _e('Allows for shortened URLs to be used when sharing content if a shortening plugin is installed', 'Super-Socializer') ?>
275
- </div>
276
- </td>
277
- </tr>
278
-
279
  <tr>
280
  <th>
281
- <img id="the_champ_ss_bitly_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
282
- <label for="the_champ_ss_bitly_enable"><?php _e("Enable bit.ly url shortener for sharing", 'Super-Socializer'); ?></label>
283
  </th>
284
- <td>
285
- <input id="the_champ_ss_bitly_enable" name="the_champ_sharing[bitly_enable]" type="checkbox" <?php echo isset($theChampSharingOptions['bitly_enable']) ? 'checked = "checked"' : '';?> value="1" />
 
 
 
 
 
 
286
  </td>
287
  </tr>
288
-
289
- <tr class="the_champ_help_content" id="the_champ_ss_bitly_enable_help_cont">
290
  <td colspan="2">
291
  <div>
292
- <?php _e('Master control to enable bit.ly url shortening for sharing', 'Super-Socializer') ?>
293
  </div>
294
  </td>
295
  </tr>
296
 
297
  <tr>
298
  <th>
299
- <img id="the_champ_ss_bitly_login_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
300
- <label for="the_champ_ss_bitly_login"><?php _e("bit.ly username", 'Super-Socializer'); ?></label>
301
  </th>
302
  <td>
303
- <input id="the_champ_ss_bitly_login" name="the_champ_sharing[bitly_username]" type="text" value="<?php echo isset($theChampSharingOptions['bitly_username']) ? $theChampSharingOptions['bitly_username'] : '' ?>" />
304
  </td>
305
  </tr>
306
 
307
- <tr class="the_champ_help_content" id="the_champ_ss_bitly_login_help_cont">
308
  <td colspan="2">
309
  <div>
310
- <?php echo sprintf(__('Login to your bit.ly account and navigate to <a href="%s" target="_blank">this link</a> to get bit.ly username', 'Super-Socializer'), 'https://bitly.com/a/your_api_key') ?>
311
- <img width="550" src="<?php echo plugins_url('../images/snaps/ss_bitly_username.png', __FILE__); ?>" />
312
  </div>
313
  </td>
314
  </tr>
 
 
 
 
315
 
316
  <tr>
317
  <th>
318
- <img id="the_champ_ss_bitly_key_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
319
- <label for="the_champ_ss_bitly_key"><?php _e("bit.ly API Key", 'Super-Socializer'); ?></label>
320
- </th>
321
- <td>
322
- <input id="the_champ_ss_bitly_key" name="the_champ_sharing[bitly_key]" type="text" value="<?php echo isset($theChampSharingOptions['bitly_key']) ? $theChampSharingOptions['bitly_key'] : '' ?>" />
323
- </td>
324
- </tr>
325
-
326
- <tr class="the_champ_help_content" id="the_champ_ss_bitly_key_help_cont">
327
- <td colspan="2">
328
- <div>
329
- <?php echo sprintf(__('Login to your bit.ly account and navigate to <a href="%s" target="_blank">this link</a> to get your API key', 'Super-Socializer'), 'https://bitly.com/a/your_api_key') ?>
330
- <img width="550" src="<?php echo plugins_url('../images/snaps/ss_bitly_apikey.png', __FILE__); ?>" />
331
- </div>
332
- </td>
333
- </tr>
334
- </table>
335
- </div>
336
- </div>
337
-
338
- <div class="stuffbox">
339
- <h3><label><?php _e('Twitter username in sharing', 'Super-Socializer');?></label></h3>
340
- <div class="inside">
341
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
342
- <tr>
343
- <th>
344
- <img id="the_champ_ss_twitter_username_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
345
- <label for="the_champ_ss_twitter_username"><?php _e("Twitter username (without @)", 'Super-Socializer'); ?></label>
346
  </th>
347
- <td>
348
- <input id="the_champ_ss_twitter_username" name="the_champ_sharing[twitter_username]" type="text" value="<?php echo isset($theChampSharingOptions['twitter_username']) ? $theChampSharingOptions['twitter_username'] : '' ?>" />
349
- </td>
350
- </tr>
351
-
352
- <tr class="the_champ_help_content" id="the_champ_ss_twitter_username_help_cont">
353
- <td colspan="2">
354
- <div>
355
- <?php _e('Provided username will be appended after the content being shared as "via @USERNAME". Leave empty if you do not want any username in the content being shared.', 'Super-Socializer') ?>
356
- <img width="550" src="<?php echo plugins_url('../images/snaps/ss_twitter_username.png', __FILE__); ?>" />
357
- </div>
358
- </td>
359
  </tr>
360
- </table>
361
- </div>
362
- </div>
363
-
364
- <div class="stuffbox">
365
- <h3><label><?php _e('Horizontal Sharing Interface Options', 'Super-Socializer');?></label></h3>
366
- <div class="inside">
367
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
368
  <tr>
369
- <th>
370
- <img id="the_champ_ss_horizontal_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
371
- <label for="the_champ_ss_horizontal_enable"><?php _e("Enable horizontal sharing interface", 'Super-Socializer'); ?></label>
372
- </th>
373
- <td>
374
- <input id="the_champ_ss_horizontal_enable" onclick="theChampHorizontalSharingOptionsToggle(this)" name="the_champ_sharing[hor_enable]" type="checkbox" <?php echo isset($theChampSharingOptions['hor_enable']) ? 'checked = "checked"' : '';?> value="1" />
375
- </td>
376
- </tr>
377
-
378
- <tr class="the_champ_help_content" id="the_champ_ss_horizontal_enable_help_cont">
379
  <td colspan="2">
380
- <div>
381
- <?php _e('Master control to enable horizontal sharing', 'Super-Socializer') ?>
382
- <img width="550" src="<?php echo plugins_url('../images/snaps/ss_horizontal_sharing.png', __FILE__); ?>" />
383
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
384
  </td>
385
  </tr>
386
 
387
- <tbody id="the_champ_horizontal_sharing_options" <?php echo isset($theChampSharingOptions['hor_enable']) ? '' : 'style="display: none"'; ?>>
388
- <tr>
389
- <th>
390
- <img id="the_champ_ss_horizontal_target_url_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
391
- <label for="the_champ_ss_horizontal_target_url"><?php _e("Target Url", 'Super-Socializer'); ?></label>
392
- </th>
393
- <td id="the_champ_target_url_column">
394
- <input id="the_champ_target_url_default" name="the_champ_sharing[horizontal_target_url]" type="radio" <?php echo !isset($theChampSharingOptions['horizontal_target_url']) || $theChampSharingOptions['horizontal_target_url'] == 'default' ? 'checked = "checked"' : '';?> value="default" />
395
- <label for="the_champ_target_url_default"><?php _e('Url of the webpage where icons are located (default)', 'Super-Socializer') ?></label><br/>
396
- <input id="the_champ_target_url_home" name="the_champ_sharing[horizontal_target_url]" type="radio" <?php echo isset($theChampSharingOptions['horizontal_target_url']) && $theChampSharingOptions['horizontal_target_url'] == 'home' ? 'checked = "checked"' : '';?> value="home" />
397
- <label for="the_champ_target_url_home"><?php _e('Url of the homepage of your website', 'Super-Socializer') ?></label><br/>
398
- <input id="the_champ_target_url_custom" name="the_champ_sharing[horizontal_target_url]" type="radio" <?php echo isset($theChampSharingOptions['horizontal_target_url']) && $theChampSharingOptions['horizontal_target_url'] == 'custom' ? 'checked = "checked"' : '';?> value="custom" />
399
- <label for="the_champ_target_url_custom"><?php _e('Custom url', 'Super-Socializer') ?></label><br/>
400
- <input id="the_champ_target_url_custom_url" name="the_champ_sharing[horizontal_target_url_custom]" type="text" value="<?php echo isset($theChampSharingOptions['horizontal_target_url_custom']) ? $theChampSharingOptions['horizontal_target_url_custom'] : '' ?>" />
401
- </td>
402
- </tr>
403
- <tr class="the_champ_help_content" id="the_champ_ss_horizontal_target_url_help_cont">
404
  <td colspan="2">
405
  <div>
406
- <?php _e('Url to share', 'Super-Socializer') ?>
407
  </div>
408
  </td>
409
  </tr>
410
-
411
  <tr>
412
- <th>
413
- <img id="the_champ_ss_title_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
414
- <label for="the_champ_fblogin_title"><?php _e("Title", 'Super-Socializer'); ?></label>
415
  </th>
416
- <td>
417
- <input id="the_champ_fblogin_title" name="the_champ_sharing[title]" type="text" value="<?php echo isset($theChampSharingOptions['title']) ? $theChampSharingOptions['title'] : '' ?>" />
418
- </td>
419
  </tr>
420
-
421
- <tr class="the_champ_help_content" id="the_champ_ss_title_help_cont">
422
- <td colspan="2">
423
- <div>
424
- <?php _e('The text to display above the sharing interface', 'Super-Socializer') ?>
425
- </div>
426
- </td>
427
- </tr>
428
-
429
- <tr>
430
- <th>
431
- <img id="the_champ_ss_providers_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
432
- <label><?php _e("Select providers", 'Super-Socializer'); ?></label>
433
- </th>
434
- <td>
435
- <div class="theChampHorizontalSharingProviderContainer">
436
- <input id="the_champ_sharing_facebook" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('facebook', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="facebook" />
437
- <label for="the_champ_sharing_facebook"><?php _e("Facebook", 'Super-Socializer'); ?></label>
438
- </div>
439
-
440
- <div class="theChampHorizontalSharingProviderContainer">
441
- <input id="the_champ_sharing_twitter" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('twitter', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="twitter" />
442
- <label for="the_champ_sharing_twitter"><?php _e("Twitter", 'Super-Socializer'); ?></label>
443
- </div>
444
-
445
- <div class="theChampHorizontalSharingProviderContainer">
446
- <input id="the_champ_sharing_linkedin" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('linkedin', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="linkedin" />
447
- <label for="the_champ_sharing_linkedin"><?php _e("LinkedIn", 'Super-Socializer'); ?></label>
448
- </div>
449
-
450
- <div class="theChampHorizontalSharingProviderContainer">
451
- <input id="the_champ_sharing_google" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('google', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="google" />
452
- <label for="the_champ_sharing_google"><?php _e("Google+", 'Super-Socializer'); ?></label>
453
- </div>
454
-
455
- <div class="theChampHorizontalSharingProviderContainer">
456
- <input id="the_champ_sharing_print" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('print', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="print" />
457
- <label for="the_champ_sharing_print"><?php _e("Print", 'Super-Socializer'); ?></label>
458
- </div>
459
-
460
- <div class="theChampHorizontalSharingProviderContainer">
461
- <input id="the_champ_sharing_email" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('email', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="email" />
462
- <label for="the_champ_sharing_email"><?php _e("Email", 'Super-Socializer'); ?></label>
463
- </div>
464
-
465
- <div class="theChampHorizontalSharingProviderContainer">
466
- <input id="the_champ_sharing_yahoo" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('yahoo', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="yahoo" />
467
- <label for="the_champ_sharing_yahoo"><?php _e("Yahoo", 'Super-Socializer'); ?></label>
468
- </div>
469
-
470
- <div class="theChampHorizontalSharingProviderContainer">
471
- <input id="the_champ_sharing_reddit" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('reddit', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="reddit" />
472
- <label for="the_champ_sharing_reddit"><?php _e("Reddit", 'Super-Socializer'); ?></label>
473
- </div>
474
-
475
- <div class="theChampHorizontalSharingProviderContainer">
476
- <input id="the_champ_sharing_digg" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('digg', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="digg" />
477
- <label for="the_champ_sharing_digg"><?php _e("Digg", 'Super-Socializer'); ?></label>
478
- </div>
479
-
480
- <div class="theChampHorizontalSharingProviderContainer">
481
- <input id="the_champ_sharing_delicious" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('delicious', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="delicious" />
482
- <label for="the_champ_sharing_delicious"><?php _e("Delicious", 'Super-Socializer'); ?></label>
483
- </div>
484
-
485
- <div class="theChampHorizontalSharingProviderContainer">
486
- <input id="the_champ_sharing_stumble" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('stumbleupon', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="stumbleupon" />
487
- <label for="the_champ_sharing_stumble"><?php _e("StumbleUpon", 'Super-Socializer'); ?></label>
488
- </div>
489
-
490
- <div class="theChampHorizontalSharingProviderContainer">
491
- <input id="the_champ_sharing_float" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('float it', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="float it" />
492
- <label for="the_champ_sharing_float"><?php _e("Float it", 'Super-Socializer'); ?></label>
493
- </div>
494
-
495
- <div class="theChampHorizontalSharingProviderContainer">
496
- <input id="the_champ_sharing_tumblr" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('tumblr', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="tumblr" />
497
- <label for="the_champ_sharing_tumblr"><?php _e("Tumblr", 'Super-Socializer'); ?></label>
498
- </div>
499
-
500
- <div class="theChampHorizontalSharingProviderContainer">
501
- <input id="the_champ_sharing_vk" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('vkontakte', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="vkontakte" />
502
- <label for="the_champ_sharing_vk"><?php _e("Vkontakte", 'Super-Socializer'); ?></label>
503
- </div>
504
-
505
- <div class="theChampHorizontalSharingProviderContainer">
506
- <input id="the_champ_sharing_pinterest" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('pinterest', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="pinterest" />
507
- <label for="the_champ_sharing_pinterest"><?php _e("Pinterest", 'Super-Socializer'); ?></label>
508
- </div>
509
-
510
- <div class="theChampHorizontalSharingProviderContainer">
511
- <input id="the_champ_sharing_xing" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('xing', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="xing" />
512
- <label for="the_champ_sharing_xing"><?php _e("Xing", 'Super-Socializer'); ?></label>
513
- </div>
514
-
515
- <div class="theChampHorizontalSharingProviderContainer">
516
- <input id="the_champ_sharing_whatsapp" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('whatsapp', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="whatsapp" />
517
- <label for="the_champ_sharing_whatsapp"><?php _e("Whatsapp", 'Super-Socializer'); ?></label>
518
- </div>
519
-
520
- <div class="theChampHorizontalSharingProviderContainer">
521
- <input id="the_champ_sharing_yummly" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('yummly', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="yummly" />
522
- <label for="the_champ_sharing_yummly"><?php _e("Yummly", 'Super-Socializer'); ?></label>
523
- </div>
524
 
525
- <div class="theChampHorizontalSharingProviderContainer">
526
- <input id="the_champ_sharing_buffer" name="the_champ_sharing[providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['providers']) && in_array('buffer', $theChampSharingOptions['providers']) ? 'checked = "checked"' : '';?> value="buffer" />
527
- <label for="the_champ_sharing_buffer"><?php _e("Buffer", 'Super-Socializer'); ?></label>
528
- </div>
529
- </td>
530
- </tr>
531
-
532
- <tr class="the_champ_help_content" id="the_champ_ss_providers_help_cont">
533
  <td colspan="2">
534
  <div>
535
- <?php _e('Select the providers for sharing interface', 'Super-Socializer') ?>
536
  </div>
537
  </td>
538
  </tr>
539
-
540
  <tr>
541
- <th>
542
- <img id="the_champ_ss_rearrange_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
543
- <label><?php _e("Rearrange icons", 'Super-Socializer'); ?></label>
544
- </th>
545
- <td>
546
- <ul id="the_champ_ss_rearrange">
 
 
547
  <?php
548
- $horSharingStyle = 'width:' . $theChampSharingOptions['horizontal_sharing_size'] . 'px;height:' . $theChampSharingOptions['horizontal_sharing_size'] . 'px;';
549
- $horDeliciousRadius = '';
550
- if($theChampSharingOptions['horizontal_sharing_shape'] == 'round'){
551
- $horSharingStyle .= 'border-radius:999px;';
552
- $horDeliciousRadius = 'border-radius:999px;';
553
- }
554
  ?>
555
- <script>
556
- var theChampHorSharingStyle = '<?php echo $horSharingStyle ?>', theChampHorDeliciousRadius = '<?php echo $horDeliciousRadius ?>';
557
- </script>
 
 
558
  <?php
559
- foreach($theChampSharingOptions['horizontal_re_providers'] as $rearrange){
560
- ?>
561
- <li title="<?php echo $rearrange ?>" id="the_champ_re_horizontal_<?php echo str_replace(' ', '_', $rearrange) ?>" >
562
- <i style="display:block;<?php echo $horSharingStyle ?>" class="theChamp<?php echo ucfirst(str_replace(' ', '', $rearrange)) ?>Background"><div class="theChampSharingSvg theChamp<?php echo ucfirst(str_replace(' ', '', $rearrange)) ?>Svg" style="<?php echo $horDeliciousRadius ?>"></div></i>
563
- <input type="hidden" name="the_champ_sharing[horizontal_re_providers][]" value="<?php echo $rearrange ?>">
564
- </li>
565
- <?php
566
- }
567
- ?>
568
- </ul>
569
- </td>
570
- </tr>
571
-
572
- <tr class="the_champ_help_content" id="the_champ_ss_rearrange_help_cont">
573
- <td colspan="2">
574
- <div>
575
- <?php _e('Drag the icons to rearrange in desired order', 'Super-Socializer') ?>
576
- </div>
577
  </td>
578
  </tr>
579
 
580
  <tr>
581
  <th>
582
- <img id="the_champ_ss_hor_alignment_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
583
- <label for="the_champ_ss_hor_alignment"><?php _e("Horizontal alignment", 'Super-Socializer'); ?></label>
584
  </th>
585
  <td>
586
- <select id="the_champ_ss_hor_alignment" name="the_champ_sharing[hor_sharing_alignment]">
587
- <option value="left" <?php echo isset($theChampSharingOptions['hor_sharing_alignment']) && $theChampSharingOptions['hor_sharing_alignment'] == 'left' ? 'selected="selected"' : '' ?>><?php _e('Left', 'Super-Socializer') ?></option>
588
- <option value="center" <?php echo isset($theChampSharingOptions['hor_sharing_alignment']) && $theChampSharingOptions['hor_sharing_alignment'] == 'center' ? 'selected="selected"' : '' ?>><?php _e('Center', 'Super-Socializer') ?></option>
589
- <option value="right" <?php echo isset($theChampSharingOptions['hor_sharing_alignment']) && $theChampSharingOptions['hor_sharing_alignment'] == 'right' ? 'selected="selected"' : '' ?>><?php _e('Right', 'Super-Socializer') ?></option>
590
  </select>
591
  </td>
592
  </tr>
593
 
594
- <tr class="the_champ_help_content" id="the_champ_ss_hor_alignment_help_cont">
595
  <td colspan="2">
596
  <div>
597
- <?php _e('Horizontal alignment of the sharing interface', 'Super-Socializer') ?>
598
  </div>
599
  </td>
600
  </tr>
601
 
602
  <tr>
603
  <th>
604
- <img id="the_champ_ss_position_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
605
- <label><?php _e("Position with respect to content", 'Super-Socializer'); ?></label>
606
  </th>
607
  <td>
608
- <input id="the_champ_sharing_top" name="the_champ_sharing[top]" type="checkbox" <?php echo isset($theChampSharingOptions['top']) ? 'checked = "checked"' : '';?> value="1" />
609
- <label for="the_champ_sharing_top"><?php _e('Top of the content', 'Super-Socializer') ?></label><br/>
610
- <input id="the_champ_sharing_bottom" name="the_champ_sharing[bottom]" type="checkbox" <?php echo isset($theChampSharingOptions['bottom']) ? 'checked = "checked"' : '';?> value="1" />
611
- <label for="the_champ_sharing_bottom"><?php _e('Bottom of the content', 'Super-Socializer') ?></label>
612
  </td>
613
  </tr>
614
 
615
- <tr class="the_champ_help_content" id="the_champ_ss_position_help_cont">
616
  <td colspan="2">
617
  <div>
618
- <?php _e('Specify position of the sharing interface with respect to the content', 'Super-Socializer') ?>
619
  </div>
620
  </td>
621
  </tr>
622
 
623
  <tr>
624
  <th>
625
- <img id="the_champ_ss_location_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
626
- <label><?php _e("Sharing location", 'Super-Socializer'); ?></label>
627
  </th>
628
  <td>
629
- <input id="the_champ_sharing_home" name="the_champ_sharing[home]" type="checkbox" <?php echo isset($theChampSharingOptions['home']) ? 'checked = "checked"' : '';?> value="1" />
630
- <label for="the_champ_sharing_home"><?php _e('Homepage', 'Super-Socializer') ?></label><br/>
631
- <input id="the_champ_sharing_post" name="the_champ_sharing[post]" type="checkbox" <?php echo isset($theChampSharingOptions['post']) ? 'checked = "checked"' : '';?> value="1" />
632
- <label for="the_champ_sharing_post"><?php _e('Posts', 'Super-Socializer') ?></label><br/>
633
- <input id="the_champ_sharing_page" name="the_champ_sharing[page]" type="checkbox" <?php echo isset($theChampSharingOptions['page']) ? 'checked = "checked"' : '';?> value="1" />
634
- <label for="the_champ_sharing_page"><?php _e('Pages', 'Super-Socializer') ?></label><br/>
635
- <input id="the_champ_sharing_excerpt" name="the_champ_sharing[excerpt]" type="checkbox" <?php echo isset($theChampSharingOptions['excerpt']) ? 'checked = "checked"' : '';?> value="1" />
636
- <label for="the_champ_sharing_excerpt"><?php _e('Excerpts (at Homepage)', 'Super-Socializer') ?></label><br/>
637
- <input id="the_champ_sharing_category" name="the_champ_sharing[category]" type="checkbox" <?php echo isset($theChampSharingOptions['category']) ? 'checked = "checked"' : '';?> value="1" />
638
- <label for="the_champ_sharing_category"><?php _e('Category Archives', 'Super-Socializer') ?></label><br/>
639
- <input id="the_champ_sharing_archive" name="the_champ_sharing[archive]" type="checkbox" <?php echo isset($theChampSharingOptions['archive']) ? 'checked = "checked"' : '';?> value="1" />
640
- <label for="the_champ_sharing_archive"><?php _e('Archive Pages (Category, Tag, Author or Date based pages)', 'Super-Socializer') ?></label><br/>
641
  <?php
642
  $post_types = get_post_types( array( 'public' => true ), 'names', 'and' );
643
  $post_types = array_diff( $post_types, array( 'post', 'page' ) );
644
  if( count( $post_types ) ) {
645
  foreach ( $post_types as $post_type ) {
646
  ?>
647
- <input id="the_champ_sharing_<?php echo $post_type ?>" name="the_champ_sharing[<?php echo $post_type ?>]" type="checkbox" <?php echo isset($theChampSharingOptions[$post_type]) ? 'checked = "checked"' : '';?> value="1" />
648
- <label for="the_champ_sharing_<?php echo $post_type ?>"><?php echo ucfirst( $post_type ) . 's'; ?></label><br/>
649
  <?php
650
  }
651
  }
652
 
653
  if($theChampIsBpActive){
654
  ?>
655
- <input id="the_champ_sharing_bp_activity" name="the_champ_sharing[bp_activity]" type="checkbox" <?php echo isset($theChampSharingOptions['bp_activity']) ? 'checked = "checked"' : '';?> value="1" />
656
- <label for="the_champ_sharing_bp_activity"><?php _e('BuddyPress activity', 'Super-Socializer') ?></label><br/>
657
- <input id="the_champ_sharing_bp_group" name="the_champ_sharing[bp_group]" type="checkbox" <?php echo isset($theChampSharingOptions['bp_group']) ? 'checked = "checked"' : '';?> value="1" />
658
- <label for="the_champ_sharing_bp_group"><?php _e('BuddyPress group (only at top of content)', 'Super-Socializer') ?></label><br/>
659
  <?php
660
  }
661
  if(function_exists('is_bbpress')){
662
  ?>
663
- <input id="the_champ_sharing_bb_forum" name="the_champ_sharing[bb_forum]" type="checkbox" <?php echo isset($theChampSharingOptions['bb_forum']) ? 'checked = "checked"' : '';?> value="1" />
664
- <label for="the_champ_sharing_bb_forum"><?php _e('BBPress forum', 'Super-Socializer') ?></label>
665
  <br/>
666
- <input id="the_champ_sharing_bb_topic" name="the_champ_sharing[bb_topic]" type="checkbox" <?php echo isset($theChampSharingOptions['bb_topic']) ? 'checked = "checked"' : '';?> value="1" />
667
- <label for="the_champ_sharing_bb_topic"><?php _e('BBPress topic', 'Super-Socializer') ?></label>
668
  <br/>
669
- <input id="the_champ_sharing_bb_reply" name="the_champ_sharing[bb_reply]" type="checkbox" <?php echo isset($theChampSharingOptions['bb_reply']) ? 'checked = "checked"' : '';?> value="1" />
670
- <label for="the_champ_sharing_bb_reply"><?php _e('BBPress reply', 'Super-Socializer') ?></label>
671
  <br/>
672
  <?php
673
  }
674
  if(the_champ_ss_woocom_is_active()){
675
  ?>
676
- <input id="the_champ_sharing_woocom_shop" name="the_champ_sharing[woocom_shop]" type="checkbox" <?php echo isset($theChampSharingOptions['woocom_shop']) ? 'checked = "checked"' : '';?> value="1" />
677
- <label for="the_champ_sharing_woocom_shop"><?php _e('After individual product at WooCommerce Shop page', 'Super-Socializer') ?></label>
678
  <br/>
679
- <input id="the_champ_sharing_woocom_product" name="the_champ_sharing[woocom_product]" type="checkbox" <?php echo isset($theChampSharingOptions['woocom_product']) ? 'checked = "checked"' : '';?> value="1" />
680
- <label for="the_champ_sharing_woocom_product"><?php _e('WooCommerce Product Page', 'Super-Socializer') ?></label>
681
  <br/>
682
- <input id="the_champ_sharing_woocom_thankyou" name="the_champ_sharing[woocom_thankyou]" type="checkbox" <?php echo isset($theChampSharingOptions['woocom_thankyou']) ? 'checked = "checked"' : '';?> value="1" />
683
- <label for="the_champ_sharing_woocom_thankyou"><?php _e('WooCommerce Thankyou Page', 'Super-Socializer') ?></label>
684
  <br/>
685
  <?php
686
  }
@@ -688,28 +952,53 @@
688
  </td>
689
  </tr>
690
 
691
- <tr class="the_champ_help_content" id="the_champ_ss_location_help_cont">
692
  <td colspan="2">
693
  <div>
694
- <?php _e('Specify the pages where you want to enable Sharing interface', 'Super-Socializer') ?>
695
  </div>
696
  </td>
697
  </tr>
698
 
699
  <tr>
700
  <th>
701
- <img id="the_champ_ss_count_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
702
- <label for="the_champ_sharing_counts"><?php _e("Show share counts", 'Super-Socializer'); ?></label>
703
  </th>
704
  <td>
705
- <input id="the_champ_sharing_counts" name="the_champ_sharing[horizontal_counts]" type="checkbox" <?php echo isset($theChampSharingOptions['horizontal_counts']) ? 'checked = "checked"' : '';?> value="1" />
 
 
706
  </td>
707
  </tr>
708
 
709
- <tr class="the_champ_help_content" id="the_champ_ss_count_help_cont">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
710
  <td colspan="2">
711
  <div>
712
- <?php _e('If enabled, share counts are displayed above sharing icons.', 'Super-Socializer') ?>
713
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_share_count.png', __FILE__); ?>" />
714
  </div>
715
  </td>
@@ -717,18 +1006,18 @@
717
 
718
  <tr>
719
  <th>
720
- <img id="the_champ_ss_total_hor_shares_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
721
- <label for="the_champ_ss_total_hor_shares"><?php _e("Show total shares", 'Super-Socializer'); ?></label>
722
  </th>
723
  <td>
724
- <input id="the_champ_ss_total_hor_shares" name="the_champ_sharing[horizontal_total_shares]" type="checkbox" <?php echo isset($theChampSharingOptions['horizontal_total_shares']) ? 'checked = "checked"' : '';?> value="1" />
725
  </td>
726
  </tr>
727
 
728
- <tr class="the_champ_help_content" id="the_champ_ss_total_hor_shares_help_cont">
729
  <td colspan="2">
730
  <div>
731
- <?php _e('If enabled, total shares will be displayed with sharing icons', 'Super-Socializer') ?>
732
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_horizontal_total_shares.png', __FILE__); ?>" />
733
  </div>
734
  </td>
@@ -736,18 +1025,18 @@
736
 
737
  <tr>
738
  <th>
739
- <img id="the_champ_ss_hmore_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
740
- <label for="the_champ_ss_hmore"><?php _e("Enable 'More' icon", 'Super-Socializer'); ?></label>
741
  </th>
742
  <td>
743
- <input id="the_champ_ss_hmore" name="the_champ_sharing[horizontal_more]" type="checkbox" <?php echo isset($theChampSharingOptions['horizontal_more']) ? 'checked = "checked"' : '';?> value="1" />
744
  </td>
745
  </tr>
746
 
747
- <tr class="the_champ_help_content" id="the_champ_ss_hmore_help_cont">
748
  <td colspan="2">
749
  <div>
750
- <?php _e('If enabled, "More" icon will be displayed after selected sharing icons which shows additional sharing networks in popup', 'Super-Socializer') ?>
751
  </div>
752
  </td>
753
  </tr>
@@ -756,190 +1045,112 @@
756
  </div>
757
  </div>
758
 
759
- <div class="stuffbox">
760
- <h3><label><?php _e('Vertical (Floating) Sharing Interface Options', 'Super-Socializer');?></label></h3>
 
 
 
 
 
 
761
  <div class="inside">
762
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
763
  <tr>
764
  <th>
765
- <img id="the_champ_ss_vertical_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
766
- <label for="the_champ_ss_vertical_enable"><?php _e("Enable vertical (floating) sharing interface", 'Super-Socializer'); ?></label>
767
  </th>
768
  <td>
769
- <input id="the_champ_ss_vertical_enable" onclick="theChampVerticalSharingOptionsToggle(this)" name="the_champ_sharing[vertical_enable]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_enable']) ? 'checked = "checked"' : '';?> value="1" />
770
  </td>
771
  </tr>
772
 
773
- <tr class="the_champ_help_content" id="the_champ_ss_vertical_enable_help_cont">
774
  <td colspan="2">
775
  <div>
776
- <?php _e('Master control to enable vertical (floating) sharing widget', 'Super-Socializer') ?>
777
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_vertical_sharing.png', __FILE__); ?>" />
778
  </div>
779
  </td>
780
  </tr>
781
 
782
- <tbody id="the_champ_vertical_sharing_options" <?php echo isset($theChampSharingOptions['vertical_enable']) ? '' : 'style="display: none"'; ?>>
783
  <tr>
784
  <th>
785
- <img id="the_champ_ss_vertical_target_url_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
786
- <label for="the_champ_ss_vertical_target_url"><?php _e("Target Url", 'Super-Socializer'); ?></label>
787
  </th>
788
  <td id="the_champ_vertical_target_url_column">
789
- <input id="the_champ_vertical_target_url_default" name="the_champ_sharing[vertical_target_url]" type="radio" <?php echo !isset($theChampSharingOptions['vertical_target_url']) || $theChampSharingOptions['vertical_target_url'] == 'default' ? 'checked = "checked"' : '';?> value="default" />
790
- <label for="the_champ_vertical_target_url_default"><?php _e('Url of the webpage where icons are located (default)', 'Super-Socializer') ?></label><br/>
791
- <input id="the_champ_vertical_target_url_home" name="the_champ_sharing[vertical_target_url]" type="radio" <?php echo isset($theChampSharingOptions['vertical_target_url']) && $theChampSharingOptions['vertical_target_url'] == 'home' ? 'checked = "checked"' : '';?> value="home" />
792
- <label for="the_champ_vertical_target_url_home"><?php _e('Url of the homepage of your website', 'Super-Socializer') ?></label><br/>
793
- <input id="the_champ_vertical_target_url_custom" name="the_champ_sharing[vertical_target_url]" type="radio" <?php echo isset($theChampSharingOptions['vertical_target_url']) && $theChampSharingOptions['vertical_target_url'] == 'custom' ? 'checked = "checked"' : '';?> value="custom" />
794
- <label for="the_champ_vertical_target_url_custom"><?php _e('Custom url', 'Super-Socializer') ?></label><br/>
795
- <input id="the_champ_vertical_target_url_custom_url" name="the_champ_sharing[vertical_target_url_custom]" type="text" value="<?php echo isset($theChampSharingOptions['vertical_target_url_custom']) ? $theChampSharingOptions['vertical_target_url_custom'] : '' ?>" />
796
  </td>
797
  </tr>
798
- <tr class="the_champ_help_content" id="the_champ_ss_vertical_target_url_help_cont">
799
  <td colspan="2">
800
  <div>
801
- <?php _e('Url to share', 'Super-Socializer') ?>
802
  </div>
803
  </td>
804
  </tr>
805
 
806
  <tr>
807
  <th>
808
- <img id="the_champ_ss_vertical_providers_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
809
- <label><?php _e("Select providers", 'Super-Socializer'); ?></label>
810
  </th>
811
- <td>
812
- <div class="theChampVerticalSharingProviderContainer">
813
- <input id="the_champ_vertical_sharing_facebook" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('facebook', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="facebook" />
814
- <label for="the_champ_vertical_sharing_facebook"><?php _e("Facebook", 'Super-Socializer'); ?></label>
815
- </div>
816
-
817
- <div class="theChampVerticalSharingProviderContainer">
818
- <input id="the_champ_vertical_sharing_twitter" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('twitter', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="twitter" />
819
- <label for="the_champ_vertical_sharing_twitter"><?php _e("Twitter", 'Super-Socializer'); ?></label>
820
- </div>
821
-
822
- <div class="theChampVerticalSharingProviderContainer">
823
- <input id="the_champ_vertical_sharing_linkedin" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('linkedin', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="linkedin" />
824
- <label for="the_champ_vertical_sharing_linkedin"><?php _e("LinkedIn", 'Super-Socializer'); ?></label>
825
- </div>
826
-
827
- <div class="theChampVerticalSharingProviderContainer">
828
- <input id="the_champ_vertical_sharing_google" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('google', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="google" />
829
- <label for="the_champ_vertical_sharing_google"><?php _e("Google+", 'Super-Socializer'); ?></label>
830
- </div>
831
-
832
- <div class="theChampVerticalSharingProviderContainer">
833
- <input id="the_champ_vertical_sharing_print" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('print', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="print" />
834
- <label for="the_champ_vertical_sharing_print"><?php _e("Print", 'Super-Socializer'); ?></label>
835
- </div>
836
-
837
- <div class="theChampVerticalSharingProviderContainer">
838
- <input id="the_champ_vertical_sharing_email" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('email', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="email" />
839
- <label for="the_champ_vertical_sharing_email"><?php _e("Email", 'Super-Socializer'); ?></label>
840
- </div>
841
-
842
- <div class="theChampVerticalSharingProviderContainer">
843
- <input id="the_champ_vertical_sharing_yahoo" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('yahoo', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="yahoo" />
844
- <label for="the_champ_vertical_sharing_yahoo"><?php _e("Yahoo", 'Super-Socializer'); ?></label>
845
- </div>
846
-
847
- <div class="theChampVerticalSharingProviderContainer">
848
- <input id="the_champ_vertical_sharing_reddit" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('reddit', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="reddit" />
849
- <label for="the_champ_vertical_sharing_reddit"><?php _e("Reddit", 'Super-Socializer'); ?></label>
850
- </div>
851
-
852
- <div class="theChampVerticalSharingProviderContainer">
853
- <input id="the_champ_vertical_sharing_digg" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('digg', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="digg" />
854
- <label for="the_champ_vertical_sharing_digg"><?php _e("Digg", 'Super-Socializer'); ?></label>
855
- </div>
856
-
857
- <div class="theChampVerticalSharingProviderContainer">
858
- <input id="the_champ_vertical_sharing_delicious" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('delicious', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="delicious" />
859
- <label for="the_champ_vertical_sharing_delicious"><?php _e("Delicious", 'Super-Socializer'); ?></label>
860
- </div>
861
-
862
- <div class="theChampVerticalSharingProviderContainer">
863
- <input id="the_champ_vertical_sharing_stumble" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('stumbleupon', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="stumbleupon" />
864
- <label for="the_champ_vertical_sharing_stumble"><?php _e("StumbleUpon", 'Super-Socializer'); ?></label>
865
- </div>
866
-
867
- <div class="theChampVerticalSharingProviderContainer">
868
- <input id="the_champ_vertical_sharing_float" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('float it', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="float it" />
869
- <label for="the_champ_vertical_sharing_float"><?php _e("Float it", 'Super-Socializer'); ?></label>
870
- </div>
871
-
872
- <div class="theChampVerticalSharingProviderContainer">
873
- <input id="the_champ_vertical_sharing_tumblr" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('tumblr', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="tumblr" />
874
- <label for="the_champ_vertical_sharing_tumblr"><?php _e("Tumblr", 'Super-Socializer'); ?></label>
875
- </div>
876
-
877
- <div class="theChampVerticalSharingProviderContainer">
878
- <input id="the_champ_vertical_sharing_vk" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('vkontakte', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="vkontakte" />
879
- <label for="the_champ_vertical_sharing_vk"><?php _e("Vkontakte", 'Super-Socializer'); ?></label>
880
- </div>
881
-
882
- <div class="theChampVerticalSharingProviderContainer">
883
- <input id="the_champ_vertical_sharing_pinterest" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('pinterest', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="pinterest" />
884
- <label for="the_champ_vertical_sharing_pinterest"><?php _e("Pinterest", 'Super-Socializer'); ?></label>
885
- </div>
886
-
887
- <div class="theChampVerticalSharingProviderContainer">
888
- <input id="the_champ_vertical_sharing_xing" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('xing', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="xing" />
889
- <label for="the_champ_vertical_sharing_xing"><?php _e("Xing", 'Super-Socializer'); ?></label>
890
- </div>
891
-
892
- <div class="theChampVerticalSharingProviderContainer">
893
- <input id="the_champ_vertical_sharing_whatsapp" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('whatsapp', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="whatsapp" />
894
- <label for="the_champ_vertical_sharing_whatsapp"><?php _e("Whatsapp", 'Super-Socializer'); ?></label>
895
- </div>
896
-
897
- <div class="theChampVerticalSharingProviderContainer">
898
- <input id="the_champ_vertical_sharing_yummly" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('yummly', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="yummly" />
899
- <label for="the_champ_vertical_sharing_yummly"><?php _e("Yummly", 'Super-Socializer'); ?></label>
900
- </div>
901
-
902
- <div class="theChampVerticalSharingProviderContainer">
903
- <input id="the_champ_vertical_sharing_buffer" name="the_champ_sharing[vertical_providers][]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_providers']) && in_array('buffer', $theChampSharingOptions['vertical_providers']) ? 'checked = "checked"' : '';?> value="buffer" />
904
- <label for="the_champ_vertical_sharing_buffer"><?php _e("Buffer", 'Super-Socializer'); ?></label>
905
- </div>
906
- </td>
907
- </tr>
908
-
909
- <tr class="the_champ_help_content" id="the_champ_ss_vertical_providers_help_cont">
910
- <td colspan="2">
911
- <div>
912
- <?php _e('Select the providers for sharing interface', 'Super-Socializer') ?>
913
- </div>
914
- </td>
915
  </tr>
916
 
917
  <tr>
918
- <th>
919
- <img id="the_champ_ss_vertical_rearrange_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
920
- <label><?php _e("Rearrange icons", 'Super-Socializer'); ?></label>
921
- </th>
922
- <td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
923
  <ul id="the_champ_ss_vertical_rearrange">
924
  <?php
925
- $verticalSharingStyle = 'width:' . $theChampSharingOptions['vertical_sharing_size'] . 'px;height:' . $theChampSharingOptions['vertical_sharing_size'] . 'px;';
926
- $verticalDeliciousRadius = '';
927
- if($theChampSharingOptions['vertical_sharing_shape'] == 'round'){
928
- $verticalSharingStyle .= 'border-radius:999px;';
929
- $verticalDeliciousRadius = 'border-radius:999px;';
930
- }
931
- ?>
932
- <script>
933
- var theChampVerticalSharingStyle = '<?php echo $verticalSharingStyle ?>', theChampVerticalDeliciousRadius = '<?php echo $verticalDeliciousRadius ?>';
934
- </script>
935
- <?php
936
- foreach($theChampSharingOptions['vertical_re_providers'] as $rearrange){
937
- ?>
938
- <li title="<?php echo $rearrange ?>" id="the_champ_re_vertical_<?php echo str_replace(' ', '_', $rearrange) ?>" >
939
- <i style="display:block;<?php echo $verticalSharingStyle ?>" class="theChamp<?php echo ucfirst(str_replace(' ', '', $rearrange)) ?>Background"><div class="theChampSharingSvg theChamp<?php echo ucfirst(str_replace(' ', '', $rearrange)) ?>Svg" style="<?php echo $verticalDeliciousRadius ?>"></div></i>
940
- <input type="hidden" name="the_champ_sharing[vertical_re_providers][]" value="<?php echo $rearrange ?>">
941
- </li>
942
- <?php
943
  }
944
  ?>
945
  </ul>
@@ -949,85 +1160,127 @@
949
  <tr class="the_champ_help_content" id="the_champ_ss_vertical_rearrange_help_cont">
950
  <td colspan="2">
951
  <div>
952
- <?php _e('Drag the icons to rearrange in desired order', 'Super-Socializer') ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
953
  </div>
954
  </td>
955
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
956
 
957
  <tr>
958
  <th>
959
- <img id="the_champ_ss_vertical_bg_color_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
960
- <label><?php _e("Background Color", 'Super-Socializer'); ?></label>
961
  </th>
962
  <td>
963
- <input style="width: 100px" name="the_champ_sharing[vertical_bg]" type="text" value="<?php echo isset($theChampSharingOptions['vertical_bg']) ? $theChampSharingOptions['vertical_bg'] : '' ?>" />
964
  </td>
965
  </tr>
966
 
967
- <tr class="the_champ_help_content" id="the_champ_ss_vertical_bg_color_help_cont">
968
  <td colspan="2">
969
  <div>
970
- <?php _e('Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href="http://www.colorpicker.com/" target="_blank">this link</a>', 'Super-Socializer') ?>
971
  </div>
972
  </td>
973
  </tr>
974
 
975
  <tr>
976
  <th>
977
- <img id="the_champ_ss_alignment_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
978
- <label for="the_champ_ss_alignment"><?php _e("Horizontal alignment", 'Super-Socializer'); ?></label>
979
  </th>
980
  <td>
981
- <select onchange="theChampToggleOffset(this.value)" id="the_champ_ss_alignment" name="the_champ_sharing[alignment]">
982
- <option value="left" <?php echo isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] == 'left' ? 'selected="selected"' : '' ?>><?php _e('Left', 'Super-Socializer') ?></option>
983
- <option value="right" <?php echo isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] == 'right' ? 'selected="selected"' : '' ?>><?php _e('Right', 'Super-Socializer') ?></option>
984
  </select>
985
  </td>
986
  </tr>
987
 
988
- <tr class="the_champ_help_content" id="the_champ_ss_alignment_help_cont">
989
  <td colspan="2">
990
  <div>
991
- <?php _e('Horizontal alignment of the sharing interface', 'Super-Socializer') ?>
992
  </div>
993
  </td>
994
  </tr>
995
 
996
- <tbody id="the_champ_ss_left_offset_rows" <?php echo (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] == 'left') ? '' : 'style="display: none"' ?>>
997
  <tr>
998
  <th>
999
- <img id="the_champ_ss_left_offset_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1000
- <label for="the_champ_ss_left_offset"><?php _e("Left offset", 'Super-Socializer'); ?></label>
1001
  </th>
1002
  <td>
1003
- <input style="width: 100px" id="the_champ_ss_left_offset" name="the_champ_sharing[left_offset]" type="text" value="<?php echo isset($theChampSharingOptions['left_offset']) ? $theChampSharingOptions['left_offset'] : '' ?>" />px
1004
  </td>
1005
  </tr>
1006
 
1007
- <tr class="the_champ_help_content" id="the_champ_ss_left_offset_help_cont">
1008
  <td colspan="2">
1009
  <div>
1010
- <?php _e('Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left. Number can be negative too.', 'Super-Socializer') ?>
1011
  </div>
1012
  </td>
1013
  </tr>
1014
  </tbody>
1015
 
1016
- <tbody id="the_champ_ss_right_offset_rows" <?php echo (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] == 'right') ? '' : 'style="display: none"' ?>>
1017
  <tr>
1018
  <th>
1019
- <img id="the_champ_ss_right_offset_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1020
- <label for="the_champ_ss_right_offset"><?php _e("Right offset", 'Super-Socializer'); ?></label>
1021
  </th>
1022
  <td>
1023
- <input style="width: 100px" id="the_champ_ss_right_offset" name="the_champ_sharing[right_offset]" type="text" value="<?php echo isset($theChampSharingOptions['right_offset']) ? $theChampSharingOptions['right_offset'] : '' ?>" />px
1024
  </td>
1025
  </tr>
1026
 
1027
- <tr class="the_champ_help_content" id="the_champ_ss_right_offset_help_cont">
1028
  <td colspan="2">
1029
  <div>
1030
- <?php _e('Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right. Number can be negative too.', 'Super-Socializer') ?>
1031
  </div>
1032
  </td>
1033
  </tr>
@@ -1035,93 +1288,109 @@
1035
 
1036
  <tr>
1037
  <th>
1038
- <img id="the_champ_ss_top_offset_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1039
- <label for="the_champ_ss_top_offset"><?php _e("Top offset", 'Super-Socializer'); ?></label>
1040
  </th>
1041
  <td>
1042
- <input style="width: 100px" id="the_champ_ss_top_offset" name="the_champ_sharing[top_offset]" type="text" value="<?php echo isset($theChampSharingOptions['top_offset']) ? $theChampSharingOptions['top_offset'] : '' ?>" />px
1043
  </td>
1044
  </tr>
1045
 
1046
- <tr class="the_champ_help_content" id="the_champ_ss_top_offset_help_cont">
1047
  <td colspan="2">
1048
  <div>
1049
- <?php _e('Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top.', 'Super-Socializer') ?>
1050
  </div>
1051
  </td>
1052
  </tr>
1053
 
1054
  <tr>
1055
  <th>
1056
- <img id="the_champ_ss_vertical_location_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1057
- <label><?php _e("Sharing location", 'Super-Socializer'); ?></label>
1058
  </th>
1059
  <td>
1060
- <input id="the_champ_sharing_vertical_home" name="the_champ_sharing[vertical_home]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_home']) ? 'checked = "checked"' : '';?> value="1" />
1061
- <label for="the_champ_sharing_vertical_home"><?php _e('Homepage', 'Super-Socializer') ?></label><br/>
1062
- <input id="the_champ_sharing_vertical_post" name="the_champ_sharing[vertical_post]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_post']) ? 'checked = "checked"' : '';?> value="1" />
1063
- <label for="the_champ_sharing_vertical_post"><?php _e('Posts', 'Super-Socializer') ?></label><br/>
1064
- <input id="the_champ_sharing_vertical_page" name="the_champ_sharing[vertical_page]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_page']) ? 'checked = "checked"' : '';?> value="1" />
1065
- <label for="the_champ_sharing_vertical_page"><?php _e('Pages', 'Super-Socializer') ?></label><br/>
1066
- <input id="the_champ_sharing_vertical_excerpt" name="the_champ_sharing[vertical_excerpt]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_excerpt']) ? 'checked = "checked"' : '';?> value="1" />
1067
- <label for="the_champ_sharing_vertical_excerpt"><?php _e('Excerpts (at Homepage)', 'Super-Socializer') ?></label><br/>
1068
- <input id="the_champ_sharing_vertical_category" name="the_champ_sharing[vertical_category]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_category']) ? 'checked = "checked"' : '';?> value="1" />
1069
- <label for="the_champ_sharing_vertical_category"><?php _e('Category Archives', 'Super-Socializer') ?></label><br/>
1070
- <input id="the_champ_sharing_vertical_archive" name="the_champ_sharing[vertical_archive]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_archive']) ? 'checked = "checked"' : '';?> value="1" />
1071
- <label for="the_champ_sharing_vertical_archive"><?php _e('Archive Pages (Category, Tag, Author or Date based pages)', 'Super-Socializer') ?></label><br/>
1072
  <?php
1073
  if( count( $post_types ) ) {
1074
  foreach ( $post_types as $post_type ) {
1075
  ?>
1076
- <input id="the_champ_sharing_vertical_<?php echo $post_type ?>" name="the_champ_sharing[vertical_<?php echo $post_type ?>]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_' . $post_type]) ? 'checked = "checked"' : '';?> value="1" />
1077
- <label for="the_champ_sharing_vertical_<?php echo $post_type ?>"><?php echo ucfirst( $post_type ) . 's'; ?></label><br/>
1078
  <?php
1079
  }
1080
  }
1081
 
1082
  if($theChampIsBpActive){
1083
  ?>
1084
- <input id="the_champ_sharing_vertical_bp_group" name="the_champ_sharing[vertical_bp_group]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_bp_group']) ? 'checked = "checked"' : '';?> value="1" />
1085
- <label for="the_champ_sharing_vertical_bp_group"><?php _e('BuddyPress group', 'Super-Socializer') ?></label><br/>
1086
  <?php
1087
  }
1088
 
1089
  if(function_exists('is_bbpress')){
1090
  ?>
1091
  <br/>
1092
- <input id="the_champ_sharing_vertical_bb_forum" name="the_champ_sharing[vertical_bb_forum]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_bb_forum']) ? 'checked = "checked"' : '';?> value="1" />
1093
- <label for="the_champ_sharing_vertical_bb_forum"><?php _e('BBPress forum', 'Super-Socializer') ?></label>
1094
  <br/>
1095
- <input id="the_champ_sharing_vertical_bb_topic" name="the_champ_sharing[vertical_bb_topic]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_bb_topic']) ? 'checked = "checked"' : '';?> value="1" />
1096
- <label for="the_champ_sharing_vertical_bb_topic"><?php _e('BBPress topic', 'Super-Socializer') ?></label>
1097
  <?php
1098
  }
1099
  ?>
1100
  </td>
1101
  </tr>
1102
 
1103
- <tr class="the_champ_help_content" id="the_champ_ss_vertical_location_help_cont">
1104
  <td colspan="2">
1105
  <div>
1106
- <?php _e('Specify the pages where you want to enable vertical Sharing interface', 'Super-Socializer') ?>
1107
  </div>
1108
  </td>
1109
  </tr>
1110
 
1111
  <tr>
1112
  <th>
1113
- <img id="the_champ_ss_vertical_count_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1114
- <label for="the_champ_sharing_vertical_counts"><?php _e("Show share counts", 'Super-Socializer'); ?></label>
1115
  </th>
1116
  <td>
1117
- <input id="the_champ_sharing_vertical_counts" name="the_champ_sharing[vertical_counts]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_counts']) ? 'checked = "checked"' : '';?> value="1" />
 
 
1118
  </td>
1119
  </tr>
1120
 
1121
- <tr class="the_champ_help_content" id="the_champ_ss_vertical_count_help_cont">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1122
  <td colspan="2">
1123
  <div>
1124
- <?php _e('If enabled, share counts are displayed above sharing icons.', 'Super-Socializer') ?>
1125
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_vertical_sharing_count.png', __FILE__); ?>" />
1126
  </div>
1127
  </td>
@@ -1129,18 +1398,18 @@
1129
 
1130
  <tr>
1131
  <th>
1132
- <img id="the_champ_ss_total_vertical_shares_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1133
- <label for="the_champ_ss_total_vertical_shares"><?php _e("Show total shares", 'Super-Socializer'); ?></label>
1134
  </th>
1135
  <td>
1136
- <input id="the_champ_ss_total_vertical_shares" name="the_champ_sharing[vertical_total_shares]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_total_shares']) ? 'checked = "checked"' : '';?> value="1" />
1137
  </td>
1138
  </tr>
1139
 
1140
- <tr class="the_champ_help_content" id="the_champ_ss_total_vertical_shares_help_cont">
1141
  <td colspan="2">
1142
  <div>
1143
- <?php _e('If enabled, total shares will be displayed with sharing icons', 'Super-Socializer') ?>
1144
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_vertical_total_shares.png', __FILE__); ?>" />
1145
  </div>
1146
  </td>
@@ -1148,58 +1417,80 @@
1148
 
1149
  <tr>
1150
  <th>
1151
- <img id="the_champ_ss_vmore_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1152
- <label for="the_champ_ss_vmore"><?php _e("Enable 'More' icon", 'Super-Socializer'); ?></label>
1153
  </th>
1154
  <td>
1155
- <input id="the_champ_ss_vmore" name="the_champ_sharing[vertical_more]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_more']) ? 'checked = "checked"' : '';?> value="1" />
1156
  </td>
1157
  </tr>
1158
 
1159
- <tr class="the_champ_help_content" id="the_champ_ss_vmore_help_cont">
1160
  <td colspan="2">
1161
  <div>
1162
- <?php _e('If enabled, "More" icon will be displayed after selected sharing icons which shows additional sharing networks in popup', 'Super-Socializer') ?>
1163
  </div>
1164
  </td>
1165
  </tr>
1166
 
1167
  <tr>
1168
  <th>
1169
- <img id="the_champ_ss_mobile_sharing_bottom_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1170
- <label for="the_champ_ss_mobile_sharing_bottom"><?php _e("Stick sharing bar horizontally at bottom on mobile devices", 'Super-Socializer'); ?></label>
1171
  </th>
1172
  <td>
1173
- <input id="the_champ_ss_mobile_sharing_bottom" name="the_champ_sharing[bottom_mobile_sharing]" type="checkbox" <?php echo isset($theChampSharingOptions['bottom_mobile_sharing']) ? 'checked = "checked"' : '';?> value="1" />
1174
  </td>
1175
  </tr>
1176
 
1177
- <tr class="the_champ_help_content" id="the_champ_ss_mobile_sharing_bottom_help_cont">
1178
  <td colspan="2">
1179
  <div>
1180
- <?php _e('If enabled, vertical sharing interface will stick horizontally at bottom on mobile devices', 'Super-Socializer') ?>
1181
- <img src="<?php echo plugins_url('../images/snaps/ss_mobile_sharing.png', __FILE__); ?>" />
1182
  </div>
1183
  </td>
1184
  </tr>
1185
 
1186
  <tr>
1187
  <th>
1188
- <img id="the_champ_ss_mobile_sharing_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1189
- <label for="the_champ_ss_mobile_sharing"><?php _e("Hide sharing on mobile devices", 'Super-Socializer'); ?></label>
1190
  </th>
1191
  <td>
1192
- <input id="the_champ_ss_mobile_sharing" name="the_champ_sharing[hide_mobile_sharing]" type="checkbox" <?php echo isset($theChampSharingOptions['hide_mobile_sharing']) ? 'checked = "checked"' : '';?> value="1" />
1193
  </td>
1194
  </tr>
1195
 
1196
- <tr class="the_champ_help_content" id="the_champ_ss_mobile_sharing_help_cont">
1197
  <td colspan="2">
1198
  <div>
1199
- <?php _e('If enabled, vertical sharing interface will not appear on mobile devices', 'Super-Socializer') ?>
 
1200
  </div>
1201
  </td>
1202
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1203
  </tbody>
1204
  </table>
1205
  </div>
@@ -1207,28 +1498,185 @@
1207
  </div>
1208
  <?php include 'help.php'; ?>
1209
  </div>
1210
-
1211
  <div class="menu_containt_div" id="tabs-4">
1212
  <div class="the_champ_left_column">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1213
  <div class="stuffbox">
1214
- <h3><label><?php _e('Shortcode & Widget', 'Super-Socializer');?></label></h3>
1215
  <div class="inside">
1216
- <p><a href="http://support.heateor.com/social-sharing-shortcode-and-widget/" target="_blank"><?php _e('Social Sharing Shortcode & Widget', 'Super-Socializer') ?></a></p>
1217
  </div>
1218
  </div>
1219
  </div>
1220
  <?php include 'help.php'; ?>
1221
  </div>
1222
 
1223
- <div class="menu_containt_div" id="tabs-5">
1224
  <div class="the_champ_left_column">
1225
  <div class="stuffbox">
1226
- <h3><label><?php _e('Facebook Sharing Troubleshooter', 'Super-Socializer');?></label></h3>
1227
  <div class="inside">
1228
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1229
  <tr>
1230
  <td>
1231
- <?php _e('If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:', 'Super-Socializer') ?><br/>
1232
  <a style="text-decoration: none" target="_blank" href="https://developers.facebook.com/tools/debug/">https://developers.facebook.com/tools/debug/</a>
1233
  </td>
1234
  </tr>
@@ -1239,14 +1687,19 @@
1239
  <?php include 'help.php'; ?>
1240
  </div>
1241
 
1242
- <div class="menu_containt_div" id="tabs-6">
1243
  <div class="the_champ_left_column">
1244
  <div class="stuffbox">
1245
- <h3><label><?php _e('FAQ', 'Super-Socializer') ?></label></h3>
1246
- <div class="inside">
1247
- <p><a href="http://support.heateor.com/how-can-i-show-share-counts-of-my-website-rather-than-of-individual-pagepost/" target="_blank"><?php _e('How can I show share counts of my website rather than of individual pages/posts?', 'Super-Socializer') ?></a></p>
1248
- <p><a href="http://support.heateor.com/how-can-i-disable-social-sharing-on-particular-pagepost/" target="_blank"><?php _e('How can I disable sharing on particular page/post?', 'Super-Socializer') ?></a></p>
1249
- <p><a href="http://support.heateor.com/how-can-i-specify-minimum-sharing-count-for-sharing-networks/" target="_blank"><?php _e('How can I specify minimum sharing count for sharing networks?', 'Super-Socializer') ?></a></p>
 
 
 
 
 
1250
  </div>
1251
  </div>
1252
 
@@ -1254,10 +1707,10 @@
1254
  <?php include 'help.php'; ?>
1255
  </div>
1256
 
1257
- <div class="the_champ_clear"></div>
1258
- <p class="submit">
1259
- <input style="margin-left:8px" type="submit" name="save" class="button button-primary" value="<?php _e("Save Changes", 'Super-Socializer'); ?>" />
1260
- </p>
1261
- </form>
1262
  </div>
1263
- </div>
 
 
 
 
 
1
  <?php defined('ABSPATH') or die("Cheating........Uh!!"); ?>
 
2
  <div id="fb-root"></div>
3
 
4
+ <div class="metabox-holder columns-2" style="padding-bottom:8px" id="post-body">
5
+ <form id="the_champ_form" action="options.php" method="post">
6
+ <?php settings_fields( 'the_champ_sharing_options' ); ?>
7
+
8
+ <div class="stuffbox" style="width:98.7%">
9
+ <h3><label><?php _e('Master Control', 'Super-Socializer' );?></label></h3>
10
+ <div class="inside">
11
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
12
+ <tr>
13
+ <th>
14
+ <label for="the_champ_enable_sharing"><?php _e( 'Enable Social Sharing', 'Super-Socializer' ) ?></label>
15
+ </th>
16
+ <td>
17
+ <input type="checkbox" id="the_champ_enable_sharing" name="the_champ_sharing[enable]" <?php echo isset($theChampSharingOptions['enable']) ? 'checked="checked"' : '' ?> value="1" />
18
+ </td>
19
+ </tr>
20
+ <tr class="the_champ_help_content" id="the_champ_enable_sharing_help_cont">
21
+ <td colspan="2">
22
+ <div>
23
+ <?php _e('Master control to enable Social Sharing', 'Super-Socializer') ?>
24
+ </div>
25
+ </td>
26
+ </tr>
27
+ </table>
28
+ </div>
29
+ </div>
30
+
31
+ <div class="menu_div" id="tabs" <?php echo isset($theChampSharingOptions['enable']) ? '' : 'style="display:none"' ?>>
32
+
33
+ <h2 class="nav-tab-wrapper" style="height:34px">
34
  <ul>
35
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-1"><?php _e('Theme Selection', 'Super-Socializer' ) ?></a></li>
36
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-2"><?php _e('Standard Interface', 'Super-Socializer' ) ?></a></li>
37
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-3"><?php _e('Floating Interface', 'Super-Socializer' ) ?></a></li>
38
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-4"><?php _e('Miscellaneous', 'Super-Socializer' ) ?></a></li>
39
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-5"><?php _e('Shortcode & Widget', 'Super-Socializer' ) ?></a></li>
40
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-6"><?php _e('Troubleshooter', 'Super-Socializer' ) ?></a></li>
41
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-7"><?php _e('FAQ', 'Super-Socializer' ) ?></a></li>
42
  </ul>
43
  </h2>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
 
45
+ <div class="menu_containt_div" id="tabs-1">
46
  <div class="the_champ_left_column">
47
  <div class="stuffbox">
48
+ <h3><label><?php _e('Standard interface theme', 'Super-Socializer' );?></label></h3>
49
  <div class="inside">
50
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
51
  <tr>
52
  <th>
53
+ <label style="float:left"><?php _e("Icon Preview", 'Super-Socializer' ); ?></label>
 
54
  </th>
55
  <td>
56
  <?php
57
+ $horizontal_bg = isset( $theChampSharingOptions['horizontal_bg_color_default'] ) ? $theChampSharingOptions['horizontal_bg_color_default'] : '';
58
+ $border_width = isset( $theChampSharingOptions['horizontal_border_width_default'] ) ? $theChampSharingOptions['horizontal_border_width_default'] : '';
59
+ $border_color = isset( $theChampSharingOptions['horizontal_border_color_default'] ) ? $theChampSharingOptions['horizontal_border_color_default'] : '';
60
+ $sharing_color = isset( $theChampSharingOptions['horizontal_font_color_default'] ) ? $theChampSharingOptions['horizontal_font_color_default'] : '';
61
+ $sharing_color_hover = isset( $theChampSharingOptions['horizontal_font_color_hover'] ) ? $theChampSharingOptions['horizontal_font_color_hover'] : '';
62
+ $sharing_shape = isset( $theChampSharingOptions['horizontal_sharing_shape'] ) ? $theChampSharingOptions['horizontal_sharing_shape'] : 'round';
63
+ $sharing_size = isset( $theChampSharingOptions['horizontal_sharing_size'] ) ? $theChampSharingOptions['horizontal_sharing_size'] : 32;
64
+ $sharing_width = isset( $theChampSharingOptions['horizontal_sharing_width'] ) ? $theChampSharingOptions['horizontal_sharing_width'] : 32;
65
+ $sharing_height = isset( $theChampSharingOptions['horizontal_sharing_height'] ) ? $theChampSharingOptions['horizontal_sharing_height'] : 32;
66
+ $sharing_border_radius = isset( $theChampSharingOptions['horizontal_border_radius'] ) ? $theChampSharingOptions['horizontal_border_radius'] : '';
67
+ $horizontal_bg_hover = isset( $theChampSharingOptions['horizontal_bg_color_hover'] ) ? $theChampSharingOptions['horizontal_bg_color_hover'] : '';
68
+ $counter_position = isset( $theChampSharingOptions['horizontal_counter_position'] ) ? $theChampSharingOptions['horizontal_counter_position'] : '';
69
+ $line_height = $sharing_shape == 'rectangle' ? $sharing_height : $sharing_size;
70
  ?>
71
+ <style type="text/css">
72
+ #the_champ_preview{
73
+ color:<?php echo $sharing_color ? $sharing_color : "#fff" ?>;
74
+ }
75
+ #the_champ_preview:hover{
76
+ color:<?php echo $sharing_color_hover ?>;
77
+ }
78
+ </style>
79
+ <div>
80
+ <div class="theChampCounterPreviewTop" style="width:<?php echo 60 + ( isset( $theChampSharingOptions['horizontal_sharing_shape'] ) && $theChampSharingOptions['horizontal_sharing_shape'] == 'rectangle' ? $theChampSharingOptions['horizontal_sharing_width'] : $theChampSharingOptions['horizontal_sharing_size'] ) ?>px">44</div>
81
+ <div class="theChampCounterPreviewLeft">44</div>
82
+ <div id="the_champ_preview" style="cursor:pointer;float:left">
83
+ <div class="theChampCounterPreviewInnertop">44</div>
84
+ <div class="theChampCounterPreviewInnerleft">44</div>
85
+ <div id="horizontal_svg" style="float:left;width:100%;height:100%;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Cpath%20stroke%3D%22<?php echo $sharing_color ? str_replace('#', '%23', $sharing_color) : "%23fff" ?>%22%20d%3D%22M14%2025%20v%20-13%20Q%2013%206%2021%207.5%20M%2010%2014%20L%2020%2014%22%20stroke-width%3D%224%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center; margin: auto"></div>
86
+ <div class="theChampCounterPreviewInnerright">44</div>
87
+ <div class="theChampCounterPreviewInnerbottom">44</div>
88
+ </div>
89
+ <div class="theChampCounterPreviewRight">44</div>
90
+ <div class="theChampCounterPreviewBottom" style="width:<?php echo 60 + ( isset( $theChampSharingOptions['horizontal_sharing_shape'] ) && $theChampSharingOptions['horizontal_sharing_shape'] == 'rectangle' ? $theChampSharingOptions['horizontal_sharing_width'] : $theChampSharingOptions['horizontal_sharing_size'] ) ?>px">44</div>
91
+ </div>
92
+
93
+ <script type="text/javascript">
94
+ var tempHorShape = '<?php echo $sharing_shape ?>', tempHorSize = '<?php echo $sharing_size ?>', tempHorHeight = '<?php echo $sharing_height ?>', tempHorWidth = '<?php echo $sharing_width ?>', theChampSharingBgHover = '<?php echo $horizontal_bg_hover ?>', theChampSharingBg = '<?php echo $horizontal_bg ? $horizontal_bg : "#3C589A" ?>', theChampBorderWidth = '<?php echo $border_width ?>', theChampBorderColor = '<?php echo $border_color ?>', theChampSharingBorderRadius = '<?php echo $sharing_border_radius ? $sharing_border_radius . "px" : "0px" ?>';
95
+
96
+ theChampSharingHorizontalPreview();
97
+
98
+ jQuery('#the_champ_preview').hover(function(){
99
+ if(theChampSharingBgHover && theChampSharingBgHover != '#3C589A'){
100
+ jQuery(this).css('backgroundColor', theChampSharingBgHover);
101
+ }
102
+ if(jQuery('#the_champ_font_color_hover').val().trim()){
103
+ jQuery(this).find('#horizontal_svg').attr('style', jQuery(this).find('#horizontal_svg').attr('style').replace(theChampSharingTempColor.replace('#', '%23'), jQuery('#the_champ_font_color_hover').val().trim().replace('#', '%23')));
104
+ jQuery(this).css('color', jQuery('#the_champ_font_color_hover').val().trim());
105
+ }
106
+ jQuery(this).css('borderStyle', 'solid');
107
+ jQuery(this).css('borderWidth', theChampBorderWidthHover ? theChampBorderWidthHover : theChampBorderWidth ? theChampBorderWidth : '0');
108
+ jQuery(this).css('borderColor', theChampBorderColorHover ? theChampBorderColorHover : 'transparent');
109
+ },function(){
110
+ jQuery(this).css('backgroundColor', theChampSharingBg);
111
+ if(jQuery('#the_champ_font_color_hover').val().trim()){
112
+ jQuery(this).find('#horizontal_svg').attr('style', jQuery(this).find('#horizontal_svg').attr('style').replace(jQuery('#the_champ_font_color_hover').val().trim().replace('#', '%23'), theChampSharingTempColor.replace('#', '%23')));
113
+ jQuery(this).css('color', theChampSharingTempColor);
114
+ }
115
+ jQuery(this).css('borderStyle', 'solid');
116
+ jQuery(this).css('borderWidth', theChampBorderWidth ? theChampBorderWidth : theChampBorderWidthHover ? theChampBorderWidthHover : '0');
117
+ jQuery(this).css('borderColor', theChampBorderColor ? theChampBorderColor : 'transparent');
118
+ });
119
+ </script>
120
  </td>
121
  </tr>
122
 
123
+ <tr>
124
+ <td colspan="2">
125
+ <div id="the_champ_preview_message" style="color:green;display:none;margin-top:36px"><?php _e('Do not forget to save the configuration after making changes by clicking the save button below', 'Super-Socializer' ); ?></div>
126
+ </td>
127
+ </tr>
128
+
129
+ <tr>
130
+ <th>
131
+ <img id="the_champ_icon_shape_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
132
+ <label><?php _e("Shape", 'Super-Socializer' ); ?></label>
133
+ </th>
134
+ <td>
135
+ <input id="the_champ_icon_round" onclick="tempHorShape = 'round';theChampSharingHorizontalPreview()" name="the_champ_sharing[horizontal_sharing_shape]" type="radio" <?php echo $sharing_shape == 'round' ? 'checked = "checked"' : '';?> value="round" />
136
+ <label style="margin-right:10px" for="the_champ_icon_round"><?php _e("Round", 'Super-Socializer' ); ?></label>
137
+ <input id="the_champ_icon_square" onclick="tempHorShape = 'square';theChampSharingHorizontalPreview()" name="the_champ_sharing[horizontal_sharing_shape]" type="radio" <?php echo $sharing_shape == 'square' ? 'checked = "checked"' : '';?> value="square" />
138
+ <label style="margin-right:10px" for="the_champ_icon_square"><?php _e("Square", 'Super-Socializer' ); ?></label>
139
+ <input id="the_champ_icon_rectangle" onclick="tempHorShape = 'rectangle';theChampSharingHorizontalPreview()" name="the_champ_sharing[horizontal_sharing_shape]" type="radio" <?php echo $sharing_shape == 'rectangle' ? 'checked = "checked"' : '';?> value="rectangle" />
140
+ <label for="the_champ_icon_rectangle"><?php _e("Rectangle", 'Super-Socializer' ); ?></label>
141
+ </td>
142
+ </tr>
143
+
144
+ <tr class="the_champ_help_content" id="the_champ_icon_shape_help_cont">
145
  <td colspan="2">
146
  <div>
147
+ <?php _e('Shape of the sharing icons', 'Super-Socializer' ) ?>
148
  </div>
149
  </td>
150
  </tr>
151
 
152
+ <tbody id="the_champ_size_options" <?php echo ! isset( $theChampSharingOptions['horizontal_sharing_shape'] ) || $theChampSharingOptions['horizontal_sharing_shape'] != 'rectangle' ? '' : 'style="display: none"'; ?>>
153
+ <tr>
154
+ <th>
155
+ <img id="the_champ_icon_size_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
156
+ <label><?php _e("Size (in pixels)", 'Super-Socializer' ); ?></label>
157
+ </th>
158
+ <td>
159
+ <input style="width:50px" id="the_champ_icon_size" name="the_champ_sharing[horizontal_sharing_size]" type="text" value="<?php echo $sharing_size; ?>" />
160
+ <input id="the_champ_size_plus" type="button" value="+" onmouseup="tempHorSize = document.getElementById('the_champ_icon_size').value;theChampSharingHorizontalPreview()" />
161
+ <input id="the_champ_size_minus" type="button" value="-" onmouseup="tempHorSize = document.getElementById('the_champ_icon_size').value;theChampSharingHorizontalPreview()" />
162
+ <script type="text/javascript">
163
+ theChampIncrement(document.getElementById('the_champ_size_plus'), "add", document.getElementById('the_champ_icon_size'), 300, 0.7);
164
+ theChampIncrement(document.getElementById('the_champ_size_minus'), "subtract", document.getElementById('the_champ_icon_size'), 300, 0.7);
165
+ </script>
166
+ </td>
167
+ </tr>
168
+
169
+ <tr class="the_champ_help_content" id="the_champ_icon_size_help_cont">
170
+ <td colspan="2">
171
+ <div>
172
+ <?php _e('Size of the sharing icons', 'Super-Socializer' ) ?>
173
+ </div>
174
+ </td>
175
+ </tr>
176
+ </tbody>
177
+
178
+ <tbody id="the_champ_rectangle_options" <?php echo isset( $theChampSharingOptions['horizontal_sharing_shape'] ) && $theChampSharingOptions['horizontal_sharing_shape'] == 'rectangle' ? '' : 'style="display: none"'; ?>>
179
+ <tr>
180
+ <th>
181
+ <img id="the_champ_icon_width_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
182
+ <label><?php _e("Width (in pixels)", 'Super-Socializer' ); ?></label>
183
+ </th>
184
+ <td>
185
+ <input style="width:50px" id="the_champ_icon_width" name="the_champ_sharing[horizontal_sharing_width]" type="text" value="<?php echo $sharing_width; ?>" />
186
+ <input id="the_champ_width_plus" type="button" value="+" onmouseup="tempHorWidth = document.getElementById('the_champ_icon_width').value;theChampSharingHorizontalPreview()" />
187
+ <input id="the_champ_width_minus" type="button" value="-" onmouseup="tempHorWidth = document.getElementById('the_champ_icon_width').value;theChampSharingHorizontalPreview()" />
188
+ <script type="text/javascript">
189
+ theChampIncrement(document.getElementById('the_champ_width_plus'), "add", document.getElementById('the_champ_icon_width'), 300, 0.7);
190
+ theChampIncrement(document.getElementById('the_champ_width_minus'), "subtract", document.getElementById('the_champ_icon_width'), 300, 0.7);
191
+ </script>
192
+ </td>
193
+ </tr>
194
+
195
+ <tr class="the_champ_help_content" id="the_champ_icon_width_help_cont">
196
+ <td colspan="2">
197
+ <div>
198
+ <?php _e('Width of the sharing icons', 'Super-Socializer' ) ?>
199
+ </div>
200
+ </td>
201
+ </tr>
202
+
203
+ <tr>
204
+ <th>
205
+ <img id="the_champ_icon_height_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
206
+ <label><?php _e("Height (in pixels)", 'Super-Socializer' ); ?></label>
207
+ </th>
208
+ <td>
209
+ <input style="width:50px" id="the_champ_icon_height" name="the_champ_sharing[horizontal_sharing_height]" type="text" value="<?php echo $sharing_height; ?>" />
210
+ <input id="the_champ_height_plus" type="button" value="+" onmouseup="tempHorHeight = document.getElementById('the_champ_icon_height').value;theChampSharingHorizontalPreview()" />
211
+ <input id="the_champ_height_minus" type="button" value="-" onmouseup="tempHorHeight = document.getElementById('the_champ_icon_height').value;theChampSharingHorizontalPreview()" />
212
+ <script type="text/javascript">
213
+ theChampIncrement(document.getElementById('the_champ_height_plus'), "add", document.getElementById('the_champ_icon_height'), 300, 0.7);
214
+ theChampIncrement(document.getElementById('the_champ_height_minus'), "subtract", document.getElementById('the_champ_icon_height'), 300, 0.7);
215
+ </script>
216
+ </td>
217
+ </tr>
218
+
219
+ <tr class="the_champ_help_content" id="the_champ_icon_height_help_cont">
220
+ <td colspan="2">
221
+ <div>
222
+ <?php _e('Height of the sharing icons', 'Super-Socializer' ) ?>
223
+ </div>
224
+ </td>
225
+ </tr>
226
+ </tbody>
227
+
228
+ <tbody id="the_champ_border_radius_options" <?php echo isset( $theChampSharingOptions['horizontal_sharing_shape'] ) && $theChampSharingOptions['horizontal_sharing_shape'] != 'round' ? '' : 'style="display: none"'; ?>>
229
+ <tr>
230
+ <th>
231
+ <img id="the_champ_icon_border_radius_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
232
+ <label><?php _e("Border radius (in pixels)", 'Super-Socializer' ); ?></label>
233
+ </th>
234
+ <td>
235
+ <input style="width:50px" id="the_champ_icon_border_radius" name="the_champ_sharing[horizontal_border_radius]" type="text" value="<?php echo $sharing_border_radius; ?>" onkeyup="theChampSharingBorderRadius = this.value.trim() ? this.value.trim() + 'px' : '';theChampUpdateSharingPreview(this.value.trim() + 'px', 'borderRadius', '0px', 'the_champ_preview')" />
236
+ </td>
237
+ </tr>
238
+
239
+ <tr class="the_champ_help_content" id="the_champ_icon_border_radius_help_cont">
240
+ <td colspan="2">
241
+ <div>
242
+ <?php _e('Specify a value for rounded corners. More the value, more rounded will the corners be. Leave empty for sharp corners.', 'Super-Socializer' ) ?>
243
+ </div>
244
+ </td>
245
+ </tr>
246
+ </tbody>
247
+
248
  <tr>
249
  <th>
250
+ <img id="the_champ_font_color_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
251
+ <label><?php _e("Logo Color", 'Super-Socializer' ); ?></label>
252
  </th>
253
  <td>
254
+ <script type="text/javascript">var theChampSharingTempColor = '<?php echo $sharing_color ? $sharing_color : "#fff" ?>';</script>
255
+ <label for="the_champ_font_color_default"><?php _e("Default", 'Super-Socializer' ); ?></label><input style="width: 100px" id="the_champ_font_color_default" onkeyup="if(this.value.trim() == '' || this.value.trim().length >= 3){ jQuery('#horizontal_svg').attr('style', jQuery('#horizontal_svg').attr('style').replace(theChampSharingTempColor.replace('#', '%23'), this.value.trim() ? this.value.trim().replace('#', '%23') : '%23fff')); theChampSharingTempColor = this.value.trim() ? this.value.trim() : '#fff';jQuery('#the_champ_preview').css('color', theChampSharingTempColor.replace('%23','#')) }" name="the_champ_sharing[horizontal_font_color_default]" type="text" value="<?php echo $sharing_color; ?>" />
256
+ <input name="the_champ_sharing[horizontal_sharing_replace_color]" type="hidden" value="<?php echo isset( $theChampSharingOptions['horizontal_sharing_replace_color'] ) ? $theChampSharingOptions['horizontal_sharing_replace_color'] : ''; ?>" />
257
+ <label style="margin-left:10px" for="the_champ_font_color_hover"><?php _e("On Hover", 'Super-Socializer' ); ?></label><input style="width: 100px" id="the_champ_font_color_hover" name="the_champ_sharing[horizontal_font_color_hover]" type="text" onkeyup="" value="<?php echo $sharing_color_hover; ?>" />
258
+ <input name="the_champ_sharing[horizontal_sharing_replace_color_hover]" type="hidden" value="<?php echo isset( $theChampSharingOptions['horizontal_sharing_replace_color_hover'] ) ? $theChampSharingOptions['horizontal_sharing_replace_color_hover'] : ''; ?>" />
 
 
 
 
259
  </td>
260
  </tr>
261
 
262
+ <tr class="the_champ_help_content" id="the_champ_font_color_help_cont">
263
  <td colspan="2">
264
  <div>
265
+ <?php _e('Specify the color or hex code (example #cc78e0) for the logo of icon. Leave empty for default. You can get the hex code of the required color from <a href="http://www.colorpicker.com/" target="_blank">this link</a>', 'Super-Socializer' ) ?>
266
  </div>
267
  </td>
268
  </tr>
269
 
270
  <tr>
271
  <th>
272
+ <img id="the_champ_bg_color_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
273
+ <label><?php _e("Background Color", 'Super-Socializer' ); ?></label>
274
  </th>
275
  <td>
276
+ <label for="the_champ_bg_color_default"><?php _e("Default", 'Super-Socializer' ); ?></label><input style="width: 100px" id="the_champ_bg_color_default" name="the_champ_sharing[horizontal_bg_color_default]" type="text" onkeyup="theChampSharingBg = this.value.trim() ? this.value.trim() : '#3C589A'; theChampUpdateSharingPreview(this.value.trim(), 'backgroundColor', '#3C589A', 'the_champ_preview')" value="<?php echo $horizontal_bg ?>" />
277
+ <label style="margin-left:10px" for="the_champ_bg_color_hover"><?php _e("On Hover", 'Super-Socializer' ); ?></label><input style="width: 100px" id="the_champ_bg_color_hover" name="the_champ_sharing[horizontal_bg_color_hover]" type="text" onkeyup="theChampSharingBgHover = this.value.trim() ? this.value.trim() : '#3C589A';" value="<?php echo $horizontal_bg_hover ?>" />
278
+ </td>
279
+ </tr>
280
+
281
+ <tr class="the_champ_help_content" id="the_champ_bg_color_help_cont">
282
+ <td colspan="2">
283
+ <div>
284
+ <?php _e('Specify the color or hex code (example #cc78e0) for icon background. Save "transparent" for transparent background. Leave empty for default. You can get the hex code of the required color from <a href="http://www.colorpicker.com/" target="_blank">this link</a>', 'Super-Socializer' ) ?>
285
+ </div>
286
  </td>
287
  </tr>
288
 
289
  <tr>
290
+ <th>
291
+ <img id="the_champ_border_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
292
+ <label><?php _e("Border", 'Super-Socializer' ); ?></label>
293
+ </th>
294
+ <td>
295
+ <script type="text/javascript">var theChampBorderWidthHover = '<?php echo $border_width_hover = isset( $theChampSharingOptions['horizontal_border_width_hover'] ) ? $theChampSharingOptions['horizontal_border_width_hover'] : ''; ?>', theChampBorderColorHover = '<?php echo $border_color_hover = isset( $theChampSharingOptions['horizontal_border_color_hover'] ) ? $theChampSharingOptions['horizontal_border_color_hover'] : ''; ?>'</script>
296
+ <label><strong><?php _e("Default", 'Super-Socializer' ); ?></strong></label>
297
+ <br/>
298
+ <label for="the_champ_border_width_default"><?php _e("Border Width", 'Super-Socializer' ); ?></label><input style="width: 100px" id="the_champ_border_width_default" onkeyup="theChampBorderWidth = this.value.trim(); jQuery('#the_champ_preview').css('borderStyle', 'solid'); theChampUpdateSharingPreview(this.value.trim(), 'borderWidth', '0px', 'the_champ_preview'); theChampSharingHorizontalPreview();" name="the_champ_sharing[horizontal_border_width_default]" type="text" value="<?php echo $border_width ?>" />pixel(s)
299
+ <label style="margin-left:10px" for="the_champ_border_color_default"><?php _e("Border Color", 'Super-Socializer' ); ?></label><input style="width: 100px" onkeyup="theChampBorderColor = this.value.trim(); jQuery('#the_champ_preview').css('borderStyle', 'solid'); theChampUpdateSharingPreview(this.value.trim(), 'borderColor', 'transparent', 'the_champ_preview')" id="the_champ_border_color_default" name="the_champ_sharing[horizontal_border_color_default]" type="text" value="<?php echo $border_color ?>" />
300
+ <br/><br/>
301
+ <label><strong><?php _e("On Hover", 'Super-Socializer' ); ?></strong></label>
302
+ <br/>
303
+ <label for="the_champ_border_width_hover"><?php _e("Border Width", 'Super-Socializer' ); ?></label><input style="width: 100px" id="the_champ_border_width_hover" name="the_champ_sharing[horizontal_border_width_hover]" type="text" value="<?php echo $border_width_hover ?>" onkeyup="theChampBorderWidthHover = this.value.trim();" />pixel(s)
304
+ <label style="margin-left:10px" for="the_champ_border_color_hover"><?php _e("Border Color", 'Super-Socializer' ); ?></label><input style="width: 100px" id="the_champ_border_color_hover" name="the_champ_sharing[horizontal_border_color_hover]" type="text" value="<?php echo $border_color_hover ?>" onkeyup="theChampBorderColorHover = this.value.trim();" />
305
+ </td>
306
+ </tr>
307
+
308
+ <tr class="the_champ_help_content" id="the_champ_border_help_cont">
309
  <td colspan="2">
310
+ <div>
311
+ <?php _e('Icon border', 'Super-Socializer' ) ?>
312
+ </div>
313
  </td>
314
  </tr>
315
+
316
+ <tr>
317
+ <th>
318
+ <img id="the_champ_counter_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
319
+ <label><?php _e("Counter Position", 'Super-Socializer' ); ?><br/><?php _e("(applies, if counter enabled)", 'Super-Socializer' ); ?></label>
320
+ </th>
321
+ <td>
322
+ <input id="the_champ_counter_left" name="the_champ_sharing[horizontal_counter_position]" onclick="theChampCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'left' ? 'checked = "checked"' : '';?> value="left" />
323
+ <label style="margin-right:10px" for="the_champ_counter_left"><?php _e("Left", 'Super-Socializer' ); ?></label>
324
+ <input id="the_champ_counter_top" name="the_champ_sharing[horizontal_counter_position]" onclick="theChampCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'top' ? 'checked = "checked"' : '';?> value="top" />
325
+ <label style="margin-right:10px" for="the_champ_counter_top"><?php _e("Top", 'Super-Socializer' ); ?></label>
326
+ <input id="the_champ_counter_right" name="the_champ_sharing[horizontal_counter_position]" onclick="theChampCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'right' ? 'checked = "checked"' : '';?> value="right" />
327
+ <label style="margin-right:10px" for="the_champ_counter_right"><?php _e("Right", 'Super-Socializer' ); ?></label>
328
+ <input id="the_champ_counter_bottom" name="the_champ_sharing[horizontal_counter_position]" onclick="theChampCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'bottom' ? 'checked = "checked"' : '';?> value="bottom" />
329
+ <label style="margin-right:10px" for="the_champ_counter_bottom"><?php _e("Bottom", 'Super-Socializer' ); ?></label><br/>
330
+ <input id="the_champ_counter_inner_left" name="the_champ_sharing[horizontal_counter_position]" onclick="theChampCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'inner_left' ? 'checked = "checked"' : '';?> value="inner_left" />
331
+ <label style="margin-right:10px" for="the_champ_counter_inner_left"><?php _e("Inner Left", 'Super-Socializer' ); ?></label>
332
+ <input id="the_champ_counter_inner_top" name="the_champ_sharing[horizontal_counter_position]" onclick="theChampCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'inner_top' ? 'checked = "checked"' : '';?> value="inner_top" />
333
+ <label style="margin-right:10px" for="the_champ_counter_inner_top"><?php _e("Inner Top", 'Super-Socializer' ); ?></label>
334
+ <input id="the_champ_counter_inner_right" name="the_champ_sharing[horizontal_counter_position]" onclick="theChampCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'inner_right' ? 'checked = "checked"' : '';?> value="inner_right" />
335
+ <label style="margin-right:10px" for="the_champ_counter_inner_right"><?php _e("Inner Right", 'Super-Socializer' ); ?></label>
336
+ <input id="the_champ_counter_inner_bottom" name="the_champ_sharing[horizontal_counter_position]" onclick="theChampCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'inner_bottom' ? 'checked = "checked"' : '';?> value="inner_bottom" />
337
+ <label style="margin-right:10px" for="the_champ_counter_inner_bottom"><?php _e("Inner Bottom", 'Super-Socializer' ); ?></label>
338
+ </td>
339
+ </tr>
340
+ <script type="text/javascript">theChampCounterPreview('<?php echo $counter_position ?>');</script>
341
+
342
+ <tr class="the_champ_help_content" id="the_champ_counter_help_cont">
343
+ <td colspan="2">
344
+ <div>
345
+ <?php _e('Position of share counter', 'Super-Socializer' ) ?>
346
+ </div>
347
+ </td>
348
+ </tr>
349
+
350
  </table>
351
  </div>
352
  </div>
353
 
354
  <div class="stuffbox">
355
+ <h3><label><?php _e('Floating interface theme', 'Super-Socializer' );?></label></h3>
356
  <div class="inside">
357
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
358
  <tr>
359
  <th>
360
+ <label style="float:left"><?php _e("Icon Preview", 'Super-Socializer' ); ?></label>
 
361
  </th>
362
  <td>
363
  <?php
364
+ $vertical_bg = isset( $theChampSharingOptions['vertical_bg_color_default'] ) ? $theChampSharingOptions['vertical_bg_color_default'] : '';
365
+ $vertical_bg_hover = isset( $theChampSharingOptions['vertical_bg_color_hover'] ) ? $theChampSharingOptions['vertical_bg_color_hover'] : '';
366
+ $vertical_border_width = isset( $theChampSharingOptions['vertical_border_width_default'] ) ? $theChampSharingOptions['vertical_border_width_default'] : '';
367
+ $vertical_border_color = isset( $theChampSharingOptions['vertical_border_color_default'] ) ? $theChampSharingOptions['vertical_border_color_default'] : '';
368
+ $vertical_sharing_color = isset( $theChampSharingOptions['vertical_font_color_default'] ) ? $theChampSharingOptions['vertical_font_color_default'] : '';
369
+ $vertical_sharing_color_hover = isset( $theChampSharingOptions['vertical_font_color_hover'] ) ? $theChampSharingOptions['vertical_font_color_hover'] : '';
370
+ $vertical_sharing_shape = isset( $theChampSharingOptions['vertical_sharing_shape'] ) ? $theChampSharingOptions['vertical_sharing_shape'] : 'round';
371
+ $vertical_sharing_size = isset( $theChampSharingOptions['vertical_sharing_size'] ) ? $theChampSharingOptions['vertical_sharing_size'] : 32;
372
+ $vertical_sharing_width = isset( $theChampSharingOptions['vertical_sharing_width'] ) ? $theChampSharingOptions['vertical_sharing_width'] : 32;
373
+ $vertical_sharing_height = isset( $theChampSharingOptions['vertical_sharing_height'] ) ? $theChampSharingOptions['vertical_sharing_height'] : 32;
374
+ $vertical_sharing_border_radius = isset( $theChampSharingOptions['vertical_border_radius'] ) ? $theChampSharingOptions['vertical_border_radius'] : '';
375
+ $vertical_vertical_bg_hover = isset( $theChampSharingOptions['vertical_bg_color_hover'] ) ? $theChampSharingOptions['vertical_bg_color_hover'] : '';
376
+ $vertical_counter_position = isset( $theChampSharingOptions['vertical_counter_position'] ) ? $theChampSharingOptions['vertical_counter_position'] : '';
377
+ $vertical_line_height = $vertical_sharing_shape == 'rectangle' ? $vertical_sharing_height : $vertical_sharing_size;
378
  ?>
379
+ <style type="text/css">
380
+ #the_champ_vertical_preview{
381
+ color:<?php echo $vertical_sharing_color ? $vertical_sharing_color : "#fff" ?>;
382
+ }
383
+ #the_champ_vertical_preview:hover{
384
+ color:<?php echo $vertical_sharing_color_hover ?>;
385
+ }
386
+ </style>
387
+ <div>
388
+ <div class="theChampCounterVerticalPreviewTop" style="width:<?php echo 60 + ( isset( $theChampSharingOptions['vertical_sharing_shape'] ) && $theChampSharingOptions['vertical_sharing_shape'] == 'rectangle' ? $theChampSharingOptions['vertical_sharing_width'] : $theChampSharingOptions['vertical_sharing_size'] ) ?>px">44</div>
389
+ <div class="theChampCounterVerticalPreviewLeft">44</div>
390
+ <div id="the_champ_vertical_preview" style="cursor:pointer;float:left">
391
+ <div class="theChampCounterVerticalPreviewInnertop">44</div>
392
+ <div class="theChampCounterVerticalPreviewInnerleft">44</div>
393
+ <div id="vertical_svg" style="float:left;width:100%;height:100%;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Cpath%20stroke%3D%22<?php echo $vertical_sharing_color ? str_replace('#', '%23', $vertical_sharing_color) : "%23fff" ?>%22%20d%3D%22M14%2025%20v%20-13%20Q%2013%206%2021%207.5%20M%2010%2014%20L%2020%2014%22%20stroke-width%3D%224%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center; margin: auto"></div>
394
+ <div class="theChampCounterVerticalPreviewInnerright">44</div>
395
+ <div class="theChampCounterVerticalPreviewInnerbottom">44</div>
396
+ </div>
397
+ <div class="theChampCounterVerticalPreviewRight">44</div>
398
+ <div class="theChampCounterVerticalPreviewBottom" style="width:<?php echo 60 + ( isset( $theChampSharingOptions['vertical_sharing_shape'] ) && $theChampSharingOptions['vertical_sharing_shape'] == 'rectangle' ? $theChampSharingOptions['vertical_sharing_width'] : $theChampSharingOptions['vertical_sharing_size'] ) ?>px">44</div>
399
+ </div>
400
+
401
+ <script type="text/javascript">
402
+ var tempVerticalShape = '<?php echo $vertical_sharing_shape ?>', tempVerticalSize = '<?php echo $vertical_sharing_size ?>', tempVerticalHeight = '<?php echo $vertical_sharing_height ?>', tempVerticalWidth = '<?php echo $vertical_sharing_width ?>', theChampVerticalSharingBgHover = '<?php echo $vertical_bg_hover ?>', theChampVerticalSharingBg = '<?php echo $vertical_bg ? $vertical_bg : "#3C589A" ?>', theChampVerticalBorderWidth = '<?php echo $vertical_border_width ?>', theChampVerticalBorderColor = '<?php echo $vertical_border_color ?>', theChampVerticalBorderWidthHover = '<?php echo $vertical_border_width_hover = isset( $theChampSharingOptions['vertical_border_width_hover'] ) ? $theChampSharingOptions['vertical_border_width_hover'] : ''; ?>', theChampVerticalBorderColorHover = '<?php echo $vertical_border_color_hover = isset( $theChampSharingOptions['vertical_border_color_hover'] ) ? $theChampSharingOptions['vertical_border_color_hover'] : ''; ?>', theChampVerticalBorderRadius = '<?php echo $vertical_sharing_border_radius ? $vertical_sharing_border_radius . "px" : "0px" ?>';
403
+
404
+ theChampSharingVerticalPreview();
405
+
406
+ jQuery('#the_champ_vertical_preview').hover(function(){
407
+ if(theChampVerticalSharingBgHover && theChampVerticalSharingBgHover != '#3C589A'){
408
+ jQuery(this).css('backgroundColor', theChampVerticalSharingBgHover);
409
+ }
410
+ if(jQuery('#the_champ_vertical_font_color_hover').val().trim()){
411
+ jQuery(this).find('#vertical_svg').attr('style', jQuery(this).find('#vertical_svg').attr('style').replace(theChampVerticalSharingTempColor.replace('#', '%23'), jQuery('#the_champ_vertical_font_color_hover').val().trim().replace('#', '%23')));
412
+ jQuery(this).css('color', jQuery('#the_champ_vertical_font_color_hover').val().trim());
413
+ }
414
+ jQuery(this).css('borderStyle', 'solid');
415
+ jQuery(this).css('borderWidth', theChampVerticalBorderWidthHover ? theChampVerticalBorderWidthHover : theChampVerticalBorderWidth ? theChampVerticalBorderWidth : '0');
416
+ jQuery(this).css('borderColor', theChampVerticalBorderColorHover ? theChampVerticalBorderColorHover : 'transparent');
417
+ },function(){
418
+ jQuery(this).css('backgroundColor', theChampVerticalSharingBg);
419
+ if(jQuery('#the_champ_vertical_font_color_hover').val().trim()){
420
+ jQuery(this).find('#vertical_svg').attr('style', jQuery(this).find('#vertical_svg').attr('style').replace(jQuery('#the_champ_vertical_font_color_hover').val().trim().replace('#', '%23'), theChampVerticalSharingTempColor.replace('#', '%23')));
421
+ jQuery(this).css('color', theChampVerticalSharingTempColor);
422
+ }
423
+ jQuery(this).css('borderStyle', 'solid');
424
+ jQuery(this).css('borderWidth', theChampVerticalBorderWidth ? theChampVerticalBorderWidth : theChampVerticalBorderWidthHover ? theChampVerticalBorderWidthHover : '0');
425
+ jQuery(this).css('borderColor', theChampVerticalBorderColor ? theChampVerticalBorderColor : 'transparent');
426
+ });
427
+ </script>
428
+ </td>
429
+ </tr>
430
+
431
+ <tr>
432
+ <td colspan="2">
433
+ <div id="the_champ_vertical_preview_message" style="color:green;display:none"><?php _e('Do not forget to save the configuration after making changes by clicking the save button below', 'Super-Socializer' ); ?></div>
434
+ </td>
435
+ </tr>
436
+
437
+ <tr>
438
+ <th>
439
+ <img id="the_champ_vertical_sharing_icon_shape_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
440
+ <label><?php _e("Shape", 'Super-Socializer' ); ?></label>
441
+ </th>
442
+ <td>
443
+ <input id="the_champ_vertical_icon_round" onclick="tempVerticalShape = 'round';theChampSharingVerticalPreview()" name="the_champ_sharing[vertical_sharing_shape]" type="radio" <?php echo $vertical_sharing_shape == 'round' ? 'checked = "checked"' : '';?> value="round" />
444
+ <label style="margin-right:10px" for="the_champ_vertical_icon_round"><?php _e("Round", 'Super-Socializer' ); ?></label>
445
+ <input id="the_champ_vertical_icon_square" onclick="tempVerticalShape = 'square';theChampSharingVerticalPreview()" name="the_champ_sharing[vertical_sharing_shape]" type="radio" <?php echo $vertical_sharing_shape == 'square' ? 'checked = "checked"' : '';?> value="square" />
446
+ <label style="margin-right:10px" for="the_champ_vertical_icon_square"><?php _e("Square", 'Super-Socializer' ); ?></label>
447
+ <input id="the_champ_vertical_icon_rectangle" onclick="tempVerticalShape = 'rectangle';theChampSharingVerticalPreview()" name="the_champ_sharing[vertical_sharing_shape]" type="radio" <?php echo $vertical_sharing_shape == 'rectangle' ? 'checked = "checked"' : '';?> value="rectangle" />
448
+ <label for="the_champ_vertical_icon_rectangle"><?php _e("Rectangle", 'Super-Socializer' ); ?></label>
449
  </td>
450
  </tr>
451
 
452
  <tr class="the_champ_help_content" id="the_champ_vertical_sharing_icon_shape_help_cont">
453
  <td colspan="2">
454
  <div>
455
+ <?php _e('Shape of the sharing icons', 'Super-Socializer' ) ?>
456
  </div>
457
  </td>
458
  </tr>
459
 
460
+ <tbody id="the_champ_vertical_size_options" <?php echo ! isset( $theChampSharingOptions['vertical_sharing_shape'] ) || $theChampSharingOptions['vertical_sharing_shape'] != 'rectangle' ? '' : 'style="display: none"'; ?>>
461
+ <tr>
462
+ <th>
463
+ <img id="the_champ_vertical_sharing_icon_size_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
464
+ <label><?php _e("Size (in pixels)", 'Super-Socializer' ); ?></label>
465
+ </th>
466
+ <td>
467
+ <input style="width:50px" id="the_champ_vertical_sharing_icon_size" name="the_champ_sharing[vertical_sharing_size]" type="text" value="<?php echo $vertical_sharing_size; ?>" />
468
+ <input id="the_champ_vertical_sharing_size_plus" type="button" value="+" onmouseup="tempVerticalSize = document.getElementById('the_champ_vertical_sharing_icon_size').value;theChampSharingVerticalPreview()" />
469
+ <input id="the_champ_vertical_sharing_size_minus" type="button" value="-" onmouseup="tempVerticalSize = document.getElementById('the_champ_vertical_sharing_icon_size').value;theChampSharingVerticalPreview()" />
470
+ <script type="text/javascript">
471
+ theChampIncrement(document.getElementById('the_champ_vertical_sharing_size_plus'), "add", document.getElementById('the_champ_vertical_sharing_icon_size'), 300, 0.7);
472
+ theChampIncrement(document.getElementById('the_champ_vertical_sharing_size_minus'), "subtract", document.getElementById('the_champ_vertical_sharing_icon_size'), 300, 0.7);
473
+ </script>
474
+ </td>
475
+ </tr>
476
+
477
+ <tr class="the_champ_help_content" id="the_champ_vertical_sharing_icon_size_help_cont">
478
+ <td colspan="2">
479
+ <div>
480
+ <?php _e('Size of the sharing icons', 'Super-Socializer' ) ?>
481
+ </div>
482
+ </td>
483
+ </tr>
484
+ </tbody>
485
+
486
+ <tbody id="the_champ_vertical_rectangle_options" <?php echo isset( $theChampSharingOptions['vertical_sharing_shape'] ) && $theChampSharingOptions['vertical_sharing_shape'] == 'rectangle' ? '' : 'style="display: none"'; ?>>
487
+ <tr>
488
+ <th>
489
+ <img id="the_champ_vertical_icon_width_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
490
+ <label><?php _e("Width (in pixels)", 'Super-Socializer' ); ?></label>
491
+ </th>
492
+ <td>
493
+ <input style="width:50px" id="the_champ_vertical_icon_width" name="the_champ_sharing[vertical_sharing_width]" type="text" value="<?php echo $vertical_sharing_width; ?>" />
494
+ <input id="the_champ_vertical_width_plus" type="button" value="+" onmouseup="tempVerticalWidth = document.getElementById('the_champ_vertical_icon_width').value;theChampSharingVerticalPreview()" />
495
+ <input id="the_champ_vertical_width_minus" type="button" value="-" onmouseup="tempVerticalWidth = document.getElementById('the_champ_vertical_icon_width').value;theChampSharingVerticalPreview()" />
496
+ <script type="text/javascript">
497
+ theChampIncrement(document.getElementById('the_champ_vertical_width_plus'), "add", document.getElementById('the_champ_vertical_icon_width'), 300, 0.7);
498
+ theChampIncrement(document.getElementById('the_champ_vertical_width_minus'), "subtract", document.getElementById('the_champ_vertical_icon_width'), 300, 0.7);
499
+ </script>
500
+ </td>
501
+ </tr>
502
+
503
+ <tr class="the_champ_help_content" id="the_champ_vertical_icon_width_help_cont">
504
+ <td colspan="2">
505
+ <div>
506
+ <?php _e('Width of the sharing icons', 'Super-Socializer' ) ?>
507
+ </div>
508
+ </td>
509
+ </tr>
510
+
511
+ <tr>
512
+ <th>
513
+ <img id="the_champ_vertical_icon_height_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
514
+ <label><?php _e("Height (in pixels)", 'Super-Socializer' ); ?></label>
515
+ </th>
516
+ <td>
517
+ <input style="width:50px" id="the_champ_vertical_icon_height" name="the_champ_sharing[vertical_sharing_height]" type="text" value="<?php echo $vertical_sharing_height; ?>" />
518
+ <input id="the_champ_vertical_height_plus" type="button" value="+" onmouseup="tempVerticalHeight = document.getElementById('the_champ_vertical_icon_height').value;theChampSharingVerticalPreview()" />
519
+ <input id="the_champ_vertical_height_minus" type="button" value="-" onmouseup="tempVerticalHeight = document.getElementById('the_champ_vertical_icon_height').value;theChampSharingVerticalPreview()" />
520
+ <script type="text/javascript">
521
+ theChampIncrement(document.getElementById('the_champ_vertical_height_plus'), "add", document.getElementById('the_champ_vertical_icon_height'), 300, 0.7);
522
+ theChampIncrement(document.getElementById('the_champ_vertical_height_minus'), "subtract", document.getElementById('the_champ_vertical_icon_height'), 300, 0.7);
523
+ </script>
524
+ </td>
525
+ </tr>
526
+
527
+ <tr class="the_champ_help_content" id="the_champ_vertical_icon_height_help_cont">
528
+ <td colspan="2">
529
+ <div>
530
+ <?php _e('Height of the sharing icons', 'Super-Socializer' ) ?>
531
+ </div>
532
+ </td>
533
+ </tr>
534
+ </tbody>
535
+
536
+ <tbody id="the_champ_vertical_border_radius_options" <?php echo isset( $theChampSharingOptions['vertical_sharing_shape'] ) && $theChampSharingOptions['vertical_sharing_shape'] != 'round' ? '' : 'style="display: none"'; ?>>
537
+ <tr>
538
+ <th>
539
+ <img id="the_champ_vertical_icon_border_radius_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
540
+ <label><?php _e("Border radius (in pixels)", 'Super-Socializer' ); ?></label>
541
+ </th>
542
+ <td>
543
+ <input style="width:50px" id="the_champ_vertical_icon_border_radius" name="the_champ_sharing[vertical_border_radius]" type="text" value="<?php echo $vertical_sharing_border_radius; ?>" onkeyup="theChampVerticalBorderRadius = this.value.trim() ? this.value.trim() + 'px' : '';theChampUpdateSharingPreview(this.value.trim() + 'px', 'borderRadius', '0px', 'the_champ_vertical_preview')" />
544
+ </td>
545
+ </tr>
546
+
547
+ <tr class="the_champ_help_content" id="the_champ_vertical_icon_border_radius_help_cont">
548
+ <td colspan="2">
549
+ <div>
550
+ <?php _e('Specify a value for rounded corners. More the value, more rounded will the corners be. Leave empty for sharp corners.', 'Super-Socializer' ) ?>
551
+ </div>
552
+ </td>
553
+ </tr>
554
+ </tbody>
555
+
556
  <tr>
557
  <th>
558
+ <img id="the_champ_vertical_font_color_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
559
+ <label><?php _e("Logo Color", 'Super-Socializer' ); ?></label>
560
  </th>
561
  <td>
562
+ <script type="text/javascript">var theChampVerticalSharingTempColor = '<?php echo $vertical_sharing_color ? $vertical_sharing_color : "#fff" ?>';</script>
563
+ <label for="the_champ_vertical_font_color_default"><?php _e("Default", 'Super-Socializer' ); ?></label><input style="width: 100px" id="the_champ_vertical_font_color_default" name="the_champ_sharing[vertical_font_color_default]" onkeyup="if(this.value.trim() == '' || this.value.trim().length >= 3){ jQuery('#vertical_svg').attr('style', jQuery('#vertical_svg').attr('style').replace(theChampVerticalSharingTempColor.replace('#', '%23'), this.value.trim() ? this.value.trim().replace('#', '%23') : '%23fff')); theChampVerticalSharingTempColor = this.value.trim() ? this.value.trim() : '#fff';jQuery('#the_champ_vertical_preview').css('color', theChampVerticalSharingTempColor.replace('%23','#')) }" type="text" value="<?php echo $vertical_sharing_color ?>" />
564
+ <input name="the_champ_sharing[vertical_sharing_replace_color]" type="hidden" value="<?php echo isset( $theChampSharingOptions['vertical_sharing_replace_color'] ) ? $theChampSharingOptions['vertical_sharing_replace_color'] : ''; ?>" />
565
+ <label style="margin-left:10px" for="the_champ_vertical_font_color_hover"><?php _e("On Hover", 'Super-Socializer' ); ?></label><input style="width: 100px" id="the_champ_vertical_font_color_hover" name="the_champ_sharing[vertical_font_color_hover]" type="text" value="<?php echo $vertical_sharing_color_hover; ?>" />
566
+ <input name="the_champ_sharing[vertical_sharing_replace_color_hover]" type="hidden" value="<?php echo isset( $theChampSharingOptions['vertical_sharing_replace_color_hover'] ) ? $theChampSharingOptions['vertical_sharing_replace_color_hover'] : ''; ?>" />
 
 
 
 
567
  </td>
568
  </tr>
569
 
570
+ <tr class="the_champ_help_content" id="the_champ_vertical_font_color_help_cont">
571
  <td colspan="2">
572
  <div>
573
+ <?php _e('Specify the color or hex code (example #cc78e0) for the logo of icon. Leave empty for default. You can get the hex code of the required color from <a href="http://www.colorpicker.com/" target="_blank">this link</a>', 'Super-Socializer' ) ?>
574
  </div>
575
  </td>
576
  </tr>
577
 
578
  <tr>
579
  <th>
580
+ <img id="the_champ_vertical_icon_bg_color_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
581
+ <label><?php _e("Background Color", 'Super-Socializer' ); ?></label>
582
  </th>
583
  <td>
584
+ <label for="the_champ_vertical_icon_bg_color_default"><?php _e("Default", 'Super-Socializer' ); ?></label><input style="width: 100px" id="the_champ_vertical_icon_bg_color_default" name="the_champ_sharing[vertical_bg_color_default]" type="text" onkeyup="theChampVerticalSharingBg = this.value.trim() ? this.value.trim() : '#3C589A'; theChampUpdateSharingPreview(this.value.trim(), 'backgroundColor', '#3C589A', 'the_champ_vertical_preview')" value="<?php echo $vertical_bg ?>" />
585
+ <label style="margin-left:10px" for="the_champ_vertical_bg_color_hover"><?php _e("On Hover", 'Super-Socializer' ); ?></label><input style="width: 100px" id="the_champ_vertical_bg_color_hover" name="the_champ_sharing[vertical_bg_color_hover]" type="text" onkeyup="theChampVerticalSharingBgHover = this.value.trim() ? this.value.trim() : '#3C589A';" value="<?php echo $vertical_bg_hover ?>" />
586
+ </td>
587
+ </tr>
588
+
589
+ <tr class="the_champ_help_content" id="the_champ_vertical_icon_bg_color_help_cont">
590
+ <td colspan="2">
591
+ <div>
592
+ <?php _e('Specify the color or hex code (example #cc78e0) for icon background. Save "transparent" for transparent background. Leave empty for default. You can get the hex code of the required color from <a href="http://www.colorpicker.com/" target="_blank">this link</a>', 'Super-Socializer' ) ?>
593
+ </div>
594
+ </td>
595
+ </tr>
596
+
597
+ <tr>
598
+ <th>
599
+ <img id="the_champ_vertical_border_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
600
+ <label><?php _e("Border", 'Super-Socializer' ); ?></label>
601
+ </th>
602
+ <td>
603
+ <label><strong><?php _e("Default", 'Super-Socializer' ); ?></strong></label>
604
+ <br/>
605
+ <label for="the_champ_vertical_border_width_default"><?php _e("Border Width", 'Super-Socializer' ); ?></label><input style="width: 100px" onkeyup="theChampVerticalBorderWidth = this.value.trim(); jQuery('#the_champ_vertical_preview').css('borderStyle', 'solid'); theChampUpdateSharingPreview(this.value.trim(), 'borderWidth', '0px', 'the_champ_vertical_preview'); theChampSharingVerticalPreview();" id="the_champ_vertical_border_width_default" name="the_champ_sharing[vertical_border_width_default]" type="text" value="<?php echo $vertical_border_width ?>" />pixel(s)
606
+ <label style="margin-left:10px" for="the_champ_vertical_border_color_default"><?php _e("Border Color", 'Super-Socializer' ); ?></label><input onkeyup="theChampVerticalBorderColor = this.value.trim(); jQuery('#the_champ_vertical_preview').css('borderStyle', 'solid'); theChampUpdateSharingPreview(this.value.trim(), 'borderColor', 'transparent', 'the_champ_vertical_preview')" style="width: 100px" id="the_champ_vertical_border_color_default" name="the_champ_sharing[vertical_border_color_default]" type="text" value="<?php echo $vertical_border_color = isset( $theChampSharingOptions['vertical_border_color_default'] ) ? $theChampSharingOptions['vertical_border_color_default'] : ''; ?>" />
607
+ <br/><br/>
608
+ <label><strong><?php _e("On Hover", 'Super-Socializer' ); ?></strong></label>
609
+ <br/>
610
+ <label for="the_champ_vertical_border_width_hover"><?php _e("Border Width", 'Super-Socializer' ); ?></label><input style="width: 100px" id="the_champ_vertical_border_width_hover" name="the_champ_sharing[vertical_border_width_hover]" onkeyup="theChampVerticalBorderWidthHover = this.value.trim();" type="text" value="<?php echo $vertical_border_width_hover ?>" />pixel(s)
611
+ <label style="margin-left:10px" for="the_champ_vertical_border_color_hover"><?php _e("Border Color", 'Super-Socializer' ); ?></label><input style="width: 100px" id="the_champ_vertical_border_color_hover" name="the_champ_sharing[vertical_border_color_hover]" onkeyup="theChampVerticalBorderColorHover = this.value.trim()" type="text" value="<?php echo $vertical_border_color_hover; ?>" />
612
+ </td>
613
+ </tr>
614
+
615
+ <tr class="the_champ_help_content" id="the_champ_vertical_border_help_cont">
616
+ <td colspan="2">
617
+ <div>
618
+ <?php _e('Icon border', 'Super-Socializer' ) ?>
619
+ </div>
620
  </td>
621
  </tr>
622
 
623
  <tr>
624
+ <th>
625
+ <img id="the_champ_vertical_counter_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
626
+ <label><?php _e("Counter Position", 'Super-Socializer' ); ?><br/><?php _e("(applies, if counter enabled)", 'Super-Socializer' ); ?></label>
627
+ </th>
628
+ <td>
629
+ <input id="the_champ_vertical_counter_left" name="the_champ_sharing[vertical_counter_position]" onclick="theChampVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'left' ? 'checked = "checked"' : '';?> value="left" />
630
+ <label style="margin-right:10px" for="the_champ_vertical_counter_left"><?php _e("Left", 'Super-Socializer' ); ?></label>
631
+ <input id="the_champ_vertical_counter_top" name="the_champ_sharing[vertical_counter_position]" onclick="theChampVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'top' ? 'checked = "checked"' : '';?> value="top" />
632
+ <label style="margin-right:10px" for="the_champ_vertical_counter_top"><?php _e("Top", 'Super-Socializer' ); ?></label>
633
+ <input id="the_champ_vertical_counter_right" name="the_champ_sharing[vertical_counter_position]" onclick="theChampVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'right' ? 'checked = "checked"' : '';?> value="right" />
634
+ <label style="margin-right:10px" for="the_champ_vertical_counter_right"><?php _e("Right", 'Super-Socializer' ); ?></label>
635
+ <input id="the_champ_vertical_counter_bottom" name="the_champ_sharing[vertical_counter_position]" onclick="theChampVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'bottom' ? 'checked = "checked"' : '';?> value="bottom" />
636
+ <label style="margin-right:10px" for="the_champ_vertical_counter_bottom"><?php _e("Bottom", 'Super-Socializer' ); ?></label><br/>
637
+ <input id="the_champ_vertical_counter_inner_left" name="the_champ_sharing[vertical_counter_position]" onclick="theChampVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'inner_left' ? 'checked = "checked"' : '';?> value="inner_left" />
638
+ <label style="margin-right:10px" for="the_champ_vertical_counter_inner_left"><?php _e("Inner Left", 'Super-Socializer' ); ?></label>
639
+ <input id="the_champ_vertical_counter_inner_top" name="the_champ_sharing[vertical_counter_position]" onclick="theChampVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'inner_top' ? 'checked = "checked"' : '';?> value="inner_top" />
640
+ <label style="margin-right:10px" for="the_champ_vertical_counter_inner_top"><?php _e("Inner Top", 'Super-Socializer' ); ?></label>
641
+ <input id="the_champ_vertical_counter_inner_right" name="the_champ_sharing[vertical_counter_position]" onclick="theChampVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'inner_right' ? 'checked = "checked"' : '';?> value="inner_right" />
642
+ <label style="margin-right:10px" for="the_champ_vertical_counter_inner_right"><?php _e("Inner Right", 'Super-Socializer' ); ?></label>
643
+ <input id="the_champ_vertical_counter_inner_bottom" name="the_champ_sharing[vertical_counter_position]" onclick="theChampVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'inner_bottom' ? 'checked = "checked"' : '';?> value="inner_bottom" />
644
+ <label style="margin-right:10px" for="the_champ_vertical_counter_inner_bottom"><?php _e("Inner Bottom", 'Super-Socializer' ); ?></label>
645
+ </td>
646
+ </tr>
647
+ <script type="text/javascript">theChampVerticalCounterPreview('<?php echo $vertical_counter_position ?>');</script>
648
+
649
+ <tr class="the_champ_help_content" id="the_champ_vertical_counter_help_cont">
650
  <td colspan="2">
651
+ <div>
652
+ <?php _e('Position of share counter', 'Super-Socializer' ) ?>
653
+ </div>
654
  </td>
655
  </tr>
656
  </table>
660
  <?php include 'help.php'; ?>
661
  </div>
662
 
663
+ <div class="menu_containt_div" id="tabs-2">
664
  <div class="the_champ_left_column">
665
 
666
  <div class="stuffbox">
667
+ <h3><label><?php _e('Standard Sharing Interface Options', 'Super-Socializer' );?></label></h3>
668
  <div class="inside">
669
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
670
  <tr>
671
  <th>
672
+ <img id="the_champ_horizontal_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
673
+ <label for="the_champ_horizontal_enable"><?php _e("Enable Standard sharing interface", 'Super-Socializer' ); ?></label>
674
  </th>
675
  <td>
676
+ <input id="the_champ_horizontal_enable" onclick="theChampHorizontalSharingOptionsToggle(this)" name="the_champ_sharing[hor_enable]" type="checkbox" <?php echo isset( $theChampSharingOptions['hor_enable'] ) ? 'checked = "checked"' : '';?> value="1" />
677
  </td>
678
  </tr>
679
 
680
+ <tr class="the_champ_help_content" id="the_champ_horizontal_enable_help_cont">
681
  <td colspan="2">
682
  <div>
683
+ <?php _e('Master control to enable standard sharing', 'Super-Socializer' ) ?>
684
+ <img width="550" src="<?php echo plugins_url('../images/snaps/ss_horizontal_sharing.png', __FILE__); ?>" />
685
  </div>
686
  </td>
687
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
688
 
689
+ <tbody id="the_champ_horizontal_sharing_options" <?php echo isset( $theChampSharingOptions['hor_enable'] ) ? '' : 'style="display: none"'; ?>>
 
 
 
 
 
 
 
690
  <tr>
691
  <th>
692
+ <img id="the_champ_horizontal_target_url_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
693
+ <label for="the_champ_horizontal_target_url"><?php _e("Target Url", 'Super-Socializer' ); ?></label>
694
  </th>
695
+ <td id="the_champ_target_url_column">
696
+ <input id="the_champ_target_url_default" name="the_champ_sharing[horizontal_target_url]" type="radio" <?php echo !isset( $theChampSharingOptions['horizontal_target_url'] ) || $theChampSharingOptions['horizontal_target_url'] == 'default' ? 'checked = "checked"' : '';?> value="default" />
697
+ <label for="the_champ_target_url_default"><?php _e('Url of the webpage where icons are located (default)', 'Super-Socializer' ) ?></label><br/>
698
+ <input id="the_champ_target_url_home" name="the_champ_sharing[horizontal_target_url]" type="radio" <?php echo isset( $theChampSharingOptions['horizontal_target_url'] ) && $theChampSharingOptions['horizontal_target_url'] == 'home' ? 'checked = "checked"' : '';?> value="home" />
699
+ <label for="the_champ_target_url_home"><?php _e('Url of the homepage of your website', 'Super-Socializer' ) ?></label><br/>
700
+ <input id="the_champ_target_url_custom" name="the_champ_sharing[horizontal_target_url]" type="radio" <?php echo isset( $theChampSharingOptions['horizontal_target_url'] ) && $theChampSharingOptions['horizontal_target_url'] == 'custom' ? 'checked = "checked"' : '';?> value="custom" />
701
+ <label for="the_champ_target_url_custom"><?php _e('Custom url', 'Super-Socializer' ) ?></label><br/>
702
+ <input id="the_champ_target_url_custom_url" name="the_champ_sharing[horizontal_target_url_custom]" type="text" value="<?php echo isset( $theChampSharingOptions['horizontal_target_url_custom'] ) ? $theChampSharingOptions['horizontal_target_url_custom'] : '' ?>" />
703
  </td>
704
  </tr>
705
+ <tr class="the_champ_help_content" id="the_champ_horizontal_target_url_help_cont">
 
706
  <td colspan="2">
707
  <div>
708
+ <?php _e('Url to share', 'Super-Socializer' ) ?>
709
  </div>
710
  </td>
711
  </tr>
712
 
713
  <tr>
714
  <th>
715
+ <img id="the_champ_title_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
716
+ <label for="the_champ_fblogin_title"><?php _e("Title", 'Super-Socializer' ); ?></label>
717
  </th>
718
  <td>
719
+ <input id="the_champ_fblogin_title" name="the_champ_sharing[title]" type="text" value="<?php echo isset( $theChampSharingOptions['title'] ) ? $theChampSharingOptions['title'] : '' ?>" />
720
  </td>
721
  </tr>
722
 
723
+ <tr class="the_champ_help_content" id="the_champ_title_help_cont">
724
  <td colspan="2">
725
  <div>
726
+ <?php _e('The text to display above the sharing interface', 'Super-Socializer' ) ?>
 
727
  </div>
728
  </td>
729
  </tr>
730
+ <?php
731
+ $likeButtons = array('facebook_like', 'facebook_recommend', 'twitter_tweet', 'google_plusone', 'google_plus_share', 'linkedin_share', 'pinterest_pin', 'buffer_share', 'xing_share', 'yummly_share', 'reddit_badge', 'stumbleupon_badge');
732
+ $sharingNetworks = array('facebook', 'twitter', 'linkedin', 'google_plus', 'print', 'email', 'yahoo', 'reddit', 'digg', 'delicious', 'stumbleupon', 'float_it', 'tumblr', 'vkontakte', 'pinterest', 'xing', 'whatsapp', 'yummly', 'buffer', 'AIM', 'Amazon_Wish_List', 'AOL_Mail', 'App.net', 'Baidu', 'Balatarin', 'BibSonomy', 'Bitty_Browser', 'Blinklist', 'Blogger_Post', 'BlogMarks', 'Bookmarks.fr', 'Box.net', 'BuddyMarks', 'Care2_News', 'CiteULike', 'Diary.Ru', 'diHITT', 'Diigo', 'DZone', 'Evernote', 'Fark', 'Flipboard', 'Folkd', 'Google_Bookmarks', 'Google_Gmail', 'Hacker_News', 'Hatena', 'Instapaper', 'Jamespot', 'Kakao', 'Kindle_It', 'Known', 'Line', 'LiveJournal', 'Mail.Ru', 'Mendeley', 'Meneame', 'Mixi', 'MySpace', 'Netlog', 'Netvouz', 'NewsVine', 'NUjij', 'Odnoklassniki', 'Oknotizie', 'Outlook.com', 'Pinboard', 'Plurk', 'Pocket', 'PrintFriendly', 'Protopage_Bookmarks', 'Pusha', 'Qzone', 'Rediff MyPage', 'Renren', 'Segnalo', 'Sina Weibo', 'SiteJot', 'Slashdot', 'Stumpedia', 'Svejo', 'Symbaloo_Feeds', 'Tuenti', 'Twiddla', 'TypePad_Post', 'Viadeo', 'Wanelo', 'Webnews', 'WordPress', 'Wykop', 'Yahoo_Mail', 'Yahoo_Messenger', 'Yoolink', 'YouMob');
733
+ ?>
734
 
735
  <tr>
736
  <th>
737
+ <img id="the_champ_ss_rearrange_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
738
+ <label><?php _e("Rearrange icons", 'Super-Socializer' ); ?></label>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
739
  </th>
 
 
 
 
 
 
 
 
 
 
 
 
740
  </tr>
741
+
 
 
 
 
 
 
 
742
  <tr>
 
 
 
 
 
 
 
 
 
 
743
  <td colspan="2">
744
+ <script>
745
+ <?php
746
+ $horSharingStyle = 'width:' . ( $theChampSharingOptions['horizontal_sharing_shape'] != 'rectangle' ? $theChampSharingOptions['horizontal_sharing_size'] : $theChampSharingOptions['horizontal_sharing_width'] ) . 'px;height:' . $line_height . 'px;';
747
+ $horDeliciousRadius = '';
748
+ if($theChampSharingOptions['horizontal_sharing_shape'] == 'round'){
749
+ $horSharingStyle .= 'border-radius:999px;';
750
+ $horDeliciousRadius = 'border-radius:999px;';
751
+ } elseif ( isset( $theChampSharingOptions['horizontal_border_radius'] ) && $theChampSharingOptions['horizontal_border_radius'] != '' ) {
752
+ $horSharingStyle .= 'border-radius:' . $theChampSharingOptions['horizontal_border_radius'] . 'px;';
753
+ }
754
+ ?>
755
+ var theChampHorSharingStyle = '<?php echo $horSharingStyle ?>', theChampHorDeliciousRadius = '<?php echo $horDeliciousRadius ?>', theChampLikeButtons = ["<?php echo implode('","', $likeButtons) ?>"];
756
+ </script>
757
+ <style type="text/css">
758
+ .theChampSharingBackground{
759
+ <?php if($horizontal_bg){ ?>
760
+ background-color: <?php echo $horizontal_bg ?>;
761
+ <?php }if($border_width){ ?>
762
+ border-width: <?php echo $border_width ?>px;
763
+ border-style: solid;
764
+ <?php } ?>
765
+ border-color: <?php echo $border_color ? $border_color : 'transparent'; ?>;
766
+ }
767
+ .theChampSharingBackground:hover{
768
+ <?php if($horizontal_bg_hover){ ?>
769
+ background-color: <?php echo $horizontal_bg_hover ?>;
770
+ <?php }if($border_width_hover){ ?>
771
+ border-width: <?php echo $border_width_hover ?>px;
772
+ border-style: solid;
773
+ <?php } ?>
774
+ border-color: <?php echo $border_color_hover ? $border_color_hover : 'transparent'; ?>;
775
+ }
776
+ </style>
777
+ <ul id="the_champ_ss_rearrange">
778
+ <?php
779
+ if ( isset( $theChampSharingOptions['horizontal_re_providers'] ) ) {
780
+ foreach ( $theChampSharingOptions['horizontal_re_providers'] as $rearrange ) {
781
+ ?>
782
+ <li title="<?php echo ucfirst( str_replace( '_', ' ', $rearrange ) ) ?>" id="the_champ_re_horizontal_<?php echo str_replace(array(' ', '.'), '_', $rearrange) ?>" >
783
+ <i style="display:block;<?php echo $horSharingStyle ?>" class="<?php echo in_array($rearrange, $likeButtons) ? '' : 'theChampSharingBackground' ?> theChamp<?php echo ucfirst(str_replace(array('_', '.', ' '), '', $rearrange)) ?>Background"><div class="theChampSharingSvg theChamp<?php echo ucfirst(str_replace(array('_', ' ', '.'), '', $rearrange)) ?>Svg" style="<?php echo $horDeliciousRadius ?>"></div></i>
784
+ <input type="hidden" name="the_champ_sharing[horizontal_re_providers][]" value="<?php echo $rearrange ?>">
785
+ </li>
786
+ <?php
787
+ }
788
+ }
789
+ ?>
790
+ </ul>
791
  </td>
792
  </tr>
793
 
794
+ <tr class="the_champ_help_content" id="the_champ_ss_rearrange_help_cont">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
795
  <td colspan="2">
796
  <div>
797
+ <?php _e('Drag the icons to rearrange in desired order', 'Super-Socializer' ) ?>
798
  </div>
799
  </td>
800
  </tr>
801
+
802
  <tr>
803
+ <th colspan="2">
804
+ <img id="the_champ_providers_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
805
+ <label><?php _e("Select Sharing Services", 'Super-Socializer' ); ?></label>
806
  </th>
 
 
 
807
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
808
 
809
+ <tr class="the_champ_help_content" id="the_champ_providers_help_cont">
 
 
 
 
 
 
 
810
  <td colspan="2">
811
  <div>
812
+ <?php _e('Select sharing services to show in social share bar', 'Super-Socializer' ) ?>
813
  </div>
814
  </td>
815
  </tr>
816
+
817
  <tr>
818
+ <td colspan="2">
819
+ <?php
820
+ foreach($likeButtons as $likeButton){
821
+ ?>
822
+ <div class="theChampHorizontalSharingProviderContainer">
823
+ <input id="the_champ_<?php echo $likeButton ?>" type="checkbox" <?php echo isset( $theChampSharingOptions['horizontal_re_providers'] ) && in_array($likeButton, $theChampSharingOptions['horizontal_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $likeButton ?>" />
824
+ <label for="the_champ_<?php echo $likeButton ?>"><img src="<?php echo plugins_url('../images/sharing/'. $likeButton .'.png', __FILE__) ?>" /></label>
825
+ </div>
826
  <?php
827
+ }
828
+ ?>
829
+ <div style="clear:both"></div>
830
+ <?php
831
+ foreach($sharingNetworks as $sharingNetwork){
 
832
  ?>
833
+ <div class="theChampHorizontalSharingProviderContainer">
834
+ <input id="the_champ_<?php echo $sharingNetwork ?>" type="checkbox" <?php echo isset( $theChampSharingOptions['horizontal_re_providers'] ) && in_array($sharingNetwork, $theChampSharingOptions['horizontal_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $sharingNetwork ?>" />
835
+ <label for="the_champ_<?php echo $sharingNetwork ?>"><i style="display:block;width:18px;height:18px;" class="theChampSharing theChamp<?php echo str_replace(array('_', '.', ' '), '', ucfirst($sharingNetwork)) ?>Background"><ss style="display:block;" class="theChampSharingSvg theChamp<?php echo str_replace(array('_', '.', ' '), '', ucfirst($sharingNetwork)) ?>Svg"></ss></i></label>
836
+ <label for="the_champ_<?php echo $sharingNetwork ?>"><?php echo str_replace('_', ' ', ucfirst($sharingNetwork)) ?></label>
837
+ </div>
838
  <?php
839
+ }
840
+ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
841
  </td>
842
  </tr>
843
 
844
  <tr>
845
  <th>
846
+ <img id="the_champ_hor_alignment_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
847
+ <label for="the_champ_hor_alignment"><?php _e("Horizontal alignment", 'Super-Socializer' ); ?></label>
848
  </th>
849
  <td>
850
+ <select id="the_champ_hor_alignment" name="the_champ_sharing[hor_sharing_alignment]">
851
+ <option value="left" <?php echo isset( $theChampSharingOptions['hor_sharing_alignment'] ) && $theChampSharingOptions['hor_sharing_alignment'] == 'left' ? 'selected="selected"' : '' ?>><?php _e('Left', 'Super-Socializer' ) ?></option>
852
+ <option value="center" <?php echo isset( $theChampSharingOptions['hor_sharing_alignment'] ) && $theChampSharingOptions['hor_sharing_alignment'] == 'center' ? 'selected="selected"' : '' ?>><?php _e('Center', 'Super-Socializer' ) ?></option>
853
+ <option value="right" <?php echo isset( $theChampSharingOptions['hor_sharing_alignment'] ) && $theChampSharingOptions['hor_sharing_alignment'] == 'right' ? 'selected="selected"' : '' ?>><?php _e('Right', 'Super-Socializer' ) ?></option>
854
  </select>
855
  </td>
856
  </tr>
857
 
858
+ <tr class="the_champ_help_content" id="the_champ_hor_alignment_help_cont">
859
  <td colspan="2">
860
  <div>
861
+ <?php _e('Horizontal alignment of the sharing interface', 'Super-Socializer' ) ?>
862
  </div>
863
  </td>
864
  </tr>
865
 
866
  <tr>
867
  <th>
868
+ <img id="the_champ_position_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
869
+ <label><?php _e("Position with respect to content", 'Super-Socializer' ); ?></label>
870
  </th>
871
  <td>
872
+ <input id="the_champ_top" name="the_champ_sharing[top]" type="checkbox" <?php echo isset( $theChampSharingOptions['top'] ) ? 'checked = "checked"' : '';?> value="1" />
873
+ <label for="the_champ_top"><?php _e('Top of the content', 'Super-Socializer' ) ?></label><br/>
874
+ <input id="the_champ_bottom" name="the_champ_sharing[bottom]" type="checkbox" <?php echo isset( $theChampSharingOptions['bottom'] ) ? 'checked = "checked"' : '';?> value="1" />
875
+ <label for="the_champ_bottom"><?php _e('Bottom of the content', 'Super-Socializer' ) ?></label>
876
  </td>
877
  </tr>
878
 
879
+ <tr class="the_champ_help_content" id="the_champ_position_help_cont">
880
  <td colspan="2">
881
  <div>
882
+ <?php _e('Specify position of the sharing interface with respect to the content', 'Super-Socializer' ) ?>
883
  </div>
884
  </td>
885
  </tr>
886
 
887
  <tr>
888
  <th>
889
+ <img id="the_champ_location_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
890
+ <label><?php _e("Placement", 'Super-Socializer' ); ?></label>
891
  </th>
892
  <td>
893
+ <input id="the_champ_home" name="the_champ_sharing[home]" type="checkbox" <?php echo isset( $theChampSharingOptions['home'] ) ? 'checked = "checked"' : '';?> value="1" />
894
+ <label for="the_champ_home"><?php _e('Homepage', 'Super-Socializer' ) ?></label><br/>
895
+ <input id="the_champ_post" name="the_champ_sharing[post]" type="checkbox" <?php echo isset( $theChampSharingOptions['post'] ) ? 'checked = "checked"' : '';?> value="1" />
896
+ <label for="the_champ_post"><?php _e('Posts', 'Super-Socializer' ) ?></label><br/>
897
+ <input id="the_champ_page" name="the_champ_sharing[page]" type="checkbox" <?php echo isset( $theChampSharingOptions['page'] ) ? 'checked = "checked"' : '';?> value="1" />
898
+ <label for="the_champ_page"><?php _e('Pages', 'Super-Socializer' ) ?></label><br/>
899
+ <input id="the_champ_excerpt" name="the_champ_sharing[excerpt]" type="checkbox" <?php echo isset( $theChampSharingOptions['excerpt'] ) ? 'checked = "checked"' : '';?> value="1" />
900
+ <label for="the_champ_excerpt"><?php _e('Excerpts (at Homepage)', 'Super-Socializer' ) ?></label><br/>
901
+ <input id="the_champ_category" name="the_champ_sharing[category]" type="checkbox" <?php echo isset( $theChampSharingOptions['category'] ) ? 'checked = "checked"' : '';?> value="1" />
902
+ <label for="the_champ_category"><?php _e('Category Archives', 'Super-Socializer' ) ?></label><br/>
903
+ <input id="the_champ_archive" name="the_champ_sharing[archive]" type="checkbox" <?php echo isset( $theChampSharingOptions['archive'] ) ? 'checked = "checked"' : '';?> value="1" />
904
+ <label for="the_champ_archive"><?php _e('Archive Pages (Category, Tag, Author or Date based pages)', 'Super-Socializer' ) ?></label><br/>
905
  <?php
906
  $post_types = get_post_types( array( 'public' => true ), 'names', 'and' );
907
  $post_types = array_diff( $post_types, array( 'post', 'page' ) );
908
  if( count( $post_types ) ) {
909
  foreach ( $post_types as $post_type ) {
910
  ?>
911
+ <input id="the_champ_<?php echo $post_type ?>" name="the_champ_sharing[<?php echo $post_type ?>]" type="checkbox" <?php echo isset( $theChampSharingOptions[$post_type] ) ? 'checked = "checked"' : '';?> value="1" />
912
+ <label for="the_champ_<?php echo $post_type ?>"><?php echo ucfirst( $post_type ) . 's'; ?></label><br/>
913
  <?php
914
  }
915
  }
916
 
917
  if($theChampIsBpActive){
918
  ?>
919
+ <input id="the_champ_bp_activity" name="the_champ_sharing[bp_activity]" type="checkbox" <?php echo isset( $theChampSharingOptions['bp_activity'] ) ? 'checked = "checked"' : '';?> value="1" />
920
+ <label for="the_champ_bp_activity"><?php _e('BuddyPress activity', 'Super-Socializer' ) ?></label><br/>
921
+ <input id="the_champ_bp_group" name="the_champ_sharing[bp_group]" type="checkbox" <?php echo isset( $theChampSharingOptions['bp_group'] ) ? 'checked = "checked"' : '';?> value="1" />
922
+ <label for="the_champ_bp_group"><?php _e('BuddyPress group (only at top of content)', 'Super-Socializer' ) ?></label><br/>
923
  <?php
924
  }
925
  if(function_exists('is_bbpress')){
926
  ?>
927
+ <input id="the_champ_bb_forum" name="the_champ_sharing[bb_forum]" type="checkbox" <?php echo isset( $theChampSharingOptions['bb_forum'] ) ? 'checked = "checked"' : '';?> value="1" />
928
+ <label for="the_champ_bb_forum"><?php _e('BBPress forum', 'Super-Socializer' ) ?></label>
929
  <br/>
930
+ <input id="the_champ_bb_topic" name="the_champ_sharing[bb_topic]" type="checkbox" <?php echo isset( $theChampSharingOptions['bb_topic'] ) ? 'checked = "checked"' : '';?> value="1" />
931
+ <label for="the_champ_bb_topic"><?php _e('BBPress topic', 'Super-Socializer' ) ?></label>
932
  <br/>
933
+ <input id="the_champ_bb_reply" name="the_champ_sharing[bb_reply]" type="checkbox" <?php echo isset( $theChampSharingOptions['bb_reply'] ) ? 'checked = "checked"' : '';?> value="1" />
934
+ <label for="the_champ_bb_reply"><?php _e('BBPress reply', 'Super-Socializer' ) ?></label>
935
  <br/>
936
  <?php
937
  }
938
  if(the_champ_ss_woocom_is_active()){
939
  ?>
940
+ <input id="the_champ_woocom_shop" name="the_champ_sharing[woocom_shop]" type="checkbox" <?php echo isset( $theChampSharingOptions['woocom_shop'] ) ? 'checked = "checked"' : '';?> value="1" />
941
+ <label for="the_champ_woocom_shop"><?php _e('After individual product at WooCommerce Shop page', 'Super-Socializer' ) ?></label>
942
  <br/>
943
+ <input id="the_champ_woocom_product" name="the_champ_sharing[woocom_product]" type="checkbox" <?php echo isset( $theChampSharingOptions['woocom_product'] ) ? 'checked = "checked"' : '';?> value="1" />
944
+ <label for="the_champ_woocom_product"><?php _e('WooCommerce Product Page', 'Super-Socializer' ) ?></label>
945
  <br/>
946
+ <input id="the_champ_woocom_thankyou" name="the_champ_sharing[woocom_thankyou]" type="checkbox" <?php echo isset( $theChampSharingOptions['woocom_thankyou'] ) ? 'checked = "checked"' : '';?> value="1" />
947
+ <label for="the_champ_woocom_thankyou"><?php _e('WooCommerce Thankyou Page', 'Super-Socializer' ) ?></label>
948
  <br/>
949
  <?php
950
  }
952
  </td>
953
  </tr>
954
 
955
+ <tr class="the_champ_help_content" id="the_champ_location_help_cont">
956
  <td colspan="2">
957
  <div>
958
+ <?php _e('Specify the pages where you want to enable Sharing interface', 'Super-Socializer' ) ?>
959
  </div>
960
  </td>
961
  </tr>
962
 
963
  <tr>
964
  <th>
965
+ <img id="the_champ_count_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
966
+ <label for="the_champ_counts"><?php _e("Show share counts", 'Super-Socializer' ); ?></label>
967
  </th>
968
  <td>
969
+ <input id="the_champ_counts" name="the_champ_sharing[horizontal_counts]" type="checkbox" <?php echo isset( $theChampSharingOptions['horizontal_counts'] ) ? 'checked = "checked"' : '';?> value="1" />
970
+ <br/>
971
+ <span style="font-size:12px"><?php _e( 'Official share counts are supported for Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, Stumbleupon and Vkontakte', 'Super-Socializer' ) ?></span>
972
  </td>
973
  </tr>
974
 
975
+ <?php
976
+ $tweetCountService = 'newsharecounts';
977
+ if ( isset( $theChampSharingOptions['tweet_count_service'] ) ) {
978
+ $tweetCountService = $theChampSharingOptions['tweet_count_service'];
979
+ } elseif ( isset( $theChampSharingOptions['vertical_tweet_count_service'] ) ) {
980
+ $tweetCountService = $theChampSharingOptions['vertical_tweet_count_service'];
981
+ }
982
+ ?>
983
+
984
+ <tr id="the_champ_twitter_share_count" <?php echo isset( $theChampSharingOptions['horizontal_counts'] ) ? '' : 'style="display:none"' ?>>
985
+ <th>
986
+ </th>
987
+ <td>
988
+ <input id="the_champ_newsharecounts" name="the_champ_sharing[tweet_count_service]" type="radio" <?php echo $tweetCountService == 'newsharecounts' ? 'checked = "checked"' : '';?> value="newsharecounts" /><label for="the_champ_newsharecounts"><?php echo sprintf( __( 'Use <a href="%s" target="_blank">NewShareCounts</a> to show Twitter share counts', 'Super-Socializer'), 'http://newsharecounts.com' ) ?></label>
989
+ <br/>
990
+ <span class="the_champ_help_content" style="display:block"><?php echo sprintf( __( 'For this to work, you have to enter your website url %s and sign in using Twitter at <a href="%s" target="_blank">their website</a>', 'Super-Socializer'), site_url(), 'http://newsharecounts.com' ) ?></span>
991
+ <br/>
992
+ <input id="the_champ_opensharecount" name="the_champ_sharing[tweet_count_service]" type="radio" <?php echo $tweetCountService == 'opensharecount' ? 'checked = "checked"' : '';?> value="opensharecount" /><label for="the_champ_opensharecount"><?php echo sprintf( __( 'Use <a href="%s" target="_blank">OpenShareCount</a> to show Twitter share counts', 'Super-Socializer'), 'http://opensharecount.com' ) ?></label>
993
+ <br/>
994
+ <span class="the_champ_help_content" style="display:block"><?php echo sprintf( __( 'For this to work, you have to sign up and register your website url %s at <a href="%s" target="_blank">their website</a>', 'Super-Socializer'), site_url(), 'http://opensharecount.com' ) ?></span>
995
+ </td>
996
+ </tr>
997
+
998
+ <tr class="the_champ_help_content" id="the_champ_count_help_cont">
999
  <td colspan="2">
1000
  <div>
1001
+ <?php _e('If enabled, share counts are displayed above sharing icons.', 'Super-Socializer' ) ?>
1002
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_share_count.png', __FILE__); ?>" />
1003
  </div>
1004
  </td>
1006
 
1007
  <tr>
1008
  <th>
1009
+ <img id="the_champ_total_hor_shares_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1010
+ <label for="the_champ_total_hor_shares"><?php _e("Show total shares", 'Super-Socializer' ); ?></label>
1011
  </th>
1012
  <td>
1013
+ <input id="the_champ_total_hor_shares" name="the_champ_sharing[horizontal_total_shares]" type="checkbox" <?php echo isset( $theChampSharingOptions['horizontal_total_shares'] ) ? 'checked = "checked"' : '';?> value="1" />
1014
  </td>
1015
  </tr>
1016
 
1017
+ <tr class="the_champ_help_content" id="the_champ_total_hor_shares_help_cont">
1018
  <td colspan="2">
1019
  <div>
1020
+ <?php _e('If enabled, total shares will be displayed with sharing icons', 'Super-Socializer' ) ?>
1021
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_horizontal_total_shares.png', __FILE__); ?>" />
1022
  </div>
1023
  </td>
1025
 
1026
  <tr>
1027
  <th>
1028
+ <img id="the_champ_hmore_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1029
+ <label for="the_champ_hmore"><?php _e("Enable 'More' icon", 'Super-Socializer' ); ?></label>
1030
  </th>
1031
  <td>
1032
+ <input id="the_champ_hmore" name="the_champ_sharing[horizontal_more]" type="checkbox" <?php echo isset( $theChampSharingOptions['horizontal_more'] ) ? 'checked = "checked"' : '';?> value="1" />
1033
  </td>
1034
  </tr>
1035
 
1036
+ <tr class="the_champ_help_content" id="the_champ_hmore_help_cont">
1037
  <td colspan="2">
1038
  <div>
1039
+ <?php _e('If enabled, "More" icon will be displayed after selected sharing icons which shows additional sharing networks in popup', 'Super-Socializer' ) ?>
1040
  </div>
1041
  </td>
1042
  </tr>
1045
  </div>
1046
  </div>
1047
 
1048
+ </div>
1049
+ <?php include 'help.php'; ?>
1050
+ </div>
1051
+
1052
+ <div class="menu_containt_div" id="tabs-3">
1053
+ <div class="the_champ_left_column">
1054
+ <div class="stuffbox">
1055
+ <h3><label><?php _e('Floating Sharing Interface Options', 'Super-Socializer' );?></label></h3>
1056
  <div class="inside">
1057
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1058
  <tr>
1059
  <th>
1060
+ <img id="the_champ_vertical_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1061
+ <label for="the_champ_vertical_enable"><?php _e("Enable Floating sharing interface", 'Super-Socializer' ); ?></label>
1062
  </th>
1063
  <td>
1064
+ <input id="the_champ_vertical_enable" onclick="theChampVerticalSharingOptionsToggle(this)" name="the_champ_sharing[vertical_enable]" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_enable'] ) ? 'checked = "checked"' : '';?> value="1" />
1065
  </td>
1066
  </tr>
1067
 
1068
+ <tr class="the_champ_help_content" id="the_champ_vertical_enable_help_cont">
1069
  <td colspan="2">
1070
  <div>
1071
+ <?php _e('Master control to enable floating sharing widget', 'Super-Socializer' ) ?>
1072
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_vertical_sharing.png', __FILE__); ?>" />
1073
  </div>
1074
  </td>
1075
  </tr>
1076
 
1077
+ <tbody id="the_champ_vertical_sharing_options" <?php echo isset( $theChampSharingOptions['vertical_enable'] ) ? '' : 'style="display: none"'; ?>>
1078
  <tr>
1079
  <th>
1080
+ <img id="the_champ_vertical_target_url_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1081
+ <label for="the_champ_vertical_target_url"><?php _e("Target Url", 'Super-Socializer' ); ?></label>
1082
  </th>
1083
  <td id="the_champ_vertical_target_url_column">
1084
+ <input id="the_champ_vertical_target_url_default" name="the_champ_sharing[vertical_target_url]" type="radio" <?php echo !isset( $theChampSharingOptions['vertical_target_url'] ) || $theChampSharingOptions['vertical_target_url'] == 'default' ? 'checked = "checked"' : '';?> value="default" />
1085
+ <label for="the_champ_vertical_target_url_default"><?php _e('Url of the webpage where icons are located (default)', 'Super-Socializer' ) ?></label><br/>
1086
+ <input id="the_champ_vertical_target_url_home" name="the_champ_sharing[vertical_target_url]" type="radio" <?php echo isset( $theChampSharingOptions['vertical_target_url'] ) && $theChampSharingOptions['vertical_target_url'] == 'home' ? 'checked = "checked"' : '';?> value="home" />
1087
+ <label for="the_champ_vertical_target_url_home"><?php _e('Url of the homepage of your website', 'Super-Socializer' ) ?></label><br/>
1088
+ <input id="the_champ_vertical_target_url_custom" name="the_champ_sharing[vertical_target_url]" type="radio" <?php echo isset( $theChampSharingOptions['vertical_target_url'] ) && $theChampSharingOptions['vertical_target_url'] == 'custom' ? 'checked = "checked"' : '';?> value="custom" />
1089
+ <label for="the_champ_vertical_target_url_custom"><?php _e('Custom url', 'Super-Socializer' ) ?></label><br/>
1090
+ <input id="the_champ_vertical_target_url_custom_url" name="the_champ_sharing[vertical_target_url_custom]" type="text" value="<?php echo isset( $theChampSharingOptions['vertical_target_url_custom'] ) ? $theChampSharingOptions['vertical_target_url_custom'] : '' ?>" />
1091
  </td>
1092
  </tr>
1093
+ <tr class="the_champ_help_content" id="the_champ_vertical_target_url_help_cont">
1094
  <td colspan="2">
1095
  <div>
1096
+ <?php _e('Url to share', 'Super-Socializer' ) ?>
1097
  </div>
1098
  </td>
1099
  </tr>
1100
 
1101
  <tr>
1102
  <th>
1103
+ <img id="the_champ_ss_vertical_rearrange_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1104
+ <label><?php _e("Rearrange icons", 'Super-Socializer' ); ?></label>
1105
  </th>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1106
  </tr>
1107
 
1108
  <tr>
1109
+ <td colspan="2">
1110
+ <script>
1111
+ <?php
1112
+ $verticalSharingStyle = 'width:' . ( $theChampSharingOptions['vertical_sharing_shape'] != 'rectangle' ? $theChampSharingOptions['vertical_sharing_size'] : $theChampSharingOptions['vertical_sharing_width'] ) . 'px;height:' . $vertical_line_height . 'px;';
1113
+ $verticalDeliciousRadius = '';
1114
+ if($theChampSharingOptions['vertical_sharing_shape'] == 'round'){
1115
+ $verticalSharingStyle .= 'border-radius:999px;';
1116
+ $verticalDeliciousRadius = 'border-radius:999px;';
1117
+ } elseif ( isset( $theChampSharingOptions['vertical_border_radius'] ) && $theChampSharingOptions['vertical_border_radius'] != '' ) {
1118
+ $verticalSharingStyle .= 'border-radius:' . $theChampSharingOptions['vertical_border_radius'] . 'px;';
1119
+ }
1120
+ ?>
1121
+ var theChampVerticalSharingStyle = '<?php echo $verticalSharingStyle ?>', theChampVerticalDeliciousRadius = '<?php echo $verticalDeliciousRadius ?>';
1122
+ </script>
1123
+ <style type="text/css">
1124
+ .theChampVerticalSharingBackground{
1125
+ <?php if($vertical_bg){ ?>
1126
+ background-color: <?php echo $vertical_bg ?>;
1127
+ <?php }if($vertical_border_width){ ?>
1128
+ border-width: <?php echo $vertical_border_width ?>px;
1129
+ border-style: solid;
1130
+ <?php } ?>
1131
+ border-color: <?php echo $vertical_border_color ? $vertical_border_color : 'transparent'; ?>;
1132
+ }
1133
+ .theChampVerticalSharingBackground:hover{
1134
+ <?php if($vertical_bg_hover){ ?>
1135
+ background-color: <?php echo $vertical_bg_hover ?>;
1136
+ <?php }if($vertical_border_width_hover){ ?>
1137
+ border-width: <?php echo $vertical_border_width_hover ?>px;
1138
+ border-style: solid;
1139
+ <?php } ?>
1140
+ border-color: <?php echo $vertical_border_color_hover ? $vertical_border_color_hover : 'transparent'; ?>;
1141
+ }
1142
+ </style>
1143
  <ul id="the_champ_ss_vertical_rearrange">
1144
  <?php
1145
+ if ( isset( $theChampSharingOptions['vertical_re_providers'] ) ) {
1146
+ foreach ( $theChampSharingOptions['vertical_re_providers'] as $rearrange ) {
1147
+ ?>
1148
+ <li title="<?php echo ucfirst( str_replace( '_', ' ', $rearrange ) ) ?>" id="the_champ_re_vertical_<?php echo str_replace( array( ' ', '.' ), '_', $rearrange) ?>" >
1149
+ <i style="display:block;<?php echo $verticalSharingStyle ?>" class="<?php echo in_array($rearrange, $likeButtons) ? '' : 'theChampVerticalSharingBackground' ?> theChamp<?php echo ucfirst(str_replace( array('_', '.', ' '), '', $rearrange)) ?>Background"><div class="theChampSharingSvg theChamp<?php echo ucfirst(str_replace( array('_', '.', ' '), '', $rearrange ) ) ?>Svg" style="<?php echo $verticalDeliciousRadius ?>"></div></i>
1150
+ <input type="hidden" name="the_champ_sharing[vertical_re_providers][]" value="<?php echo $rearrange ?>">
1151
+ </li>
1152
+ <?php
1153
+ }
 
 
 
 
 
 
 
 
 
1154
  }
1155
  ?>
1156
  </ul>
1160
  <tr class="the_champ_help_content" id="the_champ_ss_vertical_rearrange_help_cont">
1161
  <td colspan="2">
1162
  <div>
1163
+ <?php _e('Drag the icons to rearrange in desired order', 'Super-Socializer' ) ?>
1164
+ </div>
1165
+ </td>
1166
+ </tr>
1167
+
1168
+ <tr>
1169
+ <th colspan="2">
1170
+ <img id="the_champ_vertical_providers_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1171
+ <label><?php _e("Select Sharing Services", 'Super-Socializer' ); ?></label>
1172
+ </th>
1173
+ </tr>
1174
+
1175
+ <tr class="the_champ_help_content" id="the_champ_vertical_providers_help_cont">
1176
+ <td colspan="2">
1177
+ <div>
1178
+ <?php _e('Select sharing services to show in social share bar', 'Super-Socializer' ) ?>
1179
  </div>
1180
  </td>
1181
  </tr>
1182
+
1183
+ <tr>
1184
+ <td colspan="2">
1185
+ <?php
1186
+ foreach($likeButtons as $likeButton){
1187
+ ?>
1188
+ <div class="theChampVerticalSharingProviderContainer">
1189
+ <input id="the_champ_vertical_<?php echo $likeButton ?>" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_re_providers'] ) && in_array($likeButton, $theChampSharingOptions['vertical_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $likeButton ?>" />
1190
+ <label for="the_champ_vertical_<?php echo $likeButton ?>"><img src="<?php echo plugins_url('../images/sharing/'. $likeButton .'.png', __FILE__) ?>" /></label>
1191
+ </div>
1192
+ <?php
1193
+ }
1194
+ ?>
1195
+ <div style="clear:both"></div>
1196
+ <?php
1197
+ foreach($sharingNetworks as $sharingNetwork){
1198
+ ?>
1199
+ <div class="theChampVerticalSharingProviderContainer">
1200
+ <input id="the_champ_vertical_sharing_<?php echo $sharingNetwork ?>" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_re_providers'] ) && in_array($sharingNetwork, $theChampSharingOptions['vertical_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $sharingNetwork ?>" />
1201
+ <label for="the_champ_vertical_sharing_<?php echo $sharingNetwork ?>"><i style="display:block;width:18px;height:18px;" class="theChampSharing theChamp<?php echo str_replace(array('_', '.', ' '), '', ucfirst($sharingNetwork)) ?>Background"><ss style="display:block;" class="theChampSharingSvg theChamp<?php echo str_replace(array('_', '.', ' '), '', ucfirst($sharingNetwork)) ?>Svg"></ss></i></label>
1202
+ <label for="the_champ_vertical_sharing_<?php echo $sharingNetwork ?>"><?php echo str_replace('_', ' ', ucfirst($sharingNetwork)) ?></label>
1203
+ </div>
1204
+ <?php
1205
+ }
1206
+ ?>
1207
+ </td>
1208
+ </tr>
1209
 
1210
  <tr>
1211
  <th>
1212
+ <img id="the_champ_vertical_bg_color_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1213
+ <label><?php _e("Background Color", 'Super-Socializer' ); ?></label>
1214
  </th>
1215
  <td>
1216
+ <input style="width: 100px" name="the_champ_sharing[vertical_bg]" type="text" value="<?php echo isset( $theChampSharingOptions['vertical_bg'] ) ? $theChampSharingOptions['vertical_bg'] : '' ?>" />
1217
  </td>
1218
  </tr>
1219
 
1220
+ <tr class="the_champ_help_content" id="the_champ_vertical_bg_color_help_cont">
1221
  <td colspan="2">
1222
  <div>
1223
+ <?php _e('Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href="http://www.colorpicker.com/" target="_blank">this link</a>', 'Super-Socializer' ) ?>
1224
  </div>
1225
  </td>
1226
  </tr>
1227
 
1228
  <tr>
1229
  <th>
1230
+ <img id="the_champ_alignment_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1231
+ <label for="the_champ_alignment"><?php _e("Horizontal alignment", 'Super-Socializer' ); ?></label>
1232
  </th>
1233
  <td>
1234
+ <select onchange="theChampToggleOffset(this.value)" id="the_champ_alignment" name="the_champ_sharing[alignment]">
1235
+ <option value="left" <?php echo isset( $theChampSharingOptions['alignment'] ) && $theChampSharingOptions['alignment'] == 'left' ? 'selected="selected"' : '' ?>><?php _e('Left', 'Super-Socializer' ) ?></option>
1236
+ <option value="right" <?php echo isset( $theChampSharingOptions['alignment'] ) && $theChampSharingOptions['alignment'] == 'right' ? 'selected="selected"' : '' ?>><?php _e('Right', 'Super-Socializer' ) ?></option>
1237
  </select>
1238
  </td>
1239
  </tr>
1240
 
1241
+ <tr class="the_champ_help_content" id="the_champ_alignment_help_cont">
1242
  <td colspan="2">
1243
  <div>
1244
+ <?php _e('Horizontal alignment of the sharing interface', 'Super-Socializer' ) ?>
1245
  </div>
1246
  </td>
1247
  </tr>
1248
 
1249
+ <tbody id="the_champ_left_offset_rows" <?php echo (isset( $theChampSharingOptions['alignment'] ) && $theChampSharingOptions['alignment'] == 'left') ? '' : 'style="display: none"' ?>>
1250
  <tr>
1251
  <th>
1252
+ <img id="the_champ_left_offset_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1253
+ <label for="the_champ_left_offset"><?php _e("Left offset", 'Super-Socializer' ); ?></label>
1254
  </th>
1255
  <td>
1256
+ <input style="width: 100px" id="the_champ_left_offset" name="the_champ_sharing[left_offset]" type="text" value="<?php echo isset( $theChampSharingOptions['left_offset'] ) ? $theChampSharingOptions['left_offset'] : '' ?>" />px
1257
  </td>
1258
  </tr>
1259
 
1260
+ <tr class="the_champ_help_content" id="the_champ_left_offset_help_cont">
1261
  <td colspan="2">
1262
  <div>
1263
+ <?php _e('Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left. Number can be negative too.', 'Super-Socializer' ) ?>
1264
  </div>
1265
  </td>
1266
  </tr>
1267
  </tbody>
1268
 
1269
+ <tbody id="the_champ_right_offset_rows" <?php echo (isset( $theChampSharingOptions['alignment'] ) && $theChampSharingOptions['alignment'] == 'right') ? '' : 'style="display: none"' ?>>
1270
  <tr>
1271
  <th>
1272
+ <img id="the_champ_right_offset_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1273
+ <label for="the_champ_right_offset"><?php _e("Right offset", 'Super-Socializer' ); ?></label>
1274
  </th>
1275
  <td>
1276
+ <input style="width: 100px" id="the_champ_right_offset" name="the_champ_sharing[right_offset]" type="text" value="<?php echo isset( $theChampSharingOptions['right_offset'] ) ? $theChampSharingOptions['right_offset'] : '' ?>" />px
1277
  </td>
1278
  </tr>
1279
 
1280
+ <tr class="the_champ_help_content" id="the_champ_right_offset_help_cont">
1281
  <td colspan="2">
1282
  <div>
1283
+ <?php _e('Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right. Number can be negative too.', 'Super-Socializer' ) ?>
1284
  </div>
1285
  </td>
1286
  </tr>
1288
 
1289
  <tr>
1290
  <th>
1291
+ <img id="the_champ_top_offset_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1292
+ <label for="the_champ_top_offset"><?php _e("Top offset", 'Super-Socializer' ); ?></label>
1293
  </th>
1294
  <td>
1295
+ <input style="width: 100px" id="the_champ_top_offset" name="the_champ_sharing[top_offset]" type="text" value="<?php echo isset( $theChampSharingOptions['top_offset'] ) ? $theChampSharingOptions['top_offset'] : '' ?>" />px
1296
  </td>
1297
  </tr>
1298
 
1299
+ <tr class="the_champ_help_content" id="the_champ_top_offset_help_cont">
1300
  <td colspan="2">
1301
  <div>
1302
+ <?php _e('Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top.', 'Super-Socializer' ) ?>
1303
  </div>
1304
  </td>
1305
  </tr>
1306
 
1307
  <tr>
1308
  <th>
1309
+ <img id="the_champ_vertical_location_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1310
+ <label><?php _e("Placement", 'Super-Socializer' ); ?></label>
1311
  </th>
1312
  <td>
1313
+ <input id="the_champ_vertical_home" name="the_champ_sharing[vertical_home]" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_home'] ) ? 'checked = "checked"' : '';?> value="1" />
1314
+ <label for="the_champ_vertical_home"><?php _e('Homepage', 'Super-Socializer' ) ?></label><br/>
1315
+ <input id="the_champ_vertical_post" name="the_champ_sharing[vertical_post]" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_post'] ) ? 'checked = "checked"' : '';?> value="1" />
1316
+ <label for="the_champ_vertical_post"><?php _e('Posts', 'Super-Socializer' ) ?></label><br/>
1317
+ <input id="the_champ_vertical_page" name="the_champ_sharing[vertical_page]" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_page'] ) ? 'checked = "checked"' : '';?> value="1" />
1318
+ <label for="the_champ_vertical_page"><?php _e('Pages', 'Super-Socializer' ) ?></label><br/>
1319
+ <input id="the_champ_vertical_excerpt" name="the_champ_sharing[vertical_excerpt]" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_excerpt'] ) ? 'checked = "checked"' : '';?> value="1" />
1320
+ <label for="the_champ_vertical_excerpt"><?php _e('Excerpts (at Homepage)', 'Super-Socializer' ) ?></label><br/>
1321
+ <input id="the_champ_vertical_category" name="the_champ_sharing[vertical_category]" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_category'] ) ? 'checked = "checked"' : '';?> value="1" />
1322
+ <label for="the_champ_vertical_category"><?php _e('Category Archives', 'Super-Socializer' ) ?></label><br/>
1323
+ <input id="the_champ_vertical_archive" name="the_champ_sharing[vertical_archive]" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_archive'] ) ? 'checked = "checked"' : '';?> value="1" />
1324
+ <label for="the_champ_vertical_archive"><?php _e('Archive Pages (Category, Tag, Author or Date based pages)', 'Super-Socializer' ) ?></label><br/>
1325
  <?php
1326
  if( count( $post_types ) ) {
1327
  foreach ( $post_types as $post_type ) {
1328
  ?>
1329
+ <input id="the_champ_vertical_<?php echo $post_type ?>" name="the_champ_sharing[vertical_<?php echo $post_type ?>]" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_' . $post_type] ) ? 'checked = "checked"' : '';?> value="1" />
1330
+ <label for="the_champ_vertical_<?php echo $post_type ?>"><?php echo ucfirst( $post_type ) . 's'; ?></label><br/>
1331
  <?php
1332
  }
1333
  }
1334
 
1335
  if($theChampIsBpActive){
1336
  ?>
1337
+ <input id="the_champ_vertical_bp_group" name="the_champ_sharing[vertical_bp_group]" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_bp_group'] ) ? 'checked = "checked"' : '';?> value="1" />
1338
+ <label for="the_champ_vertical_bp_group"><?php _e('BuddyPress group', 'Super-Socializer' ) ?></label><br/>
1339
  <?php
1340
  }
1341
 
1342
  if(function_exists('is_bbpress')){
1343
  ?>
1344
  <br/>
1345
+ <input id="the_champ_vertical_bb_forum" name="the_champ_sharing[vertical_bb_forum]" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_bb_forum'] ) ? 'checked = "checked"' : '';?> value="1" />
1346
+ <label for="the_champ_vertical_bb_forum"><?php _e('BBPress forum', 'Super-Socializer' ) ?></label>
1347
  <br/>
1348
+ <input id="the_champ_vertical_bb_topic" name="the_champ_sharing[vertical_bb_topic]" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_bb_topic'] ) ? 'checked = "checked"' : '';?> value="1" />
1349
+ <label for="the_champ_vertical_bb_topic"><?php _e('BBPress topic', 'Super-Socializer' ) ?></label>
1350
  <?php
1351
  }
1352
  ?>
1353
  </td>
1354
  </tr>
1355
 
1356
+ <tr class="the_champ_help_content" id="the_champ_vertical_location_help_cont">
1357
  <td colspan="2">
1358
  <div>
1359
+ <?php _e('Specify the pages where you want to enable vertical Sharing interface', 'Super-Socializer' ) ?>
1360
  </div>
1361
  </td>
1362
  </tr>
1363
 
1364
  <tr>
1365
  <th>
1366
+ <img id="the_champ_vertical_count_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1367
+ <label for="the_champ_vertical_counts"><?php _e("Show share counts", 'Super-Socializer' ); ?></label>
1368
  </th>
1369
  <td>
1370
+ <input id="the_champ_vertical_counts" name="the_champ_sharing[vertical_counts]" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_counts'] ) ? 'checked = "checked"' : '';?> value="1" />
1371
+ <br/>
1372
+ <span style="font-size:12px"><?php _e( 'Official share counts are supported for Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, Stumbleupon and Vkontakte', 'Super-Socializer' ) ?></span>
1373
  </td>
1374
  </tr>
1375
 
1376
+ <tr id="the_champ_twitter_vertical_share_count" <?php echo isset( $theChampSharingOptions['vertical_counts'] ) ? '' : 'style="display:none"' ?>>
1377
+ <th>
1378
+ </th>
1379
+ <td>
1380
+ <input id="the_champ_vertical_newsharecounts" name="the_champ_sharing[vertical_tweet_count_service]" type="radio" <?php echo $tweetCountService == 'newsharecounts' ? 'checked = "checked"' : '';?> value="newsharecounts" /><label for="the_champ_vertical_newsharecounts"><?php echo sprintf( __( 'Use <a href="%s" target="_blank">NewShareCounts</a> to show Twitter share counts', 'Super-Socializer'), 'http://newsharecounts.com' ) ?></label>
1381
+ <br/>
1382
+ <span class="the_champ_help_content" style="display:block"><?php echo sprintf( __( 'For this to work, you have to enter your website url %s and sign in using Twitter at <a href="%s" target="_blank">their website</a>', 'Super-Socializer'), site_url(), 'http://newsharecounts.com' ) ?></span>
1383
+ <br/>
1384
+ <input id="the_champ_vertical_opensharecount" name="the_champ_sharing[vertical_tweet_count_service]" type="radio" <?php echo $tweetCountService == 'opensharecount' ? 'checked = "checked"' : '';?> value="opensharecount" /><label for="the_champ_vertical_opensharecount"><?php echo sprintf( __( 'Use <a href="%s" target="_blank">OpenShareCount</a> to show Twitter share counts', 'Super-Socializer'), 'http://opensharecount.com' ) ?></label>
1385
+ <br/>
1386
+ <span class="the_champ_help_content" style="display:block"><?php echo sprintf( __( 'For this to work, you have to sign up and register your website url %s at <a href="%s" target="_blank">their website</a>', 'Super-Socializer'), site_url(), 'http://opensharecount.com' ) ?></span>
1387
+ </td>
1388
+ </tr>
1389
+
1390
+ <tr class="the_champ_help_content" id="the_champ_vertical_count_help_cont">
1391
  <td colspan="2">
1392
  <div>
1393
+ <?php _e('If enabled, share counts are displayed above sharing icons.', 'Super-Socializer' ) ?>
1394
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_vertical_sharing_count.png', __FILE__); ?>" />
1395
  </div>
1396
  </td>
1398
 
1399
  <tr>
1400
  <th>
1401
+ <img id="the_champ_total_vertical_shares_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1402
+ <label for="the_champ_total_vertical_shares"><?php _e("Show total shares", 'Super-Socializer' ); ?></label>
1403
  </th>
1404
  <td>
1405
+ <input id="the_champ_total_vertical_shares" name="the_champ_sharing[vertical_total_shares]" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_total_shares'] ) ? 'checked = "checked"' : '';?> value="1" />
1406
  </td>
1407
  </tr>
1408
 
1409
+ <tr class="the_champ_help_content" id="the_champ_total_vertical_shares_help_cont">
1410
  <td colspan="2">
1411
  <div>
1412
+ <?php _e('If enabled, total shares will be displayed with sharing icons', 'Super-Socializer' ) ?>
1413
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_vertical_total_shares.png', __FILE__); ?>" />
1414
  </div>
1415
  </td>
1417
 
1418
  <tr>
1419
  <th>
1420
+ <img id="the_champ_vmore_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1421
+ <label for="the_champ_vmore"><?php _e("Enable 'More' icon", 'Super-Socializer' ); ?></label>
1422
  </th>
1423
  <td>
1424
+ <input id="the_champ_vmore" name="the_champ_sharing[vertical_more]" type="checkbox" <?php echo isset( $theChampSharingOptions['vertical_more'] ) ? 'checked = "checked"' : '';?> value="1" />
1425
  </td>
1426
  </tr>
1427
 
1428
+ <tr class="the_champ_help_content" id="the_champ_vmore_help_cont">
1429
  <td colspan="2">
1430
  <div>
1431
+ <?php _e('If enabled, "More" icon will be displayed after selected sharing icons which shows additional sharing networks in popup', 'Super-Socializer' ) ?>
1432
  </div>
1433
  </td>
1434
  </tr>
1435
 
1436
  <tr>
1437
  <th>
1438
+ <img id="the_champ_mobile_sharing_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1439
+ <label for="the_champ_mobile_sharing"><?php _e("Vertical floating bar responsiveness", 'Super-Socializer' ); ?></label>
1440
  </th>
1441
  <td>
1442
+ <input id="the_champ_mobile_sharing" name="the_champ_sharing[hide_mobile_sharing]" type="checkbox" <?php echo isset( $theChampSharingOptions['hide_mobile_sharing'] ) ? 'checked = "checked"' : '';?> value="1" /><label><?php echo sprintf( __( 'Display vertical interface only when screen is wider than %s pixels', 'Super-Socializer' ), '<input style="width:46px" name="the_champ_sharing[vertical_screen_width]" type="text" value="' . ( isset( $theChampSharingOptions['vertical_screen_width'] ) ? $theChampSharingOptions['vertical_screen_width'] : '' ) . '" />' ) ?></label>
1443
  </td>
1444
  </tr>
1445
 
1446
+ <tr class="the_champ_help_content" id="the_champ_mobile_sharing_help_cont">
1447
  <td colspan="2">
1448
  <div>
1449
+ <?php _e('Display vertical interface only when screen is wider than the width specified.', 'Super-Socializer' ) ?>
 
1450
  </div>
1451
  </td>
1452
  </tr>
1453
 
1454
  <tr>
1455
  <th>
1456
+ <img id="the_champ_mobile_sharing_bottom_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1457
+ <label for="the_champ_mobile_sharing_bottom"><?php _e("Horizontal floating bar responsiveness", 'Super-Socializer' ); ?></label>
1458
  </th>
1459
  <td>
1460
+ <input id="the_champ_mobile_sharing_bottom" name="the_champ_sharing[bottom_mobile_sharing]" type="checkbox" <?php echo isset( $theChampSharingOptions['bottom_mobile_sharing'] ) ? 'checked = "checked"' : '';?> value="1" /><label><?php echo sprintf( __( 'Stick vertical floating interface horizontally at bottom only when screen is narrower than %s pixels', 'Super-Socializer' ), '<input style="width:46px" name="the_champ_sharing[horizontal_screen_width]" type="text" value="' . ( isset( $theChampSharingOptions['horizontal_screen_width'] ) ? $theChampSharingOptions['horizontal_screen_width'] : '' ) . '" />' ) ?></label>
1461
  </td>
1462
  </tr>
1463
 
1464
+ <tr class="the_champ_help_content" id="the_champ_mobile_sharing_bottom_help_cont">
1465
  <td colspan="2">
1466
  <div>
1467
+ <?php _e('Stick vertical floating interface horizontally at bottom only when screen is narrower than the width specified', 'Super-Socializer' ) ?>
1468
+ <img src="<?php echo plugins_url('../images/snaps/ss_mobile_sharing.png', __FILE__); ?>" />
1469
  </div>
1470
  </td>
1471
  </tr>
1472
+
1473
+ <tbody id="the_champ_bottom_sharing_options" <?php echo isset( $theChampSharingOptions['bottom_mobile_sharing'] ) ? '' : 'style="display: none"'; ?>>
1474
+ <tr>
1475
+ <th>
1476
+ <img id="the_champ_mobile_sharing_position_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1477
+ <label for="the_champ_mobile_sharing_position"><?php _e("Horizontal floating bar position", 'Super-Socializer' ); ?></label>
1478
+ </th>
1479
+ <td>
1480
+ <label><?php echo sprintf( __( '%s pixels from %s', 'Super-Socializer' ), '<input id="the_champ_mobile_sharing_position" style="width:46px" name="the_champ_sharing[bottom_sharing_position]" type="text" value="' . ( isset( $theChampSharingOptions['bottom_sharing_position'] ) ? $theChampSharingOptions['bottom_sharing_position'] : '' ) . '" />', '<select style="width:63px" name="the_champ_sharing[bottom_sharing_alignment]"><option value="right" ' . ( ! isset( $theChampSharingOptions['bottom_sharing_alignment'] ) || $theChampSharingOptions['bottom_sharing_alignment'] == 'right' ? 'selected' : '' ) . '>right</option><option value="left" ' . ( isset( $theChampSharingOptions['bottom_sharing_alignment'] ) && $theChampSharingOptions['bottom_sharing_alignment'] == 'left' ? 'selected' : '' ) . '>left</option></select>' ) ?></label>
1481
+ </td>
1482
+ </tr>
1483
+
1484
+ <tr class="the_champ_help_content" id="the_champ_mobile_sharing_position_help_cont">
1485
+ <td colspan="2">
1486
+ <div>
1487
+ <?php _e('Alignment of horizontal floating interface. Number can be negative too.', 'Super-Socializer' ) ?>
1488
+ </div>
1489
+ </td>
1490
+ </tr>
1491
+ </tbody>
1492
+
1493
+
1494
  </tbody>
1495
  </table>
1496
  </div>
1498
  </div>
1499
  <?php include 'help.php'; ?>
1500
  </div>
1501
+
1502
  <div class="menu_containt_div" id="tabs-4">
1503
  <div class="the_champ_left_column">
1504
+
1505
+ <div class="stuffbox">
1506
+ <h3><label><?php _e('Url shortener', 'Super-Socializer' );?></label></h3>
1507
+ <div class="inside">
1508
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1509
+ <tr>
1510
+ <th>
1511
+ <img id="the_champ_surl_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1512
+ <label for="the_champ_surl_enable"><?php _e("Use shortlinks already installed", 'Super-Socializer' ); ?></label>
1513
+ </th>
1514
+ <td>
1515
+ <input id="the_champ_surl_enable" name="the_champ_sharing[use_shortlinks]" type="checkbox" <?php echo isset( $theChampSharingOptions['use_shortlinks'] ) ? 'checked = "checked"' : '';?> value="1" />
1516
+ </td>
1517
+ </tr>
1518
+
1519
+ <tr class="the_champ_help_content" id="the_champ_surl_enable_help_cont">
1520
+ <td colspan="2">
1521
+ <div>
1522
+ <?php _e('Allows for shortened URLs to be used when sharing content if a shortening plugin is installed', 'Super-Socializer' ) ?>
1523
+ </div>
1524
+ </td>
1525
+ </tr>
1526
+
1527
+ <tr>
1528
+ <th>
1529
+ <img id="the_champ_bitly_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1530
+ <label for="the_champ_bitly_enable"><?php _e("Enable bit.ly url shortener for sharing", 'Super-Socializer' ); ?></label>
1531
+ </th>
1532
+ <td>
1533
+ <input id="the_champ_bitly_enable" name="the_champ_sharing[bitly_enable]" type="checkbox" <?php echo isset( $theChampSharingOptions['bitly_enable'] ) ? 'checked = "checked"' : '';?> value="1" />
1534
+ </td>
1535
+ </tr>
1536
+
1537
+ <tr class="the_champ_help_content" id="the_champ_bitly_enable_help_cont">
1538
+ <td colspan="2">
1539
+ <div>
1540
+ <?php _e('Master control to enable bit.ly url shortening for sharing', 'Super-Socializer' ) ?>
1541
+ </div>
1542
+ </td>
1543
+ </tr>
1544
+
1545
+ <tr>
1546
+ <th>
1547
+ <img id="the_champ_bitly_login_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1548
+ <label for="the_champ_bitly_login"><?php _e("bit.ly username", 'Super-Socializer' ); ?></label>
1549
+ </th>
1550
+ <td>
1551
+ <input id="the_champ_bitly_login" name="the_champ_sharing[bitly_username]" type="text" value="<?php echo isset( $theChampSharingOptions['bitly_username'] ) ? $theChampSharingOptions['bitly_username'] : '' ?>" />
1552
+ </td>
1553
+ </tr>
1554
+
1555
+ <tr class="the_champ_help_content" id="the_champ_bitly_login_help_cont">
1556
+ <td colspan="2">
1557
+ <div>
1558
+ <?php echo sprintf(__('Login to your bit.ly account and navigate to <a href="%s" target="_blank">this link</a> to get bit.ly username', 'Super-Socializer' ), 'https://bitly.com/a/your_api_key') ?>
1559
+ <img width="550" src="<?php echo plugins_url('../images/snaps/ss_bitly_username.png', __FILE__); ?>" />
1560
+ </div>
1561
+ </td>
1562
+ </tr>
1563
+
1564
+ <tr>
1565
+ <th>
1566
+ <img id="the_champ_bitly_key_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1567
+ <label for="the_champ_bitly_key"><?php _e("bit.ly API Key", 'Super-Socializer' ); ?></label>
1568
+ </th>
1569
+ <td>
1570
+ <input id="the_champ_bitly_key" name="the_champ_sharing[bitly_key]" type="text" value="<?php echo isset( $theChampSharingOptions['bitly_key'] ) ? $theChampSharingOptions['bitly_key'] : '' ?>" />
1571
+ </td>
1572
+ </tr>
1573
+
1574
+ <tr class="the_champ_help_content" id="the_champ_bitly_key_help_cont">
1575
+ <td colspan="2">
1576
+ <div>
1577
+ <?php echo sprintf(__('Login to your bit.ly account and navigate to <a href="%s" target="_blank">this link</a> to get your API key', 'Super-Socializer' ), 'https://bitly.com/a/your_api_key') ?>
1578
+ <img width="550" src="<?php echo plugins_url('../images/snaps/ss_bitly_apikey.png', __FILE__); ?>" />
1579
+ </div>
1580
+ </td>
1581
+ </tr>
1582
+ </table>
1583
+ </div>
1584
+ </div>
1585
+
1586
+ <div class="stuffbox">
1587
+ <h3><label><?php _e('Language', 'Super-Socializer' );?></label></h3>
1588
+ <div class="inside">
1589
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1590
+ <tr>
1591
+ <th>
1592
+ <img id="the_champ_sc_language_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1593
+ <label for="the_champ_sc_language"><?php _e("Language", 'Super-Socializer' ); ?></label>
1594
+ </th>
1595
+ <td>
1596
+ <input id="the_champ_sc_language" name="the_champ_sharing[language]" type="text" value="<?php echo $theChampSharingOptions['language'] ? $theChampSharingOptions['language'] : '' ?>" />
1597
+ </td>
1598
+ </tr>
1599
+
1600
+ <tr class="the_champ_help_content" id="the_champ_sc_language_help_cont">
1601
+ <td colspan="2">
1602
+ <div>
1603
+ <?php echo sprintf(__('Enter the code of the language you want to use for like buttons. You can find the language codes at <a href="%s" target="_blank">this link</a>. Leave it empty for default language(English)', 'Super-Socializer' ), '//www.facebook.com/translations/FacebookLocales.xml') ?>
1604
+ </div>
1605
+ </td>
1606
+ </tr>
1607
+ </table>
1608
+ </div>
1609
+ </div>
1610
+
1611
+ <div class="stuffbox">
1612
+ <h3><label><?php _e('Username in sharing', 'Super-Socializer' );?></label></h3>
1613
+ <div class="inside">
1614
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1615
+ <tr>
1616
+ <th>
1617
+ <img id="the_champ_twitter_username_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1618
+ <label for="the_champ_twitter_username"><?php _e("Twitter username (without @)", 'Super-Socializer' ); ?></label>
1619
+ </th>
1620
+ <td>
1621
+ <input id="the_champ_twitter_username" name="the_champ_sharing[twitter_username]" type="text" value="<?php echo isset( $theChampSharingOptions['twitter_username'] ) ? $theChampSharingOptions['twitter_username'] : '' ?>" />
1622
+ </td>
1623
+ </tr>
1624
+
1625
+ <tr class="the_champ_help_content" id="the_champ_twitter_username_help_cont">
1626
+ <td colspan="2">
1627
+ <div>
1628
+ <?php _e('Provided username will be appended after the content being shared as "via @USERNAME". Leave empty if you do not want any username in the content being shared.', 'Super-Socializer' ) ?>
1629
+ <br/><img width="550" src="<?php echo plugins_url('../images/snaps/ss_twitter_username.png', __FILE__); ?>" />
1630
+ </div>
1631
+ </td>
1632
+ </tr>
1633
+
1634
+ <tr>
1635
+ <th>
1636
+ <img id="the_champ_buffer_username_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1637
+ <label for="the_champ_buffer_username"><?php _e("Buffer username (without @)", 'Super-Socializer' ); ?></label>
1638
+ </th>
1639
+ <td>
1640
+ <input id="the_champ_buffer_username" name="the_champ_sharing[buffer_username]" type="text" value="<?php echo isset( $theChampSharingOptions['buffer_username'] ) ? $theChampSharingOptions['buffer_username'] : '' ?>" />
1641
+ </td>
1642
+ </tr>
1643
+
1644
+ <tr class="the_champ_help_content" id="the_champ_buffer_username_help_cont">
1645
+ <td colspan="2">
1646
+ <div>
1647
+ <?php _e('Provided username will be appended after the content being shared as "via @USERNAME". Leave empty if you do not want any username in the content being shared.', 'Super-Socializer' ) ?>
1648
+ </div>
1649
+ </td>
1650
+ </tr>
1651
+ </table>
1652
+ </div>
1653
+ </div>
1654
+
1655
+ </div>
1656
+ <?php include 'help.php'; ?>
1657
+ </div>
1658
+
1659
+ <div class="menu_containt_div" id="tabs-5">
1660
+ <div class="the_champ_left_column">
1661
  <div class="stuffbox">
1662
+ <h3><label><?php _e('Shortcode & Widget', 'Super-Socializer' );?></label></h3>
1663
  <div class="inside">
1664
+ <p><a style="text-decoration:none" href="http://support.heateor.com/social-sharing-shortcode-and-widget/" target="_blank"><?php _e('Shortcode & Widget', 'Super-Socializer' ) ?></a></p>
1665
  </div>
1666
  </div>
1667
  </div>
1668
  <?php include 'help.php'; ?>
1669
  </div>
1670
 
1671
+ <div class="menu_containt_div" id="tabs-6">
1672
  <div class="the_champ_left_column">
1673
  <div class="stuffbox">
1674
+ <h3><label><?php _e('Facebook Sharing Troubleshooter', 'Super-Socializer' );?></label></h3>
1675
  <div class="inside">
1676
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1677
  <tr>
1678
  <td>
1679
+ <?php _e('If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:', 'Super-Socializer' ) ?><br/>
1680
  <a style="text-decoration: none" target="_blank" href="https://developers.facebook.com/tools/debug/">https://developers.facebook.com/tools/debug/</a>
1681
  </td>
1682
  </tr>
1687
  <?php include 'help.php'; ?>
1688
  </div>
1689
 
1690
+ <div class="menu_containt_div" id="tabs-7">
1691
  <div class="the_champ_left_column">
1692
  <div class="stuffbox">
1693
+ <h3><label><?php _e('FAQ', 'Super-Socializer' ) ?></label></h3>
1694
+ <div class="inside faq">
1695
+ <p><a href="http://support.heateor.com/how-can-i-show-share-counts-of-my-website-rather-than-of-individual-pagepost/" target="_blank"><?php _e('How can I show share counts of my website rather than of individual pages/posts?', 'Super-Socializer' ) ?></a></p>
1696
+ <p><a href="http://support.heateor.com/how-can-i-disable-social-sharing-on-particular-pagepost/" target="_blank"><?php _e('How can I disable sharing on particular page/post?', 'Super-Socializer' ) ?></a></p>
1697
+ <p><a href="http://support.heateor.com/how-can-i-specify-minimum-sharing-count-for-sharing-networks/" target="_blank"><?php _e('How can I specify minimum sharing count for sharing networks?', 'Super-Socializer' ) ?></a></p>
1698
+ <p><a href="http://support.heateor.com/how-to-share-specific-page/" target="_blank"><?php _e('How to share specific page?', 'Super-Socializer' ) ?></a></p>
1699
+ <p><a href="http://support.heateor.com/how-to-integrate-google-analytics-with-sharing" target="_blank"><?php _e('How to integrate Google Analytics with sharing?', 'Super-Socializer' ) ?></a></p>
1700
+ <p><a href="http://support.heateor.com/how-to-customize-the-look-of-total-share-counts" target="_blank"><?php _e('How to customize the look of total share counts?', 'Super-Socializer' ) ?></a></p>
1701
+ <p><a href="http://support.heateor.com/how-to-customize-the-look-of-individual-share-counts" target="_blank"><?php _e('How to customize the look of individual share counts?', 'Super-Socializer' ) ?></a></p>
1702
+ <p><a href="http://support.heateor.com/how-to-show-whatsapp-icon-only-on-mobile-devices" target="_blank"><?php _e('How to show Whatsapp icon only on mobile devices?', 'Super-Socializer' ) ?></a></p>
1703
  </div>
1704
  </div>
1705
 
1707
  <?php include 'help.php'; ?>
1708
  </div>
1709
 
 
 
 
 
 
1710
  </div>
1711
+ <div class="the_champ_clear"></div>
1712
+ <p class="submit">
1713
+ <input style="margin-left:8px" type="submit" name="save" class="button button-primary" value="<?php _e("Save Changes", 'Super-Socializer' ); ?>" />
1714
+ </p>
1715
+ </form>
1716
+ </div>
css/admin.css CHANGED
@@ -1 +1,4 @@
1
- @charset "utf-8";.clr,.the_champ_clear{clear:both}#the_champ_sl_curl{color:#900}h2.nav-tab-wrapper>ul>li{float:left;margin-left:5px}li.ui-tabs-active{border-bottom-color:#f1f1f1;border-bottom-style:solid;border-bottom-width:5px}li.ui-tabs-active a.nav-tab{background:0 0}.submit a{margin-left:20px}div.menu_containt_div>.stuffbox{width:763px}div.inside td,div.inside th{padding:7px}div.stuffbox h3{border-bottom:1px solid #eee}.theChampHorizontalSharingProviderContainer,.theChampVerticalSharingProviderContainer{width:165px;float:left}.the_champ_help_content{display:none;font-size:12px;color:#797979;line-height:15px;font-style:italic}.the_champ_help_content img{box-shadow:4px 4px 4px 4px #888;margin:8px 0}.the_champ_help_bubble{cursor:pointer;vertical-align:middle}#the_champ_ss_rearrange li,#the_champ_ss_vertical_rearrange li{cursor:move;float:left;display:block;margin:2px}#the_champ_sc_rearrange,#the_champ_sc_vertical_rearrange,#the_champ_ss_rearrange,#the_champ_ss_vertical_rearrange{margin:0}#the_champ_sc_rearrange li,#the_champ_sc_vertical_rearrange li{cursor:move;float:left;display:block;width:175px;margin:0}#the_champ_sc_rearrange label,#the_champ_sc_vertical_rearrange label{cursor:move}.the_champ_left_column{float:left;width:56%!important}.the_champ_right_column{float:left;width:37%;margin-left:10px}.the_champ_right_column a:focus{outline:0!important;border:none!important}.the_champ_right_column td{display:block;width:120px!important;margin:0}.the_champ_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}input[type=text]{width:90%}.theChampLoginButton{background:url(../images/login/login.png) no-repeat;cursor:pointer;display:block;float:left;margin-right:10px}.theChampGoogleButton{background-position:-32px 0;width:32px;height:32px}.theChampFacebookButton{background-position:0 0;width:32px;height:32px}.theChampWordpressButton{background-position:0 -96px;width:32px;height:32px}.theChampLinkedinButton{background-position:-32px -32px;width:32px;height:32px}.theChampTwitterButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingButton{display:block;background:url(../images/sharing/sharing.png) no-repeat}.theChampHorizontalSharingButton,.theChampVerticalSharingButton{display:block}.theChampSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.theChampSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.theChampSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.theChampSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.theChampSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.theChampSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.theChampSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.theChampSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.theChampSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.theChampSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.theChampSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.theChampSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.theChampSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.theChampSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.theChampSharingXingButton{background-position:0 -128px;width:32px;height:32px}.theChampSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}#the_champ_troubleshoot_notification{color:red}.theChampYummlyBackground{background-color:#E16120}.theChampFacebookBackground{background-color:#3C589A}.theChampBufferBackground{background-color:#000}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleBackground{background-color:#dd4b39}.theChampLinkedinBackground{background-color:#2886EF}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#247CED}.theChampStumbleuponBackground{background-color:#EA4823}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#14B2C8}.theChampVkontakteBackground{background-color:#5E84AC}.theChampYahooBackground{background-color:#8F03CC}.theChampXingBackground{background-color:#00797D}.theChampWhatsappBackground{background-color:#55EB4C}.theChampSharingSvg{width:100%;height:100%}.theChampYummlySvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNIDEwLjUgMTAgcSA0IC0yIDIuNSAxIGwgLTEgNCBxIDAgMiA1IDAgbCAxIC02LjUgbSAtMSA2LjUgbCAtMSA0IGMgLTMgNiAtNiAtMSAwIC0xIHEgMSAtMSA1IDEiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampBufferSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM5Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gMTUgNiBsIC0xMCA1IGwgMTAgNSBsIDEwIC01IHoiIHN0cm9rZS13aWR0aD0iMCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjxwYXRoIHN0cm9rZT0iI2ZmZiIgZD0iTSA1LjUgMTQuNSBsIDkuNSA1IGwgOS41IC01IG0gLTE5IDQgbCA5LjUgNSBsIDkuNSAtNSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFacebookSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0xNCAyNSB2IC0xMyBRIDEzIDYgMjEgNy41IE0gMTAgMTQgTCAyMCAxNCIgc3Ryb2tlLXdpZHRoPSI0IiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampDeliciousSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHN0eWxlPSJmaWxsOiNlZWU7IiAvPg0KPHJlY3QgeD0iMTUiIHk9IjAiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgc3R5bGU9ImZpbGw6IzMxNzNEMDsiIC8+DQo8cmVjdCB4PSIwIiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojMDAwOyIgLz4NCjxyZWN0IHg9IjE1IiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojQkRCREJEOyIgLz4NCjwvc3ZnPg==) left no-repeat}.theChampDiggSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQ5IDQ5Ij48cGF0aCBkPSJNIDYgMjAgaCAxMCBjIDAgLTE0IC05IC0xNCAtOSAwIG0gNSAwIHYgNyBtIC0xIDAgdiAtNyBtIDQgLTcgaCA0LjUgdiAtNSBoIDggdiA4IGggLTggdiAtMyBtIDggMCBoIDQgdiA1LjUgaCAtMyB2IDEyIGggLTQgdiAtOCBtIDAgOCBoIC02LjUgdiAtMTIgaCAtMiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48ZWxsaXBzZSBjeD0iMTEuNSIgY3k9IjI4LjUiIHJ4PSI0IiByeT0iMiIgc3R5bGU9ImZpbGw6d2hpdGU7Ij48L2VsbGlwc2U+PC9zdmc+) left no-repeat}.theChampEmailSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDQzIDQzIj48cGF0aCBkPSJNIDUuNSAxMSBoIDIzIHYgMSBsIC0xMSA2IGwgLTExIC02IHYgLTEgbSAwIDIgbCAxMSA2IGwgMTEgLTYgdiAxMSBoIC0yMiB2IC0xMSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFloatitSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBmaWxsPSJub25lIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIGZpbGw9Im5vbmUiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0gNSAxNSBoIDUgTSAxNSA1IHYgNSBNIDI1IDE1IGggLTUgTSAxNSAyNSB2IC01IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampGoogleSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij4NCjxjaXJjbGUgY3g9IjEwIiBjeT0iOCIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPg0KPHBhdGggZD0iTSAxMCAxMSB2IDExIG0gNSAwIHYgLTExIG0gMCAzIHEgNiAtMyA3IDAgdiA4IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampPinterestSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02LjUgLTUgNDIgNDIiPjxwYXRoIGQ9Ik0gNiAyMCBjIC0zIC00IC0yIC0xMCAzIC0xMy41IGMgNCAtMyAxMSAtMyAxNSAzIGMgMyA1IDIgMTMgLTYgMTUgcSAtNCAxIC02IC0zIGwgLTIgNiBsIC0xLjIgMiBsIC0wLjggLTIgbCAyLjUgLTExIGMgLTIgLTQgMSAtOCA0IC02IHEgMCA1IC0xLjQgOC41IGMgMyA4IDEwIDAgOS41IC00IGMgMCAtOSAtMTEgLTExIC0xNC41IC00IGMgMCAwIC0zIDUgMCA4IGwgLTEgMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC02IDM4IDM4Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gNyAxMCBoIDIgdiAzIGggMTIgdiAtMyBoIDIgdiA3IGggLTIgdiAtMyBoIC0xMiB2IDMgaCAtMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS44IiBoZWlnaHQ9IjciIHdpZHRoPSIxMCIgeD0iMTAiIHk9IjUiIGZpbGw9Im5vbmUiPjwvcmVjdD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIgaGVpZ2h0PSI1IiB3aWR0aD0iOCIgeD0iMTEiIHk9IjE2IiBmaWxsPSIjZmZmIj48L3JlY3Q+PC9zdmc+) left no-repeat}.theChampRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj48ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5IiBjeT0iMTciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMiIgY3k9IjciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSI3IiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMyIgY3k9IjE0IiByPSIyIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PHBhdGggZD0iTSAxMCAyMiBxIDUgMyAxMCAwIE0gMTUgMTIgbCAxIC02IGwgNiAxIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampStumbleuponSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBkPSJNIDYuNiAxNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTQgYyAtMSAtNyA2IC03IDYgLTIgdiAyLjUgbSAwIDIuNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTEiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii04IC04IDY0IDY0Ij4NCjxwYXRoIGQ9Ik0gMzggMTkgcSAyIC0xIDQgLTUgcSAtMS41IDIgLTQgMiBxIDEuNSAtMSAzLjUgLTUgcSAtMS41IDIgLTUgMiBjIC01IC01IC0xMyAtMiAtMTIgNiBxIC03IDEgLTE1IC04IHEgLTIgNCAxIDkgcSAtMSAwIC0zIC0xIHEgMCA1IDUgNyBxIC0xIC41IC0zIDAgcSAxIDQgOCA2IHEgLTUgMyAtMTEgMyBjIDE0IDggMzAgMCAzMS41IC0xNCIgc3Ryb2tlLXdpZHRoPSIwLjMiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj4NCjxwYXRoIGQ9Ik0gMi41IDkgaCA0LjUgbCA1IDcgdiAtNyBoIDQuNSB2IDcgbCA1IC03IGggNSBsIC01IDcgbCA1IDcgaCAtNSBsIC01IC03IHYgNyBoIC00LjUgcSAtMiAwIC01IC02IHoiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampYahooSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDggMTAgbCA3IDcgbCA1IC01IG0gLTQuNyA1IHYgMyBoIC0wLjUgdiAtMyBtIDggLTQgdiA1IG0gMCAxIHYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48cGF0aCBkPSJNIDYgMTAgaCA2IG0gNSAyIGggNiBtIC0xMSA5LjUgaCA2IiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj4NCjxwYXRoIGQ9Ik0gNiA5IGggNSBsIDQgNCBsIC01IDcgaCAtNSBsIDUgLTcgeiBtIDE1IC00IGggNSBsIC05IDEzIGwgNCA4IGggLTUgbCAtNCAtOCB6IiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBpZD0iYXJjMSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiIGQ9Ik0gMTEuNTc5Nzk4NTY2NzQzMzE0IDI0LjM5NjkyNjIwNzg1OTA4NSBBIDEwIDEwIDAgMSAwIDYuODA4NDc5NTU3MTEwMDc5IDIwLjczNTc2NDM2MzUxMDQ2Ij48L3BhdGg+PHBhdGggZD0iTSA3IDE5IGwgLTEgNiBsIDYgLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSAxMCAxMCBxIC0xIDggOCAxMSBjIDUgLTEgMCAtNiAtMSAtMyBxIC00IC0zIC01IC01IGMgNCAtMiAtMSAtNSAtMSAtNCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.ss_demo{background-color:#1D9AFC;padding:8px 0 10px;font-size:18px;border:0;color:#fff;border-radius:8px;margin:0 auto;font-weight:bolder;width:100%;cursor:pointer}.ss_demo:hover{background-color:#5BACEC};
 
 
 
1
+ @charset "utf-8";.clr,.the_champ_clear{clear:both}#the_champ_sl_curl{color:#900}.the_champ_master_control h2,.the_champ_master_control input{float: left;}.the_champ_master_control h2{margin:0 10px 0 0}.the_champ_master_control input{margin-top:2px}h2.nav-tab-wrapper{border-bottom: 1px solid #ccc;padding-bottom: 0;padding-left: 10px;}h2.nav-tab-wrapper>ul>li{float:left;margin-left:5px}li.ui-tabs-active{border-bottom-color:#f1f1f1;border-bottom-style:solid;border-bottom-width:5px}li.ui-tabs-active a.nav-tab{background:0 0}.submit a{margin-left:20px}div.menu_containt_div>.stuffbox{width:763px}div.inside td,div.inside th{padding:7px}div.stuffbox h3{border-bottom:1px solid #eee}.theChampHorizontalSharingProviderContainer,.theChampVerticalSharingProviderContainer{font-size: 11px;width:165px;float:left;margin-bottom: 4px}.theChampHorizontalSharingProviderContainer input,.theChampVerticalSharingProviderContainer input{margin-top: 0;float: left;}.theChampHorizontalSharingProviderContainer label,.theChampVerticalSharingProviderContainer label{float: left;margin:0 1px;}.the_champ_help_content{display:none;font-size:12px;color:#797979;line-height:15px;font-style:italic}.the_champ_help_content img{box-shadow:4px 4px 4px 4px #888;margin:8px 0}.the_champ_help_bubble{cursor:pointer;vertical-align:middle}#the_champ_ss_rearrange li,#the_champ_ss_vertical_rearrange li{cursor:move;float:left;display:block;margin:2px}#the_champ_sc_rearrange,#the_champ_sc_vertical_rearrange,#the_champ_ss_rearrange,#the_champ_ss_vertical_rearrange{margin:0}#the_champ_sc_rearrange li,#the_champ_sc_vertical_rearrange li{cursor:move;float:left;display:block;width:175px;margin:0}#the_champ_sc_rearrange label,#the_champ_sc_vertical_rearrange label{cursor:move}.the_champ_left_column{float:left;width:72%!important}.the_champ_right_column{float:left;width:26.5%;margin-left:10px}.the_champ_right_column a:focus{outline:0!important;border:none!important}.the_champ_right_column td{display:block;width:120px!important;margin:0}.the_champ_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}input[type=text]{width:90%}.theChampLoginButton{background:url(../images/login/login.png) no-repeat;cursor:pointer;display:block;float:left;margin-right:10px}.theChampGoogleButton{background-position:-32px 0;width:32px;height:32px}.theChampFacebookButton{background-position:0 0;width:32px;height:32px}.theChampWordpressButton{background-position:0 -96px;width:32px;height:32px}.theChampLinkedinButton{background-position:-32px -32px;width:32px;height:32px}.theChampTwitterButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingButton{display:block;background:url(../images/sharing/sharing.png) no-repeat}.theChampHorizontalSharingButton,.theChampVerticalSharingButton{display:block}.theChampSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.theChampSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.theChampSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.theChampSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.theChampSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.theChampSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.theChampSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.theChampSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.theChampSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.theChampSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.theChampSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.theChampSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.theChampSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.theChampSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.theChampSharingXingButton{background-position:0 -128px;width:32px;height:32px}.theChampSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}#the_champ_troubleshoot_notification{color:red}.theChampYummlyBackground{background-color:#E16120}.theChampFacebookBackground{background-color:#3C589A}.theChampBufferBackground{background-color:#000}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleBackground{background-color:#dd4b39}.theChampLinkedinBackground{background-color:#2886EF}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#247CED}.theChampStumbleuponBackground{background-color:#EA4823}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#14B2C8}.theChampVkontakteBackground{background-color:#5E84AC}.theChampYahooBackground{background-color:#8F03CC}.theChampXingBackground{background-color:#00797D}.theChampWhatsappBackground{background-color:#55EB4C}.theChampSharingSvg{width:100%;height:100%}.theChampYummlySvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNIDEwLjUgMTAgcSA0IC0yIDIuNSAxIGwgLTEgNCBxIDAgMiA1IDAgbCAxIC02LjUgbSAtMSA2LjUgbCAtMSA0IGMgLTMgNiAtNiAtMSAwIC0xIHEgMSAtMSA1IDEiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampBufferSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM5Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gMTUgNiBsIC0xMCA1IGwgMTAgNSBsIDEwIC01IHoiIHN0cm9rZS13aWR0aD0iMCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjxwYXRoIHN0cm9rZT0iI2ZmZiIgZD0iTSA1LjUgMTQuNSBsIDkuNSA1IGwgOS41IC01IG0gLTE5IDQgbCA5LjUgNSBsIDkuNSAtNSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFacebookSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0xNCAyNSB2IC0xMyBRIDEzIDYgMjEgNy41IE0gMTAgMTQgTCAyMCAxNCIgc3Ryb2tlLXdpZHRoPSI0IiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampDeliciousSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHN0eWxlPSJmaWxsOiNlZWU7IiAvPg0KPHJlY3QgeD0iMTUiIHk9IjAiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgc3R5bGU9ImZpbGw6IzMxNzNEMDsiIC8+DQo8cmVjdCB4PSIwIiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojMDAwOyIgLz4NCjxyZWN0IHg9IjE1IiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojQkRCREJEOyIgLz4NCjwvc3ZnPg==) left no-repeat}.theChampDiggSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQ5IDQ5Ij48cGF0aCBkPSJNIDYgMjAgaCAxMCBjIDAgLTE0IC05IC0xNCAtOSAwIG0gNSAwIHYgNyBtIC0xIDAgdiAtNyBtIDQgLTcgaCA0LjUgdiAtNSBoIDggdiA4IGggLTggdiAtMyBtIDggMCBoIDQgdiA1LjUgaCAtMyB2IDEyIGggLTQgdiAtOCBtIDAgOCBoIC02LjUgdiAtMTIgaCAtMiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48ZWxsaXBzZSBjeD0iMTEuNSIgY3k9IjI4LjUiIHJ4PSI0IiByeT0iMiIgc3R5bGU9ImZpbGw6d2hpdGU7Ij48L2VsbGlwc2U+PC9zdmc+) left no-repeat}.theChampEmailSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDQzIDQzIj48cGF0aCBkPSJNIDUuNSAxMSBoIDIzIHYgMSBsIC0xMSA2IGwgLTExIC02IHYgLTEgbSAwIDIgbCAxMSA2IGwgMTEgLTYgdiAxMSBoIC0yMiB2IC0xMSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFloatitSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBmaWxsPSJub25lIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIGZpbGw9Im5vbmUiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0gNSAxNSBoIDUgTSAxNSA1IHYgNSBNIDI1IDE1IGggLTUgTSAxNSAyNSB2IC01IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampGoogleSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij4NCjxjaXJjbGUgY3g9IjEwIiBjeT0iOCIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPg0KPHBhdGggZD0iTSAxMCAxMSB2IDExIG0gNSAwIHYgLTExIG0gMCAzIHEgNiAtMyA3IDAgdiA4IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampPinterestSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02LjUgLTUgNDIgNDIiPjxwYXRoIGQ9Ik0gNiAyMCBjIC0zIC00IC0yIC0xMCAzIC0xMy41IGMgNCAtMyAxMSAtMyAxNSAzIGMgMyA1IDIgMTMgLTYgMTUgcSAtNCAxIC02IC0zIGwgLTIgNiBsIC0xLjIgMiBsIC0wLjggLTIgbCAyLjUgLTExIGMgLTIgLTQgMSAtOCA0IC02IHEgMCA1IC0xLjQgOC41IGMgMyA4IDEwIDAgOS41IC00IGMgMCAtOSAtMTEgLTExIC0xNC41IC00IGMgMCAwIC0zIDUgMCA4IGwgLTEgMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC02IDM4IDM4Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gNyAxMCBoIDIgdiAzIGggMTIgdiAtMyBoIDIgdiA3IGggLTIgdiAtMyBoIC0xMiB2IDMgaCAtMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS44IiBoZWlnaHQ9IjciIHdpZHRoPSIxMCIgeD0iMTAiIHk9IjUiIGZpbGw9Im5vbmUiPjwvcmVjdD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIgaGVpZ2h0PSI1IiB3aWR0aD0iOCIgeD0iMTEiIHk9IjE2IiBmaWxsPSIjZmZmIj48L3JlY3Q+PC9zdmc+) left no-repeat}.theChampRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj48ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5IiBjeT0iMTciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMiIgY3k9IjciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSI3IiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMyIgY3k9IjE0IiByPSIyIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PHBhdGggZD0iTSAxMCAyMiBxIDUgMyAxMCAwIE0gMTUgMTIgbCAxIC02IGwgNiAxIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampStumbleuponSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBkPSJNIDYuNiAxNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTQgYyAtMSAtNyA2IC03IDYgLTIgdiAyLjUgbSAwIDIuNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTEiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii04IC04IDY0IDY0Ij4NCjxwYXRoIGQ9Ik0gMzggMTkgcSAyIC0xIDQgLTUgcSAtMS41IDIgLTQgMiBxIDEuNSAtMSAzLjUgLTUgcSAtMS41IDIgLTUgMiBjIC01IC01IC0xMyAtMiAtMTIgNiBxIC03IDEgLTE1IC04IHEgLTIgNCAxIDkgcSAtMSAwIC0zIC0xIHEgMCA1IDUgNyBxIC0xIC41IC0zIDAgcSAxIDQgOCA2IHEgLTUgMyAtMTEgMyBjIDE0IDggMzAgMCAzMS41IC0xNCIgc3Ryb2tlLXdpZHRoPSIwLjMiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj4NCjxwYXRoIGQ9Ik0gMi41IDkgaCA0LjUgbCA1IDcgdiAtNyBoIDQuNSB2IDcgbCA1IC03IGggNSBsIC01IDcgbCA1IDcgaCAtNSBsIC01IC03IHYgNyBoIC00LjUgcSAtMiAwIC01IC02IHoiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampYahooSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDggMTAgbCA3IDcgbCA1IC01IG0gLTQuNyA1IHYgMyBoIC0wLjUgdiAtMyBtIDggLTQgdiA1IG0gMCAxIHYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48cGF0aCBkPSJNIDYgMTAgaCA2IG0gNSAyIGggNiBtIC0xMSA5LjUgaCA2IiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj4NCjxwYXRoIGQ9Ik0gNiA5IGggNSBsIDQgNCBsIC01IDcgaCAtNSBsIDUgLTcgeiBtIDE1IC00IGggNSBsIC05IDEzIGwgNCA4IGggLTUgbCAtNCAtOCB6IiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBpZD0iYXJjMSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiIGQ9Ik0gMTEuNTc5Nzk4NTY2NzQzMzE0IDI0LjM5NjkyNjIwNzg1OTA4NSBBIDEwIDEwIDAgMSAwIDYuODA4NDc5NTU3MTEwMDc5IDIwLjczNTc2NDM2MzUxMDQ2Ij48L3BhdGg+PHBhdGggZD0iTSA3IDE5IGwgLTEgNiBsIDYgLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSAxMCAxMCBxIC0xIDggOCAxMSBjIDUgLTEgMCAtNiAtMSAtMyBxIC00IC0zIC01IC01IGMgNCAtMiAtMSAtNSAtMSAtNCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.ss_demo{background-color:#1D9AFC;padding:8px 0 10px;font-size:18px;border:0;color:#fff;border-radius:8px;margin:0 auto;font-weight:bolder;width:100%;cursor:pointer}.ss_demo:hover{background-color:#5BACEC};
2
+ .theChampYummlyBackground{background-color:#E16120}.theChampFacebookBackground{background-color:#3C589A}.theChampBufferBackground{background-color:#000}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleplusBackground{background-color:#dd4b39}.theChampLinkedinBackground{background-color:#2886EF}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#247CED}.theChampStumbleuponBackground{background-color:#EA4823}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#14B2C8}.theChampVkontakteBackground{background-color:#5E84AC}.theChampYahooBackground{background-color:#8F03CC}.theChampXingBackground{background-color:#00797D}.theChampDeliciousBackground{background-color:#53BEEE}.theChampWhatsappBackground{background-color:#55EB4C}.theChampLinkedinshareBackground{width:66px!important;}.theChampFacebookrecommendBackground{width:95px!important;}.theChampFacebooklikeBackground{width:50px!important;}.theChampTwittertweetBackground{width:57px!important;}.theChampGoogleplusoneBackground{width:35px!important;}.theChampGoogleplusshareBackground{width:57px!important;}.theChampPinterestpinBackground{width:44px!important;}.theChampBuffershareBackground{width:58px!important;}.theChampXingshareBackground{width:63px!important;}.theChampRedditbadgeBackground{width:124px!important;}.theChampStumbleuponbadgeBackground{width:79px!important;}.theChampSharingSvg{width:100%;height:100%}.theChampLinkedinshareSvg{background:url(../images/sharing/linkedin_share.png) left no-repeat;border-radius: 0!important}.theChampFacebooklikeSvg{background:url(../images/sharing/facebook_like.png) left no-repeat;border-radius: 0!important}.theChampStumbleuponbadgeSvg{background:url(../images/sharing/stumbleupon_badge.png) left no-repeat;border-radius: 0!important}.theChampRedditbadgeSvg{background:url(../images/sharing/reddit_badge.png) left no-repeat;border-radius: 0!important}.theChampYummlyshareSvg{background:url(../images/sharing/yummly_share.png) left no-repeat;border-radius: 0!important}.theChampBuffershareSvg{background:url(../images/sharing/buffer_share.png) left no-repeat;border-radius: 0!important}.theChampXingshareSvg{background:url(../images/sharing/xing_share.png) left no-repeat;border-radius: 0!important}.theChampPinterestpinSvg{background:url(../images/sharing/pinterest_pin.png) left no-repeat;border-radius: 0!important}.theChampGoogleplusshareSvg{background:url(../images/sharing/google_plus_share.png) left no-repeat;border-radius: 0!important}.theChampGoogleplusoneSvg{background:url(../images/sharing/google_plusone.png) left no-repeat;border-radius: 0!important}.theChampTwittertweetSvg{background:url(../images/sharing/twitter_tweet.png) left no-repeat;border-radius: 0!important}.theChampFacebookrecommendSvg{background:url(../images/sharing/facebook_recommend.png) left no-repeat;border-radius:0!important;}
3
+ .theChampAIMBackground{background-color: #fff}.theChampAmazonWishListBackground{background-color: #fff}.theChampAOLMailBackground{background-color: #2A2A2A}.theChampAppnetBackground{background-color: #5D5D5D}.theChampBaiduBackground{background-color: #fff}.theChampBalatarinBackground{background-color: #fff}.theChampBibSonomyBackground{background-color: #fff}.theChampBittyBrowserBackground{background-color: #EFEFEF}.theChampBlinklistBackground{background-color: #3D3C3B}.theChampBloggerPostBackground{background-color: #FDA352}.theChampBlogMarksBackground{background-color: #535353}.theChampBookmarksfrBackground{background-color: #E8EAD4}.theChampBoxnetBackground{background-color: #1A74B0}.theChampBuddyMarksBackground{background-color: #fff}.theChampCare2NewsBackground{background-color: #6EB43F}.theChampCiteULikeBackground{background-color: #2781CD}.theChampDiaryRuBackground{background-color: #E8D8C6}.theChampDiasporaBackground{background-color: #2E3436}.theChampDiHITTBackground{background-color: #FF6300}.theChampDiigoBackground{background-color: #4A8BCA}.theChampDZoneBackground{background-color: #fff}.theChampEvernoteBackground{background-color: #8BE056}.theChampFarkBackground{background-color: #555}
4
+ .theChampFlipboardBackground{background-color: #CC0000}.theChampFolkdBackground{background-color: #fff}.theChampGoogleBookmarksBackground{background-color: #CB0909}.theChampGoogleGmailBackground{background-color: #E5E5E5}.theChampHackerNewsBackground{background-color: #F60}.theChampHatenaBackground{background-color: #00A6DB}.theChampInstapaperBackground{background-color: #EDEDED}.theChampJamespotBackground{background-color: #FF9E2C}.theChampKakaoBackground{background-color: #FCB700}.theChampKindleItBackground{background-color: #2A2A2A}.theChampKnownBackground{background-color: #FFF}.theChampLineBackground{background-color: #00C300}.theChampLiveJournalBackground{background-color: #EDEDED}.theChampMailRuBackground{background-color: #356FAC}.theChampMendeleyBackground{background-color: #A70805}.theChampMeneameBackground{background-color: #FF7D12}.theChampMixiBackground{background-color: #EDEDED}.theChampMySpaceBackground{background-color: #2A2A2A}.theChampNetlogBackground{background-color: #2A2A2A}.theChampNetvouzBackground{background-color: #fff}.theChampNewsVineBackground{background-color: #055D00}.theChampNUjijBackground{background-color: #D40000}.theChampOdnoklassnikiBackground{background-color: #F2720C}.theChampOknotizieBackground{background-color: #fff}.theChampOutlookcomBackground{background-color: #fff}.theChampPinboardBackground{background-color: #1341DE}.theChampPlurkBackground{background-color: #CF682F}.theChampPocketBackground{background-color: #fff}.theChampPrintFriendlyBackground{background-color: #61D1D5}.theChampProtopageBookmarksBackground{background-color: #413FFF}.theChampPushaBackground{background-color: #0072B8}.theChampQzoneBackground{background-color: #2B82D9}.theChampRediffMyPageBackground{background-color: #D20000}.theChampRenrenBackground{background-color: #005EAC}.theChampSegnaloBackground{background-color: #fff}.theChampSinaWeiboBackground{background-color: #fff}.theChampSiteJotBackground{background-color: #fff}.theChampSlashdotBackground{background-color: #004242}.theChampStumpediaBackground{background-color: #EDEDED}.theChampSvejoBackground{background-color: #FAFAFA}.theChampSymbalooFeedsBackground{background-color: #6DA8F7}.theChampTuentiBackground{background-color: #0075C9}.theChampTwiddlaBackground{background-color: #EDEDED}.theChampTypePadPostBackground{background-color: #2A2A2A}.theChampViadeoBackground{background-color: #2A2A2A}.theChampWaneloBackground{background-color: #fff}.theChampWebnewsBackground{background-color: #CC2512}.theChampWordPressBackground{background-color: #464646}.theChampWykopBackground{background-color: #367DA9}.theChampYahooMailBackground{background-color: #400090}.theChampYahooMessengerBackground{background-color: #400090}.theChampYoolinkBackground{background-color: #A2C538}.theChampYouMobBackground{background-color: #3B599D}.theChampYummlyshareBackground{width: 43px!important}.faq a{text-decoration: none;}.theChampCounterPreviewLeft,.theChampCounterVerticalPreviewLeft,.theChampCounterVerticalPreviewRight,.theChampCounterPreviewRight{float:left;text-align: center;font-family:sans-serif;width:30px;visibility: hidden;}.theChampCounterVerticalPreviewTop,.theChampCounterVerticalPreviewBottom,.theChampCounterPreviewTop,.theChampCounterPreviewBottom{text-align: center;line-height: 30px;height: 30px;visibility: hidden;clear: both}.theChampCounterVerticalPreviewInnerleft,.theChampCounterVerticalPreviewInnerright,.theChampCounterPreviewInnerleft,.theChampCounterPreviewInnerright{float: left;display: none;height: 100%;width:50%;text-align:center}.theChampCounterVerticalPreviewInnertop,.theChampCounterVerticalPreviewInnerbottom,.theChampCounterPreviewInnertop,.theChampCounterPreviewInnerbottom{clear: both;text-align:center;display: none;width:100%;height:30%}h2.nav-tab-wrapper{border-bottom: 1px solid #ccc;padding-bottom: 0;padding-left: 10px;}
css/front.css CHANGED
@@ -1 +1,2 @@
1
- @charset "utf-8";#the_champ_error{color:red;margin:7px 0}.the_champ_login_container{margin:2px 0}.the_champ_login_container img,.the_champ_sharing_container img{cursor:pointer;margin:2px;border:none}.the_champ_login_container img{display:none;float:left}#the_champ_loading_image{display:block!important;float:none}.the_champ_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}#the_champ_sharing_more_providers{position:fixed;top:50%;left:47%;background:#FAFAFA;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow:none!important}#the_champ_popup_bg{background:url(../images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#the_champ_sharing_more_providers .title{font-size:14px!important;height:auto!important;background:#58B8F8!important;border-bottom:1px solid #D7D7D7!important;color:#fff;font-weight:700;letter-spacing:inherit;line-height:34px!important;padding:0!important;text-align:center;text-transform:none;margin:0!important;text-shadow:none!important;width:100%}#the_champ_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#the_champ_sharing_more_providers #the_champ_sharing_more_content{background:#FAFAFA;border-radius:4px;color:#555;height:100%;width:100%}#the_champ_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#the_champ_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#the_champ_sharing_more_content .all-services ul{margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#the_champ_sharing_more_content .all-services ul li{background:0 0!important;float:left;width:33.3333%!important;text-align:left!important}#the_champ_sharing_more_providers .close-button.separated{background:0 0!important;border:none!important;box-shadow:none!important;width:auto!important;height:auto!important;z-index:1000}#the_champ_sharing_more_providers .close-button{height:auto!important;width:auto!important;left:auto!important;display:block!important;color:#555!important;cursor:pointer!important;font-size:29px!important;line-height:29px!important;margin:0!important;padding:0!important;position:absolute;right:-13px;top:-11px}#the_champ_sharing_more_providers .filter input.search{width:92%;display:block;float:none;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-weight:300;height:auto;line-height:inherit;margin:0 auto;padding:5px 8px 5px 10px;border:1px solid #ccc!important;color:#000;background:#FFF!important;font-size:16px!important;text-align:left!important}#the_champ_sharing_more_providers .footer-panel{background:#58B8F8;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#the_champ_sharing_more_providers .footer-panel p{background-color:transparent;top:0;text-align:left!important;color:#000;font-family:'helvetica neue',arial,helvetica,sans-serif;font-size:12px;line-height:1.2;margin:0!important;padding:0 6px!important;text-indent:0!important}#the_champ_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#the_champ_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:14px;height:auto;line-height:20px;overflow:hidden;padding:8px;text-decoration:none!important;text-overflow:ellipsis;white-space:nowrap;border:none!important;text-indent:0!important;background:0 0!important;text-shadow:none}.the_champ_share_count{display:block;text-indent:0!important;visibility:hidden;background-color:#58B8F8!important;width:5px;height:auto;text-align:center;min-width:8px!important;padding:1px 4px!important;color:#fff!important;font-family:'Open Sans',arial,sans-serif!important;font-size:10px!important;font-weight:600!important;-webkit-border-radius:15px!important;border-radius:15px!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.4);box-shadow:0 2px 2px rgba(0,0,0,.4);text-shadow:0 -1px 0 rgba(0,0,0,.2);line-height:14px!important;border:2px solid #fff!important;z-index:1;margin:2px auto!important;box-sizing:content-box!important}.the_champ_share_count,.the_champ_vertical_counter,.the_champ_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}ul.the_champ_login_ul,ul.the_champ_sharing_ul{list-style:none!important;padding-left:0!important}#the_champ_comment_toggle{margin-bottom:10px}.the_champ_sharing_service{display:block;background:url(../images/sharing/more_sprite.png) no-repeat;margin-right:3px;float:left}.the_champ_sharing_service_amazon{background-position:0 0;width:20px;height:20px}.the_champ_sharing_service_aol{background-position:-20px 0;width:20px;height:20px}.the_champ_sharing_service_arto{background-position:-40px 0;width:20px;height:20px}.the_champ_sharing_service_bebo{background-position:-60px 0;width:20px;height:20px}.the_champ_sharing_service_bitly{background-position:-80px 0;width:20px;height:20px}.the_champ_sharing_service_blogger{background-position:-100px 0;width:20px;height:20px}.the_champ_sharing_service_box{background-position:-120px 0;width:20px;height:20px}.the_champ_sharing_service_boxee{background-position:0 -20px;width:20px;height:20px}.the_champ_sharing_service_buffer{background-position:-20px -20px;width:20px;height:20px}.the_champ_sharing_service_buzzster{background-position:-40px -20px;width:20px;height:20px}.the_champ_sharing_service_delicious{background-position:-60px -20px;width:20px;height:20px}.the_champ_sharing_service_digg{background-position:-80px -20px;width:20px;height:20px}.the_champ_sharing_service_diigo{background-position:-100px -20px;width:20px;height:20px}.the_champ_sharing_service_diigolet{background-position:-120px -20px;width:20px;height:20px}.the_champ_sharing_service_email{background-position:0 -40px;width:20px;height:20px}.the_champ_sharing_service_evernote{background-position:-20px -40px;width:20px;height:20px}.the_champ_sharing_service_facebook{background-position:-40px -40px;width:20px;height:20px}.the_champ_sharing_service_fancy{background-position:-60px -40px;width:20px;height:20px}.the_champ_sharing_service_fark{background-position:-80px -40px;width:20px;height:20px}.the_champ_sharing_service_flipboard{background-position:-100px -40px;width:20px;height:20px}.the_champ_sharing_service_google{background-position:-120px -40px;width:20px;height:20px}.the_champ_sharing_service_google-apps{background-position:0 -60px;width:20px;height:20px}.the_champ_sharing_service_google-bookmark{background-position:-20px -60px;width:20px;height:20px}.the_champ_sharing_service_google-mail{background-position:-40px -60px;width:20px;height:20px}.the_champ_sharing_service_heart{background-position:-60px -60px;width:20px;height:20px}.the_champ_sharing_service_hootsuite{background-position:-80px -60px;width:20px;height:20px}.the_champ_sharing_service_hotmail{background-position:-100px -60px;width:20px;height:20px}.the_champ_sharing_service_identica{background-position:-120px -60px;width:20px;height:20px}.the_champ_sharing_service_inbound{background-position:0 -80px;width:20px;height:20px}.the_champ_sharing_service_instapaper{background-position:-20px -80px;width:20px;height:20px}.the_champ_sharing_service_izeby{background-position:-40px -80px;width:20px;height:20px}.the_champ_sharing_service_kaboodle{background-position:-60px -80px;width:20px;height:20px}.the_champ_sharing_service_linkedin{background-position:-80px -80px;width:20px;height:20px}.the_champ_sharing_service_mister-wong{background-position:-100px -80px;width:20px;height:20px}.the_champ_sharing_service_msdn{background-position:-120px -80px;width:20px;height:20px}.the_champ_sharing_service_ning{background-position:0 -100px;width:20px;height:20px}.the_champ_sharing_service_orkut{background-position:-20px -100px;width:20px;height:20px}.the_champ_sharing_service_pinboard{background-position:-40px -100px;width:20px;height:20px}.the_champ_sharing_service_pinterest{background-position:-60px -100px;width:20px;height:20px}.the_champ_sharing_service_plurk{background-position:-80px -100px;width:20px;height:20px}.the_champ_sharing_service_pocket{background-position:-100px -100px;width:20px;height:20px}.the_champ_sharing_service_print-friendly{background-position:-120px -100px;width:20px;height:20px}.the_champ_sharing_service_quora{background-position:0 -120px;width:20px;height:20px}.the_champ_sharing_service_read-later{background-position:-20px -120px;width:20px;height:20px}.the_champ_sharing_service_reddit{background-position:-40px -120px;width:20px;height:20px}.the_champ_sharing_service_soup{background-position:-60px -120px;width:20px;height:20px}.the_champ_sharing_service_springpad{background-position:-80px -120px;width:20px;height:20px}.the_champ_sharing_service_stumbleupon{background-position:-100px -120px;width:20px;height:20px}.the_champ_sharing_service_stumpedia{background-position:-120px -120px;width:20px;height:20px}.the_champ_sharing_service_techmeme{background-position:0 -140px;width:20px;height:20px}.the_champ_sharing_service_tinyurl{background-position:-20px -140px;width:20px;height:20px}.the_champ_sharing_service_tumblr{background-position:-40px -140px;width:20px;height:20px}.the_champ_sharing_service_twitter{background-position:-60px -140px;width:20px;height:20px}.the_champ_sharing_service_typepad{background-position:-80px -140px;width:20px;height:20px}.the_champ_sharing_service_viadeo{background-position:-100px -140px;width:20px;height:20px}.the_champ_sharing_service_vkontakte{background-position:-120px -140px;width:20px;height:20px}.the_champ_sharing_service_wanelo{background-position:0 -160px;width:20px;height:20px}.the_champ_sharing_service_windows-live{background-position:-20px -160px;width:20px;height:20px}.the_champ_sharing_service_wordpress{background-position:-40px -160px;width:20px;height:20px}.the_champ_sharing_service_yahoo{background-position:-60px -160px;width:20px;height:20px}.the_champ_sharing_service_yammer{background-position:-80px -160px;width:20px;height:20px}.the_champ_sharing_service_yc-hacker{background-position:-100px -160px;width:20px;height:20px}ul.the_champ_login_ul{margin:3px 0!important}ul.the_champ_login_ul li{background:0 0!important;float:left;padding:0!important;margin:0!important;border:0!important;width:auto!important;clear:none!important;list-style-type:none!important}.theChampLoginSvg{width:100%;height:100%}.theChampXingLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDYgOSBoIDUgbCA0IDQgbCAtNSA3IGggLTUgbCA1IC03IHogbSAxNSAtNCBoIDUgbCAtOSAxMyBsIDQgOCBoIC01IGwgLTQgLTggeiIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampGoogleLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxMCIgY3k9IjgiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT4NCjxwYXRoIGQ9Ik0gMTAgMTEgdiAxMSBtIDUgMCB2IC0xMSBtIDAgMyBxIDYgLTMgNyAwIHYgOCIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampTwitterLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCA0OCA0OCI+DQo8cGF0aCBkPSJNIDM4IDE5IHEgMiAtMSA0IC01IHEgLTEuNSAyIC00IDIgcSAxLjUgLTEgMy41IC01IHEgLTEuNSAyIC01IDIgYyAtNSAtNSAtMTMgLTIgLTEyIDYgcSAtNyAxIC0xNSAtOCBxIC0yIDQgMSA5IHEgLTEgMCAtMyAtMSBxIDAgNSA1IDcgcSAtMSAuNSAtMyAwIHEgMSA0IDggNiBxIC01IDMgLTExIDMgYyAxNCA4IDMwIDAgMzEuNSAtMTQiIHN0cm9rZS13aWR0aD0iMC4zIiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampVkontakteLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIuNSA5IGggNC41IGwgNSA3IHYgLTcgaCA0LjUgdiA3IGwgNSAtNyBoIDUgbCAtNSA3IGwgNSA3IGggLTUgbCAtNSAtNyB2IDcgaCAtNC41IHEgLTIgMCAtNSAtNiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampFacebookLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNMTQgMjUgdiAtMTMgUSAxMyA2IDIxIDcuNSBNIDEwIDE0IEwgMjAgMTQiIHN0cm9rZS13aWR0aD0iNCIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampInstagramLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI2IiBmaWxsPSIjZmZmIj48L2NpcmNsZT4NCjxwYXRoIGQ9Ik0gMiAxNSB2IDEzIGggMjYgdiAtMTMgaCAtNCBjIC0zIDEyIC0xNSAxMiAtMTggMCB6IG0gMiAtMTMgdiA1IG0gMiAtNSB2IDUgbSAyIC01IHYgNCBtIC02IDYgdiAtMTAgaCAyNiB2IDEwIGggLTQgYyAtNCAtOC41IC0xNCAtOC41IC0xOCAwIHoiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PHJlY3Qgd2lkdGg9IjUiIGhlaWdodD0iNSIgZmlsbD0iI2ZmZiIgeD0iMjMiIHk9IjIiPjwvcmVjdD4NCjwvc3ZnPg==) left no-repeat}.theChampLoginButton{background:url(../images/login/login.png) no-repeat}.theChampLogin{padding:0!important;margin:2px;height:35px;width:35px;float:left;cursor:pointer;border:none}.theChampInstagramLogin,.theChampTwitterLogin,.theChampXingLogin{display:block}.theChampFacebookLogin,.theChampGoogleLogin,.theChampLinkedinLogin,.theChampVkontakteLogin{display:none}.theChampXingButton{background-position:-64px 0;width:32px;height:32px;display:block}.theChampFacebookButton{background-position:0 0;width:32px;height:32px;display:none}.theChampLiveButton{background-position:-32px -96px;width:32px;height:32px;display:block}.theChampGoogleButton{background-position:-32px 0;width:32px;height:32px;display:none}.theChampInstagramButton{background-position:0 -32px;width:32px;height:32px;display:block!important}.theChampLinkedinButton{background-position:-32px -32px;width:32px;height:32px;display:none}.theChampTwitterButton{background-position:0 -64px;width:32px;height:32px;display:block!important}.theChampVkontakteButton{background-position:-32px -64px;width:32px;height:32px;display:none}ul.the_champ_sharing_ul{margin:1px 0!important}#the_champ_sharing_popup_close img{background:0 0!important;border:none!important;outline:0!important;box-shadow:none!important;width:auto!important;height:auto!important;top:inherit!important;right:inherit!important;left:9px!important;padding:0!important}ul.the_champ_sharing_ul li.theChampSharingRound{background:0 0!important}.the_champ_square_count{display:none;color:#fff;text-align:center;font-weight:bolder;font-family:sans-serif;line-height:1.8em}ul.the_champ_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important}.theChampSharing,.theChampSharingButton{display:block;cursor:pointer;margin:2px}ul.the_champ_login_ul li:before,ul.the_champ_sharing_ul li:before{content:none!important}.theChampSharingButton{background:url(../images/sharing/sharing.png) no-repeat;float:left;border:none}.theChampSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.theChampSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.theChampSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.theChampSharingXingButton{background-position:0 -128px;width:32px;height:32px}.theChampSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}.theChampSharingYummlyButton{background-position:-64px -128px;width:32px;height:32px}.theChampSharingBufferButton{background-position:-96px -128px;width:32px;height:32px}.theChampSharingTotalsharesButton{background-position: -200px -200px}.theChampSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.theChampSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.theChampSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.theChampSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.theChampSharingMoreButton{background-position:-96px -32px;width:32px;height:32px}.theChampSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.theChampSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.theChampSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.theChampSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.theChampSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.theChampSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.theChampSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.the_champ_vertical_counter,.the_champ_vertical_sharing{background:0 0;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);-moz-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);box-shadow:0 1px 4px 1px rgba(0,0,0,.1);position:fixed;overflow:visible;z-index:10000000;display:block;padding:10px;border-radius:4px;opacity:1;box-sizing:content-box!important}.the_champ_vertical_counter li{clear:both}li.the_champ_facebook_like .fb-like span,li.the_champ_facebook_recommend .fb-like span{vertical-align:top!important}li.the_champ_facebook_like .fb-like span iframe,li.the_champ_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000!important}li.the_champ_facebook_like{width:110px}li.the_champ_facebook_recommend{width:145px}li.the_champ_twitter_tweet{width:95px}li.the_champ_linkedin_share{width:117px}li.the_champ_google_plusone{width:74px}li.the_champ_buffer{width:81px;}li.the_champ_reddit{width:130px}li.the_champ_yummly{width:81px}li.the_champ_gp_share{width:95px}li.the_champ_pinterest_pin{width:76px}li.the_champ_xing{width:98px}.the_champ_stumble{width:80px}.the_champ_counter_container li{height:21px}input#user_login,input#user_pass{height:auto!important}.theChampHorizontalSharingButton,.theChampVerticalSharingButton{display:block}.theChampDeliciousSquareBackground{background-color:#474749}.theChampInstagramBackground{background-color:#624E47}.theChampYummlyBackground{background-color:#E16120}.theChampBufferBackground{background-color:#000}.theChampFacebookBackground{background-color:#3C589A}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleBackground{background-color:#dd4b39}.theChampLinkedinBackground{background-color:#2886EF}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#247CED}.theChampStumbleuponBackground{background-color:#EA4823}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#14B2C8}.theChampVkontakteBackground{background-color:#5E84AC}.theChampYahooBackground{background-color:#8F03CC}.theChampXingBackground{background-color:#00797D}.theChampWhatsappBackground{background-color:#55EB4C}.theChampTCBackground,.theChampSharingTotalsharesButton{font-style:normal!important;word-wrap:normal;color:#666;line-height:1}.theChampSharingSvg{width:100%;height:100%}.theChampYummlySvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNIDEwLjUgMTAgcSA0IC0yIDIuNSAxIGwgLTEgNCBxIDAgMiA1IDAgbCAxIC02LjUgbSAtMSA2LjUgbCAtMSA0IGMgLTMgNiAtNiAtMSAwIC0xIHEgMSAtMSA1IDEiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampBufferSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM5Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gMTUgNiBsIC0xMCA1IGwgMTAgNSBsIDEwIC01IHoiIHN0cm9rZS13aWR0aD0iMCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjxwYXRoIHN0cm9rZT0iI2ZmZiIgZD0iTSA1LjUgMTQuNSBsIDkuNSA1IGwgOS41IC01IG0gLTE5IDQgbCA5LjUgNSBsIDkuNSAtNSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFacebookSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0xNCAyNSB2IC0xMyBRIDEzIDYgMjEgNy41IE0gMTAgMTQgTCAyMCAxNCIgc3Ryb2tlLXdpZHRoPSI0IiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampDeliciousSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHN0eWxlPSJmaWxsOiNlZWU7IiAvPg0KPHJlY3QgeD0iMTUiIHk9IjAiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgc3R5bGU9ImZpbGw6IzMxNzNEMDsiIC8+DQo8cmVjdCB4PSIwIiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojMDAwOyIgLz4NCjxyZWN0IHg9IjE1IiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojQkRCREJEOyIgLz4NCjwvc3ZnPg==) left no-repeat}.theChampDiggSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQ5IDQ5Ij48cGF0aCBkPSJNIDYgMjAgaCAxMCBjIDAgLTE0IC05IC0xNCAtOSAwIG0gNSAwIHYgNyBtIC0xIDAgdiAtNyBtIDQgLTcgaCA0LjUgdiAtNSBoIDggdiA4IGggLTggdiAtMyBtIDggMCBoIDQgdiA1LjUgaCAtMyB2IDEyIGggLTQgdiAtOCBtIDAgOCBoIC02LjUgdiAtMTIgaCAtMiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48ZWxsaXBzZSBjeD0iMTEuNSIgY3k9IjI4LjUiIHJ4PSI0IiByeT0iMiIgc3R5bGU9ImZpbGw6d2hpdGU7Ij48L2VsbGlwc2U+PC9zdmc+) left no-repeat}.theChampEmailSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDQzIDQzIj48cGF0aCBkPSJNIDUuNSAxMSBoIDIzIHYgMSBsIC0xMSA2IGwgLTExIC02IHYgLTEgbSAwIDIgbCAxMSA2IGwgMTEgLTYgdiAxMSBoIC0yMiB2IC0xMSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFloatitSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBmaWxsPSJub25lIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIGZpbGw9Im5vbmUiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0gNSAxNSBoIDUgTSAxNSA1IHYgNSBNIDI1IDE1IGggLTUgTSAxNSAyNSB2IC01IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampGoogleSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij4NCjxjaXJjbGUgY3g9IjEwIiBjeT0iOCIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPg0KPHBhdGggZD0iTSAxMCAxMSB2IDExIG0gNSAwIHYgLTExIG0gMCAzIHEgNiAtMyA3IDAgdiA4IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampPinterestSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02LjUgLTUgNDIgNDIiPjxwYXRoIGQ9Ik0gNiAyMCBjIC0zIC00IC0yIC0xMCAzIC0xMy41IGMgNCAtMyAxMSAtMyAxNSAzIGMgMyA1IDIgMTMgLTYgMTUgcSAtNCAxIC02IC0zIGwgLTIgNiBsIC0xLjIgMiBsIC0wLjggLTIgbCAyLjUgLTExIGMgLTIgLTQgMSAtOCA0IC02IHEgMCA1IC0xLjQgOC41IGMgMyA4IDEwIDAgOS41IC00IGMgMCAtOSAtMTEgLTExIC0xNC41IC00IGMgMCAwIC0zIDUgMCA4IGwgLTEgMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC02IDM4IDM4Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gNyAxMCBoIDIgdiAzIGggMTIgdiAtMyBoIDIgdiA3IGggLTIgdiAtMyBoIC0xMiB2IDMgaCAtMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS44IiBoZWlnaHQ9IjciIHdpZHRoPSIxMCIgeD0iMTAiIHk9IjUiIGZpbGw9Im5vbmUiPjwvcmVjdD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIgaGVpZ2h0PSI1IiB3aWR0aD0iOCIgeD0iMTEiIHk9IjE2IiBmaWxsPSIjZmZmIj48L3JlY3Q+PC9zdmc+) left no-repeat}.theChampRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj48ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5IiBjeT0iMTciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMiIgY3k9IjciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSI3IiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMyIgY3k9IjE0IiByPSIyIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PHBhdGggZD0iTSAxMCAyMiBxIDUgMyAxMCAwIE0gMTUgMTIgbCAxIC02IGwgNiAxIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampStumbleuponSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBkPSJNIDYuNiAxNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTQgYyAtMSAtNyA2IC03IDYgLTIgdiAyLjUgbSAwIDIuNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTEiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii04IC04IDY0IDY0Ij4NCjxwYXRoIGQ9Ik0gMzggMTkgcSAyIC0xIDQgLTUgcSAtMS41IDIgLTQgMiBxIDEuNSAtMSAzLjUgLTUgcSAtMS41IDIgLTUgMiBjIC01IC01IC0xMyAtMiAtMTIgNiBxIC03IDEgLTE1IC04IHEgLTIgNCAxIDkgcSAtMSAwIC0zIC0xIHEgMCA1IDUgNyBxIC0xIC41IC0zIDAgcSAxIDQgOCA2IHEgLTUgMyAtMTEgMyBjIDE0IDggMzAgMCAzMS41IC0xNCIgc3Ryb2tlLXdpZHRoPSIwLjMiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj4NCjxwYXRoIGQ9Ik0gMi41IDkgaCA0LjUgbCA1IDcgdiAtNyBoIDQuNSB2IDcgbCA1IC03IGggNSBsIC01IDcgbCA1IDcgaCAtNSBsIC01IC03IHYgNyBoIC00LjUgcSAtMiAwIC01IC02IHoiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampYahooSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDggMTAgbCA3IDcgbCA1IC01IG0gLTQuNyA1IHYgMyBoIC0wLjUgdiAtMyBtIDggLTQgdiA1IG0gMCAxIHYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48cGF0aCBkPSJNIDYgMTAgaCA2IG0gNSAyIGggNiBtIC0xMSA5LjUgaCA2IiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj4NCjxwYXRoIGQ9Ik0gNiA5IGggNSBsIDQgNCBsIC01IDcgaCAtNSBsIDUgLTcgeiBtIDE1IC00IGggNSBsIC05IDEzIGwgNCA4IGggLTUgbCAtNCAtOCB6IiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBpZD0iYXJjMSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiIGQ9Ik0gMTEuNTc5Nzk4NTY2NzQzMzE0IDI0LjM5NjkyNjIwNzg1OTA4NSBBIDEwIDEwIDAgMSAwIDYuODA4NDc5NTU3MTEwMDc5IDIwLjczNTc2NDM2MzUxMDQ2Ij48L3BhdGg+PHBhdGggZD0iTSA3IDE5IGwgLTEgNiBsIDYgLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSAxMCAxMCBxIC0xIDggOCAxMSBjIDUgLTEgMCAtNiAtMSAtMyBxIC00IC0zIC01IC01IGMgNCAtMiAtMSAtNSAtMSAtNCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampSharing{float:left;border:none}.theChampSharingArrow{background-color:#000!important;height:16px;width:16px;cursor:pointer;margin-top:10px}.theChampPushIn{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDcgNiBxIDIgNiAxMCA2IHYgLTYgbCA2IDkgbCAtNiA5IHYgLTYgcSAtMTAgMiAtMTAgLTEyIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZT0iI2ZmZiIgZmlsbD0id2hpdGUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampPushInPng{background:url(../images/sharing/pushin.png) left no-repeat}.theChampPullOut{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIzIDYgcSAtMiA2IC0xMCA2IHYgLTYgbCAtNiA5IGwgNiA5IHYgLTYgcSAxMCAyIDEwIC0xMiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiNmZmYiIGZpbGw9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampPullOutPng{background:url(../images/sharing/pullout.png) left no-repeat}.theChampCommentingTabs li{padding-left:0!important;float:left;margin:0 1em 0 0!important;list-style:none;color:#aaa;display:block;cursor:pointer;font-size:.85em}.theChampCommentingTabs ul{float:left;padding-left:0;margin-left:0}li.theChampSelectedTab{color:#333;border-bottom:2px solid #23a9e1}.fb-comments,.fb-comments span,.fb-comments span iframe[style]{min-width:100%!important;width:100%!important}#mc-input,#user_email,#user_login{height:auto!important}div.the_champ_horizontal_counter li{margin-right:14px!important}div.theChampTotalShareCount{word-wrap:normal!important;font-weight: bolder;font-family: sans-serif;padding: 0;margin: 0;text-align:center}div.theChampTotalShareText{word-wrap:normal!important;margin: 0;padding: 0;text-align: center;}div.the_champ_horizontal_sharing li{width:auto !important}i.theChampWhatsappBackground a{display: inline!important}@media screen and (max-width:783px){#the_champ_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}#the_champ_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92%}.the_champ_hide_sharing{display:none}.the_champ_bottom_sharing{width:auto!important;bottom:-10px!important;top:auto!important;}.the_champ_bottom_sharing .theChampSharingArrow{display:none;}.the_champ_bottom_sharing .theChampTCBackground{margin-right: 1.1em !important}.the_champ_bottom_sharing .the_champ_square_count{display: block;line-height: inherit;}}
 
1
+ @charset "utf-8";#the_champ_error{color:red;margin:7px 0}.the_champ_login_container{margin:2px 0}.the_champ_login_container img,.the_champ_sharing_container img{cursor:pointer;margin:2px;border:none}.the_champ_login_container img{display:none;float:left}#the_champ_loading_image{display:block!important;float:none}.the_champ_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}#the_champ_sharing_more_providers{position:fixed;top:50%;left:47%;background:#FAFAFA;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow:none!important;height:308px}#the_champ_popup_bg{background:url(../images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#the_champ_sharing_more_providers .title{font-size:14px!important;height:auto!important;background:#58B8F8!important;border-bottom:1px solid #D7D7D7!important;color:#fff;font-weight:700;letter-spacing:inherit;line-height:34px!important;padding:0!important;text-align:center;text-transform:none;margin:0!important;text-shadow:none!important;width:100%}#the_champ_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#the_champ_sharing_more_providers #the_champ_sharing_more_content{background:#FAFAFA;border-radius:4px;color:#555;height:100%;width:100%}#the_champ_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#the_champ_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#the_champ_sharing_more_content .all-services ul{margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#the_champ_sharing_more_content .all-services ul li{margin:0;background:0 0!important;float:left;width:33.3333%!important;text-align:left!important}#the_champ_sharing_more_providers .close-button img{margin:0;}#the_champ_sharing_more_providers .close-button.separated{background:0 0!important;border:none!important;box-shadow:none!important;width:auto!important;height:auto!important;z-index:1000}#the_champ_sharing_more_providers .close-button{height:auto!important;width:auto!important;left:auto!important;display:block!important;color:#555!important;cursor:pointer!important;font-size:29px!important;line-height:29px!important;margin:0!important;padding:0!important;position:absolute;right:-13px;top:-11px}#the_champ_sharing_more_providers .filter input.search{width:94%;display:block;float:none;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-weight:300;height:auto;line-height:inherit;margin:0 auto;padding:5px 8px 5px 10px;border:1px solid #ccc!important;color:#000;background:#FFF!important;font-size:16px!important;text-align:left!important}#the_champ_sharing_more_providers .footer-panel{background:#fff;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#the_champ_sharing_more_providers .footer-panel p{background-color:transparent;top:0;text-align:left!important;color:#000;font-family:'helvetica neue',arial,helvetica,sans-serif;font-size:12px;line-height:1.2;margin:0!important;padding:0 6px!important;text-indent:0!important}#the_champ_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#the_champ_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:18px;height:auto;line-height:28px;overflow:hidden;padding:8px;text-decoration:none!important;text-overflow:ellipsis;white-space:nowrap;border:none!important;text-indent:0!important;background:0 0!important;text-shadow:none;box-shadow:none!important}.the_champ_share_count{display:block;text-indent:0!important;visibility:hidden;background-color:#58B8F8!important;width:5px;height:auto;text-align:center;min-width:8px!important;padding:1px 4px!important;color:#fff!important;font-family:'Open Sans',arial,sans-serif!important;font-size:10px!important;font-weight:600!important;-webkit-border-radius:15px!important;border-radius:15px!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.4);box-shadow:0 2px 2px rgba(0,0,0,.4);text-shadow:0 -1px 0 rgba(0,0,0,.2);line-height:14px!important;border:2px solid #fff!important;z-index:1;margin:2px auto!important;box-sizing:content-box!important}.the_champ_share_count,.the_champ_vertical_counter,.the_champ_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}ul.the_champ_login_ul,ul.the_champ_sharing_ul{list-style:none!important;padding-left:0!important}#the_champ_comment_toggle{margin-bottom:10px}.the_champ_sharing_service{display:block;background:url(../images/sharing/more_sprite.png) no-repeat;margin-right:3px;float:left}.the_champ_sharing_service_amazon{background-position:0 0;width:20px;height:20px}.the_champ_sharing_service_aol{background-position:-20px 0;width:20px;height:20px}.the_champ_sharing_service_arto{background-position:-40px 0;width:20px;height:20px}.the_champ_sharing_service_bebo{background-position:-60px 0;width:20px;height:20px}.the_champ_sharing_service_bitly{background-position:-80px 0;width:20px;height:20px}.the_champ_sharing_service_blogger{background-position:-100px 0;width:20px;height:20px}.the_champ_sharing_service_box{background-position:-120px 0;width:20px;height:20px}.the_champ_sharing_service_boxee{background-position:0 -20px;width:20px;height:20px}.the_champ_sharing_service_buffer{background-position:-20px -20px;width:20px;height:20px}.the_champ_sharing_service_buzzster{background-position:-40px -20px;width:20px;height:20px}.the_champ_sharing_service_delicious{background-position:-60px -20px;width:20px;height:20px}.the_champ_sharing_service_digg{background-position:-80px -20px;width:20px;height:20px}.the_champ_sharing_service_diigo{background-position:-100px -20px;width:20px;height:20px}.the_champ_sharing_service_diigolet{background-position:-120px -20px;width:20px;height:20px}.the_champ_sharing_service_email{background-position:0 -40px;width:20px;height:20px}.the_champ_sharing_service_evernote{background-position:-20px -40px;width:20px;height:20px}.the_champ_sharing_service_facebook{background-position:-40px -40px;width:20px;height:20px}.the_champ_sharing_service_fancy{background-position:-60px -40px;width:20px;height:20px}.the_champ_sharing_service_fark{background-position:-80px -40px;width:20px;height:20px}.the_champ_sharing_service_flipboard{background-position:-100px -40px;width:20px;height:20px}.the_champ_sharing_service_google{background-position:-120px -40px;width:20px;height:20px}.the_champ_sharing_service_google-apps{background-position:0 -60px;width:20px;height:20px}.the_champ_sharing_service_google-bookmark{background-position:-20px -60px;width:20px;height:20px}.the_champ_sharing_service_google-mail{background-position:-40px -60px;width:20px;height:20px}.the_champ_sharing_service_heart{background-position:-60px -60px;width:20px;height:20px}.the_champ_sharing_service_hootsuite{background-position:-80px -60px;width:20px;height:20px}.the_champ_sharing_service_hotmail{background-position:-100px -60px;width:20px;height:20px}.the_champ_sharing_service_identica{background-position:-120px -60px;width:20px;height:20px}.the_champ_sharing_service_inbound{background-position:0 -80px;width:20px;height:20px}.the_champ_sharing_service_instapaper{background-position:-20px -80px;width:20px;height:20px}.the_champ_sharing_service_izeby{background-position:-40px -80px;width:20px;height:20px}.the_champ_sharing_service_kaboodle{background-position:-60px -80px;width:20px;height:20px}.the_champ_sharing_service_linkedin{background-position:-80px -80px;width:20px;height:20px}.the_champ_sharing_service_mister-wong{background-position:-100px -80px;width:20px;height:20px}.the_champ_sharing_service_msdn{background-position:-120px -80px;width:20px;height:20px}.the_champ_sharing_service_ning{background-position:0 -100px;width:20px;height:20px}.the_champ_sharing_service_orkut{background-position:-20px -100px;width:20px;height:20px}.the_champ_sharing_service_pinboard{background-position:-40px -100px;width:20px;height:20px}.the_champ_sharing_service_pinterest{background-position:-60px -100px;width:20px;height:20px}.the_champ_sharing_service_plurk{background-position:-80px -100px;width:20px;height:20px}.the_champ_sharing_service_pocket{background-position:-100px -100px;width:20px;height:20px}.the_champ_sharing_service_print-friendly{background-position:-120px -100px;width:20px;height:20px}.the_champ_sharing_service_quora{background-position:0 -120px;width:20px;height:20px}.the_champ_sharing_service_read-later{background-position:-20px -120px;width:20px;height:20px}.the_champ_sharing_service_reddit{background-position:-40px -120px;width:20px;height:20px}.the_champ_sharing_service_soup{background-position:-60px -120px;width:20px;height:20px}.the_champ_sharing_service_springpad{background-position:-80px -120px;width:20px;height:20px}.the_champ_sharing_service_stumbleupon{background-position:-100px -120px;width:20px;height:20px}.the_champ_sharing_service_stumpedia{background-position:-120px -120px;width:20px;height:20px}.the_champ_sharing_service_techmeme{background-position:0 -140px;width:20px;height:20px}.the_champ_sharing_service_tinyurl{background-position:-20px -140px;width:20px;height:20px}.the_champ_sharing_service_tumblr{background-position:-40px -140px;width:20px;height:20px}.the_champ_sharing_service_twitter{background-position:-60px -140px;width:20px;height:20px}.the_champ_sharing_service_typepad{background-position:-80px -140px;width:20px;height:20px}.the_champ_sharing_service_viadeo{background-position:-100px -140px;width:20px;height:20px}.the_champ_sharing_service_vkontakte{background-position:-120px -140px;width:20px;height:20px}.the_champ_sharing_service_wanelo{background-position:0 -160px;width:20px;height:20px}.the_champ_sharing_service_windows-live{background-position:-20px -160px;width:20px;height:20px}.the_champ_sharing_service_wordpress{background-position:-40px -160px;width:20px;height:20px}.the_champ_sharing_service_yahoo{background-position:-60px -160px;width:20px;height:20px}.the_champ_sharing_service_yammer{background-position:-80px -160px;width:20px;height:20px}.the_champ_sharing_service_yc-hacker{background-position:-100px -160px;width:20px;height:20px}ul.the_champ_login_ul{margin:3px 0!important}ul.the_champ_login_ul li{background:0 0!important;float:left;padding:0!important;margin:0!important;border:0!important;width:auto!important;clear:none!important;list-style-type:none!important}.theChampLoginSvg{width:100%;height:100%}.theChampXingLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDYgOSBoIDUgbCA0IDQgbCAtNSA3IGggLTUgbCA1IC03IHogbSAxNSAtNCBoIDUgbCAtOSAxMyBsIDQgOCBoIC01IGwgLTQgLTggeiIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampGoogleLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxMCIgY3k9IjgiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT4NCjxwYXRoIGQ9Ik0gMTAgMTEgdiAxMSBtIDUgMCB2IC0xMSBtIDAgMyBxIDYgLTMgNyAwIHYgOCIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampTwitterLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCA0OCA0OCI+DQo8cGF0aCBkPSJNIDM4IDE5IHEgMiAtMSA0IC01IHEgLTEuNSAyIC00IDIgcSAxLjUgLTEgMy41IC01IHEgLTEuNSAyIC01IDIgYyAtNSAtNSAtMTMgLTIgLTEyIDYgcSAtNyAxIC0xNSAtOCBxIC0yIDQgMSA5IHEgLTEgMCAtMyAtMSBxIDAgNSA1IDcgcSAtMSAuNSAtMyAwIHEgMSA0IDggNiBxIC01IDMgLTExIDMgYyAxNCA4IDMwIDAgMzEuNSAtMTQiIHN0cm9rZS13aWR0aD0iMC4zIiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampVkontakteLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIuNSA5IGggNC41IGwgNSA3IHYgLTcgaCA0LjUgdiA3IGwgNSAtNyBoIDUgbCAtNSA3IGwgNSA3IGggLTUgbCAtNSAtNyB2IDcgaCAtNC41IHEgLTIgMCAtNSAtNiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampFacebookLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNMTQgMjUgdiAtMTMgUSAxMyA2IDIxIDcuNSBNIDEwIDE0IEwgMjAgMTQiIHN0cm9rZS13aWR0aD0iNCIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampInstagramLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI2IiBmaWxsPSIjZmZmIj48L2NpcmNsZT4NCjxwYXRoIGQ9Ik0gMiAxNSB2IDEzIGggMjYgdiAtMTMgaCAtNCBjIC0zIDEyIC0xNSAxMiAtMTggMCB6IG0gMiAtMTMgdiA1IG0gMiAtNSB2IDUgbSAyIC01IHYgNCBtIC02IDYgdiAtMTAgaCAyNiB2IDEwIGggLTQgYyAtNCAtOC41IC0xNCAtOC41IC0xOCAwIHoiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PHJlY3Qgd2lkdGg9IjUiIGhlaWdodD0iNSIgZmlsbD0iI2ZmZiIgeD0iMjMiIHk9IjIiPjwvcmVjdD4NCjwvc3ZnPg==) left no-repeat}.theChampLoginButton{background:url(../images/login/login.png) no-repeat}.theChampLogin{padding:0!important;margin:2px;height:35px;width:35px;float:left;cursor:pointer;border:none}.theChampInstagramLogin,.theChampTwitterLogin,.theChampXingLogin{display:block}.theChampFacebookLogin,.theChampGoogleLogin,.theChampLinkedinLogin,.theChampVkontakteLogin{display:none}.theChampXingButton{background-position:-64px 0;width:32px;height:32px;display:block}.theChampFacebookButton{background-position:0 0;width:32px;height:32px;display:none}.theChampLiveButton{background-position:-32px -96px;width:32px;height:32px;display:block}.theChampGoogleButton{background-position:-32px 0;width:32px;height:32px;display:none}.theChampInstagramButton{background-position:0 -32px;width:32px;height:32px;display:block!important}.theChampLinkedinButton{background-position:-32px -32px;width:32px;height:32px;display:none}.theChampTwitterButton{background-position:0 -64px;width:32px;height:32px;display:block!important}.theChampVkontakteButton{background-position:-32px -64px;width:32px;height:32px;display:none}ul.the_champ_sharing_ul{margin:1px 0!important}#the_champ_sharing_popup_close img{opacity: 1!important;background:0 0!important;border:none!important;outline:0!important;box-shadow:none!important;width:auto!important;height:auto!important;top:inherit!important;right:inherit!important;left:9px!important;padding:0!important}ul.the_champ_sharing_ul li.theChampSharingRound{background:0 0!important}.the_champ_square_count{display:none;text-align:center;font-weight:bolder;font-family:sans-serif;font-style: normal;font-size: .8em;visibility:hidden}ul.the_champ_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important}.theChampSharing,.theChampSharingButton{display:block;cursor:pointer;margin:2px}ul.the_champ_login_ul li:before,ul.the_champ_sharing_ul li:before{content:none!important}.theChampSharingButton{background:url(../images/sharing/sharing.png) no-repeat;float:left;border:none}.theChampSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.theChampSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.theChampSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.theChampSharingXingButton{background-position:0 -128px;width:32px;height:32px}.theChampSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}.theChampSharingYummlyButton{background-position:-64px -128px;width:32px;height:32px}.theChampSharingBufferButton{background-position:-96px -128px;width:32px;height:32px}.theChampSharingTotalsharesButton{background-position: -200px -200px}.theChampSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.theChampSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.theChampSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.theChampSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.theChampSharingMoreButton{background-position:-96px -32px;width:32px;height:32px}.theChampSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.theChampSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.theChampSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.theChampSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.theChampSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.theChampSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.theChampSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.the_champ_vertical_counter,.the_champ_vertical_sharing{background:0 0;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);-moz-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);box-shadow:0 1px 4px 1px rgba(0,0,0,.1);position:fixed;overflow:visible;z-index:10000000;display:block;padding:10px;border-radius:4px;opacity:1;box-sizing:content-box!important}.the_champ_vertical_counter li{clear:both}li.the_champ_facebook_like .fb-like span,li.the_champ_facebook_recommend .fb-like span{vertical-align:top!important}li.the_champ_facebook_like .fb-like span iframe,li.the_champ_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000!important}div.the_champ_horizontal_sharing li{width:auto}div.the_champ_horizontal_sharing li.the_champ_facebook_like{width:110px}div.the_champ_horizontal_sharing li.the_champ_facebook_recommend{width:145px}div.the_champ_horizontal_sharing li.the_champ_twitter_tweet{width:95px}div.the_champ_horizontal_sharing li.the_champ_linkedin_share{width:117px}div.the_champ_horizontal_sharing li.the_champ_google_plusone{width:74px}div.the_champ_horizontal_sharing li.the_champ_buffer{width:81px;}div.the_champ_horizontal_sharing li.the_champ_reddit{width:130px}div.the_champ_horizontal_sharing li.the_champ_yummly{width:81px}div.the_champ_horizontal_sharing li.the_champ_gp_share{width:95px}div.the_champ_horizontal_sharing li.the_champ_pinterest_pin{width:76px}div.the_champ_horizontal_sharing li.the_champ_xing{width:98px}div.the_champ_horizontal_sharing .the_champ_stumbleupon{width:80px}.the_champ_counter_container li{height:21px}input#user_login,input#user_pass{height:auto!important}.theChampHorizontalSharingButton,.theChampVerticalSharingButton{display:block}.theChampDeliciousSquareBackground{background-color:#474749}.theChampInstagramBackground{background-color:#624E47}.theChampYummlyBackground{background-color:#E16120}.theChampBufferBackground{background-color:#000}.theChampFacebookBackground{background-color:#3C589A}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleBackground{background-color:#dd4b39}.theChampGoogleplusBackground{background-color:#dd4b39}.theChampLinkedinBackground{background-color:#2886EF}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#247CED}.theChampStumbleuponBackground{background-color:#EA4823}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#14B2C8}.theChampVkontakteBackground{background-color:#5E84AC}.theChampYahooBackground{background-color:#8F03CC}.theChampXingBackground{background-color:#00797D}.theChampWhatsappBackground{background-color:#55EB4C}.theChampTCBackground,.theChampTCBackground:hover{border-width: 0!important;background-color:transparent;}.theChampTCBackground{background-color:transparent!important;font-style:normal!important;word-wrap:normal;color:#666;line-height:1;visibility:hidden;}.theChampSharingTotalsharesButton{font-style:normal!important;word-wrap:normal;color:#666;line-height:1}.theChampSharingSvg{width:100%;height:100%}.theChampYummlySvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNIDEwLjUgMTAgcSA0IC0yIDIuNSAxIGwgLTEgNCBxIDAgMiA1IDAgbCAxIC02LjUgbSAtMSA2LjUgbCAtMSA0IGMgLTMgNiAtNiAtMSAwIC0xIHEgMSAtMSA1IDEiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampBufferSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM5Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gMTUgNiBsIC0xMCA1IGwgMTAgNSBsIDEwIC01IHoiIHN0cm9rZS13aWR0aD0iMCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjxwYXRoIHN0cm9rZT0iI2ZmZiIgZD0iTSA1LjUgMTQuNSBsIDkuNSA1IGwgOS41IC01IG0gLTE5IDQgbCA5LjUgNSBsIDkuNSAtNSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFacebookSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0xNCAyNSB2IC0xMyBRIDEzIDYgMjEgNy41IE0gMTAgMTQgTCAyMCAxNCIgc3Ryb2tlLXdpZHRoPSI0IiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampDeliciousSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHN0eWxlPSJmaWxsOiNlZWU7IiAvPg0KPHJlY3QgeD0iMTUiIHk9IjAiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgc3R5bGU9ImZpbGw6IzMxNzNEMDsiIC8+DQo8cmVjdCB4PSIwIiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojMDAwOyIgLz4NCjxyZWN0IHg9IjE1IiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojQkRCREJEOyIgLz4NCjwvc3ZnPg==) left no-repeat}.theChampDiggSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQ5IDQ5Ij48cGF0aCBkPSJNIDYgMjAgaCAxMCBjIDAgLTE0IC05IC0xNCAtOSAwIG0gNSAwIHYgNyBtIC0xIDAgdiAtNyBtIDQgLTcgaCA0LjUgdiAtNSBoIDggdiA4IGggLTggdiAtMyBtIDggMCBoIDQgdiA1LjUgaCAtMyB2IDEyIGggLTQgdiAtOCBtIDAgOCBoIC02LjUgdiAtMTIgaCAtMiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48ZWxsaXBzZSBjeD0iMTEuNSIgY3k9IjI4LjUiIHJ4PSI0IiByeT0iMiIgc3R5bGU9ImZpbGw6d2hpdGU7Ij48L2VsbGlwc2U+PC9zdmc+) left no-repeat}.theChampEmailSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDQzIDQzIj48cGF0aCBkPSJNIDUuNSAxMSBoIDIzIHYgMSBsIC0xMSA2IGwgLTExIC02IHYgLTEgbSAwIDIgbCAxMSA2IGwgMTEgLTYgdiAxMSBoIC0yMiB2IC0xMSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFloatitSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBmaWxsPSJub25lIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIGZpbGw9Im5vbmUiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0gNSAxNSBoIDUgTSAxNSA1IHYgNSBNIDI1IDE1IGggLTUgTSAxNSAyNSB2IC01IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampGoogleSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij4NCjxjaXJjbGUgY3g9IjEwIiBjeT0iOCIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPg0KPHBhdGggZD0iTSAxMCAxMSB2IDExIG0gNSAwIHYgLTExIG0gMCAzIHEgNiAtMyA3IDAgdiA4IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampPinterestSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02LjUgLTUgNDIgNDIiPjxwYXRoIGQ9Ik0gNiAyMCBjIC0zIC00IC0yIC0xMCAzIC0xMy41IGMgNCAtMyAxMSAtMyAxNSAzIGMgMyA1IDIgMTMgLTYgMTUgcSAtNCAxIC02IC0zIGwgLTIgNiBsIC0xLjIgMiBsIC0wLjggLTIgbCAyLjUgLTExIGMgLTIgLTQgMSAtOCA0IC02IHEgMCA1IC0xLjQgOC41IGMgMyA4IDEwIDAgOS41IC00IGMgMCAtOSAtMTEgLTExIC0xNC41IC00IGMgMCAwIC0zIDUgMCA4IGwgLTEgMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC02IDM4IDM4Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gNyAxMCBoIDIgdiAzIGggMTIgdiAtMyBoIDIgdiA3IGggLTIgdiAtMyBoIC0xMiB2IDMgaCAtMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS44IiBoZWlnaHQ9IjciIHdpZHRoPSIxMCIgeD0iMTAiIHk9IjUiIGZpbGw9Im5vbmUiPjwvcmVjdD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIgaGVpZ2h0PSI1IiB3aWR0aD0iOCIgeD0iMTEiIHk9IjE2IiBmaWxsPSIjZmZmIj48L3JlY3Q+PC9zdmc+) left no-repeat}.theChampRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj48ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5IiBjeT0iMTciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMiIgY3k9IjciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSI3IiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMyIgY3k9IjE0IiByPSIyIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PHBhdGggZD0iTSAxMCAyMiBxIDUgMyAxMCAwIE0gMTUgMTIgbCAxIC02IGwgNiAxIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampStumbleuponSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBkPSJNIDYuNiAxNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTQgYyAtMSAtNyA2IC03IDYgLTIgdiAyLjUgbSAwIDIuNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTEiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii04IC04IDY0IDY0Ij4NCjxwYXRoIGQ9Ik0gMzggMTkgcSAyIC0xIDQgLTUgcSAtMS41IDIgLTQgMiBxIDEuNSAtMSAzLjUgLTUgcSAtMS41IDIgLTUgMiBjIC01IC01IC0xMyAtMiAtMTIgNiBxIC03IDEgLTE1IC04IHEgLTIgNCAxIDkgcSAtMSAwIC0zIC0xIHEgMCA1IDUgNyBxIC0xIC41IC0zIDAgcSAxIDQgOCA2IHEgLTUgMyAtMTEgMyBjIDE0IDggMzAgMCAzMS41IC0xNCIgc3Ryb2tlLXdpZHRoPSIwLjMiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj4NCjxwYXRoIGQ9Ik0gMi41IDkgaCA0LjUgbCA1IDcgdiAtNyBoIDQuNSB2IDcgbCA1IC03IGggNSBsIC01IDcgbCA1IDcgaCAtNSBsIC01IC03IHYgNyBoIC00LjUgcSAtMiAwIC01IC02IHoiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampYahooSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDggMTAgbCA3IDcgbCA1IC01IG0gLTQuNyA1IHYgMyBoIC0wLjUgdiAtMyBtIDggLTQgdiA1IG0gMCAxIHYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48cGF0aCBkPSJNIDYgMTAgaCA2IG0gNSAyIGggNiBtIC0xMSA5LjUgaCA2IiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj4NCjxwYXRoIGQ9Ik0gNiA5IGggNSBsIDQgNCBsIC01IDcgaCAtNSBsIDUgLTcgeiBtIDE1IC00IGggNSBsIC05IDEzIGwgNCA4IGggLTUgbCAtNCAtOCB6IiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBpZD0iYXJjMSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiIGQ9Ik0gMTEuNTc5Nzk4NTY2NzQzMzE0IDI0LjM5NjkyNjIwNzg1OTA4NSBBIDEwIDEwIDAgMSAwIDYuODA4NDc5NTU3MTEwMDc5IDIwLjczNTc2NDM2MzUxMDQ2Ij48L3BhdGg+PHBhdGggZD0iTSA3IDE5IGwgLTEgNiBsIDYgLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSAxMCAxMCBxIC0xIDggOCAxMSBjIDUgLTEgMCAtNiAtMSAtMyBxIC00IC0zIC01IC01IGMgNCAtMiAtMSAtNSAtMSAtNCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampSharing{float:left;border:none}.theChampSharingArrow{background-color:#000!important;height:16px;width:16px;cursor:pointer;margin-top:10px}.theChampPushIn{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDcgNiBxIDIgNiAxMCA2IHYgLTYgbCA2IDkgbCAtNiA5IHYgLTYgcSAtMTAgMiAtMTAgLTEyIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZT0iI2ZmZiIgZmlsbD0id2hpdGUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampPushInPng{background:url(../images/sharing/pushin.png) left no-repeat}.theChampPullOut{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIzIDYgcSAtMiA2IC0xMCA2IHYgLTYgbCAtNiA5IGwgNiA5IHYgLTYgcSAxMCAyIDEwIC0xMiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiNmZmYiIGZpbGw9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampPullOutPng{background:url(../images/sharing/pullout.png) left no-repeat}.theChampCommentingTabs li{padding-left:0!important;float:left;margin:0 1em 0 0!important;list-style:none;color:#aaa;display:block;cursor:pointer;font-size:.85em}.theChampCommentingTabs ul{float:left;padding-left:0;margin-left:0}li.theChampSelectedTab{color:#333;border-bottom:2px solid #23a9e1}.fb-comments,.fb-comments span,.fb-comments span iframe[style]{min-width:100%!important;width:100%!important}#mc-input,#user_email,#user_login{height:auto!important}div.the_champ_horizontal_counter li{margin-right:14px!important}div.theChampTotalShareCount{word-wrap:normal!important;font-weight: bolder;font-family: sans-serif;padding: 0;margin: 0;text-align:center}div.theChampTotalShareText{word-wrap:normal!important;margin: 0;padding: 0;text-align: center;}.theChampAIMBackground{background-color: #fff}.theChampAmazonWishListBackground{background-color: #fff}.theChampAOLMailBackground{background-color: #2A2A2A}.theChampAppnetBackground{background-color: #5D5D5D}.theChampBaiduBackground{background-color: #fff}.theChampBalatarinBackground{background-color: #fff}.theChampBibSonomyBackground{background-color: #fff}.theChampBittyBrowserBackground{background-color: #EFEFEF}.theChampBlinklistBackground{background-color: #3D3C3B}.theChampBloggerPostBackground{background-color: #FDA352}.theChampDeliciousBackground{background-color:#53BEEE}.theChampBlogMarksBackground{background-color: #535353}.theChampBookmarksfrBackground{background-color: #E8EAD4}.theChampBoxnetBackground{background-color: #1A74B0}.theChampBuddyMarksBackground{background-color: #fff}.theChampCare2NewsBackground{background-color: #6EB43F}.theChampCiteULikeBackground{background-color: #2781CD}.theChampDiaryRuBackground{background-color: #E8D8C6}.theChampDiasporaBackground{background-color: #2E3436}.theChampDiHITTBackground{background-color: #FF6300}.theChampDiigoBackground{background-color: #4A8BCA}.theChampDZoneBackground{background-color: #fff}.theChampEvernoteBackground{background-color: #8BE056}.theChampFarkBackground{background-color: #555}
2
+ .theChampFlipboardBackground{background-color: #CC0000}.theChampFolkdBackground{background-color: #fff}.theChampGoogleBookmarksBackground{background-color: #CB0909}.theChampGoogleGmailBackground{background-color: #E5E5E5}.theChampHackerNewsBackground{background-color: #F60}.theChampHatenaBackground{background-color: #00A6DB}.theChampInstapaperBackground{background-color: #EDEDED}.theChampJamespotBackground{background-color: #FF9E2C}.theChampKakaoBackground{background-color: #FCB700}.theChampKindleItBackground{background-color: #2A2A2A}.theChampKnownBackground{background-color: #FFF}.theChampLineBackground{background-color: #00C300}.theChampLiveJournalBackground{background-color: #EDEDED}.theChampMailRuBackground{background-color: #356FAC}.theChampMendeleyBackground{background-color: #A70805}.theChampMeneameBackground{background-color: #FF7D12}.theChampMixiBackground{background-color: #EDEDED}.theChampMySpaceBackground{background-color: #2A2A2A}.theChampNetlogBackground{background-color: #2A2A2A}.theChampNetvouzBackground{background-color: #fff}.theChampNewsVineBackground{background-color: #055D00}.theChampNUjijBackground{background-color: #D40000}.theChampOdnoklassnikiBackground{background-color: #F2720C}.theChampOknotizieBackground{background-color: #fff}.theChampOutlookcomBackground{background-color: #fff}.theChampPinboardBackground{background-color: #1341DE}.theChampPlurkBackground{background-color: #CF682F}.theChampPocketBackground{background-color: #fff}.theChampPrintFriendlyBackground{background-color: #61D1D5}.theChampProtopageBookmarksBackground{background-color: #413FFF}.theChampPushaBackground{background-color: #0072B8}.theChampQzoneBackground{background-color: #2B82D9}.theChampRediffMyPageBackground{background-color: #D20000}.theChampRenrenBackground{background-color: #005EAC}.theChampSegnaloBackground{background-color: #fff}.theChampSinaWeiboBackground{background-color: #fff}.theChampSiteJotBackground{background-color: #fff}.theChampSlashdotBackground{background-color: #004242}.theChampStumpediaBackground{background-color: #EDEDED}.theChampSvejoBackground{background-color: #FAFAFA}.theChampSymbalooFeedsBackground{background-color: #6DA8F7}.theChampTuentiBackground{background-color: #0075C9}.theChampTwiddlaBackground{background-color: #EDEDED}.theChampTypePadPostBackground{background-color: #2A2A2A}.theChampViadeoBackground{background-color: #2A2A2A}.theChampWaneloBackground{background-color: #fff}.theChampWebnewsBackground{background-color: #CC2512}.theChampWordPressBackground{background-color: #464646}.theChampWykopBackground{background-color: #367DA9}.theChampYahooMailBackground{background-color: #400090}.theChampYahooMessengerBackground{background-color: #400090}.theChampYoolinkBackground{background-color: #A2C538}.theChampYouMobBackground{background-color: #3B599D}i.theChampWhatsappBackground a{display: inline!important}i.theChampLineBackground a{display: inline!important;}.the_champ_sharing_container a{box-shadow:none!important;border:none!important}@media screen and (max-width:783px){#the_champ_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}#the_champ_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92%}}
css/share-default-svg-horizontal.css ADDED
@@ -0,0 +1 @@
 
1
+ @charset "utf-8";.the_champ_horizontal_sharing .theChampYummlySvg,#the_champ_ss_rearrange .theChampYummlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2010.5%2010%20q%204%20-2%202.5%201%20l%20-1%204%20q%200%202%205%200%20l%201%20-6.5%20m%20-1%206.5%20l%20-1%204%20c%20-3%206%20-6%20-1%200%20-1%20q%201%20-1%205%201%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBufferSvg,#the_champ_ss_rearrange .theChampBufferSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2039%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2015%206%20l%20-10%205%20l%2010%205%20l%2010%20-5%20z%22%20stroke-width%3D%220%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%205.5%2014.5%20l%209.5%205%20l%209.5%20-5%20m%20-19%204%20l%209.5%205%20l%209.5%20-5%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampFacebookSvg,#the_champ_ss_rearrange .theChampFacebookSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M14%2025%20v%20-13%20Q%2013%206%2021%207.5%20M%2010%2014%20L%2020%2014%22%20stroke-width%3D%224%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampDeliciousSvg,#the_champ_ss_rearrange .theChampDeliciousSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22stroke%3A%23fff%3Bfill%3Anone%22%3E%3C%2Frect%3E%0A%3Crect%20x%3D%2215%22%20y%3D%220%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22fill%3A%23fff%3Bstroke%3A%23fff%22%3E%3C%2Frect%3E%0A%3Crect%20x%3D%220%22%20y%3D%2215%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22fill%3A%23fff%3Bstroke%3A%23fff%22%3E%3C%2Frect%3E%0A%3Crect%20x%3D%2215%22%20y%3D%2215%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22stroke%3A%23fff%3Bfill%3Anone%3B%22%3E%3C%2Frect%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampDiggSvg,#the_champ_ss_rearrange .theChampDiggSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2049%2049%22%3E%3Cpath%20d%3D%22M%206%2020%20h%2010%20c%200%20-14%20-9%20-14%20-9%200%20m%205%200%20v%207%20m%20-1%200%20v%20-7%20m%204%20-7%20h%204.5%20v%20-5%20h%208%20v%208%20h%20-8%20v%20-3%20m%208%200%20h%204%20v%205.5%20h%20-3%20v%2012%20h%20-4%20v%20-8%20m%200%208%20h%20-6.5%20v%20-12%20h%20-2%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cellipse%20cx%3D%2211.5%22%20cy%3D%2228.5%22%20rx%3D%224%22%20ry%3D%222%22%20style%3D%22fill%3A%23fff%3B%22%3E%3C%2Fellipse%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampEmailSvg,#the_champ_ss_rearrange .theChampEmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2043%2043%22%3E%3Cpath%20d%3D%22M%205.5%2011%20h%2023%20v%201%20l%20-11%206%20l%20-11%20-6%20v%20-1%20m%200%202%20l%2011%206%20l%2011%20-6%20v%2011%20h%20-22%20v%20-11%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampFloatitSvg,#the_champ_ss_rearrange .theChampFloatitSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Ccircle%20cx%3D%2215%22%20cy%3D%2215%22%20r%3D%2210%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2215%22%20cy%3D%2215%22%20r%3D%225%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%205%2015%20h%205%20M%2015%205%20v%205%20M%2025%2015%20h%20-5%20M%2015%2025%20v%20-5%22%20stroke-width%3D%223%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampGoogleplusSvg,#the_champ_ss_rearrange .theChampGoogleplusSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2065%2049%20h%2018%20m%20-9%20-9%20v%2018%22%20stroke%3D%22%23fff%22%20stroke-width%3D%225%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampLinkedinSvg,#the_champ_ss_rearrange .theChampLinkedinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%0A%3Ccircle%20cx%3D%2210%22%20cy%3D%228%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%0A%3Cpath%20d%3D%22M%2010%2011%20v%2011%20m%205%200%20v%20-11%20m%200%203%20q%206%20-3%207%200%20v%208%22%20stroke-width%3D%223%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampMoreSvg,#the_champ_ss_rearrange .theChampMoreSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2215%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2210%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%2010%2015%20L%2020%2010%20m%200%2010%20L%2010%2015%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampPinterestSvg,#the_champ_ss_rearrange .theChampPinterestSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6.5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M%206%2020%20c%20-3%20-4%20-2%20-10%203%20-13.5%20c%204%20-3%2011%20-3%2015%203%20c%203%205%202%2013%20-6%2015%20q%20-4%201%20-6%20-3%20l%20-2%206%20l%20-1.2%202%20l%20-0.8%20-2%20l%202.5%20-11%20c%20-2%20-4%201%20-8%204%20-6%20q%200%205%20-1.4%208.5%20c%203%208%2010%200%209.5%20-4%20c%200%20-9%20-11%20-11%20-14.5%20-4%20c%200%200%20-3%205%200%208%20l%20-1%202%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampPrintSvg,#the_champ_ss_rearrange .theChampPrintSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-6%2038%2038%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%207%2010%20h%202%20v%203%20h%2012%20v%20-3%20h%202%20v%207%20h%20-2%20v%20-3%20h%20-12%20v%203%20h%20-2%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221.8%22%20height%3D%227%22%20width%3D%2210%22%20x%3D%2210%22%20y%3D%225%22%20fill%3D%22none%22%3E%3C%2Frect%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%20height%3D%225%22%20width%3D%228%22%20x%3D%2211%22%20y%3D%2216%22%20fill%3D%22%23fff%22%3E%3C%2Frect%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampRedditSvg,#the_champ_ss_rearrange .theChampRedditSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%3Cellipse%20cx%3D%2215%22%20cy%3D%2219%22%20rx%3D%229%22%20ry%3D%227%22%20style%3D%22stroke%3A%23fff%3Bstroke-width%3A2%22%20fill%3D%22none%22%3E%3C%2Fellipse%3E%3Ccircle%20cx%3D%2211%22%20cy%3D%2217%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2219%22%20cy%3D%2217%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2222%22%20cy%3D%227%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%227%22%20cy%3D%2214%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2223%22%20cy%3D%2214%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%2010%2022%20q%205%203%2010%200%20M%2015%2012%20l%201%20-6%20l%206%201%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampStumbleuponSvg,#the_champ_ss_rearrange .theChampStumbleuponSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Cpath%20d%3D%22M%206.6%2015%20v%201%20c%20-1%207%206.5%207%205.5%200%20v%20-4%20c%20-1%20-7%206%20-7%206%20-2%20v%202.5%20m%200%202.5%20v%201%20c%20-1%207%206.5%207%205.5%200%20v%20-1%22%20stroke-width%3D%223.5%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampTumblrSvg,#the_champ_ss_rearrange .theChampTumblrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Cpath%20d%3D%22M%2014%207%20v%2014%20q%203%202%206%200%20M%2014%207.5%20q%200%205.5%20-4%205.5%20h%209%22%20stroke-width%3D%223%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampTwitterSvg,#the_champ_ss_rearrange .theChampTwitterSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-8%20-8%2064%2064%22%3E%0A%3Cpath%20d%3D%22M%2038%2019%20q%202%20-1%204%20-5%20q%20-1.5%202%20-4%202%20q%201.5%20-1%203.5%20-5%20q%20-1.5%202%20-5%202%20c%20-5%20-5%20-13%20-2%20-12%206%20q%20-7%201%20-15%20-8%20q%20-2%204%201%209%20q%20-1%200%20-3%20-1%20q%200%205%205%207%20q%20-1%20.5%20-3%200%20q%201%204%208%206%20q%20-5%203%20-11%203%20c%2014%208%2030%200%2031.5%20-14%22%20stroke-width%3D%220.3%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampVkontakteSvg,#the_champ_ss_rearrange .theChampVkontakteSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%0A%3Cpath%20d%3D%22M%202.5%209%20h%204.5%20l%205%207%20v%20-7%20h%204.5%20v%207%20l%205%20-7%20h%205%20l%20-5%207%20l%205%207%20h%20-5%20l%20-5%20-7%20v%207%20h%20-4.5%20q%20-2%200%20-5%20-6%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampYahooSvg,#the_champ_ss_rearrange .theChampYahooSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Cpath%20d%3D%22M%208%2010%20l%207%207%20l%205%20-5%20m%20-4.7%205%20v%203%20h%20-0.5%20v%20-3%20m%208%20-4%20v%205%20m%200%201%20v%201%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%206%2010%20h%206%20m%205%202%20h%206%20m%20-11%209.5%20h%206%22%20stroke-width%3D%221.4%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampXingSvg,#the_champ_ss_rearrange .theChampXingSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%0A%3Cpath%20d%3D%22M%206%209%20h%205%20l%204%204%20l%20-5%207%20h%20-5%20l%205%20-7%20z%20m%2015%20-4%20h%205%20l%20-9%2013%20l%204%208%20h%20-5%20l%20-4%20-8%20z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampWhatsappSvg,#the_champ_ss_rearrange .theChampWhatsappSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Cpath%20id%3D%22arc1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M%2011.579798566743314%2024.396926207859085%20A%2010%2010%200%201%200%206.808479557110079%2020.73576436351046%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%207%2019%20l%20-1%206%20l%206%20-1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2010%2010%20q%20-1%208%208%2011%20c%205%20-1%200%20-6%20-1%20-3%20q%20-4%20-3%20-5%20-5%20c%204%20-2%20-1%20-5%20-1%20-4%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampAIMSvg,#the_champ_ss_rearrange .theChampAIMSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.75%2016.548c-.24.558-.465%201.08-.707%201.646%202.756%201.873%205.48%203.752%207.615%206.453l-2.11%201.43c-.708-.768-1.364-1.59-2.132-2.29-1.047-.958-2.156-1.85-3.557-2.285-.585-.183-.98-.086-1.39.41-1.527%201.862-3.26%203.49-5.476%204.522-1.368.64-1.368.642-1.972-.695-.178-.39-.346-.785-.54-1.226%201.827-.433%203.38-1.246%204.62-2.62.74-.822%201.166-1.716%201.26-2.856.17-2.103.628-4.15%201.828-5.95.534-.797%201.768-.98%202.493-.37.062.046.11.126.13.2.48%201.81%202.08%202.005%203.58%201.63.573-.146%201.118-.404%201.73-.63l1.07%201.483c-1.903%201.718-4.075%201.73-6.444%201.145zm.842-12.054c1.78.02%203.254%201.57%203.22%203.386-.032%201.734-1.62%203.284-3.325%203.246-1.822-.04-3.326-1.604-3.284-3.418.038-1.8%201.555-3.236%203.39-3.214z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampAmazonWishListSvg,#the_champ_ss_rearrange .theChampAmazonWishListSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.998%2023.842c-.127%200-.256.03-.377.086-.132.055-.27.117-.4.172l-.194.08-.25.1v.005c-2.72%201.102-5.573%201.748-8.215%201.805-.097.004-.193.004-.29.004-4.153.003-7.544-1.926-10.964-3.823-.12-.06-.24-.094-.36-.094-.156%200-.313.058-.43.164-.114.106-.183.266-.182.426%200%20.207.112.395.267.52%203.21%202.786%206.73%205.376%2011.46%205.378.094%200%20.188-.002.28-.004%203.01-.07%206.415-1.085%209.058-2.745l.016-.01c.346-.207.69-.44%201.018-.703.205-.15.346-.385.344-.63-.01-.435-.377-.73-.775-.73zm3.666-1.54c-.012-.265-.068-.466-.178-.632l-.01-.016-.015-.02c-.11-.12-.216-.167-.333-.218-.347-.133-.853-.205-1.46-.207-.437%200-.92.04-1.4.143l-.002-.03-.486.16-.01.006-.276.09v.012c-.322.136-.615.302-.89.498-.167.13-.31.297-.317.556-.004.14.066.3.185.395.12.097.257.13.378.13.027%200%20.055%200%20.078-.005l.023-.002.018-.003c.238-.053.586-.085.992-.144.347-.037.72-.066%201.04-.066.225%200%20.43.014.57.045.07.016.12.032.15.05.01.003.016.007.02.01.006.02.016.067.014.14.004.268-.11.767-.266%201.25-.152.487-.338.974-.46%201.298-.03.075-.048.157-.048.247-.003.13.05.287.16.393.11.104.255.145.374.145h.006c.18-.002.332-.07.463-.176%201.236-1.112%201.666-2.888%201.684-3.888l-.003-.16z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.355%2010.384c-.728.055-1.565.11-2.404.222-1.282.17-2.57.39-3.63.896-2.07.838-3.467%202.627-3.467%205.254%200%203.3%202.124%204.98%204.81%204.98.894%200%201.622-.114%202.29-.28%201.064-.336%201.958-.95%203.02-2.07.614.838.782%201.23%201.844%202.125.278.114.558.114.78-.052.673-.56%201.85-1.568%202.462-2.125.28-.224.224-.56.056-.837-.613-.783-1.23-1.455-1.23-2.965V10.5c0-2.125.167-4.082-1.397-5.534-1.285-1.173-3.3-1.62-4.864-1.62h-.672c-2.85.164-5.868%201.395-6.54%204.918-.11.447.226.613.45.67l3.13.39c.336-.055.502-.336.56-.613.278-1.23%201.284-1.845%202.4-1.96h.227c.67%200%201.397.28%201.79.84.447.67.39%201.568.39%202.35v.446zm-.613%206.65c-.393.782-1.063%201.286-1.79%201.456-.112%200-.28.055-.448.055-1.228%200-1.956-.95-1.956-2.35%200-1.788%201.06-2.627%202.402-3.018.727-.167%201.567-.225%202.405-.225v.672c0%201.287.057%202.292-.613%203.41z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampAOLMailSvg,#the_champ_ss_rearrange .theChampAOLMailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M17.334%2013.26c-2.315%200-4.067%201.8-4.067%204.027%200%202.35%201.824%204.03%204.067%204.03%202.243%200%204.062-1.68%204.062-4.03%200-2.228-1.744-4.027-4.062-4.027zm0%202.127c1-.007%201.82.847%201.82%201.9%200%201.048-.82%201.9-1.82%201.9s-1.818-.853-1.818-1.9c0-1.053.817-1.9%201.818-1.9zm11.59%204.518c0%20.778-.63%201.412-1.41%201.412-.778%200-1.41-.634-1.41-1.412%200-.778.632-1.408%201.41-1.408.78%200%201.41.63%201.41%201.408zm-4.104%201.418h-2.216v-10.28h2.216v10.28zM9.33%2011.04s2.585%206.79%203.862%2010.13c.015.037.028.078.047.132-.06.006-.105.01-.15.01-.83.002-1.664-.003-2.497.004-.12.002-.17-.04-.204-.156-.116-.385-.247-.766-.365-1.147-.032-.11-.074-.153-.193-.153-1.066.006-2.132.006-3.2%200-.1%200-.142.03-.173.13-.127.405-.26.81-.39%201.21-.02.076-.05.117-.136.117-.874-.006-1.75-.004-2.624-.004-.016%200-.036-.005-.07-.012.023-.06.04-.116.064-.17%201.286-3.307%203.91-10.086%203.91-10.086H9.33zm-.023%206.674c-.343-1.147-.68-2.274-1.02-3.4h-.03l-1.017%203.4h2.067z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampAppnetSvg,#the_champ_ss_rearrange .theChampAppnetSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%207.158L4.156%2025h2.422l2.695-4h13.453l2.695%204h2.425L16%207.158zM10.82%2019L16%2011.2l5.178%207.8H10.82z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBaiduSvg,#the_champ_ss_rearrange .theChampBaiduSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M8.68%2016.617c2.485-.534%202.145-3.51%202.073-4.16-.123-1.002-1.3-2.752-2.9-2.612-2.013.18-2.307%203.087-2.307%203.087-.273%201.346.65%204.22%203.133%203.685m4.614-4.986c1.373%200%202.482-1.58%202.482-3.533s-1.11-3.533-2.482-3.533-2.485%201.58-2.485%203.533%201.112%203.536%202.485%203.536m5.918.233c1.837.24%203.015-1.72%203.25-3.205.24-1.482-.946-3.207-2.244-3.503-1.305-.3-2.93%201.787-3.08%203.148-.177%201.666.237%203.326%202.073%203.56m7.276%202.496c0-.71-.59-2.85-2.78-2.85-2.193%200-2.483%202.02-2.483%203.447%200%201.362.113%203.263%202.84%203.204%202.72-.06%202.422-3.084%202.422-3.8m-2.78%206.237s-2.84-2.197-4.497-4.572c-2.25-3.503-5.445-2.076-6.513-.298-1.062%201.783-2.717%202.91-2.954%203.21-.24.292-3.43%202.017-2.723%205.165.71%203.146%203.2%203.087%203.2%203.087s1.833.18%203.96-.298c2.132-.475%203.966.116%203.966.116s4.97%201.667%206.33-1.54c1.36-3.207-.768-4.872-.768-4.872%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBalatarinSvg,#the_champ_ss_rearrange .theChampBalatarinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M29%2017H3v10c0%201.1.9%202%202%202h22c1.1%200%202-.9%202-2V17z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%2022h8v2h-8z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M29%2015H3V5c0-1.1.9-2%202-2h22c1.1%200%202%20.9%202%202v10z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15%205h2v8h-2z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M12%208h8v2h-8z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBibSonomySvg,#the_champ_ss_rearrange .theChampBibSonomySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%228%22%3E%3C%2Fcircle%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBittyBrowserSvg,#the_champ_ss_rearrange .theChampBittyBrowserSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4%204h12v12H4z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%204v16H4v8h24V4%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBlinklistSvg,#the_champ_ss_rearrange .theChampBlinklistSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M3%2010.35v11.3l8.977-5.418%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.55%2027.454c-4.397%200-8.314-2.39-10.205-6.36l1.675-1.04c1.558%203.274%204.906%205.388%208.53%205.388%205.204%200%209.438-4.235%209.438-9.44%200-5.208-4.233-9.443-9.44-9.443-3.804%200-7.22%202.26-8.7%205.763l-1.733-1.057c1.798-4.25%205.82-6.72%2010.434-6.72C23.86%204.546%2029%209.683%2029%2015.996c0%206.317-5.136%2011.457-11.45%2011.457z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M11.425%2018.623c1.02%202.406%203.403%204.09%206.18%204.09%203.71%200%206.715-3.006%206.715-6.712%200-3.71-3.005-6.712-6.714-6.712-2.887%200-5.35%201.823-6.295%204.38l3.958%202.566-3.84%202.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBloggerPostSvg,#the_champ_ss_rearrange .theChampBloggerPostSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M12.393%206.112h4.367c1.61.19%203.96%201.572%204.824%203.41.238.515.363.594.56%202.12.106.786.16%201.367.51%201.69.495.45%202.333.147%202.696.43l.277.22.166.343.06.277-.04%205.048c-.02%203.43-2.81%206.238-6.244%206.238h-7.177c-3.436%200-6.244-2.81-6.244-6.238v-7.29c-.003-3.434%202.806-6.248%206.242-6.248z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M12.47%2011.22h3.464c.66%200%201.195.534%201.195%201.188%200%20.653-.538%201.195-1.198%201.195H12.47c-.66%200-1.194-.542-1.194-1.195%200-.654.535-1.19%201.195-1.19zm0%207.15h7.038c.654%200%201.19.534%201.19%201.188%200%20.646-.535%201.188-1.19%201.188H12.47c-.66%200-1.194-.54-1.194-1.188%200-.654.535-1.19%201.195-1.19z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBlogMarksSvg,#the_champ_ss_rearrange .theChampBlogMarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2018.917L17.646%2016l-8.408-4.795V29l13.524-7.71%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2010.71L9.238%203v8.204l8.408%204.794%205.116-2.915%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBoxnetSvg,#the_champ_ss_rearrange .theChampBoxnetSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.49%2011.36c-1.653%200-3.18.524-4.434%201.41V6.543c0-.893-.725-1.616-1.617-1.616-.895%200-1.617.723-1.617%201.616v11.903c-.017.2.002%201.37.055%201.7.53%203.73%203.73%206.604%207.61%206.604%204.25%200%207.692-3.446%207.692-7.696.003-4.25-3.444-7.695-7.694-7.695zm0%2012.126c-2.45%200-4.434-1.984-4.434-4.432%200-2.45%201.983-4.434%204.433-4.434%202.445%200%204.43%201.984%204.43%204.434%200%202.448-1.984%204.432-4.433%204.432z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBookmarksfrSvg,#the_champ_ss_rearrange .theChampBookmarksfrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.256%209.5c-2.188-3.79-6.36-.54-7.83%202.205%201.073.86%201.802%202.112%202.006%203.475%203.103.094%208.023-1.873%205.824-5.68-.7-1.212.515.894%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M15.998%203c-4.368%200-3.664%205.23-2.013%207.886%201.283-.505%202.74-.505%204.023%200C19.66%208.23%2020.366%203%2015.998%203z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M9.255%208.294c-1.108-.64-2.42-.918-3.49-.053-.96.78-1.79%202.268-1.617%203.538.352%202.564%204.32%203.468%206.416%203.405.204-1.363.934-2.618%202.01-3.477-.67-1.256-1.898-2.59-3.32-3.41-.71-.41%201.422.82%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.426%2019.05c-.447-.67-.744-1.435-.862-2.23-2.785-.084-7.768%201.608-6.056%205.24%202.023%204.292%206.448%201.248%208.063-1.765-.44-.354-.83-.773-1.142-1.246-.132-.198.314.47%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.202%2021.458c-.064-.12-.13-.232-.198-.342-1.28.503-2.737.503-4.02%200C12.338%2023.766%2011.624%2029%2016%2029c4.218%200%203.67-4.848%202.204-7.542-.064-.12.678%201.243%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.83%2020.088c-.478-2.46-4.326-3.33-6.398-3.27-.204%201.364-.933%202.617-2.007%203.476.934%201.744%202.858%203.73%204.913%204.006%202.043.276%203.853-2.332%203.49-4.212-.153-.8.137.706%200%200z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBuddyMarksSvg,#the_champ_ss_rearrange .theChampBuddyMarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2219.587%22%20cy%3D%227.172%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M21.374%2011.668h-3.572c-.085%200-.168.01-.253.013.32.68.51%201.437.51%202.236%200%201.476-.62%202.807-1.61%203.756%202.314.69%204.084%202.656%204.486%205.08%203.414-.15%205.382-1.114%205.513-1.18l.282-.145h.03V17.06c0-2.97-2.418-5.39-5.39-5.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2212.413%22%20cy%3D%2213.439%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M14.198%2017.937h-3.57c-2.973%200-5.39%202.417-5.39%205.388v4.37l.01.067.303.095c2.838.885%205.3%201.18%207.33%201.18%203.96%200%206.257-1.13%206.398-1.2l.282-.142h.027v-4.37c0-2.97-2.416-5.388-5.388-5.388z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampCare2NewsSvg,#the_champ_ss_rearrange .theChampCare2NewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.56%2021.21c1.558.926%203.202%201.637%204.95%202.122.746.207%201.255.03%201.596-.673.102-.21.25-.404.4-.586%202.322-2.812%201.91-6.988-1.06-7.983.66-.517.662-1.2.47-1.92-.156-.59-.265-1.204-.492-1.767-.514-1.278-.694-2.603-.77-3.964-.047-.814-.1-1.767-1-2.068-.875-.292-1.54.357-2.09.977-1.85%202.082-2.9%204.576-3.644%207.22-.372%201.33-.7%202.676-1.077%204.12-.332-.34-.57-.837-.925-.897-.14-.376-.74-2.2.177-3.78.02-.008.033-.022.047-.037l.174-.22c.05-.063.037-.15-.024-.2-.06-.048-.15-.037-.196.025l-.174.223c-.033.04-.035.093-.02.138-.84%201.48-.432%203.147-.23%203.76-.422-.616-1.416-1.792-2.95-2.06-.024-.04-.067-.067-.116-.067h-.28c-.08%200-.143.063-.143.14%200%20.08.062.142.142.142h.28c.023%200%20.043-.007.062-.017%201.54.254%202.51%201.48%202.884%202.046-.38.265.127.786.08%201.276-1.986-1.483-4.072-2.605-6.244-3.572-1.956-.87-3.89-1.798-6.008-2.233-.47-.097-.977-.107-1.25.41-.25.474-.093.936.19%201.34.153.222.347.434.566.585%202.44%201.678%204.303%203.93%206.212%206.145.446.517.896%201.027%201.665%201.065.25.012.455.132.445.446v.123c.047.827.25%201.5.774%202.28%201.365%201.67%203.08%202.88%205.054%203.7.4.167.73.25%201.01.25.685%200%201.018-.517%201.116-1.578.026-1.45-.42-2.82-.863-4.154.352-.27.517.24.788.065.237-.33-.216-.68.018-1.08.172.097.316.173.456.256z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampCiteULikeSvg,#the_champ_ss_rearrange .theChampCiteULikeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M8%2024h16v2H8zm0-6h16v2H8zm0-6h16v2H8zm0-6h16v2H8z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampDiaryRuSvg,#the_champ_ss_rearrange .theChampDiaryRuSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203C8.82%203%203%208.82%203%2016s5.82%2013%2013%2013%2013-5.82%2013-13S23.18%203%2016%203zm0%2024.807C9.48%2027.807%204.192%2022.522%204.192%2016%204.192%209.48%209.48%204.193%2016%204.193c3.92%200%207.392%201.91%209.54%204.85h-8.308s-2.863.397-3.18%202.544c-.34%202.293-1.988%202.465-1.988%202.465h-4.69v1.51h9.74c.206-1.086%201.16-1.907%202.305-1.907%201.143%200%202.096.82%202.302%201.908h1.632v.874h-1.632c-.206%201.087-1.16%201.91-2.305%201.91-1.147%200-2.1-.823-2.306-1.91H7.37v1.59h4.69s1.67%200%201.988%202.464c.304%202.356%203.18%202.548%203.18%202.548h8.25c-2.15%202.895-5.596%204.77-9.48%204.77z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampDiasporaSvg,#the_champ_ss_rearrange .theChampDiasporaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.498%206.49v6.258l-5.953-1.933L6%2015.57l5.95%201.934-3.677%205.063%204.046%202.942L16%2020.442l3.68%205.064%204.047-2.943L20.05%2017.5%2026%2015.57l-1.545-4.755-5.953%201.933V6.49h-5.004z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampDiHITTSvg,#the_champ_ss_rearrange .theChampDiHITTSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.668%2026.125H19.01l.014-2.145h-.09c-.88%201.558-2.582%202.47-4.345%202.47-3.794%200-6.26-3.643-6.26-8.522%200-5.608%203.055-8.665%206.49-8.665%201.764%200%203.027.705%203.584%201.705h.09V5.552h5.17m-5.17%2010.79c0-2.29-1.353-2.966-2.232-2.966-1.88%200-2.73%202.055-2.73%204.552%200%202.852%201.113%204.35%202.7%204.35.97%200%202.262-.618%202.262-2.88v-3.055z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampDiigoSvg,#the_champ_ss_rearrange .theChampDiigoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M23.81%204.5c.012.198.035.396.035.593%200%204.807.026%209.615-.01%2014.422-.02%203.248-1.5%205.678-4.393%207.158-4.66%202.385-10.495-.64-11.212-5.836-.76-5.517%203.747-9.56%208.682-9.018%201.114.12%202.16.5%203.134%201.07.517.3.527.295.53-.29.007-2.7.01-5.4.014-8.103h3.22zm-7.914%2019.97c2.608.068%204.82-2.025%204.954-4.552.138-2.626-1.89-5.074-4.727-5.145-2.7-.067-4.867%202-4.973%204.71-.107%202.72%202.13%205.008%204.746%204.988z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampDZoneSvg,#the_champ_ss_rearrange .theChampDZoneSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.957%2021.422l8.6-10.75h-7.972V9.008H28v1.628l-8.65%2010.69H28v1.667H16.957v-1.57z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4%209.007h5.59c1.898%200%203.37.683%204.416%202.047.933%201.23%201.4%202.81%201.4%204.73%200%201.486-.277%202.83-.828%204.028-.97%202.12-2.64%203.18-5.007%203.18H4V9.007zm5.22%2012.367c.626%200%201.14-.066%201.544-.2.72-.247%201.31-.724%201.768-1.428.367-.565.63-1.29.792-2.17.094-.527.14-1.016.14-1.466%200-1.732-.336-3.078-1.01-4.037-.674-.958-1.758-1.438-3.254-1.438H5.913v10.74H9.22z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampEvernoteSvg,#the_champ_ss_rearrange .theChampEvernoteSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M7.884%208.573h2.276c.13%200%20.236-.106.236-.235%200%200-.027-1.95-.027-2.494v-.006c0-.445.09-.833.253-1.16l.078-.145c-.007%200-.017.005-.025.014l-4.42%204.385c-.01.007-.014.016-.017.026.09-.046.215-.107.233-.115.386-.175.85-.27%201.41-.27zm17.704-.477c-.18-.968-.755-1.444-1.275-1.632-.56-.203-1.698-.413-3.127-.58-1.15-.137-2.504-.126-3.318-.1-.1-.672-.568-1.285-1.096-1.498-1.404-.564-3.573-.428-4.13-.272-.442.125-.932.378-1.205.768-.183.262-.302.595-.302%201.062%200%20.265.007.886.015%201.44l.014%201.054c0%20.494-.4.896-.896.897H7.99c-.485%200-.856.082-1.14.21-.284.128-.484.303-.636.508-.304.408-.357.912-.355%201.426%200%200%200%20.416.102%201.23.084.63.767%205.02%201.414%206.356.25.522.42.736.912.966%201.1.47%203.61.994%204.787%201.146%201.174.15%201.912.466%202.35-.457.002%200%20.088-.227.208-.56.382-1.156.435-2.18.435-2.924%200-.076.11-.078.11%200%200%20.524-.1%202.38%201.303%202.875.554.197%201.7.373%202.864.51%201.055.12%201.82.537%201.82%203.24%200%201.645-.346%201.87-2.152%201.87-1.464%200-2.02.038-2.02-1.125%200-.938.93-.842%201.616-.842.31%200%20.086-.23.086-.81%200-.576.36-.91.02-.918-2.384-.065-3.786-.004-3.786%202.978%200%202.706%201.036%203.208%204.418%203.208%202.65%200%203.588-.086%204.682-3.483.22-.67.742-2.718%201.06-6.154.197-2.173-.194-8.732-.502-10.388zm-4.622%207.25c-.327-.012-.643.01-.937.056.08-.667.353-1.488%201.332-1.453%201.08.033%201.23%201.056%201.237%201.75-.457-.205-1.02-.335-1.635-.357z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampFarkSvg,#the_champ_ss_rearrange .theChampFarkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.925%209.77V5.613H9.075v20.772h5.54v-8.31h8.31v-4.153h-8.31V9.77%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampFlipboardSvg,#the_champ_ss_rearrange .theChampFlipboardSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19%2019H7V7h12v12z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25%2013H7V7h18v6z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13%2025H7V7h6v18z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampFolkdSvg,#the_champ_ss_rearrange .theChampFolkdSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.956%2010.21c-.183.192-.613.138-.99.14-.102.317-.126.71-.283.974.626.496%201.85.406%202.405.972%201.197-.444.245-1.354.99-2.085%201.134-.14%201.386.588%201.697%201.254-.267.247-.936.102-1.415.14-.26.208-.333.6-.565.833.258.58.96.724%201.133%201.39%201.454-.376%202.954-.71%204.526-.973.41-.43.317-1.356.99-1.53%201.104.213%201.46%201.16%201.556%202.363-.586%201.043-2.1.605-2.546-.277-1.465.226-2.867.52-4.245.832-.11.325.1%201.263-.144%201.81.926.625%201.29-.49%202.122-.42.48.503.495%202.374-.566%202.224-.604-.053-.674-.634-.708-1.25-.432.1-.515-.143-.85-.14-.646.383-.97%201.083-1.695%201.39.094%201.236%201.462.38%202.12.974-.057%201.01-.8%201.345-1.838%201.39-.066-.836.216-1.503-.707-1.945-.94.142-1.37.782-2.264.973-.013.43.175.664.284.972.248.17%201.165-.21%201.415.278-.01%201.075-1.473%201.828-2.264%201.25-.063-.616.382-.734.565-1.11-.267-.293-.405-.713-.564-1.112-.878.342-1.665.773-2.83.834.004.327-.243.41-.14.833-.056.518.68.26.706.696.24%201.26-1.777%201.455-2.12.555-.03-.86%201.033-.65.706-1.808-.713-.274-1.917-.063-2.55-.417-.374.14-.382.644-.706.835.065.4.5.436.425.974-.925.36-2.313.07-2.12-1.114.533-.615%201.49-.076%201.835-.973-.557-.656-1.166-1.263-1.413-2.223-2.124.464-3.843%201.323-5.8%201.947-.187.467-.196%201.107-.566%201.39-.59.148-.625.036-1.273%200-.56-.854-.257-2.7.85-2.78.61-.135.41.523.85.557%202.016-.472%203.78-1.195%205.8-1.667-.433-2.485%203.206-4.233-.85-3.893-.396-1.225.373-2.164%201.13-2.085%201.273.132.285%201.725%201.273%202.224.908-.498%201.543-1.263%202.69-1.53.08-.45-.097-.646-.143-.972-.088-.33-.87.02-.99-.28v-.97c.46-.426%201.663-.355%201.98.138.114.623-.25.773-.706.834.037.427.308.626.424.972.9-.37%202.268-.273%203.538-.277.2-.17.266-.48.28-.836.108-.522-.75-.095-.564-.694.156-1.48%202.125-.633%202.12.416zm1.132%206.256c.652-.378.368-1.677.424-2.64-1.742-1.426-2.885%202.7-.424%202.64zm-6.224%201.53c1.3.173%203.114-1.23%202.97-2.502-.14-1.227-2.55-2.332-3.96-1.67-1.815.858-.44%203.98.99%204.17z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampGoogleBookmarksSvg,#the_champ_ss_rearrange .theChampGoogleBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-12%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampGoogleGmailSvg,#the_champ_ss_rearrange .theChampGoogleGmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M2.902%2025.777h26.195V6.223H2.902v19.554zm22.44-4.007v3.806H6.955v-3.6h.032l.093-.034%206.9-5.558%202.09%201.77%201.854-1.63%207.42%205.246zm0-.672l-7.027-4.917%207.028-6.09V21.1zm-1.17-14.67l-.947.905c-2.356%202.284-4.693%204.75-7.17%206.876l-.078.06L8.062%206.39l16.11.033zm-10.597%209.61l-6.62%205.294.016-10.914%206.607%205.62%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampHackerNewsSvg,#the_champ_ss_rearrange .theChampHackerNewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.275%2017.834v7.13h-2.602v-7.182L9%207.035h3.07l2.967%206.115c.365.755.702%201.51.988%202.316.312-.728.65-1.483%201.042-2.29l3.018-6.142H23l-5.725%2010.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampHatenaSvg,#the_champ_ss_rearrange .theChampHatenaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M6.96%208.33h7.328c1.247%200%202.206.366%202.875%201.098.666.733%201.002%201.64%201.002%202.72%200%20.91-.24%201.688-.715%202.336-.318.433-.784.773-1.396%201.023.928.266%201.614.72%202.05%201.367.44.645.66%201.457.66%202.432%200%20.795-.157%201.512-.468%202.146-.314.635-.74%201.14-1.28%201.508-.337.23-.842.396-1.52.502-.9.14-1.498.21-1.79.21H6.958V8.328zm3.877%206.017h1.74c.623%200%201.058-.13%201.302-.382.24-.255.364-.623.364-1.104%200-.442-.123-.793-.366-1.045-.245-.25-.67-.377-1.276-.377h-1.767v2.91zm0%206.027h2.038c.69%200%201.176-.145%201.458-.434.282-.29.425-.68.425-1.168%200-.453-.142-.818-.42-1.092-.28-.277-.77-.414-1.47-.414h-2.03v3.108zM21.213%208.52h3.584v9.58h-3.584z%22%2F%3E%3Ccircle%20cx%3D%2223.005%22%20cy%3D%2221.635%22%20r%3D%222.036%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampInstapaperSvg,#the_champ_ss_rearrange .theChampInstapaperSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.98%205.5h8.04v1.265h-.62c-.582%200-1.004.08-1.264.242-.262.162-.453.39-.572.69-.12.297-.182.874-.182%201.732v13.53c0%20.683.064%201.167.195%201.453.13.286.313.494.55.625.234.13.658.196%201.27.196h.618V26.5H11.98v-1.265h.662c.592%200%201.012-.067%201.258-.203.246-.135.424-.33.533-.587.11-.256.166-.75.166-1.483V9.112c0-.776-.057-1.3-.168-1.567-.11-.268-.287-.465-.533-.59-.247-.128-.667-.19-1.26-.19h-.66V5.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampJamespotSvg,#the_champ_ss_rearrange .theChampJamespotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.427%2024.073c.677.4%201.633.708%202.927.708%201.848%200%202.587-.83%202.587-2.71V5h2.436v17.13c0%202.745-1.478%204.87-5.176%204.87-1.664%200-2.99-.4-3.573-.678l.8-2.25z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampKakaoSvg,#the_champ_ss_rearrange .theChampKakaoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.345%206h-8.688c-.583%200-1.06.45-1.06%201.005v8.814c0%20.553.477%201.003%201.06%201.003h4.007c-.03.98-.445%202.056-1.077%202.996-.612.904-1.613%201.796-2.156%202.223l-.04.032c-.117.107-.202.23-.204.405-.003.13.07.232.15.34l.018.022%202.774%202.975s.137.137.247.163c.126.03.27.032.368-.042%204.84-3.56%205.537-8.023%205.66-10.44V7.004C21.403%206.45%2020.93%206%2020.346%206%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampKindleItSvg,#the_champ_ss_rearrange .theChampKindleItSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.927%2027H10V5h2.927v11.754l5.15-5.47h3.683l-5.814%206.067L22%2027h-3.407l-4.704-7.763-.964%201.037V27z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampKnownSvg,#the_champ_ss_rearrange .theChampKnownSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.38%202.65c-7.45%200-13.5%206.048-13.5%2013.5s6.05%2013.5%2013.5%2013.5%2013.5-6.048%2013.5-13.5-6.04-13.5-13.5-13.5zm.078%2025.203c-6.387%200-11.57-5.184-11.57-11.572%200-6.385%205.183-11.57%2011.57-11.57%206.387%200%2011.57%205.185%2011.57%2011.57.002%206.39-5.175%2011.574-11.57%2011.574z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.856%2021.758c-.393%200-.694-.07-.903-.2-.154-.094-.4-.402-.74-.91l-3.934-5.964%203.3-3.2c.254-.248.463-.433.625-.54s.293-.178.41-.217c.107-.03.308-.046.593-.046h.207v-.01l.555-.01V8.55h-.648v.01h-6.087v2.12h.548c.31%200%20.494.023.57.077.078.054.117.13.117.23%200%20.055-.023.11-.062.18-.04.068-.154.2-.34.4l-4.257%204.436v-4.08c0-.402.03-.68.1-.826.07-.147.178-.262.34-.34.1-.053.363-.076.78-.076h.44V8.56H8.8v2.113h.563c.34%200%20.58.04.71.116.132.075.225.19.286.345.06.154.084.455.084.91v8.37c0%20.478-.022.78-.076.903-.062.153-.154.26-.285.33-.132.07-.394.11-.78.11H8.8v2.12h6.666v-2.12h-.556c-.363%200-.61-.032-.733-.094s-.216-.162-.278-.31c-.063-.145-.1-.408-.1-.786v-1.543l2.067-2.013%202.4%203.842c.2.332.3.54.3.625%200%20.077-.054.147-.162.2-.108.054-.417.077-.918.077h-.278v2.12h6.89v-2.12h-.24z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampLineSvg,#the_champ_ss_rearrange .theChampLineSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampLiveJournalSvg,#the_champ_ss_rearrange .theChampLiveJournalSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7.08%209.882l.004-.008.004-.01c.195-.408.422-.81.674-1.192.264-.393.53-.75.81-1.06%201.493-1.683%203.524-2.692%206.08-3.015l.733-.097.426.61%208.426%2012.14.188.27.027.328.608%207.65.164%202.002-1.854-.783-7.23-3.053-.325-.143-.208-.286-8.422-12.14-.4-.574.3-.638zm2.72.13c-.06.097-.118.202-.18.305l7.79%2011.235%205.05%202.13-.427-5.32-7.79-11.226c-1.603.326-2.884%201.032-3.84%202.102-.227.252-.428.514-.602.775z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M8.186%2010.4c1.283-2.66%203.488-4.192%206.62-4.594l8.423%2012.14.61%207.648-7.23-3.057L8.186%2010.4z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M15.158%206.316l1.89%202.717c-2.597.352-5.354%202.552-6.603%204.62l-1.898-2.735c1.115-2.09%204.27-4.18%206.61-4.602z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.69%2022.727l.283%203.084-2.924-1.235%201.224-1.202%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16.367%2022.11c.846-1.09%202.03-1.903%202.164-3.868l-5.273-7.602c-1.27.914-2.227%201.933-2.83%202.97l5.94%208.5z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.896%2017.537c-1.312.41-2.498%201.232-4.383.67l-5.272-7.6c1.303-.87%202.59-1.412%203.77-1.605l5.887%208.535z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.248%208.95l-1.846.24v-.004c-.244.04-.514.113-.8.214h-.01c-2.726.944-4.46%202.964-5.784%205.454l-.68-1.004c.604-.86%202.52-5.224%208.484-5.94.27.258.415.692.636%201.04z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampMailRuSvg,#the_champ_ss_rearrange .theChampMailRuSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.975%2015.894c-.134-2.542-2.02-4.07-4.3-4.07h-.086c-2.63%200-4.09%202.068-4.09%204.417%200%202.633%201.765%204.296%204.077%204.296%202.58%200%204.275-1.89%204.4-4.127l-.003-.515zm-4.37-6.346c1.755%200%203.407.776%204.62%201.993v.006c0-.584.395-1.024.94-1.024h.14c.85%200%201.025.808%201.025%201.063l.005%209.08c-.06.595.613.9.988.52%201.457-1.497%203.203-7.702-.907-11.295-3.83-3.352-8.967-2.8-11.7-.916-2.904%202.003-4.764%206.438-2.958%2010.603%201.968%204.543%207.6%205.896%2010.947%204.546%201.696-.684%202.48%201.607.72%202.355-2.66%201.132-10.066%201.02-13.525-4.972-2.338-4.046-2.212-11.163%203.987-14.85%204.74-2.822%2010.99-2.042%2014.762%201.895%203.937%204.117%203.705%2011.82-.137%2014.818-1.742%201.36-4.326.035-4.312-1.947l-.02-.647c-1.21%201.203-2.824%201.905-4.58%201.905-3.475%200-6.53-3.056-6.53-6.528%200-3.508%203.057-6.6%206.533-6.6%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampMendeleySvg,#the_champ_ss_rearrange .theChampMendeleySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.596%2018.11c-1.466-.087-2.02-.834-1.93-2.164.076-1.113.274-2.22.418-3.327-.023-1.743-.942-3.13-2.488-3.59-1.583-.47-2.97-.14-4.102%201.15-2.322%202.646-2.616%202.634-5.023-.045-1.152-1.28-2.852-1.66-4.39-.98-1.5.667-2.37%202.237-2.15%203.954.08.625.278%201.235.377%201.863.338%202.122-.105%202.7-2.226%203.147-1.066.228-1.913.786-2.05%201.99-.137%201.22.17%202.39%201.404%202.75.77.226%201.853.084%202.55-.32.96-.553%201.064-1.64.733-2.74-.62-2.05-.027-3.04%202.115-3.34.836-.117%201.766-.022%202.568.235%201.302.41%201.692%201.373%201.175%202.65-.45%201.1-.443%202.09.39%202.984.84.9%202.417%201.08%203.518.435%201.12-.657%201.497-1.807%201.042-3.164-.608-1.814-.085-2.783%201.807-3.123.7-.126%201.463-.113%202.16.025%201.834.367%202.377%201.377%201.84%203.188-.504%201.698.196%203.09%201.72%203.43%201.332.295%202.624-.607%202.89-2.022.308-1.633-.593-2.882-2.344-2.988zm-10.71-.085c-1.374-.06-2.453-1.194-2.445-2.57.01-1.46%201.148-2.567%202.61-2.54%201.467.026%202.57%201.177%202.523%202.627-.05%201.43-1.255%202.545-2.687%202.483z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampMeneameSvg,#the_champ_ss_rearrange .theChampMeneameSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M25.514%2010.435c-1.582%201.605-4.438%201.56-5.502%203.726-.906%202.57%201.23%206.677%202.12%209.02.603%201.21-4.716%202.378-4.065%202.677%203.754-.043%205.354-1.412%204.904-3.094-.43-1.607-2.376-4.816-2.376-7.383.056-1.938%202.222-2.533%203.618-3.322%201.622-.727%203.14-2.35%202.72-4.25-.018-.672-1.187-2.907-.71-1.175.26%201.278.385%202.856-.706%203.802z%22%2F%3E%3Cpath%20d%3D%22M20.632%207.546C18.59%206.492%2016.32%205.854%2013.946%206.41c-1.277.236-2.78.933-3.637%202.1-1.123%201.34-1.166%203.288-.43%204.82.57%201.18%201.44%202.492%202.85%202.688%201.21.182%202.54.018%203.566-.683-1.223.21-2.64.646-3.736-.172-1.842-1.177-2.735-3.85-1.618-5.8.898-1.7%202.705-2.178%204.62-2.262%202.55-.11%204.995%201.345%205.934%201.7.903.285%202.2.645%202.844-.315.376-.446.226-1.674-.08-1.788.09.86-.543%201.943-1.524%201.66-.736-.17-1.41-.523-2.104-.81zM6.94%2015.156c-1.183%201.865-2.264%204.05-1.85%206.322.38%202.375%202.678%204.05%204.963%204.35%202.348.273%204.69.205%207.043.035.397-.385-1.92-.373-2.895-.514-2.224-.254-4.64-.3-6.55-1.623-1.775-1.33-2.01-3.938-1.155-5.863.714-1.814%201.782-3.568%202.903-5.084-.876.727-1.683%201.27-2.456%202.376z%22%2F%3E%3Cpath%20d%3D%22M12.787%2021.02c1.386.107%203.688-.032%204.768.724.387.582-.332%203.802-.084%204.174.553.162%201.186-3.773.836-4.75-.266-.75-4.966-.352-5.518-.147z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampMixiSvg,#the_champ_ss_rearrange .theChampMixiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M16.09%205.246C9.617%205.246%204%209.216%204%2016.63c0%206.93%207.707%2010.193%2012.758%209.01v2.374S28%2025.054%2028%2015.034c0-6.11-4.505-9.788-11.91-9.788z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.92%2020.024h-1.657v-5.688s-.505-1.586-1.585-1.586c-.9%200-2.525.374-2.525%202.08v5.193h-1.657V14.77c0-1.586-.787-2.09-1.506-2.09-1.15%200-2.727.807-2.727%202.403v4.94H9.605v-9.01h1.657v1.03c.656-.546%201.564-1.03%202.727-1.03%201.222%200%202.09.434%202.604%201.282.73-.677%201.777-1.202%203.082-1.202%201.97%200%203.24%201.788%203.24%203.202v5.73z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampMySpaceSvg,#the_champ_ss_rearrange .theChampMySpaceSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M24%2017.716c-2.21%200-4%201.79-4%204v1.712h8v-1.713c0-2.21-1.79-4-4-4z%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2212.571%22%20r%3D%223.999%22%2F%3E%3Cpath%20d%3D%22M15.147%2018.31c-2.054%200-3.72%201.66-3.72%203.71v1.408h7.437c.002-.615.002-1.148.002-1.408%200-2.05-1.664-3.71-3.72-3.71z%22%2F%3E%3Cellipse%20cx%3D%2215.147%22%20cy%3D%2213.446%22%20rx%3D%223.719%22%20ry%3D%223.71%22%2F%3E%3Cpath%20d%3D%22M7.148%2018.875C5.41%2018.875%204%2020.277%204%2022.008v1.42h6.295c.002-.636.002-1.178.002-1.42%200-1.73-1.41-3.133-3.15-3.133z%22%2F%3E%3Cellipse%20cx%3D%227.148%22%20cy%3D%2214.58%22%20rx%3D%223.148%22%20ry%3D%223.133%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampNetlogSvg,#the_champ_ss_rearrange .theChampNetlogSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M9.05%2026.276c1.658-2.12%204.19-3.48%207.03-3.48%202.807%200%205.314%201.324%206.975%203.404%202.678-2.098%204.404-5.353%204.404-9.018%200-6.328-5.13-11.46-11.46-11.46S4.54%2010.855%204.54%2017.182c0%203.713%201.772%207.004%204.51%209.095z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%224.051%22%3E%3C%2Fcircle%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampNetvouzSvg,#the_champ_ss_rearrange .theChampNetvouzSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.25%208.72v17.184H5.5V6.096h8.396l5.605%205.77v6.43%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.75%2023.28V6.095h4.75v19.808h-8.396L12.5%2020.13v-6.427%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampNewsVineSvg,#the_champ_ss_rearrange .theChampNewsVineSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.828%2019.498l2.875-2.084c.264.166.572.264.906.264.936%200%201.695-.76%201.695-1.7s-.76-1.7-1.697-1.7c-.94%200-1.702.76-1.702%201.7%200%20.07.006.14.014.21l-2.094%201.516v-4.73l2.896-2.1c.26.158.56.25.885.25.937%200%201.696-.76%201.696-1.7%200-.937-.76-1.7-1.697-1.7-.94%200-1.702.763-1.702%201.7%200%20.08.006.16.018.235l-2.098%201.52V4h-1.656v3.79l-2.11-1.528c.02-.102.032-.205.032-.313%200-.94-.764-1.7-1.7-1.7-.94%200-1.7.76-1.7%201.7%200%20.936.76%201.7%201.7%201.7.296%200%20.573-.078.815-.21l2.962%202.143v4.73L13.06%2012.79c.017-.094.028-.19.028-.286%200-.94-.764-1.7-1.7-1.7-.94%200-1.7.76-1.7%201.7%200%20.938.76%201.7%201.7%201.7.304%200%20.59-.083.84-.224l2.938%202.13v5.044L13.07%2019.63c.014-.092.023-.185.023-.28%200-.938-.76-1.7-1.7-1.7-.938%200-1.697.762-1.697%201.7%200%20.94.76%201.7%201.697%201.7.31%200%20.598-.084.846-.226l2.935%202.124V28h1.655v-1.665l2.87-2.077c.263.166.573.266.91.266.937%200%201.698-.76%201.698-1.7%200-.938-.762-1.698-1.7-1.698s-1.698.76-1.698%201.7c0%20.067.004.134.012.2l-2.092%201.517v-5.045z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampNUjijSvg,#the_champ_ss_rearrange .theChampNUjijSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M8.223%204h4v4h-4zm0%206.223h4V28h-4zM19.777%204h4v4h-4zm0%206.223h4V28h-4zM14%204h4v4h-4zm0%206.223h4v11.11h-4z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampOdnoklassnikiSvg,#the_champ_ss_rearrange .theChampOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampOknotizieSvg,#the_champ_ss_rearrange .theChampOknotizieSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M14.613%2027.342H13.37l-4.796-7.3v7.3h-1.15v-9.25H8.66l4.8%207.3v-7.3h1.154v9.25zm6.015-9.408c1.282%200%202.332.438%203.147%201.312.817.875%201.225%202.03%201.225%203.47%200%201.44-.408%202.597-1.225%203.472-.815.874-1.865%201.312-3.147%201.312-1.286%200-2.34-.44-3.16-1.316-.82-.877-1.23-2.033-1.23-3.467%200-1.44.41-2.596%201.23-3.47.82-.876%201.874-1.313%203.16-1.313zm-.013%208.52c.916%200%201.667-.33%202.252-.985.585-.66.877-1.576.877-2.754s-.29-2.096-.874-2.752c-.583-.656-1.326-.984-2.23-.984-.92%200-1.674.33-2.263.985-.59.656-.884%201.574-.884%202.752%200%201.174.293%202.09.88%202.748.587.658%201.335.988%202.242.988z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M11.39%204.5c1.283%200%202.333.438%203.15%201.312.815.875%201.224%202.032%201.224%203.47%200%201.44-.408%202.597-1.225%203.472-.817.875-1.867%201.312-3.15%201.312-1.286%200-2.34-.438-3.16-1.314C7.41%2011.874%207%2010.72%207%209.282c0-1.438.41-2.595%201.23-3.47S10.105%204.5%2011.39%204.5zm-.012%208.52c.916%200%201.667-.33%202.252-.985.585-.656.877-1.574.877-2.752s-.29-2.095-.874-2.752c-.583-.654-1.326-.982-2.23-.982-.92%200-1.674.328-2.264.984-.59.658-.885%201.576-.885%202.753%200%201.174.293%202.09.88%202.75.587.656%201.335.986%202.242.986zm11.317.89H21.29l-2.154-3.402-.737.738v2.663h-1.183V4.656h1.18V9.9l2.556-2.69h1.486l-2.51%202.495%202.764%204.203z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampOutlookcomSvg,#the_champ_ss_rearrange .theChampOutlookcomSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%208.29v5.5l1.92%201.208c.053.016.163.016.212%200l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%2015.84l1.755%201.204c.246.183.543%200%20.543%200-.297.183%208.104-5.397%208.104-5.397V21.75c0%201.102-.704%201.562-1.496%201.562H19.52V15.84z%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M10.445%2013.305c-.6%200-1.073.282-1.426.842-.355.56-.53%201.305-.53%202.23%200%20.936.175%201.677.53%202.22.347.546.813.82%201.38.82.59%200%201.055-.266%201.4-.795.344-.53.517-1.266.517-2.206%200-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M2.123%205.5v21.51l16.362%203.428V2.33L2.123%205.5zm10.95%2014.387c-.693.91-1.594%201.367-2.706%201.367-1.082%200-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448%200-1.496.343-2.707%201.037-3.63.693-.926%201.614-1.388%202.754-1.388%201.08%200%201.955.438%202.62%201.324.667.885%201%202.05%201%203.495.004%201.496-.345%202.695-1.034%203.604z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampPinboardSvg,#the_champ_ss_rearrange .theChampPinboardSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.357%2018.913l-5.01%205.014.88-4.5-6.588-8.075-3.48.044%204.316-4.313%204.035-4.04V6.85l7.796%206.403%204.502-.786-4.876%204.87%209.907%2011.62%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampPlurkSvg,#the_champ_ss_rearrange .theChampPlurkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.215%2016.016h-8.43V9.7h8.43v6.316zm4.2%204.2V5.5H7.585v21h4.2v-6.285h12.63z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampPocketSvg,#the_champ_ss_rearrange .theChampPocketSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.005%206.244c2.927%200%205.854-.002%208.782%200%201.396.002%202.195.78%202.188%202.165-.015%202.485.116%204.987-.11%207.456-.75%208.204-10.027%2012.607-16.91%208.064-3.086-2.036-4.82-4.925-4.917-8.672-.06-2.34-.034-4.684-.018-7.025.008-1.214.812-1.98%202.056-1.983%202.975-.01%205.952-.004%208.93-.006zm-5.037%205.483c-.867.093-1.365.396-1.62%201.025-.27.67-.078%201.256.417%201.732%201.688%201.62%203.378%203.238%205.09%204.838.745.695%201.537.687%202.278-.01%201.654-1.55%203.298-3.112%204.93-4.686.827-.797.91-1.714.252-2.38-.694-.704-1.583-.647-2.447.17-1.097%201.04-2.215%202.06-3.266%203.143-.485.494-.77.434-1.227-.025-1.1-1.107-2.234-2.18-3.39-3.225-.325-.29-.77-.447-1.017-.583z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampPrintFriendlySvg,#the_champ_ss_rearrange .theChampPrintFriendlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M4.467%2014.305h23.065v6.498H4.467v-6.498z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M5.228%2012.83H26.77l.745%201.39H4.485l.743-1.39z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20d%3D%22M9.844%206.516h12.312v7.31H9.844z%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M8.602%2017.37h14.574v3.396H8.602z%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M10.152%2017.97h11.27l2.233%207.515H7.92l2.232-7.514z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampProtopageBookmarksSvg,#the_champ_ss_rearrange .theChampProtopageBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M17.866%2014.47l7.626-1.048.574%203.078-7.68%201.038%203.54%207.058-2.804%201.418-3.614-7.23-5.873%205.557-2.144-2.29%205.74-5.42-6.86-3.602%201.593-2.697%206.808%203.595%201.3-7.375%203.1.546-1.303%207.374z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampPushaSvg,#the_champ_ss_rearrange .theChampPushaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M29.27%2022.188V8.068L17.208%2014.92l3.838%202.33C15.716%2024.144%205.898%2029.306%200%2031.964V32h19.635c3.682-4.865%207.03-11.46%207.03-11.46l2.605%201.648z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampQzoneSvg,#the_champ_ss_rearrange .theChampQzoneSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.996%2012.83l-7.423-.737c-.566-.053-.694-.142-.87-.604l-3.175-7.043c-.29-.598-.765-.598-1.055%200l-3.384%207.04c-.23.393-.337.48-.896.534l-7.188.808c-.66.064-.808.493-.327.952l5.64%205.185c.265.25.27.355.194.697l-1.447%207.61c-.122.65.25.914.823.58l6.44-3.716c.45-.284.868-.293%201.31-.018l6.47%203.734c.575.333.948.07.826-.582L22.83%2021.2c.663-.226%201.306-.5%201.69-.81l-.155.03c-2.29.547-5.437.872-8.355.872-1.08%200-2.126-.038-3.128-.11l-.006.005c-.88-.063-1.727-.15-2.53-.26-.3-.05.026-.242.026-.242l7.758-5.513s.202-.126.002-.153c-3.188-.5-6.723-.625-10.042-.625h-.23c2.245-.51%205.07-.815%208.14-.815%201.81%200%203.538.106%205.11.297-.003.003.887.124%201.31.193.33.05.024.24.024.24l-7.77%205.385s-.18.106.015.135c2.39.338%205.333.458%207.98.492l-.12-.652c-.057-.378%200-.51.286-.78l5.478-5.12c.484-.454.34-.88-.32-.944z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampRediffMyPageSvg,#the_champ_ss_rearrange .theChampRediffMyPageSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.506%206.004c-.336%200-.64%200-.92-.002L20.926%206c-1.742%200-2.418.07-3.738.923-.744.457-1.38%201.034-1.85%201.517V6.188c0-.102-.08-.184-.182-.184h-5.71c-.1%200-.183.082-.183.184v19.62c0%20.115.115.23.232.18h5.71c.1%200%20.18-.08.18-.18V14.933c0-2.584%201.85-2.916%203.464-2.916h3.703c.1%200%20.182-.08.182-.182V6.188c-.05-.147-.172-.147-.287-.184h.056z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampRenrenSvg,#the_champ_ss_rearrange .theChampRenrenSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.74%203.266C17.833%203.088%2016.924%203%2016.013%203c-.934%200-1.843.088-2.753.266%200%208.96-.07%2016.176-9.26%2021.662C5.138%2026.566%206.616%2027.96%208.322%2029c3.595-2.168%205.687-4.736%207.69-8.275%202%203.54%204.07%206.107%207.688%208.275%201.706-1.04%203.184-2.434%204.3-4.072-9.19-5.487-9.26-12.7-9.26-21.662z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampSegnaloSvg,#the_champ_ss_rearrange .theChampSegnaloSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.65%2011.186c-3.252-1.153-6.64-.972-9.263%201.434-2.76%202.53-3.165%207.208-1.02%2010.172%201.948%202.695%206.138%203.82%209.284%203.58.79-.062%205.125-1.776%204.16-2.845-.174-.192-.41-.29-.454-.31-.042-.017-.104-.032-.136-.038-.03-.007-.264-.05-.522-.076-1.88-.21-3.745.424-5.64-.325-.825-.328-1.674-.668-2.207-1.41-.375-.524-1.086-2.715.16-2.31l7.453%202.404c1.705.55%202.792.625%203.288-1.405.978-3.978-1.35-7.545-5.1-8.875zm-.09%206.423c-.93.046-3.202-.94-3.617-1.076-1.11-.358-2.117-.922-.537-2.053%201.9-1.36%204.214.538%204.51%202.45.038.26-.1.665-.357.678z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.33%206.97c-1.732.556-3.154%201.852-4.18%203.317-.01.012-.006.018-.012.03-.006.01-.018.02-.02.03-.664%202.168%204.32.844%205.263.54.75-.242%204.84-1.912%204.61-3.078-.362-1.837-4.385-1.247-5.66-.84zm-4.032%202.375C17.42%208.2%2017.02%207.21%2016.12%206.488c-.645-.518-2.716-1.49-3.358-.383-.317.55.01%201.31.195%201.862.233.696.612%201.322%201.137%201.835.764.747%202.385.972%203.01.01.142-.218.186-.44.19-.448%200-.008.004-.013.004-.02z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampSinaWeiboSvg,#the_champ_ss_rearrange .theChampSinaWeiboSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4.91%2019.953c0%203.028%203.943%205.484%208.807%205.484%204.862%200%208.806-2.456%208.806-5.484%200-3.027-3.943-5.482-8.806-5.482-4.863%200-8.807%202.457-8.807%205.484%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.92%2024.99c-4.303.424-8.02-1.52-8.3-4.346-.278-2.827%202.987-5.463%207.292-5.888%204.304-.426%208.018%201.52%208.297%204.345.276%202.83-2.985%205.466-7.29%205.89m8.612-9.38c-.367-.11-.62-.186-.428-.665.416-1.046.458-1.946.01-2.59-.846-1.204-3.155-1.14-5.8-.03%200-.004-.834.362-.62-.297.406-1.31.345-2.406-.29-3.04-1.435-1.436-5.255.056-8.53%203.33C4.424%2014.77%203%2017.37%203%2019.618c0%204.3%205.513%206.913%2010.907%206.913%207.07%200%2011.776-4.106%2011.776-7.37%200-1.97-1.66-3.09-3.15-3.55%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.226%207.74C25.52%205.848%2023%205.127%2020.676%205.62h-.002c-.536.115-.88.644-.765%201.182.112.536.642.882%201.18.765%201.653-.35%203.442.164%204.66%201.508%201.212%201.346%201.542%203.18%201.02%204.787-.17.525.118%201.085.64%201.255.524.168%201.088-.118%201.256-.64v-.004c.728-2.262.268-4.84-1.44-6.732m-2.622%202.367c-.832-.922-2.058-1.272-3.192-1.03-.462.098-.756.552-.656%201.017.097.46.553.758%201.016.657v.003c.552-.117%201.15.053%201.562.502.406.453.514%201.066.338%201.606h.004c-.147.45.102.935.55%201.08.45.144.936-.102%201.08-.552.356-1.1.135-2.357-.7-3.28%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampSiteJotSvg,#the_champ_ss_rearrange .theChampSiteJotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.506%208.08c.645%200%201.3.073%201.967.225.547.12.937.285%201.173.495.236.21.354.5.354.868%200%20.232-.043.414-.13.547-.086.13-.272.29-.56.48-.333.224-.524.49-.573.794-.05.302-.094%201.482-.134%203.54-.018%201.99-.033%203.185-.048%203.583-.015.398-.05.785-.107%201.16-.167%201.098-.504%201.958-1.01%202.582-.414.51-.946.912-1.596%201.205-.65.294-1.335.44-2.054.44-.64%200-1.278-.108-1.92-.325-.64-.22-1.197-.518-1.67-.902-.39-.315-.7-.74-.93-1.278-.23-.538-.347-1.11-.347-1.72%200-.75.184-1.37.546-1.863.362-.492.816-.738%201.363-.738.534%200%20.99.207%201.362.62.375.42.56.938.56%201.555%200%20.155-.033.42-.102.787-.012.075-.018.157-.018.247%200%20.24.066.436.2.586.13.15.307.227.524.227.386%200%20.696-.226.933-.677.234-.45.352-1.043.352-1.78l-.01-1.024-.017-2.76c-.052-1.676-.09-2.662-.116-2.96-.027-.296-.09-.538-.195-.725-.086-.15-.162-.246-.23-.29-.065-.046-.245-.117-.538-.215-.138-.038-.256-.144-.353-.315-.098-.174-.147-.357-.147-.554%200-.405.122-.73.366-.975.245-.242.644-.44%201.196-.59.62-.17%201.254-.25%201.91-.25z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.202%208c.593%200%201.37.19%202.33.574.114.046.207.068.275.068.058%200%20.23-.068.518-.203.093-.047.19-.07.294-.07.383%200%20.79.4%201.22%201.195.43.797.642%201.555.642%202.275%200%20.422-.097.776-.29%201.066-.19.288-.426.434-.702.434-.23%200-.416-.06-.56-.18-.144-.12-.46-.478-.95-1.07-.69-.842-1.368-1.263-2.035-1.263-.322%200-.58.102-.772.305-.192.203-.29.47-.29.8%200%20.653.44%201.146%201.32%201.476%201.192.46%201.954.793%202.287%201.003%201.467.934%202.2%202.305%202.2%204.114%200%201.6-.5%202.907-1.5%203.922C13.163%2023.48%2011.826%2024%2010.176%2024c-.736%200-1.513-.115-2.33-.344-.816-.23-1.406-.497-1.77-.805-.274-.24-.523-.764-.745-1.57-.22-.81-.33-1.596-.33-2.363%200-.367.058-.646.173-.833.143-.24.324-.36.543-.36.22%200%20.43.146.63.438.12.165.405.695.855%201.59.215.42.553.768%201.016%201.048.463.278.94.417%201.437.417.426%200%20.77-.104%201.035-.31.265-.207.396-.472.396-.794%200-.3-.103-.56-.31-.777-.208-.22-.544-.422-1.01-.61-.823-.337-1.45-.648-1.88-.93-.433-.28-.835-.636-1.21-1.063-.908-1.053-1.362-2.246-1.362-3.583%200-.66.12-1.306.355-1.933.236-.627.57-1.17%201-1.628C7.633%208.53%208.812%208%2010.203%208z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampSlashdotSvg,#the_champ_ss_rearrange .theChampSlashdotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M20.89%206h-5L8.61%2026h5%22%2F%3E%3Ccircle%20cx%3D%2220.89%22%20cy%3D%2223.5%22%20r%3D%222.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampStumpediaSvg,#the_champ_ss_rearrange .theChampStumpediaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.1%206.875s-.13.717-.293.912c-.163.197-.62.166-1.045%200-.427-.162-.85-.195-1.274-.03-.425.162-.784.134-.717-.356.065-.49.328-.98.688-1.014.36-.03%201.11-.163%201.207-.36.1-.194-.07-.456-.23-.718-.16-.26-.455-.652-.585-.555-.13.1-.49-.13-.62.262-.132.393-.85%201.403-1.373%201.958-.524.557-1.21%201.602-.85%202.253.36.654.947.688%201.733.688h1.165s.273.23.238.523c-.032.293.263%202.71.263%203.527s-.033.85.195.85h.394s-.163.652-.654%202.284c-.49%201.634-.88%202.876-1.144%203.203-.26.326-.424.588-.424%201.01%200%20.428-.13%201.08-.326%201.44-.196.36-.262.883-.523%201.145-.26.262-.26.328-.358.72-.1.392-.526.882-.655%201.075-.127.197-1.817%201.486-1.915%201.848-.098.358%201.577.53%202.31.44.88-.11%201.135-.007%201.388-.436.273-.462.876-1.51%201.192-2.308.18-.457-.1-.816.294-1.34.39-.522%201.01-1.403%201.433-1.895.425-.49.425-1.078.784-1.8.36-.716.785-1.565%201.11-1.5.327.065.75.456%201.34%201.076.588.62.523.947.62%201.534.1.59.228%201.34.523%201.864.295.524.458%201.014.523%201.47.065.458-.1.88%200%201.405.098.52.556.943.816%201.37.26.42%201.272.39%202.12.42.85.035%201.635.167%201.404-.226-.232-.392-1.045-.916-1.275-1.045-.23-.13-.36-.13-.555-.818-.197-.685-.85-3.722-1.047-4.8-.195-1.078-.652-2.385-1.046-3.104-.39-.718-1.6-2.874-1.6-2.874l-.1-.293h.393s-.163-.687-.262-.85c-.098-.163-.49-1.44-.556-2.09-.065-.653-.197-1.077.13-1.044.327.03%201.568%200%202.32-.197.75-.195.686-.26.717-.88.033-.62%200-1.798-.03-2.58-.034-.784-.296-1.015-.49-1.11-.195-.1-.817.13-.914.326-.1.193-.49.488-.132.75.36.262.425.393.62.457.197.066.197.196.197.36%200%20.163.13.913-.196%201.044-.324.132-1.274.034-1.664-.064-.394-.097-1.176-.815-1.502-.782-.325.033-.62-.294-.653-.72-.03-.424.59-.16.687-.814.1-.652.59-2.103-.814-2.45-.784-.192-1.373.425-1.57%201.372-.148.698-.002%201.007.587%201.465z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M15.688%206.736c-.183.46-1.135%202.4-1.135%202.4s-1.28-.712-3.423-.712c-1.877%200-3%20.924-3.324%201.962-.176.562-.552%202.19%201.475%203.18%201.418.69%203.29%201.465%204.755%202.45%201.906%201.276%202.81%203.327%202.454%205.87-.41%202.92-2.444%205.56-5.473%205.822-2.403.208-6-.536-6.91-1.314.275-.816.56-1.975.78-2.634%201.005.493%202.72.936%204.185%201.11%202.758.326%204.152-.908%204.554-2.44.284-1.087.332-2.204-.12-3.013-1.093-1.96-3.375-2.244-5.392-3.24-3.016-1.492-3.69-3.54-3.308-5.774.437-2.546%201.918-3.803%204.18-4.356%202.128-.52%204.59-.305%206.704.69z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampSvejoSvg,#the_champ_ss_rearrange .theChampSvejoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c.31.16.48.29.48.29l.04-.02c.2-4.96-2.933-7.41-2.933-7.41-.688.87-1.147%202.21-1.387%203.04.26.11.51.24.76.38%202.13%201.19%202.83%202.92%203.04%203.72z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c-.22-.8-.91-2.53-3.04-3.73-.25-.14-.5-.26-.76-.38-2.27-.99-4.73-.96-4.73-.96s0%202.92%203.08%204.95c.48-.17%201-.31%201.57-.42%201.81-.32%203.19.19%203.88.54z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.796%2013.244c-.93%201.82%202.15%206.7%204.75%209.37%201.29%201.33%201.93%202.48%202.19%203.052%202.1.5%203.278-.29%203.42-.4l.068-.12c.932-1.94-1.46-4.818-3.19-7.068-2.138-2.78-2.698-4.832-2.698-4.832l-.01-.01c-3.5-1.582-4.53.008-4.53.008z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.176%2025.274c-.15.11-1.32.9-3.42.4-1.1-.26-2.47-.88-4.07-2.15-2.31-1.818-4.03-3.43-5.2-5.53-.3-.528-.98-.568-1.37.2-.6%201.19-.67%204.5.7%206.44%200%200-.38%201.28.62%202.37.67.73%202.22%201.06%203.06.76l.17-.07s1.73%201.302%204.37.813c2.64-.49%204.33-1.73%205.18-3.24l-.04.007zm3.01-11.4s.38-1.28-.62-2.37c-.67-.73-2.22-1.06-3.06-.76l-.12.05-.04.02s-.17-.13-.48-.28c-.69-.36-2.07-.87-3.89-.53-.57.102-1.09.25-1.57.42-1.68.59-2.83%201.542-3.51%202.66l-.1.17s1.02-1.59%204.53-.01c.84.382%201.83.94%202.98%201.75%202.41%201.692%204.03%203.432%205.2%205.53.3.53.98.57%201.37-.198.61-1.2.68-4.512-.69-6.45z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampSymbalooFeedsSvg,#the_champ_ss_rearrange .theChampSymbalooFeedsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7%207h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2013.75h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2020.5h4.5V25H7zm6.75%200h4.5V25h-4.5zm6.75%200H25V25h-4.5z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampTuentiSvg,#the_champ_ss_rearrange .theChampTuentiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.907%2019.803l-2.463%205.062c-.316.655-.974%201.035-1.656%201.035-.272%200-.545-.062-.807-.188-.914-.445-1.293-1.55-.846-2.465l2.46-5.062c.446-.914%201.55-1.293%202.464-.848.917.447%201.295%201.552.85%202.466zm-.053-7.497c-.445.444-1.055.698-1.682.698-.625%200-1.236-.254-1.678-.698-.445-.444-.7-1.054-.7-1.68%200-.626.255-1.236.7-1.68.885-.888%202.478-.888%203.36%200%20.442.444.696%201.054.696%201.68%200%20.626-.254%201.235-.696%201.68zm9.834%207.17c-.443%202.075-1.266%204.003-2.445%205.73-.35.517-.922.794-1.502.794-.35%200-.705-.103-1.02-.316-.826-.564-1.04-1.695-.476-2.52.912-1.34%201.55-2.835%201.896-4.448.378-1.775.378-3.654-.003-5.432-.344-1.61-.982-3.107-1.895-4.445-.564-.83-.35-1.96.48-2.525.827-.564%201.958-.35%202.522.48%201.178%201.727%202%203.655%202.443%205.73.49%202.272.49%204.675%200%206.95z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampTwiddlaSvg,#the_champ_ss_rearrange .theChampTwiddlaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.5%205.688l1.375%201.375-4.812%204.812L5.688%2010.5C5.256%209.926%205%209.21%205%208.438%205%206.538%206.54%205%208.438%205c.773%200%201.488.256%202.062.688zm2.406%202.406l-4.812%204.812%2012.72%2012.72L27%2027l-1.375-6.188-12.72-12.718zm-.095%203.533l9.627%209.625-1.186%201.183-9.624-9.625%201.186-1.183z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampViadeoSvg,#the_champ_ss_rearrange .theChampViadeoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15.107%204s2.838%201.88%203.326%207.05c0%200%20.957%2012.423-5.47%2014.858%200%200%20.577.106%201.224.076%200%200%207.947-5.012%204.3-14.742%200%200-1.09-3.396-3.38-7.242zm4.15%208.483s-1.48-2.29.397-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M19.256%2012.483s-1.48-2.29.398-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.486%2019.434c0%201.19-.283%202.3-.85%203.33-.57%201.03-1.34%201.824-2.306%202.383-.967.56-2.03.84-3.186.84-1.156%200-2.22-.28-3.186-.84-.97-.56-1.736-1.354-2.305-2.383-.568-1.03-.853-2.14-.853-3.33%200-1.847.625-3.42%201.87-4.723%201.247-1.3%202.74-1.95%204.474-1.95.824%200%201.596.15%202.313.448.072-.754.336-1.456.63-2.03-.903-.326-1.88-.49-2.936-.49-2.506%200-4.582.92-6.223%202.77-1.494%201.675-2.24%203.65-2.24%205.933%200%202.3.79%204.31%202.367%206.03C9.63%2027.14%2011.664%2028%2014.15%2028c2.48%200%204.508-.86%206.086-2.58%201.578-1.72%202.367-3.73%202.367-6.03%200-1.233-.22-2.374-.65-3.427-.725.445-1.412.678-1.982.797.345.816.517%201.707.517%202.674z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampTypePadPostSvg,#the_champ_ss_rearrange .theChampTypePadPostSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%208.875c-6.627%200-12%203.225-12%207.202%200%20.844.342%202.21.787%202.407.447.196%201.67.683%2012.523-3.836%200%200-9.096%204.09-9.83%205.85-.253.605%202.154%202.627%208.52%202.627%206.626%200%2012-3.148%2012-7.125s-5.374-7.125-12-7.125z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampWaneloSvg,#the_champ_ss_rearrange .theChampWaneloSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10%2022h10v10H10zM0%2022h10v10H0z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%2012h12v10H20z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10%2012h10v10H10z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%2012h10v10H0z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%200h12v12H20z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10%200h10v12H10z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h10v12H0z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampWebnewsSvg,#the_champ_ss_rearrange .theChampWebnewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M6%206h5.48v14.557h1.844V6h5.396v14.557h1.852V6H26v18.196h-1.82V26h-7.25v-1.825h-1.838V26h-7.25v-1.825H6V6z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampWordPressSvg,#the_champ_ss_rearrange .theChampWordPressSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2214.75%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Cg%3E%3Cpath%20d%3D%22M3.176%2016c0%205.076%202.95%209.462%207.226%2011.54L4.287%2010.78c-.712%201.595-1.11%203.36-1.11%205.22zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008%200-1.18.897-2.278%202.156-2.278.057%200%20.11.008.166.01-2.28-2.09-5.32-3.367-8.658-3.367-4.48%200-8.422%202.3-10.715%205.78.302.01.585.017.826.017%201.343%200%203.418-.164%203.418-.164.69-.042.774.974.084%201.056%200%200-.694.08-1.466.12l4.668%2013.892%202.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058%200%200%202.116.164%203.38.164%201.34%200%203.416-.163%203.416-.163.69-.04.77.976.08%201.058%200%200-.694.08-1.467.12l4.634%2013.785%201.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43%201.766l-3.85%2011.18c1.15.34%202.365.523%203.624.523%201.492%200%202.925-.26%204.26-.728-.035-.056-.066-.113-.093-.177L16.225%2017.12zM27.25%209.848c.055.408.086.848.086%201.318%200%201.3-.242%202.764-.975%204.594l-3.916%2011.324C26.26%2024.86%2028.822%2020.73%2028.822%2016c0-2.23-.568-4.326-1.57-6.152z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16%201.052C7.757%201.052%201.052%207.757%201.052%2016c0%208.242%206.705%2014.948%2014.948%2014.948%208.242%200%2014.948-6.706%2014.948-14.95%200-8.24-6.706-14.946-14.948-14.946zm0%2029.212c-7.865%200-14.264-6.4-14.264-14.265S8.136%201.734%2016%201.734c7.863%200%2014.264%206.398%2014.264%2014.263%200%207.863-6.4%2014.264-14.264%2014.264z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampWykopSvg,#the_champ_ss_rearrange .theChampWykopSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M28.5%2023.54c0%202.74-2.22%204.96-4.96%204.96H8.46c-2.74%200-4.96-2.22-4.96-4.96V8.46c0-2.74%202.22-4.96%204.96-4.96h15.08c2.74%200%204.96%202.22%204.96%204.96v15.08z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.052%207.997l4.942%2010.043-2.01.99-4.94-10.044-4.018%201.977%204.943%2010.043-2.01.988L9.016%2011.95%205%2013.93l5.93%2012.05L27%2018.073l-5.93-12.05%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampYahooMailSvg,#the_champ_ss_rearrange .theChampYahooMailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.495%206.097c1.09.31%202.213.28%203.304%200l-7.418%2012.09v9.91c-.468-.155-.935-.22-1.37-.22-.47%200-.937.065-1.404.22v-9.91L7.19%206.097c1.09.28%202.213.31%203.304%200l5.516%208.788%205.483-8.787z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampYahooMessengerSvg,#the_champ_ss_rearrange .theChampYahooMessengerSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2027c6.074%200%2011-4.926%2011-11%200-6.075-4.926-11-11-11S5%209.925%205%2016c0%206.074%204.926%2011%2011%2011zm2.808-17.016c.792%200%201.434.64%201.434%201.432%200%20.79-.642%201.432-1.434%201.432-.79%200-1.432-.64-1.432-1.432%200-.79.642-1.432%201.432-1.432zm-5.443%200c.79%200%201.433.64%201.433%201.432%200%20.79-.642%201.432-1.433%201.432s-1.433-.64-1.433-1.432c0-.79.642-1.432%201.433-1.432zm-5.1%204.583h15.47v2.866h-.032c-.32%203.975-3.644%207.103-7.702%207.103-4.06%200-7.38-3.128-7.7-7.103h-.033v-2.866zm14.42%202.56H9.13v-1.764h13.554v1.764z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampYoolinkSvg,#the_champ_ss_rearrange .theChampYoolinkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2212%22%3E%3C%2Fcircle%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M14.47%2023.09v-4.908l-3.604-5.856c-.315-.528-.538-.94-.67-1.235-.13-.294-.196-.552-.196-.77%200-.36.132-.67.398-.93.264-.26.59-.39.98-.39.41%200%20.72.12.933.365.213.243.53.727.953%201.45l2.758%204.697%202.79-4.696c.17-.287.31-.53.423-.727.114-.198.24-.384.378-.556.14-.172.29-.305.46-.396.166-.09.37-.136.613-.136.376%200%20.688.13.94.385.252.258.378.554.378.892%200%20.273-.064.55-.19.82-.127.275-.345.655-.654%201.14l-3.694%205.94v4.91c0%20.64-.14%201.118-.422%201.436-.282.317-.642.475-1.08.475-.44%200-.8-.156-1.076-.47-.275-.312-.412-.793-.412-1.44z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampYouMobSvg,#the_champ_ss_rearrange .theChampYouMobSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M4%209.498h1.82l2.7%2010.754%202.677-10.754h1.81v12.72h-1.213V14.71c0-.26.003-.69.01-1.29.012-.6.015-1.244.015-1.93L9.14%2022.216H7.88L5.173%2011.49v.39c0%20.31.008.786.02%201.423.013.64.02%201.108.02%201.407v7.507H4V9.497zm15.735%204.372c.604.795.907%201.966.907%203.51%200%201.495-.267%202.73-.8%203.704-.534.975-1.36%201.46-2.48%201.46-.934%200-1.677-.43-2.228-1.292-.55-.86-.825-2.02-.825-3.473%200-1.56.29-2.8.87-3.723.576-.922%201.356-1.383%202.333-1.383.877%200%201.616.4%202.22%201.194zm-.714%206.16c.28-.78.423-1.65.423-2.607%200-.863-.102-1.568-.304-2.11-.323-.853-.875-1.278-1.656-1.278-.695%200-1.2.36-1.518%201.088-.314.727-.474%201.604-.474%202.63%200%20.985.16%201.808.475%202.466.316.654.817.982%201.503.982.755%200%201.27-.39%201.553-1.172zm2.937-10.575h1.118v4.615c.253-.445.554-.785.905-1.02.35-.232.73-.35%201.142-.35.854%200%201.547.397%202.08%201.19.53.796.798%201.966.798%203.512%200%201.467-.26%202.684-.788%203.654-.524.97-1.253%201.454-2.186%201.454-.52%200-.964-.17-1.323-.51-.213-.202-.44-.526-.687-.972v1.188h-1.06V9.456zm4.398%2010.675c.31-.67.463-1.552.463-2.65%200-.974-.154-1.782-.463-2.423-.312-.64-.768-.96-1.368-.96-.527%200-.988.262-1.382.786-.397.525-.595%201.392-.595%202.598%200%20.873.083%201.58.245%202.123.304%201.02.868%201.532%201.7%201.532.622%200%201.088-.334%201.4-1.004z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}
css/share-default-svg-vertical.css ADDED
@@ -0,0 +1 @@
 
1
+ @charset "utf-8";.the_champ_vertical_sharing .theChampYummlySvg,#the_champ_ss_vertical_rearrange .theChampYummlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2010.5%2010%20q%204%20-2%202.5%201%20l%20-1%204%20q%200%202%205%200%20l%201%20-6.5%20m%20-1%206.5%20l%20-1%204%20c%20-3%206%20-6%20-1%200%20-1%20q%201%20-1%205%201%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBufferSvg,#the_champ_ss_vertical_rearrange .theChampBufferSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2039%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2015%206%20l%20-10%205%20l%2010%205%20l%2010%20-5%20z%22%20stroke-width%3D%220%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%205.5%2014.5%20l%209.5%205%20l%209.5%20-5%20m%20-19%204%20l%209.5%205%20l%209.5%20-5%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampFacebookSvg,#the_champ_ss_vertical_rearrange .theChampFacebookSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M14%2025%20v%20-13%20Q%2013%206%2021%207.5%20M%2010%2014%20L%2020%2014%22%20stroke-width%3D%224%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampDeliciousSvg,#the_champ_ss_vertical_rearrange .theChampDeliciousSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22stroke%3A%23fff%3Bfill%3Anone%22%3E%3C%2Frect%3E%0A%3Crect%20x%3D%2215%22%20y%3D%220%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22fill%3A%23fff%3Bstroke%3A%23fff%22%3E%3C%2Frect%3E%0A%3Crect%20x%3D%220%22%20y%3D%2215%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22fill%3A%23fff%3Bstroke%3A%23fff%22%3E%3C%2Frect%3E%0A%3Crect%20x%3D%2215%22%20y%3D%2215%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22stroke%3A%23fff%3Bfill%3Anone%3B%22%3E%3C%2Frect%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampDiggSvg,#the_champ_ss_vertical_rearrange .theChampDiggSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2049%2049%22%3E%3Cpath%20d%3D%22M%206%2020%20h%2010%20c%200%20-14%20-9%20-14%20-9%200%20m%205%200%20v%207%20m%20-1%200%20v%20-7%20m%204%20-7%20h%204.5%20v%20-5%20h%208%20v%208%20h%20-8%20v%20-3%20m%208%200%20h%204%20v%205.5%20h%20-3%20v%2012%20h%20-4%20v%20-8%20m%200%208%20h%20-6.5%20v%20-12%20h%20-2%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cellipse%20cx%3D%2211.5%22%20cy%3D%2228.5%22%20rx%3D%224%22%20ry%3D%222%22%20style%3D%22fill%3A%23fff%3B%22%3E%3C%2Fellipse%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampEmailSvg,#the_champ_ss_vertical_rearrange .theChampEmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2043%2043%22%3E%3Cpath%20d%3D%22M%205.5%2011%20h%2023%20v%201%20l%20-11%206%20l%20-11%20-6%20v%20-1%20m%200%202%20l%2011%206%20l%2011%20-6%20v%2011%20h%20-22%20v%20-11%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampFloatitSvg,#the_champ_ss_vertical_rearrange .theChampFloatitSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Ccircle%20cx%3D%2215%22%20cy%3D%2215%22%20r%3D%2210%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2215%22%20cy%3D%2215%22%20r%3D%225%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%205%2015%20h%205%20M%2015%205%20v%205%20M%2025%2015%20h%20-5%20M%2015%2025%20v%20-5%22%20stroke-width%3D%223%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampGoogleplusSvg,#the_champ_ss_vertical_rearrange .theChampGoogleplusSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2065%2049%20h%2018%20m%20-9%20-9%20v%2018%22%20stroke%3D%22%23fff%22%20stroke-width%3D%225%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampLinkedinSvg,#the_champ_ss_vertical_rearrange .theChampLinkedinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%0A%3Ccircle%20cx%3D%2210%22%20cy%3D%228%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%0A%3Cpath%20d%3D%22M%2010%2011%20v%2011%20m%205%200%20v%20-11%20m%200%203%20q%206%20-3%207%200%20v%208%22%20stroke-width%3D%223%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampMoreSvg,#the_champ_ss_vertical_rearrange .theChampMoreSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2215%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2210%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%2010%2015%20L%2020%2010%20m%200%2010%20L%2010%2015%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampPinterestSvg,#the_champ_ss_vertical_rearrange .theChampPinterestSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6.5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M%206%2020%20c%20-3%20-4%20-2%20-10%203%20-13.5%20c%204%20-3%2011%20-3%2015%203%20c%203%205%202%2013%20-6%2015%20q%20-4%201%20-6%20-3%20l%20-2%206%20l%20-1.2%202%20l%20-0.8%20-2%20l%202.5%20-11%20c%20-2%20-4%201%20-8%204%20-6%20q%200%205%20-1.4%208.5%20c%203%208%2010%200%209.5%20-4%20c%200%20-9%20-11%20-11%20-14.5%20-4%20c%200%200%20-3%205%200%208%20l%20-1%202%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampPrintSvg,#the_champ_ss_vertical_rearrange .theChampPrintSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-6%2038%2038%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%207%2010%20h%202%20v%203%20h%2012%20v%20-3%20h%202%20v%207%20h%20-2%20v%20-3%20h%20-12%20v%203%20h%20-2%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221.8%22%20height%3D%227%22%20width%3D%2210%22%20x%3D%2210%22%20y%3D%225%22%20fill%3D%22none%22%3E%3C%2Frect%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%20height%3D%225%22%20width%3D%228%22%20x%3D%2211%22%20y%3D%2216%22%20fill%3D%22%23fff%22%3E%3C%2Frect%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampRedditSvg,#the_champ_ss_vertical_rearrange .theChampRedditSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%3Cellipse%20cx%3D%2215%22%20cy%3D%2219%22%20rx%3D%229%22%20ry%3D%227%22%20style%3D%22stroke%3A%23fff%3Bstroke-width%3A2%22%20fill%3D%22none%22%3E%3C%2Fellipse%3E%3Ccircle%20cx%3D%2211%22%20cy%3D%2217%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2219%22%20cy%3D%2217%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2222%22%20cy%3D%227%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%227%22%20cy%3D%2214%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2223%22%20cy%3D%2214%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%2010%2022%20q%205%203%2010%200%20M%2015%2012%20l%201%20-6%20l%206%201%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampStumbleuponSvg,#the_champ_ss_vertical_rearrange .theChampStumbleuponSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Cpath%20d%3D%22M%206.6%2015%20v%201%20c%20-1%207%206.5%207%205.5%200%20v%20-4%20c%20-1%20-7%206%20-7%206%20-2%20v%202.5%20m%200%202.5%20v%201%20c%20-1%207%206.5%207%205.5%200%20v%20-1%22%20stroke-width%3D%223.5%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampTumblrSvg,#the_champ_ss_vertical_rearrange .theChampTumblrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Cpath%20d%3D%22M%2014%207%20v%2014%20q%203%202%206%200%20M%2014%207.5%20q%200%205.5%20-4%205.5%20h%209%22%20stroke-width%3D%223%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampTwitterSvg,#the_champ_ss_vertical_rearrange .theChampTwitterSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-8%20-8%2064%2064%22%3E%0A%3Cpath%20d%3D%22M%2038%2019%20q%202%20-1%204%20-5%20q%20-1.5%202%20-4%202%20q%201.5%20-1%203.5%20-5%20q%20-1.5%202%20-5%202%20c%20-5%20-5%20-13%20-2%20-12%206%20q%20-7%201%20-15%20-8%20q%20-2%204%201%209%20q%20-1%200%20-3%20-1%20q%200%205%205%207%20q%20-1%20.5%20-3%200%20q%201%204%208%206%20q%20-5%203%20-11%203%20c%2014%208%2030%200%2031.5%20-14%22%20stroke-width%3D%220.3%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampVkontakteSvg,#the_champ_ss_vertical_rearrange .theChampVkontakteSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%0A%3Cpath%20d%3D%22M%202.5%209%20h%204.5%20l%205%207%20v%20-7%20h%204.5%20v%207%20l%205%20-7%20h%205%20l%20-5%207%20l%205%207%20h%20-5%20l%20-5%20-7%20v%207%20h%20-4.5%20q%20-2%200%20-5%20-6%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampYahooSvg,#the_champ_ss_vertical_rearrange .theChampYahooSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Cpath%20d%3D%22M%208%2010%20l%207%207%20l%205%20-5%20m%20-4.7%205%20v%203%20h%20-0.5%20v%20-3%20m%208%20-4%20v%205%20m%200%201%20v%201%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%206%2010%20h%206%20m%205%202%20h%206%20m%20-11%209.5%20h%206%22%20stroke-width%3D%221.4%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampXingSvg,#the_champ_ss_vertical_rearrange .theChampXingSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%0A%3Cpath%20d%3D%22M%206%209%20h%205%20l%204%204%20l%20-5%207%20h%20-5%20l%205%20-7%20z%20m%2015%20-4%20h%205%20l%20-9%2013%20l%204%208%20h%20-5%20l%20-4%20-8%20z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampWhatsappSvg,#the_champ_ss_vertical_rearrange .theChampWhatsappSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Cpath%20id%3D%22arc1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M%2011.579798566743314%2024.396926207859085%20A%2010%2010%200%201%200%206.808479557110079%2020.73576436351046%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%207%2019%20l%20-1%206%20l%206%20-1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2010%2010%20q%20-1%208%208%2011%20c%205%20-1%200%20-6%20-1%20-3%20q%20-4%20-3%20-5%20-5%20c%204%20-2%20-1%20-5%20-1%20-4%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampAIMSvg,#the_champ_ss_vertical_rearrange .theChampAIMSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.75%2016.548c-.24.558-.465%201.08-.707%201.646%202.756%201.873%205.48%203.752%207.615%206.453l-2.11%201.43c-.708-.768-1.364-1.59-2.132-2.29-1.047-.958-2.156-1.85-3.557-2.285-.585-.183-.98-.086-1.39.41-1.527%201.862-3.26%203.49-5.476%204.522-1.368.64-1.368.642-1.972-.695-.178-.39-.346-.785-.54-1.226%201.827-.433%203.38-1.246%204.62-2.62.74-.822%201.166-1.716%201.26-2.856.17-2.103.628-4.15%201.828-5.95.534-.797%201.768-.98%202.493-.37.062.046.11.126.13.2.48%201.81%202.08%202.005%203.58%201.63.573-.146%201.118-.404%201.73-.63l1.07%201.483c-1.903%201.718-4.075%201.73-6.444%201.145zm.842-12.054c1.78.02%203.254%201.57%203.22%203.386-.032%201.734-1.62%203.284-3.325%203.246-1.822-.04-3.326-1.604-3.284-3.418.038-1.8%201.555-3.236%203.39-3.214z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampAmazonWishListSvg,#the_champ_ss_vertical_rearrange .theChampAmazonWishListSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.998%2023.842c-.127%200-.256.03-.377.086-.132.055-.27.117-.4.172l-.194.08-.25.1v.005c-2.72%201.102-5.573%201.748-8.215%201.805-.097.004-.193.004-.29.004-4.153.003-7.544-1.926-10.964-3.823-.12-.06-.24-.094-.36-.094-.156%200-.313.058-.43.164-.114.106-.183.266-.182.426%200%20.207.112.395.267.52%203.21%202.786%206.73%205.376%2011.46%205.378.094%200%20.188-.002.28-.004%203.01-.07%206.415-1.085%209.058-2.745l.016-.01c.346-.207.69-.44%201.018-.703.205-.15.346-.385.344-.63-.01-.435-.377-.73-.775-.73zm3.666-1.54c-.012-.265-.068-.466-.178-.632l-.01-.016-.015-.02c-.11-.12-.216-.167-.333-.218-.347-.133-.853-.205-1.46-.207-.437%200-.92.04-1.4.143l-.002-.03-.486.16-.01.006-.276.09v.012c-.322.136-.615.302-.89.498-.167.13-.31.297-.317.556-.004.14.066.3.185.395.12.097.257.13.378.13.027%200%20.055%200%20.078-.005l.023-.002.018-.003c.238-.053.586-.085.992-.144.347-.037.72-.066%201.04-.066.225%200%20.43.014.57.045.07.016.12.032.15.05.01.003.016.007.02.01.006.02.016.067.014.14.004.268-.11.767-.266%201.25-.152.487-.338.974-.46%201.298-.03.075-.048.157-.048.247-.003.13.05.287.16.393.11.104.255.145.374.145h.006c.18-.002.332-.07.463-.176%201.236-1.112%201.666-2.888%201.684-3.888l-.003-.16z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.355%2010.384c-.728.055-1.565.11-2.404.222-1.282.17-2.57.39-3.63.896-2.07.838-3.467%202.627-3.467%205.254%200%203.3%202.124%204.98%204.81%204.98.894%200%201.622-.114%202.29-.28%201.064-.336%201.958-.95%203.02-2.07.614.838.782%201.23%201.844%202.125.278.114.558.114.78-.052.673-.56%201.85-1.568%202.462-2.125.28-.224.224-.56.056-.837-.613-.783-1.23-1.455-1.23-2.965V10.5c0-2.125.167-4.082-1.397-5.534-1.285-1.173-3.3-1.62-4.864-1.62h-.672c-2.85.164-5.868%201.395-6.54%204.918-.11.447.226.613.45.67l3.13.39c.336-.055.502-.336.56-.613.278-1.23%201.284-1.845%202.4-1.96h.227c.67%200%201.397.28%201.79.84.447.67.39%201.568.39%202.35v.446zm-.613%206.65c-.393.782-1.063%201.286-1.79%201.456-.112%200-.28.055-.448.055-1.228%200-1.956-.95-1.956-2.35%200-1.788%201.06-2.627%202.402-3.018.727-.167%201.567-.225%202.405-.225v.672c0%201.287.057%202.292-.613%203.41z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampAOLMailSvg,#the_champ_ss_vertical_rearrange .theChampAOLMailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M17.334%2013.26c-2.315%200-4.067%201.8-4.067%204.027%200%202.35%201.824%204.03%204.067%204.03%202.243%200%204.062-1.68%204.062-4.03%200-2.228-1.744-4.027-4.062-4.027zm0%202.127c1-.007%201.82.847%201.82%201.9%200%201.048-.82%201.9-1.82%201.9s-1.818-.853-1.818-1.9c0-1.053.817-1.9%201.818-1.9zm11.59%204.518c0%20.778-.63%201.412-1.41%201.412-.778%200-1.41-.634-1.41-1.412%200-.778.632-1.408%201.41-1.408.78%200%201.41.63%201.41%201.408zm-4.104%201.418h-2.216v-10.28h2.216v10.28zM9.33%2011.04s2.585%206.79%203.862%2010.13c.015.037.028.078.047.132-.06.006-.105.01-.15.01-.83.002-1.664-.003-2.497.004-.12.002-.17-.04-.204-.156-.116-.385-.247-.766-.365-1.147-.032-.11-.074-.153-.193-.153-1.066.006-2.132.006-3.2%200-.1%200-.142.03-.173.13-.127.405-.26.81-.39%201.21-.02.076-.05.117-.136.117-.874-.006-1.75-.004-2.624-.004-.016%200-.036-.005-.07-.012.023-.06.04-.116.064-.17%201.286-3.307%203.91-10.086%203.91-10.086H9.33zm-.023%206.674c-.343-1.147-.68-2.274-1.02-3.4h-.03l-1.017%203.4h2.067z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampAppnetSvg,#the_champ_ss_vertical_rearrange .theChampAppnetSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%207.158L4.156%2025h2.422l2.695-4h13.453l2.695%204h2.425L16%207.158zM10.82%2019L16%2011.2l5.178%207.8H10.82z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBaiduSvg,#the_champ_ss_vertical_rearrange .theChampBaiduSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M8.68%2016.617c2.485-.534%202.145-3.51%202.073-4.16-.123-1.002-1.3-2.752-2.9-2.612-2.013.18-2.307%203.087-2.307%203.087-.273%201.346.65%204.22%203.133%203.685m4.614-4.986c1.373%200%202.482-1.58%202.482-3.533s-1.11-3.533-2.482-3.533-2.485%201.58-2.485%203.533%201.112%203.536%202.485%203.536m5.918.233c1.837.24%203.015-1.72%203.25-3.205.24-1.482-.946-3.207-2.244-3.503-1.305-.3-2.93%201.787-3.08%203.148-.177%201.666.237%203.326%202.073%203.56m7.276%202.496c0-.71-.59-2.85-2.78-2.85-2.193%200-2.483%202.02-2.483%203.447%200%201.362.113%203.263%202.84%203.204%202.72-.06%202.422-3.084%202.422-3.8m-2.78%206.237s-2.84-2.197-4.497-4.572c-2.25-3.503-5.445-2.076-6.513-.298-1.062%201.783-2.717%202.91-2.954%203.21-.24.292-3.43%202.017-2.723%205.165.71%203.146%203.2%203.087%203.2%203.087s1.833.18%203.96-.298c2.132-.475%203.966.116%203.966.116s4.97%201.667%206.33-1.54c1.36-3.207-.768-4.872-.768-4.872%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBalatarinSvg,#the_champ_ss_vertical_rearrange .theChampBalatarinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M29%2017H3v10c0%201.1.9%202%202%202h22c1.1%200%202-.9%202-2V17z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%2022h8v2h-8z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M29%2015H3V5c0-1.1.9-2%202-2h22c1.1%200%202%20.9%202%202v10z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15%205h2v8h-2z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M12%208h8v2h-8z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBibSonomySvg,#the_champ_ss_vertical_rearrange .theChampBibSonomySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%228%22%3E%3C%2Fcircle%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBittyBrowserSvg,#the_champ_ss_vertical_rearrange .theChampBittyBrowserSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4%204h12v12H4z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%204v16H4v8h24V4%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBlinklistSvg,#the_champ_ss_vertical_rearrange .theChampBlinklistSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M3%2010.35v11.3l8.977-5.418%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.55%2027.454c-4.397%200-8.314-2.39-10.205-6.36l1.675-1.04c1.558%203.274%204.906%205.388%208.53%205.388%205.204%200%209.438-4.235%209.438-9.44%200-5.208-4.233-9.443-9.44-9.443-3.804%200-7.22%202.26-8.7%205.763l-1.733-1.057c1.798-4.25%205.82-6.72%2010.434-6.72C23.86%204.546%2029%209.683%2029%2015.996c0%206.317-5.136%2011.457-11.45%2011.457z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M11.425%2018.623c1.02%202.406%203.403%204.09%206.18%204.09%203.71%200%206.715-3.006%206.715-6.712%200-3.71-3.005-6.712-6.714-6.712-2.887%200-5.35%201.823-6.295%204.38l3.958%202.566-3.84%202.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBloggerPostSvg,#the_champ_ss_vertical_rearrange .theChampBloggerPostSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M12.393%206.112h4.367c1.61.19%203.96%201.572%204.824%203.41.238.515.363.594.56%202.12.106.786.16%201.367.51%201.69.495.45%202.333.147%202.696.43l.277.22.166.343.06.277-.04%205.048c-.02%203.43-2.81%206.238-6.244%206.238h-7.177c-3.436%200-6.244-2.81-6.244-6.238v-7.29c-.003-3.434%202.806-6.248%206.242-6.248z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M12.47%2011.22h3.464c.66%200%201.195.534%201.195%201.188%200%20.653-.538%201.195-1.198%201.195H12.47c-.66%200-1.194-.542-1.194-1.195%200-.654.535-1.19%201.195-1.19zm0%207.15h7.038c.654%200%201.19.534%201.19%201.188%200%20.646-.535%201.188-1.19%201.188H12.47c-.66%200-1.194-.54-1.194-1.188%200-.654.535-1.19%201.195-1.19z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBlogMarksSvg,#the_champ_ss_vertical_rearrange .theChampBlogMarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2018.917L17.646%2016l-8.408-4.795V29l13.524-7.71%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2010.71L9.238%203v8.204l8.408%204.794%205.116-2.915%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBoxnetSvg,#the_champ_ss_vertical_rearrange .theChampBoxnetSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.49%2011.36c-1.653%200-3.18.524-4.434%201.41V6.543c0-.893-.725-1.616-1.617-1.616-.895%200-1.617.723-1.617%201.616v11.903c-.017.2.002%201.37.055%201.7.53%203.73%203.73%206.604%207.61%206.604%204.25%200%207.692-3.446%207.692-7.696.003-4.25-3.444-7.695-7.694-7.695zm0%2012.126c-2.45%200-4.434-1.984-4.434-4.432%200-2.45%201.983-4.434%204.433-4.434%202.445%200%204.43%201.984%204.43%204.434%200%202.448-1.984%204.432-4.433%204.432z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBookmarksfrSvg,#the_champ_ss_vertical_rearrange .theChampBookmarksfrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.256%209.5c-2.188-3.79-6.36-.54-7.83%202.205%201.073.86%201.802%202.112%202.006%203.475%203.103.094%208.023-1.873%205.824-5.68-.7-1.212.515.894%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M15.998%203c-4.368%200-3.664%205.23-2.013%207.886%201.283-.505%202.74-.505%204.023%200C19.66%208.23%2020.366%203%2015.998%203z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M9.255%208.294c-1.108-.64-2.42-.918-3.49-.053-.96.78-1.79%202.268-1.617%203.538.352%202.564%204.32%203.468%206.416%203.405.204-1.363.934-2.618%202.01-3.477-.67-1.256-1.898-2.59-3.32-3.41-.71-.41%201.422.82%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.426%2019.05c-.447-.67-.744-1.435-.862-2.23-2.785-.084-7.768%201.608-6.056%205.24%202.023%204.292%206.448%201.248%208.063-1.765-.44-.354-.83-.773-1.142-1.246-.132-.198.314.47%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.202%2021.458c-.064-.12-.13-.232-.198-.342-1.28.503-2.737.503-4.02%200C12.338%2023.766%2011.624%2029%2016%2029c4.218%200%203.67-4.848%202.204-7.542-.064-.12.678%201.243%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.83%2020.088c-.478-2.46-4.326-3.33-6.398-3.27-.204%201.364-.933%202.617-2.007%203.476.934%201.744%202.858%203.73%204.913%204.006%202.043.276%203.853-2.332%203.49-4.212-.153-.8.137.706%200%200z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBuddyMarksSvg,#the_champ_ss_vertical_rearrange .theChampBuddyMarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2219.587%22%20cy%3D%227.172%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M21.374%2011.668h-3.572c-.085%200-.168.01-.253.013.32.68.51%201.437.51%202.236%200%201.476-.62%202.807-1.61%203.756%202.314.69%204.084%202.656%204.486%205.08%203.414-.15%205.382-1.114%205.513-1.18l.282-.145h.03V17.06c0-2.97-2.418-5.39-5.39-5.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2212.413%22%20cy%3D%2213.439%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M14.198%2017.937h-3.57c-2.973%200-5.39%202.417-5.39%205.388v4.37l.01.067.303.095c2.838.885%205.3%201.18%207.33%201.18%203.96%200%206.257-1.13%206.398-1.2l.282-.142h.027v-4.37c0-2.97-2.416-5.388-5.388-5.388z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampCare2NewsSvg,#the_champ_ss_vertical_rearrange .theChampCare2NewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.56%2021.21c1.558.926%203.202%201.637%204.95%202.122.746.207%201.255.03%201.596-.673.102-.21.25-.404.4-.586%202.322-2.812%201.91-6.988-1.06-7.983.66-.517.662-1.2.47-1.92-.156-.59-.265-1.204-.492-1.767-.514-1.278-.694-2.603-.77-3.964-.047-.814-.1-1.767-1-2.068-.875-.292-1.54.357-2.09.977-1.85%202.082-2.9%204.576-3.644%207.22-.372%201.33-.7%202.676-1.077%204.12-.332-.34-.57-.837-.925-.897-.14-.376-.74-2.2.177-3.78.02-.008.033-.022.047-.037l.174-.22c.05-.063.037-.15-.024-.2-.06-.048-.15-.037-.196.025l-.174.223c-.033.04-.035.093-.02.138-.84%201.48-.432%203.147-.23%203.76-.422-.616-1.416-1.792-2.95-2.06-.024-.04-.067-.067-.116-.067h-.28c-.08%200-.143.063-.143.14%200%20.08.062.142.142.142h.28c.023%200%20.043-.007.062-.017%201.54.254%202.51%201.48%202.884%202.046-.38.265.127.786.08%201.276-1.986-1.483-4.072-2.605-6.244-3.572-1.956-.87-3.89-1.798-6.008-2.233-.47-.097-.977-.107-1.25.41-.25.474-.093.936.19%201.34.153.222.347.434.566.585%202.44%201.678%204.303%203.93%206.212%206.145.446.517.896%201.027%201.665%201.065.25.012.455.132.445.446v.123c.047.827.25%201.5.774%202.28%201.365%201.67%203.08%202.88%205.054%203.7.4.167.73.25%201.01.25.685%200%201.018-.517%201.116-1.578.026-1.45-.42-2.82-.863-4.154.352-.27.517.24.788.065.237-.33-.216-.68.018-1.08.172.097.316.173.456.256z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampCiteULikeSvg,#the_champ_ss_vertical_rearrange .theChampCiteULikeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M8%2024h16v2H8zm0-6h16v2H8zm0-6h16v2H8zm0-6h16v2H8z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampDiaryRuSvg,#the_champ_ss_vertical_rearrange .theChampDiaryRuSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203C8.82%203%203%208.82%203%2016s5.82%2013%2013%2013%2013-5.82%2013-13S23.18%203%2016%203zm0%2024.807C9.48%2027.807%204.192%2022.522%204.192%2016%204.192%209.48%209.48%204.193%2016%204.193c3.92%200%207.392%201.91%209.54%204.85h-8.308s-2.863.397-3.18%202.544c-.34%202.293-1.988%202.465-1.988%202.465h-4.69v1.51h9.74c.206-1.086%201.16-1.907%202.305-1.907%201.143%200%202.096.82%202.302%201.908h1.632v.874h-1.632c-.206%201.087-1.16%201.91-2.305%201.91-1.147%200-2.1-.823-2.306-1.91H7.37v1.59h4.69s1.67%200%201.988%202.464c.304%202.356%203.18%202.548%203.18%202.548h8.25c-2.15%202.895-5.596%204.77-9.48%204.77z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampDiasporaSvg,#the_champ_ss_vertical_rearrange .theChampDiasporaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.498%206.49v6.258l-5.953-1.933L6%2015.57l5.95%201.934-3.677%205.063%204.046%202.942L16%2020.442l3.68%205.064%204.047-2.943L20.05%2017.5%2026%2015.57l-1.545-4.755-5.953%201.933V6.49h-5.004z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampDiHITTSvg,#the_champ_ss_vertical_rearrange .theChampDiHITTSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.668%2026.125H19.01l.014-2.145h-.09c-.88%201.558-2.582%202.47-4.345%202.47-3.794%200-6.26-3.643-6.26-8.522%200-5.608%203.055-8.665%206.49-8.665%201.764%200%203.027.705%203.584%201.705h.09V5.552h5.17m-5.17%2010.79c0-2.29-1.353-2.966-2.232-2.966-1.88%200-2.73%202.055-2.73%204.552%200%202.852%201.113%204.35%202.7%204.35.97%200%202.262-.618%202.262-2.88v-3.055z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampDiigoSvg,#the_champ_ss_vertical_rearrange .theChampDiigoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M23.81%204.5c.012.198.035.396.035.593%200%204.807.026%209.615-.01%2014.422-.02%203.248-1.5%205.678-4.393%207.158-4.66%202.385-10.495-.64-11.212-5.836-.76-5.517%203.747-9.56%208.682-9.018%201.114.12%202.16.5%203.134%201.07.517.3.527.295.53-.29.007-2.7.01-5.4.014-8.103h3.22zm-7.914%2019.97c2.608.068%204.82-2.025%204.954-4.552.138-2.626-1.89-5.074-4.727-5.145-2.7-.067-4.867%202-4.973%204.71-.107%202.72%202.13%205.008%204.746%204.988z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampDZoneSvg,#the_champ_ss_vertical_rearrange .theChampDZoneSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.957%2021.422l8.6-10.75h-7.972V9.008H28v1.628l-8.65%2010.69H28v1.667H16.957v-1.57z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4%209.007h5.59c1.898%200%203.37.683%204.416%202.047.933%201.23%201.4%202.81%201.4%204.73%200%201.486-.277%202.83-.828%204.028-.97%202.12-2.64%203.18-5.007%203.18H4V9.007zm5.22%2012.367c.626%200%201.14-.066%201.544-.2.72-.247%201.31-.724%201.768-1.428.367-.565.63-1.29.792-2.17.094-.527.14-1.016.14-1.466%200-1.732-.336-3.078-1.01-4.037-.674-.958-1.758-1.438-3.254-1.438H5.913v10.74H9.22z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampEvernoteSvg,#the_champ_ss_vertical_rearrange .theChampEvernoteSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M7.884%208.573h2.276c.13%200%20.236-.106.236-.235%200%200-.027-1.95-.027-2.494v-.006c0-.445.09-.833.253-1.16l.078-.145c-.007%200-.017.005-.025.014l-4.42%204.385c-.01.007-.014.016-.017.026.09-.046.215-.107.233-.115.386-.175.85-.27%201.41-.27zm17.704-.477c-.18-.968-.755-1.444-1.275-1.632-.56-.203-1.698-.413-3.127-.58-1.15-.137-2.504-.126-3.318-.1-.1-.672-.568-1.285-1.096-1.498-1.404-.564-3.573-.428-4.13-.272-.442.125-.932.378-1.205.768-.183.262-.302.595-.302%201.062%200%20.265.007.886.015%201.44l.014%201.054c0%20.494-.4.896-.896.897H7.99c-.485%200-.856.082-1.14.21-.284.128-.484.303-.636.508-.304.408-.357.912-.355%201.426%200%200%200%20.416.102%201.23.084.63.767%205.02%201.414%206.356.25.522.42.736.912.966%201.1.47%203.61.994%204.787%201.146%201.174.15%201.912.466%202.35-.457.002%200%20.088-.227.208-.56.382-1.156.435-2.18.435-2.924%200-.076.11-.078.11%200%200%20.524-.1%202.38%201.303%202.875.554.197%201.7.373%202.864.51%201.055.12%201.82.537%201.82%203.24%200%201.645-.346%201.87-2.152%201.87-1.464%200-2.02.038-2.02-1.125%200-.938.93-.842%201.616-.842.31%200%20.086-.23.086-.81%200-.576.36-.91.02-.918-2.384-.065-3.786-.004-3.786%202.978%200%202.706%201.036%203.208%204.418%203.208%202.65%200%203.588-.086%204.682-3.483.22-.67.742-2.718%201.06-6.154.197-2.173-.194-8.732-.502-10.388zm-4.622%207.25c-.327-.012-.643.01-.937.056.08-.667.353-1.488%201.332-1.453%201.08.033%201.23%201.056%201.237%201.75-.457-.205-1.02-.335-1.635-.357z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampFarkSvg,#the_champ_ss_vertical_rearrange .theChampFarkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.925%209.77V5.613H9.075v20.772h5.54v-8.31h8.31v-4.153h-8.31V9.77%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampFlipboardSvg,#the_champ_ss_vertical_rearrange .theChampFlipboardSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19%2019H7V7h12v12z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25%2013H7V7h18v6z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13%2025H7V7h6v18z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampFolkdSvg,#the_champ_ss_vertical_rearrange .theChampFolkdSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.956%2010.21c-.183.192-.613.138-.99.14-.102.317-.126.71-.283.974.626.496%201.85.406%202.405.972%201.197-.444.245-1.354.99-2.085%201.134-.14%201.386.588%201.697%201.254-.267.247-.936.102-1.415.14-.26.208-.333.6-.565.833.258.58.96.724%201.133%201.39%201.454-.376%202.954-.71%204.526-.973.41-.43.317-1.356.99-1.53%201.104.213%201.46%201.16%201.556%202.363-.586%201.043-2.1.605-2.546-.277-1.465.226-2.867.52-4.245.832-.11.325.1%201.263-.144%201.81.926.625%201.29-.49%202.122-.42.48.503.495%202.374-.566%202.224-.604-.053-.674-.634-.708-1.25-.432.1-.515-.143-.85-.14-.646.383-.97%201.083-1.695%201.39.094%201.236%201.462.38%202.12.974-.057%201.01-.8%201.345-1.838%201.39-.066-.836.216-1.503-.707-1.945-.94.142-1.37.782-2.264.973-.013.43.175.664.284.972.248.17%201.165-.21%201.415.278-.01%201.075-1.473%201.828-2.264%201.25-.063-.616.382-.734.565-1.11-.267-.293-.405-.713-.564-1.112-.878.342-1.665.773-2.83.834.004.327-.243.41-.14.833-.056.518.68.26.706.696.24%201.26-1.777%201.455-2.12.555-.03-.86%201.033-.65.706-1.808-.713-.274-1.917-.063-2.55-.417-.374.14-.382.644-.706.835.065.4.5.436.425.974-.925.36-2.313.07-2.12-1.114.533-.615%201.49-.076%201.835-.973-.557-.656-1.166-1.263-1.413-2.223-2.124.464-3.843%201.323-5.8%201.947-.187.467-.196%201.107-.566%201.39-.59.148-.625.036-1.273%200-.56-.854-.257-2.7.85-2.78.61-.135.41.523.85.557%202.016-.472%203.78-1.195%205.8-1.667-.433-2.485%203.206-4.233-.85-3.893-.396-1.225.373-2.164%201.13-2.085%201.273.132.285%201.725%201.273%202.224.908-.498%201.543-1.263%202.69-1.53.08-.45-.097-.646-.143-.972-.088-.33-.87.02-.99-.28v-.97c.46-.426%201.663-.355%201.98.138.114.623-.25.773-.706.834.037.427.308.626.424.972.9-.37%202.268-.273%203.538-.277.2-.17.266-.48.28-.836.108-.522-.75-.095-.564-.694.156-1.48%202.125-.633%202.12.416zm1.132%206.256c.652-.378.368-1.677.424-2.64-1.742-1.426-2.885%202.7-.424%202.64zm-6.224%201.53c1.3.173%203.114-1.23%202.97-2.502-.14-1.227-2.55-2.332-3.96-1.67-1.815.858-.44%203.98.99%204.17z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampGoogleBookmarksSvg,#the_champ_ss_vertical_rearrange .theChampGoogleBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-12%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampGoogleGmailSvg,#the_champ_ss_vertical_rearrange .theChampGoogleGmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M2.902%2025.777h26.195V6.223H2.902v19.554zm22.44-4.007v3.806H6.955v-3.6h.032l.093-.034%206.9-5.558%202.09%201.77%201.854-1.63%207.42%205.246zm0-.672l-7.027-4.917%207.028-6.09V21.1zm-1.17-14.67l-.947.905c-2.356%202.284-4.693%204.75-7.17%206.876l-.078.06L8.062%206.39l16.11.033zm-10.597%209.61l-6.62%205.294.016-10.914%206.607%205.62%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampHackerNewsSvg,#the_champ_ss_vertical_rearrange .theChampHackerNewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.275%2017.834v7.13h-2.602v-7.182L9%207.035h3.07l2.967%206.115c.365.755.702%201.51.988%202.316.312-.728.65-1.483%201.042-2.29l3.018-6.142H23l-5.725%2010.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampHatenaSvg,#the_champ_ss_vertical_rearrange .theChampHatenaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M6.96%208.33h7.328c1.247%200%202.206.366%202.875%201.098.666.733%201.002%201.64%201.002%202.72%200%20.91-.24%201.688-.715%202.336-.318.433-.784.773-1.396%201.023.928.266%201.614.72%202.05%201.367.44.645.66%201.457.66%202.432%200%20.795-.157%201.512-.468%202.146-.314.635-.74%201.14-1.28%201.508-.337.23-.842.396-1.52.502-.9.14-1.498.21-1.79.21H6.958V8.328zm3.877%206.017h1.74c.623%200%201.058-.13%201.302-.382.24-.255.364-.623.364-1.104%200-.442-.123-.793-.366-1.045-.245-.25-.67-.377-1.276-.377h-1.767v2.91zm0%206.027h2.038c.69%200%201.176-.145%201.458-.434.282-.29.425-.68.425-1.168%200-.453-.142-.818-.42-1.092-.28-.277-.77-.414-1.47-.414h-2.03v3.108zM21.213%208.52h3.584v9.58h-3.584z%22%2F%3E%3Ccircle%20cx%3D%2223.005%22%20cy%3D%2221.635%22%20r%3D%222.036%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampInstapaperSvg,#the_champ_ss_vertical_rearrange .theChampInstapaperSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.98%205.5h8.04v1.265h-.62c-.582%200-1.004.08-1.264.242-.262.162-.453.39-.572.69-.12.297-.182.874-.182%201.732v13.53c0%20.683.064%201.167.195%201.453.13.286.313.494.55.625.234.13.658.196%201.27.196h.618V26.5H11.98v-1.265h.662c.592%200%201.012-.067%201.258-.203.246-.135.424-.33.533-.587.11-.256.166-.75.166-1.483V9.112c0-.776-.057-1.3-.168-1.567-.11-.268-.287-.465-.533-.59-.247-.128-.667-.19-1.26-.19h-.66V5.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampJamespotSvg,#the_champ_ss_vertical_rearrange .theChampJamespotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.427%2024.073c.677.4%201.633.708%202.927.708%201.848%200%202.587-.83%202.587-2.71V5h2.436v17.13c0%202.745-1.478%204.87-5.176%204.87-1.664%200-2.99-.4-3.573-.678l.8-2.25z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampKakaoSvg,#the_champ_ss_vertical_rearrange .theChampKakaoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.345%206h-8.688c-.583%200-1.06.45-1.06%201.005v8.814c0%20.553.477%201.003%201.06%201.003h4.007c-.03.98-.445%202.056-1.077%202.996-.612.904-1.613%201.796-2.156%202.223l-.04.032c-.117.107-.202.23-.204.405-.003.13.07.232.15.34l.018.022%202.774%202.975s.137.137.247.163c.126.03.27.032.368-.042%204.84-3.56%205.537-8.023%205.66-10.44V7.004C21.403%206.45%2020.93%206%2020.346%206%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampKindleItSvg,#the_champ_ss_vertical_rearrange .theChampKindleItSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.927%2027H10V5h2.927v11.754l5.15-5.47h3.683l-5.814%206.067L22%2027h-3.407l-4.704-7.763-.964%201.037V27z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampKnownSvg,#the_champ_ss_vertical_rearrange .theChampKnownSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.38%202.65c-7.45%200-13.5%206.048-13.5%2013.5s6.05%2013.5%2013.5%2013.5%2013.5-6.048%2013.5-13.5-6.04-13.5-13.5-13.5zm.078%2025.203c-6.387%200-11.57-5.184-11.57-11.572%200-6.385%205.183-11.57%2011.57-11.57%206.387%200%2011.57%205.185%2011.57%2011.57.002%206.39-5.175%2011.574-11.57%2011.574z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.856%2021.758c-.393%200-.694-.07-.903-.2-.154-.094-.4-.402-.74-.91l-3.934-5.964%203.3-3.2c.254-.248.463-.433.625-.54s.293-.178.41-.217c.107-.03.308-.046.593-.046h.207v-.01l.555-.01V8.55h-.648v.01h-6.087v2.12h.548c.31%200%20.494.023.57.077.078.054.117.13.117.23%200%20.055-.023.11-.062.18-.04.068-.154.2-.34.4l-4.257%204.436v-4.08c0-.402.03-.68.1-.826.07-.147.178-.262.34-.34.1-.053.363-.076.78-.076h.44V8.56H8.8v2.113h.563c.34%200%20.58.04.71.116.132.075.225.19.286.345.06.154.084.455.084.91v8.37c0%20.478-.022.78-.076.903-.062.153-.154.26-.285.33-.132.07-.394.11-.78.11H8.8v2.12h6.666v-2.12h-.556c-.363%200-.61-.032-.733-.094s-.216-.162-.278-.31c-.063-.145-.1-.408-.1-.786v-1.543l2.067-2.013%202.4%203.842c.2.332.3.54.3.625%200%20.077-.054.147-.162.2-.108.054-.417.077-.918.077h-.278v2.12h6.89v-2.12h-.24z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampLineSvg,#the_champ_ss_vertical_rearrange .theChampLineSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampLiveJournalSvg,#the_champ_ss_vertical_rearrange .theChampLiveJournalSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7.08%209.882l.004-.008.004-.01c.195-.408.422-.81.674-1.192.264-.393.53-.75.81-1.06%201.493-1.683%203.524-2.692%206.08-3.015l.733-.097.426.61%208.426%2012.14.188.27.027.328.608%207.65.164%202.002-1.854-.783-7.23-3.053-.325-.143-.208-.286-8.422-12.14-.4-.574.3-.638zm2.72.13c-.06.097-.118.202-.18.305l7.79%2011.235%205.05%202.13-.427-5.32-7.79-11.226c-1.603.326-2.884%201.032-3.84%202.102-.227.252-.428.514-.602.775z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M8.186%2010.4c1.283-2.66%203.488-4.192%206.62-4.594l8.423%2012.14.61%207.648-7.23-3.057L8.186%2010.4z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M15.158%206.316l1.89%202.717c-2.597.352-5.354%202.552-6.603%204.62l-1.898-2.735c1.115-2.09%204.27-4.18%206.61-4.602z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.69%2022.727l.283%203.084-2.924-1.235%201.224-1.202%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16.367%2022.11c.846-1.09%202.03-1.903%202.164-3.868l-5.273-7.602c-1.27.914-2.227%201.933-2.83%202.97l5.94%208.5z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.896%2017.537c-1.312.41-2.498%201.232-4.383.67l-5.272-7.6c1.303-.87%202.59-1.412%203.77-1.605l5.887%208.535z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.248%208.95l-1.846.24v-.004c-.244.04-.514.113-.8.214h-.01c-2.726.944-4.46%202.964-5.784%205.454l-.68-1.004c.604-.86%202.52-5.224%208.484-5.94.27.258.415.692.636%201.04z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampMailRuSvg,#the_champ_ss_vertical_rearrange .theChampMailRuSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.975%2015.894c-.134-2.542-2.02-4.07-4.3-4.07h-.086c-2.63%200-4.09%202.068-4.09%204.417%200%202.633%201.765%204.296%204.077%204.296%202.58%200%204.275-1.89%204.4-4.127l-.003-.515zm-4.37-6.346c1.755%200%203.407.776%204.62%201.993v.006c0-.584.395-1.024.94-1.024h.14c.85%200%201.025.808%201.025%201.063l.005%209.08c-.06.595.613.9.988.52%201.457-1.497%203.203-7.702-.907-11.295-3.83-3.352-8.967-2.8-11.7-.916-2.904%202.003-4.764%206.438-2.958%2010.603%201.968%204.543%207.6%205.896%2010.947%204.546%201.696-.684%202.48%201.607.72%202.355-2.66%201.132-10.066%201.02-13.525-4.972-2.338-4.046-2.212-11.163%203.987-14.85%204.74-2.822%2010.99-2.042%2014.762%201.895%203.937%204.117%203.705%2011.82-.137%2014.818-1.742%201.36-4.326.035-4.312-1.947l-.02-.647c-1.21%201.203-2.824%201.905-4.58%201.905-3.475%200-6.53-3.056-6.53-6.528%200-3.508%203.057-6.6%206.533-6.6%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampYahooMessengerSvg,#the_champ_ss_vertical_rearrange .theChampYahooMessengerSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2027c6.074%200%2011-4.926%2011-11%200-6.075-4.926-11-11-11S5%209.925%205%2016c0%206.074%204.926%2011%2011%2011zm2.808-17.016c.792%200%201.434.64%201.434%201.432%200%20.79-.642%201.432-1.434%201.432-.79%200-1.432-.64-1.432-1.432%200-.79.642-1.432%201.432-1.432zm-5.443%200c.79%200%201.433.64%201.433%201.432%200%20.79-.642%201.432-1.433%201.432s-1.433-.64-1.433-1.432c0-.79.642-1.432%201.433-1.432zm-5.1%204.583h15.47v2.866h-.032c-.32%203.975-3.644%207.103-7.702%207.103-4.06%200-7.38-3.128-7.7-7.103h-.033v-2.866zm14.42%202.56H9.13v-1.764h13.554v1.764z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampMendeleySvg,#the_champ_ss_vertical_rearrange .theChampMendeleySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.596%2018.11c-1.466-.087-2.02-.834-1.93-2.164.076-1.113.274-2.22.418-3.327-.023-1.743-.942-3.13-2.488-3.59-1.583-.47-2.97-.14-4.102%201.15-2.322%202.646-2.616%202.634-5.023-.045-1.152-1.28-2.852-1.66-4.39-.98-1.5.667-2.37%202.237-2.15%203.954.08.625.278%201.235.377%201.863.338%202.122-.105%202.7-2.226%203.147-1.066.228-1.913.786-2.05%201.99-.137%201.22.17%202.39%201.404%202.75.77.226%201.853.084%202.55-.32.96-.553%201.064-1.64.733-2.74-.62-2.05-.027-3.04%202.115-3.34.836-.117%201.766-.022%202.568.235%201.302.41%201.692%201.373%201.175%202.65-.45%201.1-.443%202.09.39%202.984.84.9%202.417%201.08%203.518.435%201.12-.657%201.497-1.807%201.042-3.164-.608-1.814-.085-2.783%201.807-3.123.7-.126%201.463-.113%202.16.025%201.834.367%202.377%201.377%201.84%203.188-.504%201.698.196%203.09%201.72%203.43%201.332.295%202.624-.607%202.89-2.022.308-1.633-.593-2.882-2.344-2.988zm-10.71-.085c-1.374-.06-2.453-1.194-2.445-2.57.01-1.46%201.148-2.567%202.61-2.54%201.467.026%202.57%201.177%202.523%202.627-.05%201.43-1.255%202.545-2.687%202.483z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampMeneameSvg,#the_champ_ss_vertical_rearrange .theChampMeneameSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M25.514%2010.435c-1.582%201.605-4.438%201.56-5.502%203.726-.906%202.57%201.23%206.677%202.12%209.02.603%201.21-4.716%202.378-4.065%202.677%203.754-.043%205.354-1.412%204.904-3.094-.43-1.607-2.376-4.816-2.376-7.383.056-1.938%202.222-2.533%203.618-3.322%201.622-.727%203.14-2.35%202.72-4.25-.018-.672-1.187-2.907-.71-1.175.26%201.278.385%202.856-.706%203.802z%22%2F%3E%3Cpath%20d%3D%22M20.632%207.546C18.59%206.492%2016.32%205.854%2013.946%206.41c-1.277.236-2.78.933-3.637%202.1-1.123%201.34-1.166%203.288-.43%204.82.57%201.18%201.44%202.492%202.85%202.688%201.21.182%202.54.018%203.566-.683-1.223.21-2.64.646-3.736-.172-1.842-1.177-2.735-3.85-1.618-5.8.898-1.7%202.705-2.178%204.62-2.262%202.55-.11%204.995%201.345%205.934%201.7.903.285%202.2.645%202.844-.315.376-.446.226-1.674-.08-1.788.09.86-.543%201.943-1.524%201.66-.736-.17-1.41-.523-2.104-.81zM6.94%2015.156c-1.183%201.865-2.264%204.05-1.85%206.322.38%202.375%202.678%204.05%204.963%204.35%202.348.273%204.69.205%207.043.035.397-.385-1.92-.373-2.895-.514-2.224-.254-4.64-.3-6.55-1.623-1.775-1.33-2.01-3.938-1.155-5.863.714-1.814%201.782-3.568%202.903-5.084-.876.727-1.683%201.27-2.456%202.376z%22%2F%3E%3Cpath%20d%3D%22M12.787%2021.02c1.386.107%203.688-.032%204.768.724.387.582-.332%203.802-.084%204.174.553.162%201.186-3.773.836-4.75-.266-.75-4.966-.352-5.518-.147z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampMixiSvg,#the_champ_ss_vertical_rearrange .theChampMixiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M16.09%205.246C9.617%205.246%204%209.216%204%2016.63c0%206.93%207.707%2010.193%2012.758%209.01v2.374S28%2025.054%2028%2015.034c0-6.11-4.505-9.788-11.91-9.788z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.92%2020.024h-1.657v-5.688s-.505-1.586-1.585-1.586c-.9%200-2.525.374-2.525%202.08v5.193h-1.657V14.77c0-1.586-.787-2.09-1.506-2.09-1.15%200-2.727.807-2.727%202.403v4.94H9.605v-9.01h1.657v1.03c.656-.546%201.564-1.03%202.727-1.03%201.222%200%202.09.434%202.604%201.282.73-.677%201.777-1.202%203.082-1.202%201.97%200%203.24%201.788%203.24%203.202v5.73z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampMySpaceSvg,#the_champ_ss_vertical_rearrange .theChampMySpaceSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M24%2017.716c-2.21%200-4%201.79-4%204v1.712h8v-1.713c0-2.21-1.79-4-4-4z%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2212.571%22%20r%3D%223.999%22%2F%3E%3Cpath%20d%3D%22M15.147%2018.31c-2.054%200-3.72%201.66-3.72%203.71v1.408h7.437c.002-.615.002-1.148.002-1.408%200-2.05-1.664-3.71-3.72-3.71z%22%2F%3E%3Cellipse%20cx%3D%2215.147%22%20cy%3D%2213.446%22%20rx%3D%223.719%22%20ry%3D%223.71%22%2F%3E%3Cpath%20d%3D%22M7.148%2018.875C5.41%2018.875%204%2020.277%204%2022.008v1.42h6.295c.002-.636.002-1.178.002-1.42%200-1.73-1.41-3.133-3.15-3.133z%22%2F%3E%3Cellipse%20cx%3D%227.148%22%20cy%3D%2214.58%22%20rx%3D%223.148%22%20ry%3D%223.133%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampNetlogSvg,#the_champ_ss_vertical_rearrange .theChampNetlogSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M9.05%2026.276c1.658-2.12%204.19-3.48%207.03-3.48%202.807%200%205.314%201.324%206.975%203.404%202.678-2.098%204.404-5.353%204.404-9.018%200-6.328-5.13-11.46-11.46-11.46S4.54%2010.855%204.54%2017.182c0%203.713%201.772%207.004%204.51%209.095z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%224.051%22%3E%3C%2Fcircle%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampNetvouzSvg,#the_champ_ss_vertical_rearrange .theChampNetvouzSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.25%208.72v17.184H5.5V6.096h8.396l5.605%205.77v6.43%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.75%2023.28V6.095h4.75v19.808h-8.396L12.5%2020.13v-6.427%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampNewsVineSvg,#the_champ_ss_vertical_rearrange .theChampNewsVineSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.828%2019.498l2.875-2.084c.264.166.572.264.906.264.936%200%201.695-.76%201.695-1.7s-.76-1.7-1.697-1.7c-.94%200-1.702.76-1.702%201.7%200%20.07.006.14.014.21l-2.094%201.516v-4.73l2.896-2.1c.26.158.56.25.885.25.937%200%201.696-.76%201.696-1.7%200-.937-.76-1.7-1.697-1.7-.94%200-1.702.763-1.702%201.7%200%20.08.006.16.018.235l-2.098%201.52V4h-1.656v3.79l-2.11-1.528c.02-.102.032-.205.032-.313%200-.94-.764-1.7-1.7-1.7-.94%200-1.7.76-1.7%201.7%200%20.936.76%201.7%201.7%201.7.296%200%20.573-.078.815-.21l2.962%202.143v4.73L13.06%2012.79c.017-.094.028-.19.028-.286%200-.94-.764-1.7-1.7-1.7-.94%200-1.7.76-1.7%201.7%200%20.938.76%201.7%201.7%201.7.304%200%20.59-.083.84-.224l2.938%202.13v5.044L13.07%2019.63c.014-.092.023-.185.023-.28%200-.938-.76-1.7-1.7-1.7-.938%200-1.697.762-1.697%201.7%200%20.94.76%201.7%201.697%201.7.31%200%20.598-.084.846-.226l2.935%202.124V28h1.655v-1.665l2.87-2.077c.263.166.573.266.91.266.937%200%201.698-.76%201.698-1.7%200-.938-.762-1.698-1.7-1.698s-1.698.76-1.698%201.7c0%20.067.004.134.012.2l-2.092%201.517v-5.045z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampNUjijSvg,#the_champ_ss_vertical_rearrange .theChampNUjijSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M8.223%204h4v4h-4zm0%206.223h4V28h-4zM19.777%204h4v4h-4zm0%206.223h4V28h-4zM14%204h4v4h-4zm0%206.223h4v11.11h-4z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampOdnoklassnikiSvg,#the_champ_ss_vertical_rearrange .theChampOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampOknotizieSvg,#the_champ_ss_vertical_rearrange .theChampOknotizieSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M14.613%2027.342H13.37l-4.796-7.3v7.3h-1.15v-9.25H8.66l4.8%207.3v-7.3h1.154v9.25zm6.015-9.408c1.282%200%202.332.438%203.147%201.312.817.875%201.225%202.03%201.225%203.47%200%201.44-.408%202.597-1.225%203.472-.815.874-1.865%201.312-3.147%201.312-1.286%200-2.34-.44-3.16-1.316-.82-.877-1.23-2.033-1.23-3.467%200-1.44.41-2.596%201.23-3.47.82-.876%201.874-1.313%203.16-1.313zm-.013%208.52c.916%200%201.667-.33%202.252-.985.585-.66.877-1.576.877-2.754s-.29-2.096-.874-2.752c-.583-.656-1.326-.984-2.23-.984-.92%200-1.674.33-2.263.985-.59.656-.884%201.574-.884%202.752%200%201.174.293%202.09.88%202.748.587.658%201.335.988%202.242.988z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M11.39%204.5c1.283%200%202.333.438%203.15%201.312.815.875%201.224%202.032%201.224%203.47%200%201.44-.408%202.597-1.225%203.472-.817.875-1.867%201.312-3.15%201.312-1.286%200-2.34-.438-3.16-1.314C7.41%2011.874%207%2010.72%207%209.282c0-1.438.41-2.595%201.23-3.47S10.105%204.5%2011.39%204.5zm-.012%208.52c.916%200%201.667-.33%202.252-.985.585-.656.877-1.574.877-2.752s-.29-2.095-.874-2.752c-.583-.654-1.326-.982-2.23-.982-.92%200-1.674.328-2.264.984-.59.658-.885%201.576-.885%202.753%200%201.174.293%202.09.88%202.75.587.656%201.335.986%202.242.986zm11.317.89H21.29l-2.154-3.402-.737.738v2.663h-1.183V4.656h1.18V9.9l2.556-2.69h1.486l-2.51%202.495%202.764%204.203z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampOutlookcomSvg,#the_champ_ss_vertical_rearrange .theChampOutlookcomSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%208.29v5.5l1.92%201.208c.053.016.163.016.212%200l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%2015.84l1.755%201.204c.246.183.543%200%20.543%200-.297.183%208.104-5.397%208.104-5.397V21.75c0%201.102-.704%201.562-1.496%201.562H19.52V15.84z%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M10.445%2013.305c-.6%200-1.073.282-1.426.842-.355.56-.53%201.305-.53%202.23%200%20.936.175%201.677.53%202.22.347.546.813.82%201.38.82.59%200%201.055-.266%201.4-.795.344-.53.517-1.266.517-2.206%200-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M2.123%205.5v21.51l16.362%203.428V2.33L2.123%205.5zm10.95%2014.387c-.693.91-1.594%201.367-2.706%201.367-1.082%200-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448%200-1.496.343-2.707%201.037-3.63.693-.926%201.614-1.388%202.754-1.388%201.08%200%201.955.438%202.62%201.324.667.885%201%202.05%201%203.495.004%201.496-.345%202.695-1.034%203.604z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampPinboardSvg,#the_champ_ss_vertical_rearrange .theChampPinboardSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.357%2018.913l-5.01%205.014.88-4.5-6.588-8.075-3.48.044%204.316-4.313%204.035-4.04V6.85l7.796%206.403%204.502-.786-4.876%204.87%209.907%2011.62%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampPlurkSvg,#the_champ_ss_vertical_rearrange .theChampPlurkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.215%2016.016h-8.43V9.7h8.43v6.316zm4.2%204.2V5.5H7.585v21h4.2v-6.285h12.63z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampPocketSvg,#the_champ_ss_vertical_rearrange .theChampPocketSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.005%206.244c2.927%200%205.854-.002%208.782%200%201.396.002%202.195.78%202.188%202.165-.015%202.485.116%204.987-.11%207.456-.75%208.204-10.027%2012.607-16.91%208.064-3.086-2.036-4.82-4.925-4.917-8.672-.06-2.34-.034-4.684-.018-7.025.008-1.214.812-1.98%202.056-1.983%202.975-.01%205.952-.004%208.93-.006zm-5.037%205.483c-.867.093-1.365.396-1.62%201.025-.27.67-.078%201.256.417%201.732%201.688%201.62%203.378%203.238%205.09%204.838.745.695%201.537.687%202.278-.01%201.654-1.55%203.298-3.112%204.93-4.686.827-.797.91-1.714.252-2.38-.694-.704-1.583-.647-2.447.17-1.097%201.04-2.215%202.06-3.266%203.143-.485.494-.77.434-1.227-.025-1.1-1.107-2.234-2.18-3.39-3.225-.325-.29-.77-.447-1.017-.583z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampPrintFriendlySvg,#the_champ_ss_vertical_rearrange .theChampPrintFriendlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M4.467%2014.305h23.065v6.498H4.467v-6.498z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M5.228%2012.83H26.77l.745%201.39H4.485l.743-1.39z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20d%3D%22M9.844%206.516h12.312v7.31H9.844z%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M8.602%2017.37h14.574v3.396H8.602z%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M10.152%2017.97h11.27l2.233%207.515H7.92l2.232-7.514z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampProtopageBookmarksSvg,#the_champ_ss_vertical_rearrange .theChampProtopageBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M17.866%2014.47l7.626-1.048.574%203.078-7.68%201.038%203.54%207.058-2.804%201.418-3.614-7.23-5.873%205.557-2.144-2.29%205.74-5.42-6.86-3.602%201.593-2.697%206.808%203.595%201.3-7.375%203.1.546-1.303%207.374z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampPushaSvg,#the_champ_ss_vertical_rearrange .theChampPushaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M29.27%2022.188V8.068L17.208%2014.92l3.838%202.33C15.716%2024.144%205.898%2029.306%200%2031.964V32h19.635c3.682-4.865%207.03-11.46%207.03-11.46l2.605%201.648z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampQzoneSvg,#the_champ_ss_vertical_rearrange .theChampQzoneSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.996%2012.83l-7.423-.737c-.566-.053-.694-.142-.87-.604l-3.175-7.043c-.29-.598-.765-.598-1.055%200l-3.384%207.04c-.23.393-.337.48-.896.534l-7.188.808c-.66.064-.808.493-.327.952l5.64%205.185c.265.25.27.355.194.697l-1.447%207.61c-.122.65.25.914.823.58l6.44-3.716c.45-.284.868-.293%201.31-.018l6.47%203.734c.575.333.948.07.826-.582L22.83%2021.2c.663-.226%201.306-.5%201.69-.81l-.155.03c-2.29.547-5.437.872-8.355.872-1.08%200-2.126-.038-3.128-.11l-.006.005c-.88-.063-1.727-.15-2.53-.26-.3-.05.026-.242.026-.242l7.758-5.513s.202-.126.002-.153c-3.188-.5-6.723-.625-10.042-.625h-.23c2.245-.51%205.07-.815%208.14-.815%201.81%200%203.538.106%205.11.297-.003.003.887.124%201.31.193.33.05.024.24.024.24l-7.77%205.385s-.18.106.015.135c2.39.338%205.333.458%207.98.492l-.12-.652c-.057-.378%200-.51.286-.78l5.478-5.12c.484-.454.34-.88-.32-.944z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampRediffMyPageSvg,#the_champ_ss_vertical_rearrange .theChampRediffMyPageSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.506%206.004c-.336%200-.64%200-.92-.002L20.926%206c-1.742%200-2.418.07-3.738.923-.744.457-1.38%201.034-1.85%201.517V6.188c0-.102-.08-.184-.182-.184h-5.71c-.1%200-.183.082-.183.184v19.62c0%20.115.115.23.232.18h5.71c.1%200%20.18-.08.18-.18V14.933c0-2.584%201.85-2.916%203.464-2.916h3.703c.1%200%20.182-.08.182-.182V6.188c-.05-.147-.172-.147-.287-.184h.056z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampRenrenSvg,#the_champ_ss_vertical_rearrange .theChampRenrenSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.74%203.266C17.833%203.088%2016.924%203%2016.013%203c-.934%200-1.843.088-2.753.266%200%208.96-.07%2016.176-9.26%2021.662C5.138%2026.566%206.616%2027.96%208.322%2029c3.595-2.168%205.687-4.736%207.69-8.275%202%203.54%204.07%206.107%207.688%208.275%201.706-1.04%203.184-2.434%204.3-4.072-9.19-5.487-9.26-12.7-9.26-21.662z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampSegnaloSvg,#the_champ_ss_vertical_rearrange .theChampSegnaloSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.65%2011.186c-3.252-1.153-6.64-.972-9.263%201.434-2.76%202.53-3.165%207.208-1.02%2010.172%201.948%202.695%206.138%203.82%209.284%203.58.79-.062%205.125-1.776%204.16-2.845-.174-.192-.41-.29-.454-.31-.042-.017-.104-.032-.136-.038-.03-.007-.264-.05-.522-.076-1.88-.21-3.745.424-5.64-.325-.825-.328-1.674-.668-2.207-1.41-.375-.524-1.086-2.715.16-2.31l7.453%202.404c1.705.55%202.792.625%203.288-1.405.978-3.978-1.35-7.545-5.1-8.875zm-.09%206.423c-.93.046-3.202-.94-3.617-1.076-1.11-.358-2.117-.922-.537-2.053%201.9-1.36%204.214.538%204.51%202.45.038.26-.1.665-.357.678z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.33%206.97c-1.732.556-3.154%201.852-4.18%203.317-.01.012-.006.018-.012.03-.006.01-.018.02-.02.03-.664%202.168%204.32.844%205.263.54.75-.242%204.84-1.912%204.61-3.078-.362-1.837-4.385-1.247-5.66-.84zm-4.032%202.375C17.42%208.2%2017.02%207.21%2016.12%206.488c-.645-.518-2.716-1.49-3.358-.383-.317.55.01%201.31.195%201.862.233.696.612%201.322%201.137%201.835.764.747%202.385.972%203.01.01.142-.218.186-.44.19-.448%200-.008.004-.013.004-.02z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampSinaWeiboSvg,#the_champ_ss_vertical_rearrange .theChampSinaWeiboSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4.91%2019.953c0%203.028%203.943%205.484%208.807%205.484%204.862%200%208.806-2.456%208.806-5.484%200-3.027-3.943-5.482-8.806-5.482-4.863%200-8.807%202.457-8.807%205.484%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.92%2024.99c-4.303.424-8.02-1.52-8.3-4.346-.278-2.827%202.987-5.463%207.292-5.888%204.304-.426%208.018%201.52%208.297%204.345.276%202.83-2.985%205.466-7.29%205.89m8.612-9.38c-.367-.11-.62-.186-.428-.665.416-1.046.458-1.946.01-2.59-.846-1.204-3.155-1.14-5.8-.03%200-.004-.834.362-.62-.297.406-1.31.345-2.406-.29-3.04-1.435-1.436-5.255.056-8.53%203.33C4.424%2014.77%203%2017.37%203%2019.618c0%204.3%205.513%206.913%2010.907%206.913%207.07%200%2011.776-4.106%2011.776-7.37%200-1.97-1.66-3.09-3.15-3.55%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.226%207.74C25.52%205.848%2023%205.127%2020.676%205.62h-.002c-.536.115-.88.644-.765%201.182.112.536.642.882%201.18.765%201.653-.35%203.442.164%204.66%201.508%201.212%201.346%201.542%203.18%201.02%204.787-.17.525.118%201.085.64%201.255.524.168%201.088-.118%201.256-.64v-.004c.728-2.262.268-4.84-1.44-6.732m-2.622%202.367c-.832-.922-2.058-1.272-3.192-1.03-.462.098-.756.552-.656%201.017.097.46.553.758%201.016.657v.003c.552-.117%201.15.053%201.562.502.406.453.514%201.066.338%201.606h.004c-.147.45.102.935.55%201.08.45.144.936-.102%201.08-.552.356-1.1.135-2.357-.7-3.28%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampSiteJotSvg,#the_champ_ss_vertical_rearrange .theChampSiteJotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.506%208.08c.645%200%201.3.073%201.967.225.547.12.937.285%201.173.495.236.21.354.5.354.868%200%20.232-.043.414-.13.547-.086.13-.272.29-.56.48-.333.224-.524.49-.573.794-.05.302-.094%201.482-.134%203.54-.018%201.99-.033%203.185-.048%203.583-.015.398-.05.785-.107%201.16-.167%201.098-.504%201.958-1.01%202.582-.414.51-.946.912-1.596%201.205-.65.294-1.335.44-2.054.44-.64%200-1.278-.108-1.92-.325-.64-.22-1.197-.518-1.67-.902-.39-.315-.7-.74-.93-1.278-.23-.538-.347-1.11-.347-1.72%200-.75.184-1.37.546-1.863.362-.492.816-.738%201.363-.738.534%200%20.99.207%201.362.62.375.42.56.938.56%201.555%200%20.155-.033.42-.102.787-.012.075-.018.157-.018.247%200%20.24.066.436.2.586.13.15.307.227.524.227.386%200%20.696-.226.933-.677.234-.45.352-1.043.352-1.78l-.01-1.024-.017-2.76c-.052-1.676-.09-2.662-.116-2.96-.027-.296-.09-.538-.195-.725-.086-.15-.162-.246-.23-.29-.065-.046-.245-.117-.538-.215-.138-.038-.256-.144-.353-.315-.098-.174-.147-.357-.147-.554%200-.405.122-.73.366-.975.245-.242.644-.44%201.196-.59.62-.17%201.254-.25%201.91-.25z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.202%208c.593%200%201.37.19%202.33.574.114.046.207.068.275.068.058%200%20.23-.068.518-.203.093-.047.19-.07.294-.07.383%200%20.79.4%201.22%201.195.43.797.642%201.555.642%202.275%200%20.422-.097.776-.29%201.066-.19.288-.426.434-.702.434-.23%200-.416-.06-.56-.18-.144-.12-.46-.478-.95-1.07-.69-.842-1.368-1.263-2.035-1.263-.322%200-.58.102-.772.305-.192.203-.29.47-.29.8%200%20.653.44%201.146%201.32%201.476%201.192.46%201.954.793%202.287%201.003%201.467.934%202.2%202.305%202.2%204.114%200%201.6-.5%202.907-1.5%203.922C13.163%2023.48%2011.826%2024%2010.176%2024c-.736%200-1.513-.115-2.33-.344-.816-.23-1.406-.497-1.77-.805-.274-.24-.523-.764-.745-1.57-.22-.81-.33-1.596-.33-2.363%200-.367.058-.646.173-.833.143-.24.324-.36.543-.36.22%200%20.43.146.63.438.12.165.405.695.855%201.59.215.42.553.768%201.016%201.048.463.278.94.417%201.437.417.426%200%20.77-.104%201.035-.31.265-.207.396-.472.396-.794%200-.3-.103-.56-.31-.777-.208-.22-.544-.422-1.01-.61-.823-.337-1.45-.648-1.88-.93-.433-.28-.835-.636-1.21-1.063-.908-1.053-1.362-2.246-1.362-3.583%200-.66.12-1.306.355-1.933.236-.627.57-1.17%201-1.628C7.633%208.53%208.812%208%2010.203%208z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampSlashdotSvg,#the_champ_ss_vertical_rearrange .theChampSlashdotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M20.89%206h-5L8.61%2026h5%22%2F%3E%3Ccircle%20cx%3D%2220.89%22%20cy%3D%2223.5%22%20r%3D%222.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampStumpediaSvg,#the_champ_ss_vertical_rearrange .theChampStumpediaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.1%206.875s-.13.717-.293.912c-.163.197-.62.166-1.045%200-.427-.162-.85-.195-1.274-.03-.425.162-.784.134-.717-.356.065-.49.328-.98.688-1.014.36-.03%201.11-.163%201.207-.36.1-.194-.07-.456-.23-.718-.16-.26-.455-.652-.585-.555-.13.1-.49-.13-.62.262-.132.393-.85%201.403-1.373%201.958-.524.557-1.21%201.602-.85%202.253.36.654.947.688%201.733.688h1.165s.273.23.238.523c-.032.293.263%202.71.263%203.527s-.033.85.195.85h.394s-.163.652-.654%202.284c-.49%201.634-.88%202.876-1.144%203.203-.26.326-.424.588-.424%201.01%200%20.428-.13%201.08-.326%201.44-.196.36-.262.883-.523%201.145-.26.262-.26.328-.358.72-.1.392-.526.882-.655%201.075-.127.197-1.817%201.486-1.915%201.848-.098.358%201.577.53%202.31.44.88-.11%201.135-.007%201.388-.436.273-.462.876-1.51%201.192-2.308.18-.457-.1-.816.294-1.34.39-.522%201.01-1.403%201.433-1.895.425-.49.425-1.078.784-1.8.36-.716.785-1.565%201.11-1.5.327.065.75.456%201.34%201.076.588.62.523.947.62%201.534.1.59.228%201.34.523%201.864.295.524.458%201.014.523%201.47.065.458-.1.88%200%201.405.098.52.556.943.816%201.37.26.42%201.272.39%202.12.42.85.035%201.635.167%201.404-.226-.232-.392-1.045-.916-1.275-1.045-.23-.13-.36-.13-.555-.818-.197-.685-.85-3.722-1.047-4.8-.195-1.078-.652-2.385-1.046-3.104-.39-.718-1.6-2.874-1.6-2.874l-.1-.293h.393s-.163-.687-.262-.85c-.098-.163-.49-1.44-.556-2.09-.065-.653-.197-1.077.13-1.044.327.03%201.568%200%202.32-.197.75-.195.686-.26.717-.88.033-.62%200-1.798-.03-2.58-.034-.784-.296-1.015-.49-1.11-.195-.1-.817.13-.914.326-.1.193-.49.488-.132.75.36.262.425.393.62.457.197.066.197.196.197.36%200%20.163.13.913-.196%201.044-.324.132-1.274.034-1.664-.064-.394-.097-1.176-.815-1.502-.782-.325.033-.62-.294-.653-.72-.03-.424.59-.16.687-.814.1-.652.59-2.103-.814-2.45-.784-.192-1.373.425-1.57%201.372-.148.698-.002%201.007.587%201.465z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M15.688%206.736c-.183.46-1.135%202.4-1.135%202.4s-1.28-.712-3.423-.712c-1.877%200-3%20.924-3.324%201.962-.176.562-.552%202.19%201.475%203.18%201.418.69%203.29%201.465%204.755%202.45%201.906%201.276%202.81%203.327%202.454%205.87-.41%202.92-2.444%205.56-5.473%205.822-2.403.208-6-.536-6.91-1.314.275-.816.56-1.975.78-2.634%201.005.493%202.72.936%204.185%201.11%202.758.326%204.152-.908%204.554-2.44.284-1.087.332-2.204-.12-3.013-1.093-1.96-3.375-2.244-5.392-3.24-3.016-1.492-3.69-3.54-3.308-5.774.437-2.546%201.918-3.803%204.18-4.356%202.128-.52%204.59-.305%206.704.69z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampSvejoSvg,#the_champ_ss_vertical_rearrange .theChampSvejoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c.31.16.48.29.48.29l.04-.02c.2-4.96-2.933-7.41-2.933-7.41-.688.87-1.147%202.21-1.387%203.04.26.11.51.24.76.38%202.13%201.19%202.83%202.92%203.04%203.72z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c-.22-.8-.91-2.53-3.04-3.73-.25-.14-.5-.26-.76-.38-2.27-.99-4.73-.96-4.73-.96s0%202.92%203.08%204.95c.48-.17%201-.31%201.57-.42%201.81-.32%203.19.19%203.88.54z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.796%2013.244c-.93%201.82%202.15%206.7%204.75%209.37%201.29%201.33%201.93%202.48%202.19%203.052%202.1.5%203.278-.29%203.42-.4l.068-.12c.932-1.94-1.46-4.818-3.19-7.068-2.138-2.78-2.698-4.832-2.698-4.832l-.01-.01c-3.5-1.582-4.53.008-4.53.008z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.176%2025.274c-.15.11-1.32.9-3.42.4-1.1-.26-2.47-.88-4.07-2.15-2.31-1.818-4.03-3.43-5.2-5.53-.3-.528-.98-.568-1.37.2-.6%201.19-.67%204.5.7%206.44%200%200-.38%201.28.62%202.37.67.73%202.22%201.06%203.06.76l.17-.07s1.73%201.302%204.37.813c2.64-.49%204.33-1.73%205.18-3.24l-.04.007zm3.01-11.4s.38-1.28-.62-2.37c-.67-.73-2.22-1.06-3.06-.76l-.12.05-.04.02s-.17-.13-.48-.28c-.69-.36-2.07-.87-3.89-.53-.57.102-1.09.25-1.57.42-1.68.59-2.83%201.542-3.51%202.66l-.1.17s1.02-1.59%204.53-.01c.84.382%201.83.94%202.98%201.75%202.41%201.692%204.03%203.432%205.2%205.53.3.53.98.57%201.37-.198.61-1.2.68-4.512-.69-6.45z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampSymbalooFeedsSvg,#the_champ_ss_vertical_rearrange .theChampSymbalooFeedsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7%207h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2013.75h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2020.5h4.5V25H7zm6.75%200h4.5V25h-4.5zm6.75%200H25V25h-4.5z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampTuentiSvg,#the_champ_ss_vertical_rearrange .theChampTuentiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.907%2019.803l-2.463%205.062c-.316.655-.974%201.035-1.656%201.035-.272%200-.545-.062-.807-.188-.914-.445-1.293-1.55-.846-2.465l2.46-5.062c.446-.914%201.55-1.293%202.464-.848.917.447%201.295%201.552.85%202.466zm-.053-7.497c-.445.444-1.055.698-1.682.698-.625%200-1.236-.254-1.678-.698-.445-.444-.7-1.054-.7-1.68%200-.626.255-1.236.7-1.68.885-.888%202.478-.888%203.36%200%20.442.444.696%201.054.696%201.68%200%20.626-.254%201.235-.696%201.68zm9.834%207.17c-.443%202.075-1.266%204.003-2.445%205.73-.35.517-.922.794-1.502.794-.35%200-.705-.103-1.02-.316-.826-.564-1.04-1.695-.476-2.52.912-1.34%201.55-2.835%201.896-4.448.378-1.775.378-3.654-.003-5.432-.344-1.61-.982-3.107-1.895-4.445-.564-.83-.35-1.96.48-2.525.827-.564%201.958-.35%202.522.48%201.178%201.727%202%203.655%202.443%205.73.49%202.272.49%204.675%200%206.95z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampTwiddlaSvg,#the_champ_ss_vertical_rearrange .theChampTwiddlaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.5%205.688l1.375%201.375-4.812%204.812L5.688%2010.5C5.256%209.926%205%209.21%205%208.438%205%206.538%206.54%205%208.438%205c.773%200%201.488.256%202.062.688zm2.406%202.406l-4.812%204.812%2012.72%2012.72L27%2027l-1.375-6.188-12.72-12.718zm-.095%203.533l9.627%209.625-1.186%201.183-9.624-9.625%201.186-1.183z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampViadeoSvg,#the_champ_ss_vertical_rearrange .theChampViadeoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15.107%204s2.838%201.88%203.326%207.05c0%200%20.957%2012.423-5.47%2014.858%200%200%20.577.106%201.224.076%200%200%207.947-5.012%204.3-14.742%200%200-1.09-3.396-3.38-7.242zm4.15%208.483s-1.48-2.29.397-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M19.256%2012.483s-1.48-2.29.398-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.486%2019.434c0%201.19-.283%202.3-.85%203.33-.57%201.03-1.34%201.824-2.306%202.383-.967.56-2.03.84-3.186.84-1.156%200-2.22-.28-3.186-.84-.97-.56-1.736-1.354-2.305-2.383-.568-1.03-.853-2.14-.853-3.33%200-1.847.625-3.42%201.87-4.723%201.247-1.3%202.74-1.95%204.474-1.95.824%200%201.596.15%202.313.448.072-.754.336-1.456.63-2.03-.903-.326-1.88-.49-2.936-.49-2.506%200-4.582.92-6.223%202.77-1.494%201.675-2.24%203.65-2.24%205.933%200%202.3.79%204.31%202.367%206.03C9.63%2027.14%2011.664%2028%2014.15%2028c2.48%200%204.508-.86%206.086-2.58%201.578-1.72%202.367-3.73%202.367-6.03%200-1.233-.22-2.374-.65-3.427-.725.445-1.412.678-1.982.797.345.816.517%201.707.517%202.674z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampTypePadPostSvg,#the_champ_ss_vertical_rearrange .theChampTypePadPostSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%208.875c-6.627%200-12%203.225-12%207.202%200%20.844.342%202.21.787%202.407.447.196%201.67.683%2012.523-3.836%200%200-9.096%204.09-9.83%205.85-.253.605%202.154%202.627%208.52%202.627%206.626%200%2012-3.148%2012-7.125s-5.374-7.125-12-7.125z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampWaneloSvg,#the_champ_ss_vertical_rearrange .theChampWaneloSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10%2022h10v10H10zM0%2022h10v10H0z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%2012h12v10H20z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10%2012h10v10H10z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%2012h10v10H0z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%200h12v12H20z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10%200h10v12H10z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h10v12H0z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampWebnewsSvg,#the_champ_ss_vertical_rearrange .theChampWebnewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M6%206h5.48v14.557h1.844V6h5.396v14.557h1.852V6H26v18.196h-1.82V26h-7.25v-1.825h-1.838V26h-7.25v-1.825H6V6z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampWordPressSvg,#the_champ_ss_vertical_rearrange .theChampWordPressSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2214.75%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Cg%3E%3Cpath%20d%3D%22M3.176%2016c0%205.076%202.95%209.462%207.226%2011.54L4.287%2010.78c-.712%201.595-1.11%203.36-1.11%205.22zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008%200-1.18.897-2.278%202.156-2.278.057%200%20.11.008.166.01-2.28-2.09-5.32-3.367-8.658-3.367-4.48%200-8.422%202.3-10.715%205.78.302.01.585.017.826.017%201.343%200%203.418-.164%203.418-.164.69-.042.774.974.084%201.056%200%200-.694.08-1.466.12l4.668%2013.892%202.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058%200%200%202.116.164%203.38.164%201.34%200%203.416-.163%203.416-.163.69-.04.77.976.08%201.058%200%200-.694.08-1.467.12l4.634%2013.785%201.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43%201.766l-3.85%2011.18c1.15.34%202.365.523%203.624.523%201.492%200%202.925-.26%204.26-.728-.035-.056-.066-.113-.093-.177L16.225%2017.12zM27.25%209.848c.055.408.086.848.086%201.318%200%201.3-.242%202.764-.975%204.594l-3.916%2011.324C26.26%2024.86%2028.822%2020.73%2028.822%2016c0-2.23-.568-4.326-1.57-6.152z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16%201.052C7.757%201.052%201.052%207.757%201.052%2016c0%208.242%206.705%2014.948%2014.948%2014.948%208.242%200%2014.948-6.706%2014.948-14.95%200-8.24-6.706-14.946-14.948-14.946zm0%2029.212c-7.865%200-14.264-6.4-14.264-14.265S8.136%201.734%2016%201.734c7.863%200%2014.264%206.398%2014.264%2014.263%200%207.863-6.4%2014.264-14.264%2014.264z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampWykopSvg,#the_champ_ss_vertical_rearrange .theChampWykopSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M28.5%2023.54c0%202.74-2.22%204.96-4.96%204.96H8.46c-2.74%200-4.96-2.22-4.96-4.96V8.46c0-2.74%202.22-4.96%204.96-4.96h15.08c2.74%200%204.96%202.22%204.96%204.96v15.08z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.052%207.997l4.942%2010.043-2.01.99-4.94-10.044-4.018%201.977%204.943%2010.043-2.01.988L9.016%2011.95%205%2013.93l5.93%2012.05L27%2018.073l-5.93-12.05%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampYahooMailSvg,#the_champ_ss_vertical_rearrange .theChampYahooMailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.495%206.097c1.09.31%202.213.28%203.304%200l-7.418%2012.09v9.91c-.468-.155-.935-.22-1.37-.22-.47%200-.937.065-1.404.22v-9.91L7.19%206.097c1.09.28%202.213.31%203.304%200l5.516%208.788%205.483-8.787z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampYahooMessengerSvg,#the_champ_ss_vertical_rearrange .theChampYahooMessengerSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2027c6.074%200%2011-4.926%2011-11%200-6.075-4.926-11-11-11S5%209.925%205%2016c0%206.074%204.926%2011%2011%2011zm2.808-17.016c.792%200%201.434.64%201.434%201.432%200%20.79-.642%201.432-1.434%201.432-.79%200-1.432-.64-1.432-1.432%200-.79.642-1.432%201.432-1.432zm-5.443%200c.79%200%201.433.64%201.433%201.432%200%20.79-.642%201.432-1.433%201.432s-1.433-.64-1.433-1.432c0-.79.642-1.432%201.433-1.432zm-5.1%204.583h15.47v2.866h-.032c-.32%203.975-3.644%207.103-7.702%207.103-4.06%200-7.38-3.128-7.7-7.103h-.033v-2.866zm14.42%202.56H9.13v-1.764h13.554v1.764z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampYoolinkSvg,#the_champ_ss_vertical_rearrange .theChampYoolinkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2212%22%3E%3C%2Fcircle%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M14.47%2023.09v-4.908l-3.604-5.856c-.315-.528-.538-.94-.67-1.235-.13-.294-.196-.552-.196-.77%200-.36.132-.67.398-.93.264-.26.59-.39.98-.39.41%200%20.72.12.933.365.213.243.53.727.953%201.45l2.758%204.697%202.79-4.696c.17-.287.31-.53.423-.727.114-.198.24-.384.378-.556.14-.172.29-.305.46-.396.166-.09.37-.136.613-.136.376%200%20.688.13.94.385.252.258.378.554.378.892%200%20.273-.064.55-.19.82-.127.275-.345.655-.654%201.14l-3.694%205.94v4.91c0%20.64-.14%201.118-.422%201.436-.282.317-.642.475-1.08.475-.44%200-.8-.156-1.076-.47-.275-.312-.412-.793-.412-1.44z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampYouMobSvg,#the_champ_ss_vertical_rearrange .theChampYouMobSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M4%209.498h1.82l2.7%2010.754%202.677-10.754h1.81v12.72h-1.213V14.71c0-.26.003-.69.01-1.29.012-.6.015-1.244.015-1.93L9.14%2022.216H7.88L5.173%2011.49v.39c0%20.31.008.786.02%201.423.013.64.02%201.108.02%201.407v7.507H4V9.497zm15.735%204.372c.604.795.907%201.966.907%203.51%200%201.495-.267%202.73-.8%203.704-.534.975-1.36%201.46-2.48%201.46-.934%200-1.677-.43-2.228-1.292-.55-.86-.825-2.02-.825-3.473%200-1.56.29-2.8.87-3.723.576-.922%201.356-1.383%202.333-1.383.877%200%201.616.4%202.22%201.194zm-.714%206.16c.28-.78.423-1.65.423-2.607%200-.863-.102-1.568-.304-2.11-.323-.853-.875-1.278-1.656-1.278-.695%200-1.2.36-1.518%201.088-.314.727-.474%201.604-.474%202.63%200%20.985.16%201.808.475%202.466.316.654.817.982%201.503.982.755%200%201.27-.39%201.553-1.172zm2.937-10.575h1.118v4.615c.253-.445.554-.785.905-1.02.35-.232.73-.35%201.142-.35.854%200%201.547.397%202.08%201.19.53.796.798%201.966.798%203.512%200%201.467-.26%202.684-.788%203.654-.524.97-1.253%201.454-2.186%201.454-.52%200-.964-.17-1.323-.51-.213-.202-.44-.526-.687-.972v1.188h-1.06V9.456zm4.398%2010.675c.31-.67.463-1.552.463-2.65%200-.974-.154-1.782-.463-2.423-.312-.64-.768-.96-1.368-.96-.527%200-.988.262-1.382.786-.397.525-.595%201.392-.595%202.598%200%20.873.083%201.58.245%202.123.304%201.02.868%201.532%201.7%201.532.622%200%201.088-.334%201.4-1.004z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}
css/share-hover-svg-horizontal.css ADDED
@@ -0,0 +1 @@
 
1
+ @charset "utf-8";.the_champ_horizontal_sharing .theChampYummlySvg:hover,#the_champ_ss_rearrange .theChampYummlySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2010.5%2010%20q%204%20-2%202.5%201%20l%20-1%204%20q%200%202%205%200%20l%201%20-6.5%20m%20-1%206.5%20l%20-1%204%20c%20-3%206%20-6%20-1%200%20-1%20q%201%20-1%205%201%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBufferSvg:hover,#the_champ_ss_rearrange .theChampBufferSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2039%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2015%206%20l%20-10%205%20l%2010%205%20l%2010%20-5%20z%22%20stroke-width%3D%220%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%205.5%2014.5%20l%209.5%205%20l%209.5%20-5%20m%20-19%204%20l%209.5%205%20l%209.5%20-5%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampFacebookSvg:hover,#the_champ_ss_rearrange .theChampFacebookSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M14%2025%20v%20-13%20Q%2013%206%2021%207.5%20M%2010%2014%20L%2020%2014%22%20stroke-width%3D%224%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampDeliciousSvg:hover,#the_champ_ss_rearrange .theChampDeliciousSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22stroke%3A%23fff%3Bfill%3Anone%22%3E%3C%2Frect%3E%0A%3Crect%20x%3D%2215%22%20y%3D%220%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22fill%3A%23fff%3Bstroke%3A%23fff%22%3E%3C%2Frect%3E%0A%3Crect%20x%3D%220%22%20y%3D%2215%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22fill%3A%23fff%3Bstroke%3A%23fff%22%3E%3C%2Frect%3E%0A%3Crect%20x%3D%2215%22%20y%3D%2215%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22stroke%3A%23fff%3Bfill%3Anone%3B%22%3E%3C%2Frect%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampDiggSvg:hover,#the_champ_ss_rearrange .theChampDiggSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2049%2049%22%3E%3Cpath%20d%3D%22M%206%2020%20h%2010%20c%200%20-14%20-9%20-14%20-9%200%20m%205%200%20v%207%20m%20-1%200%20v%20-7%20m%204%20-7%20h%204.5%20v%20-5%20h%208%20v%208%20h%20-8%20v%20-3%20m%208%200%20h%204%20v%205.5%20h%20-3%20v%2012%20h%20-4%20v%20-8%20m%200%208%20h%20-6.5%20v%20-12%20h%20-2%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cellipse%20cx%3D%2211.5%22%20cy%3D%2228.5%22%20rx%3D%224%22%20ry%3D%222%22%20style%3D%22fill%3A%23fff%3B%22%3E%3C%2Fellipse%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampEmailSvg:hover,#the_champ_ss_rearrange .theChampEmailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2043%2043%22%3E%3Cpath%20d%3D%22M%205.5%2011%20h%2023%20v%201%20l%20-11%206%20l%20-11%20-6%20v%20-1%20m%200%202%20l%2011%206%20l%2011%20-6%20v%2011%20h%20-22%20v%20-11%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampFloatitSvg:hover,#the_champ_ss_rearrange .theChampFloatitSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Ccircle%20cx%3D%2215%22%20cy%3D%2215%22%20r%3D%2210%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2215%22%20cy%3D%2215%22%20r%3D%225%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%205%2015%20h%205%20M%2015%205%20v%205%20M%2025%2015%20h%20-5%20M%2015%2025%20v%20-5%22%20stroke-width%3D%223%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampGoogleplusSvg:hover,#the_champ_ss_rearrange .theChampGoogleplusSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2065%2049%20h%2018%20m%20-9%20-9%20v%2018%22%20stroke%3D%22%23fff%22%20stroke-width%3D%225%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampLinkedinSvg:hover,#the_champ_ss_rearrange .theChampLinkedinSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%0A%3Ccircle%20cx%3D%2210%22%20cy%3D%228%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%0A%3Cpath%20d%3D%22M%2010%2011%20v%2011%20m%205%200%20v%20-11%20m%200%203%20q%206%20-3%207%200%20v%208%22%20stroke-width%3D%223%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampMoreSvg:hover,#the_champ_ss_rearrange .theChampMoreSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2215%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2210%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%2010%2015%20L%2020%2010%20m%200%2010%20L%2010%2015%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampPinterestSvg:hover,#the_champ_ss_rearrange .theChampPinterestSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6.5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M%206%2020%20c%20-3%20-4%20-2%20-10%203%20-13.5%20c%204%20-3%2011%20-3%2015%203%20c%203%205%202%2013%20-6%2015%20q%20-4%201%20-6%20-3%20l%20-2%206%20l%20-1.2%202%20l%20-0.8%20-2%20l%202.5%20-11%20c%20-2%20-4%201%20-8%204%20-6%20q%200%205%20-1.4%208.5%20c%203%208%2010%200%209.5%20-4%20c%200%20-9%20-11%20-11%20-14.5%20-4%20c%200%200%20-3%205%200%208%20l%20-1%202%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampPrintSvg:hover,#the_champ_ss_rearrange .theChampPrintSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-6%2038%2038%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%207%2010%20h%202%20v%203%20h%2012%20v%20-3%20h%202%20v%207%20h%20-2%20v%20-3%20h%20-12%20v%203%20h%20-2%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221.8%22%20height%3D%227%22%20width%3D%2210%22%20x%3D%2210%22%20y%3D%225%22%20fill%3D%22none%22%3E%3C%2Frect%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%20height%3D%225%22%20width%3D%228%22%20x%3D%2211%22%20y%3D%2216%22%20fill%3D%22%23fff%22%3E%3C%2Frect%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampRedditSvg:hover,#the_champ_ss_rearrange .theChampRedditSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%3Cellipse%20cx%3D%2215%22%20cy%3D%2219%22%20rx%3D%229%22%20ry%3D%227%22%20style%3D%22stroke%3A%23fff%3Bstroke-width%3A2%22%20fill%3D%22none%22%3E%3C%2Fellipse%3E%3Ccircle%20cx%3D%2211%22%20cy%3D%2217%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2219%22%20cy%3D%2217%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2222%22%20cy%3D%227%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%227%22%20cy%3D%2214%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2223%22%20cy%3D%2214%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%2010%2022%20q%205%203%2010%200%20M%2015%2012%20l%201%20-6%20l%206%201%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampStumbleuponSvg:hover,#the_champ_ss_rearrange .theChampStumbleuponSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Cpath%20d%3D%22M%206.6%2015%20v%201%20c%20-1%207%206.5%207%205.5%200%20v%20-4%20c%20-1%20-7%206%20-7%206%20-2%20v%202.5%20m%200%202.5%20v%201%20c%20-1%207%206.5%207%205.5%200%20v%20-1%22%20stroke-width%3D%223.5%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampTumblrSvg:hover,#the_champ_ss_rearrange .theChampTumblrSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Cpath%20d%3D%22M%2014%207%20v%2014%20q%203%202%206%200%20M%2014%207.5%20q%200%205.5%20-4%205.5%20h%209%22%20stroke-width%3D%223%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampTwitterSvg:hover,#the_champ_ss_rearrange .theChampTwitterSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-8%20-8%2064%2064%22%3E%0A%3Cpath%20d%3D%22M%2038%2019%20q%202%20-1%204%20-5%20q%20-1.5%202%20-4%202%20q%201.5%20-1%203.5%20-5%20q%20-1.5%202%20-5%202%20c%20-5%20-5%20-13%20-2%20-12%206%20q%20-7%201%20-15%20-8%20q%20-2%204%201%209%20q%20-1%200%20-3%20-1%20q%200%205%205%207%20q%20-1%20.5%20-3%200%20q%201%204%208%206%20q%20-5%203%20-11%203%20c%2014%208%2030%200%2031.5%20-14%22%20stroke-width%3D%220.3%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampVkontakteSvg:hover,#the_champ_ss_rearrange .theChampVkontakteSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%0A%3Cpath%20d%3D%22M%202.5%209%20h%204.5%20l%205%207%20v%20-7%20h%204.5%20v%207%20l%205%20-7%20h%205%20l%20-5%207%20l%205%207%20h%20-5%20l%20-5%20-7%20v%207%20h%20-4.5%20q%20-2%200%20-5%20-6%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampYahooSvg:hover,#the_champ_ss_rearrange .theChampYahooSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Cpath%20d%3D%22M%208%2010%20l%207%207%20l%205%20-5%20m%20-4.7%205%20v%203%20h%20-0.5%20v%20-3%20m%208%20-4%20v%205%20m%200%201%20v%201%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%206%2010%20h%206%20m%205%202%20h%206%20m%20-11%209.5%20h%206%22%20stroke-width%3D%221.4%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampXingSvg:hover,#the_champ_ss_rearrange .theChampXingSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%0A%3Cpath%20d%3D%22M%206%209%20h%205%20l%204%204%20l%20-5%207%20h%20-5%20l%205%20-7%20z%20m%2015%20-4%20h%205%20l%20-9%2013%20l%204%208%20h%20-5%20l%20-4%20-8%20z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampWhatsappSvg:hover,#the_champ_ss_rearrange .theChampWhatsappSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Cpath%20id%3D%22arc1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M%2011.579798566743314%2024.396926207859085%20A%2010%2010%200%201%200%206.808479557110079%2020.73576436351046%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%207%2019%20l%20-1%206%20l%206%20-1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2010%2010%20q%20-1%208%208%2011%20c%205%20-1%200%20-6%20-1%20-3%20q%20-4%20-3%20-5%20-5%20c%204%20-2%20-1%20-5%20-1%20-4%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampAIMSvg:hover,#the_champ_ss_rearrange .theChampAIMSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.75%2016.548c-.24.558-.465%201.08-.707%201.646%202.756%201.873%205.48%203.752%207.615%206.453l-2.11%201.43c-.708-.768-1.364-1.59-2.132-2.29-1.047-.958-2.156-1.85-3.557-2.285-.585-.183-.98-.086-1.39.41-1.527%201.862-3.26%203.49-5.476%204.522-1.368.64-1.368.642-1.972-.695-.178-.39-.346-.785-.54-1.226%201.827-.433%203.38-1.246%204.62-2.62.74-.822%201.166-1.716%201.26-2.856.17-2.103.628-4.15%201.828-5.95.534-.797%201.768-.98%202.493-.37.062.046.11.126.13.2.48%201.81%202.08%202.005%203.58%201.63.573-.146%201.118-.404%201.73-.63l1.07%201.483c-1.903%201.718-4.075%201.73-6.444%201.145zm.842-12.054c1.78.02%203.254%201.57%203.22%203.386-.032%201.734-1.62%203.284-3.325%203.246-1.822-.04-3.326-1.604-3.284-3.418.038-1.8%201.555-3.236%203.39-3.214z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampAmazonWishListSvg:hover,#the_champ_ss_rearrange .theChampAmazonWishListSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.998%2023.842c-.127%200-.256.03-.377.086-.132.055-.27.117-.4.172l-.194.08-.25.1v.005c-2.72%201.102-5.573%201.748-8.215%201.805-.097.004-.193.004-.29.004-4.153.003-7.544-1.926-10.964-3.823-.12-.06-.24-.094-.36-.094-.156%200-.313.058-.43.164-.114.106-.183.266-.182.426%200%20.207.112.395.267.52%203.21%202.786%206.73%205.376%2011.46%205.378.094%200%20.188-.002.28-.004%203.01-.07%206.415-1.085%209.058-2.745l.016-.01c.346-.207.69-.44%201.018-.703.205-.15.346-.385.344-.63-.01-.435-.377-.73-.775-.73zm3.666-1.54c-.012-.265-.068-.466-.178-.632l-.01-.016-.015-.02c-.11-.12-.216-.167-.333-.218-.347-.133-.853-.205-1.46-.207-.437%200-.92.04-1.4.143l-.002-.03-.486.16-.01.006-.276.09v.012c-.322.136-.615.302-.89.498-.167.13-.31.297-.317.556-.004.14.066.3.185.395.12.097.257.13.378.13.027%200%20.055%200%20.078-.005l.023-.002.018-.003c.238-.053.586-.085.992-.144.347-.037.72-.066%201.04-.066.225%200%20.43.014.57.045.07.016.12.032.15.05.01.003.016.007.02.01.006.02.016.067.014.14.004.268-.11.767-.266%201.25-.152.487-.338.974-.46%201.298-.03.075-.048.157-.048.247-.003.13.05.287.16.393.11.104.255.145.374.145h.006c.18-.002.332-.07.463-.176%201.236-1.112%201.666-2.888%201.684-3.888l-.003-.16z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.355%2010.384c-.728.055-1.565.11-2.404.222-1.282.17-2.57.39-3.63.896-2.07.838-3.467%202.627-3.467%205.254%200%203.3%202.124%204.98%204.81%204.98.894%200%201.622-.114%202.29-.28%201.064-.336%201.958-.95%203.02-2.07.614.838.782%201.23%201.844%202.125.278.114.558.114.78-.052.673-.56%201.85-1.568%202.462-2.125.28-.224.224-.56.056-.837-.613-.783-1.23-1.455-1.23-2.965V10.5c0-2.125.167-4.082-1.397-5.534-1.285-1.173-3.3-1.62-4.864-1.62h-.672c-2.85.164-5.868%201.395-6.54%204.918-.11.447.226.613.45.67l3.13.39c.336-.055.502-.336.56-.613.278-1.23%201.284-1.845%202.4-1.96h.227c.67%200%201.397.28%201.79.84.447.67.39%201.568.39%202.35v.446zm-.613%206.65c-.393.782-1.063%201.286-1.79%201.456-.112%200-.28.055-.448.055-1.228%200-1.956-.95-1.956-2.35%200-1.788%201.06-2.627%202.402-3.018.727-.167%201.567-.225%202.405-.225v.672c0%201.287.057%202.292-.613%203.41z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampAOLMailSvg:hover,#the_champ_ss_rearrange .theChampAOLMailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M17.334%2013.26c-2.315%200-4.067%201.8-4.067%204.027%200%202.35%201.824%204.03%204.067%204.03%202.243%200%204.062-1.68%204.062-4.03%200-2.228-1.744-4.027-4.062-4.027zm0%202.127c1-.007%201.82.847%201.82%201.9%200%201.048-.82%201.9-1.82%201.9s-1.818-.853-1.818-1.9c0-1.053.817-1.9%201.818-1.9zm11.59%204.518c0%20.778-.63%201.412-1.41%201.412-.778%200-1.41-.634-1.41-1.412%200-.778.632-1.408%201.41-1.408.78%200%201.41.63%201.41%201.408zm-4.104%201.418h-2.216v-10.28h2.216v10.28zM9.33%2011.04s2.585%206.79%203.862%2010.13c.015.037.028.078.047.132-.06.006-.105.01-.15.01-.83.002-1.664-.003-2.497.004-.12.002-.17-.04-.204-.156-.116-.385-.247-.766-.365-1.147-.032-.11-.074-.153-.193-.153-1.066.006-2.132.006-3.2%200-.1%200-.142.03-.173.13-.127.405-.26.81-.39%201.21-.02.076-.05.117-.136.117-.874-.006-1.75-.004-2.624-.004-.016%200-.036-.005-.07-.012.023-.06.04-.116.064-.17%201.286-3.307%203.91-10.086%203.91-10.086H9.33zm-.023%206.674c-.343-1.147-.68-2.274-1.02-3.4h-.03l-1.017%203.4h2.067z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampAppnetSvg:hover,#the_champ_ss_rearrange .theChampAppnetSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%207.158L4.156%2025h2.422l2.695-4h13.453l2.695%204h2.425L16%207.158zM10.82%2019L16%2011.2l5.178%207.8H10.82z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBaiduSvg:hover,#the_champ_ss_rearrange .theChampBaiduSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M8.68%2016.617c2.485-.534%202.145-3.51%202.073-4.16-.123-1.002-1.3-2.752-2.9-2.612-2.013.18-2.307%203.087-2.307%203.087-.273%201.346.65%204.22%203.133%203.685m4.614-4.986c1.373%200%202.482-1.58%202.482-3.533s-1.11-3.533-2.482-3.533-2.485%201.58-2.485%203.533%201.112%203.536%202.485%203.536m5.918.233c1.837.24%203.015-1.72%203.25-3.205.24-1.482-.946-3.207-2.244-3.503-1.305-.3-2.93%201.787-3.08%203.148-.177%201.666.237%203.326%202.073%203.56m7.276%202.496c0-.71-.59-2.85-2.78-2.85-2.193%200-2.483%202.02-2.483%203.447%200%201.362.113%203.263%202.84%203.204%202.72-.06%202.422-3.084%202.422-3.8m-2.78%206.237s-2.84-2.197-4.497-4.572c-2.25-3.503-5.445-2.076-6.513-.298-1.062%201.783-2.717%202.91-2.954%203.21-.24.292-3.43%202.017-2.723%205.165.71%203.146%203.2%203.087%203.2%203.087s1.833.18%203.96-.298c2.132-.475%203.966.116%203.966.116s4.97%201.667%206.33-1.54c1.36-3.207-.768-4.872-.768-4.872%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBalatarinSvg:hover,#the_champ_ss_rearrange .theChampBalatarinSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M29%2017H3v10c0%201.1.9%202%202%202h22c1.1%200%202-.9%202-2V17z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%2022h8v2h-8z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M29%2015H3V5c0-1.1.9-2%202-2h22c1.1%200%202%20.9%202%202v10z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15%205h2v8h-2z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M12%208h8v2h-8z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBibSonomySvg:hover,#the_champ_ss_rearrange .theChampBibSonomySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%228%22%3E%3C%2Fcircle%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBittyBrowserSvg:hover,#the_champ_ss_rearrange .theChampBittyBrowserSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4%204h12v12H4z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%204v16H4v8h24V4%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBlinklistSvg:hover,#the_champ_ss_rearrange .theChampBlinklistSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M3%2010.35v11.3l8.977-5.418%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.55%2027.454c-4.397%200-8.314-2.39-10.205-6.36l1.675-1.04c1.558%203.274%204.906%205.388%208.53%205.388%205.204%200%209.438-4.235%209.438-9.44%200-5.208-4.233-9.443-9.44-9.443-3.804%200-7.22%202.26-8.7%205.763l-1.733-1.057c1.798-4.25%205.82-6.72%2010.434-6.72C23.86%204.546%2029%209.683%2029%2015.996c0%206.317-5.136%2011.457-11.45%2011.457z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M11.425%2018.623c1.02%202.406%203.403%204.09%206.18%204.09%203.71%200%206.715-3.006%206.715-6.712%200-3.71-3.005-6.712-6.714-6.712-2.887%200-5.35%201.823-6.295%204.38l3.958%202.566-3.84%202.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBloggerPostSvg:hover,#the_champ_ss_rearrange .theChampBloggerPostSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M12.393%206.112h4.367c1.61.19%203.96%201.572%204.824%203.41.238.515.363.594.56%202.12.106.786.16%201.367.51%201.69.495.45%202.333.147%202.696.43l.277.22.166.343.06.277-.04%205.048c-.02%203.43-2.81%206.238-6.244%206.238h-7.177c-3.436%200-6.244-2.81-6.244-6.238v-7.29c-.003-3.434%202.806-6.248%206.242-6.248z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M12.47%2011.22h3.464c.66%200%201.195.534%201.195%201.188%200%20.653-.538%201.195-1.198%201.195H12.47c-.66%200-1.194-.542-1.194-1.195%200-.654.535-1.19%201.195-1.19zm0%207.15h7.038c.654%200%201.19.534%201.19%201.188%200%20.646-.535%201.188-1.19%201.188H12.47c-.66%200-1.194-.54-1.194-1.188%200-.654.535-1.19%201.195-1.19z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBlogMarksSvg:hover,#the_champ_ss_rearrange .theChampBlogMarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2018.917L17.646%2016l-8.408-4.795V29l13.524-7.71%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2010.71L9.238%203v8.204l8.408%204.794%205.116-2.915%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBoxnetSvg:hover,#the_champ_ss_rearrange .theChampBoxnetSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.49%2011.36c-1.653%200-3.18.524-4.434%201.41V6.543c0-.893-.725-1.616-1.617-1.616-.895%200-1.617.723-1.617%201.616v11.903c-.017.2.002%201.37.055%201.7.53%203.73%203.73%206.604%207.61%206.604%204.25%200%207.692-3.446%207.692-7.696.003-4.25-3.444-7.695-7.694-7.695zm0%2012.126c-2.45%200-4.434-1.984-4.434-4.432%200-2.45%201.983-4.434%204.433-4.434%202.445%200%204.43%201.984%204.43%204.434%200%202.448-1.984%204.432-4.433%204.432z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBookmarksfrSvg:hover,#the_champ_ss_rearrange .theChampBookmarksfrSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.256%209.5c-2.188-3.79-6.36-.54-7.83%202.205%201.073.86%201.802%202.112%202.006%203.475%203.103.094%208.023-1.873%205.824-5.68-.7-1.212.515.894%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M15.998%203c-4.368%200-3.664%205.23-2.013%207.886%201.283-.505%202.74-.505%204.023%200C19.66%208.23%2020.366%203%2015.998%203z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M9.255%208.294c-1.108-.64-2.42-.918-3.49-.053-.96.78-1.79%202.268-1.617%203.538.352%202.564%204.32%203.468%206.416%203.405.204-1.363.934-2.618%202.01-3.477-.67-1.256-1.898-2.59-3.32-3.41-.71-.41%201.422.82%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.426%2019.05c-.447-.67-.744-1.435-.862-2.23-2.785-.084-7.768%201.608-6.056%205.24%202.023%204.292%206.448%201.248%208.063-1.765-.44-.354-.83-.773-1.142-1.246-.132-.198.314.47%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.202%2021.458c-.064-.12-.13-.232-.198-.342-1.28.503-2.737.503-4.02%200C12.338%2023.766%2011.624%2029%2016%2029c4.218%200%203.67-4.848%202.204-7.542-.064-.12.678%201.243%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.83%2020.088c-.478-2.46-4.326-3.33-6.398-3.27-.204%201.364-.933%202.617-2.007%203.476.934%201.744%202.858%203.73%204.913%204.006%202.043.276%203.853-2.332%203.49-4.212-.153-.8.137.706%200%200z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampBuddyMarksSvg:hover,#the_champ_ss_rearrange .theChampBuddyMarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2219.587%22%20cy%3D%227.172%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M21.374%2011.668h-3.572c-.085%200-.168.01-.253.013.32.68.51%201.437.51%202.236%200%201.476-.62%202.807-1.61%203.756%202.314.69%204.084%202.656%204.486%205.08%203.414-.15%205.382-1.114%205.513-1.18l.282-.145h.03V17.06c0-2.97-2.418-5.39-5.39-5.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2212.413%22%20cy%3D%2213.439%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M14.198%2017.937h-3.57c-2.973%200-5.39%202.417-5.39%205.388v4.37l.01.067.303.095c2.838.885%205.3%201.18%207.33%201.18%203.96%200%206.257-1.13%206.398-1.2l.282-.142h.027v-4.37c0-2.97-2.416-5.388-5.388-5.388z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampCare2NewsSvg:hover,#the_champ_ss_rearrange .theChampCare2NewsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.56%2021.21c1.558.926%203.202%201.637%204.95%202.122.746.207%201.255.03%201.596-.673.102-.21.25-.404.4-.586%202.322-2.812%201.91-6.988-1.06-7.983.66-.517.662-1.2.47-1.92-.156-.59-.265-1.204-.492-1.767-.514-1.278-.694-2.603-.77-3.964-.047-.814-.1-1.767-1-2.068-.875-.292-1.54.357-2.09.977-1.85%202.082-2.9%204.576-3.644%207.22-.372%201.33-.7%202.676-1.077%204.12-.332-.34-.57-.837-.925-.897-.14-.376-.74-2.2.177-3.78.02-.008.033-.022.047-.037l.174-.22c.05-.063.037-.15-.024-.2-.06-.048-.15-.037-.196.025l-.174.223c-.033.04-.035.093-.02.138-.84%201.48-.432%203.147-.23%203.76-.422-.616-1.416-1.792-2.95-2.06-.024-.04-.067-.067-.116-.067h-.28c-.08%200-.143.063-.143.14%200%20.08.062.142.142.142h.28c.023%200%20.043-.007.062-.017%201.54.254%202.51%201.48%202.884%202.046-.38.265.127.786.08%201.276-1.986-1.483-4.072-2.605-6.244-3.572-1.956-.87-3.89-1.798-6.008-2.233-.47-.097-.977-.107-1.25.41-.25.474-.093.936.19%201.34.153.222.347.434.566.585%202.44%201.678%204.303%203.93%206.212%206.145.446.517.896%201.027%201.665%201.065.25.012.455.132.445.446v.123c.047.827.25%201.5.774%202.28%201.365%201.67%203.08%202.88%205.054%203.7.4.167.73.25%201.01.25.685%200%201.018-.517%201.116-1.578.026-1.45-.42-2.82-.863-4.154.352-.27.517.24.788.065.237-.33-.216-.68.018-1.08.172.097.316.173.456.256z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampCiteULikeSvg:hover,#the_champ_ss_rearrange .theChampCiteULikeSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M8%2024h16v2H8zm0-6h16v2H8zm0-6h16v2H8zm0-6h16v2H8z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampDiaryRuSvg:hover,#the_champ_ss_rearrange .theChampDiaryRuSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203C8.82%203%203%208.82%203%2016s5.82%2013%2013%2013%2013-5.82%2013-13S23.18%203%2016%203zm0%2024.807C9.48%2027.807%204.192%2022.522%204.192%2016%204.192%209.48%209.48%204.193%2016%204.193c3.92%200%207.392%201.91%209.54%204.85h-8.308s-2.863.397-3.18%202.544c-.34%202.293-1.988%202.465-1.988%202.465h-4.69v1.51h9.74c.206-1.086%201.16-1.907%202.305-1.907%201.143%200%202.096.82%202.302%201.908h1.632v.874h-1.632c-.206%201.087-1.16%201.91-2.305%201.91-1.147%200-2.1-.823-2.306-1.91H7.37v1.59h4.69s1.67%200%201.988%202.464c.304%202.356%203.18%202.548%203.18%202.548h8.25c-2.15%202.895-5.596%204.77-9.48%204.77z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampDiasporaSvg:hover,#the_champ_ss_rearrange .theChampDiasporaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.498%206.49v6.258l-5.953-1.933L6%2015.57l5.95%201.934-3.677%205.063%204.046%202.942L16%2020.442l3.68%205.064%204.047-2.943L20.05%2017.5%2026%2015.57l-1.545-4.755-5.953%201.933V6.49h-5.004z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampDiHITTSvg:hover,#the_champ_ss_rearrange .theChampDiHITTSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.668%2026.125H19.01l.014-2.145h-.09c-.88%201.558-2.582%202.47-4.345%202.47-3.794%200-6.26-3.643-6.26-8.522%200-5.608%203.055-8.665%206.49-8.665%201.764%200%203.027.705%203.584%201.705h.09V5.552h5.17m-5.17%2010.79c0-2.29-1.353-2.966-2.232-2.966-1.88%200-2.73%202.055-2.73%204.552%200%202.852%201.113%204.35%202.7%204.35.97%200%202.262-.618%202.262-2.88v-3.055z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampDiigoSvg:hover,#the_champ_ss_rearrange .theChampDiigoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M23.81%204.5c.012.198.035.396.035.593%200%204.807.026%209.615-.01%2014.422-.02%203.248-1.5%205.678-4.393%207.158-4.66%202.385-10.495-.64-11.212-5.836-.76-5.517%203.747-9.56%208.682-9.018%201.114.12%202.16.5%203.134%201.07.517.3.527.295.53-.29.007-2.7.01-5.4.014-8.103h3.22zm-7.914%2019.97c2.608.068%204.82-2.025%204.954-4.552.138-2.626-1.89-5.074-4.727-5.145-2.7-.067-4.867%202-4.973%204.71-.107%202.72%202.13%205.008%204.746%204.988z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampDZoneSvg:hover,#the_champ_ss_rearrange .theChampDZoneSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.957%2021.422l8.6-10.75h-7.972V9.008H28v1.628l-8.65%2010.69H28v1.667H16.957v-1.57z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4%209.007h5.59c1.898%200%203.37.683%204.416%202.047.933%201.23%201.4%202.81%201.4%204.73%200%201.486-.277%202.83-.828%204.028-.97%202.12-2.64%203.18-5.007%203.18H4V9.007zm5.22%2012.367c.626%200%201.14-.066%201.544-.2.72-.247%201.31-.724%201.768-1.428.367-.565.63-1.29.792-2.17.094-.527.14-1.016.14-1.466%200-1.732-.336-3.078-1.01-4.037-.674-.958-1.758-1.438-3.254-1.438H5.913v10.74H9.22z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampEvernoteSvg:hover,#the_champ_ss_rearrange .theChampEvernoteSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M7.884%208.573h2.276c.13%200%20.236-.106.236-.235%200%200-.027-1.95-.027-2.494v-.006c0-.445.09-.833.253-1.16l.078-.145c-.007%200-.017.005-.025.014l-4.42%204.385c-.01.007-.014.016-.017.026.09-.046.215-.107.233-.115.386-.175.85-.27%201.41-.27zm17.704-.477c-.18-.968-.755-1.444-1.275-1.632-.56-.203-1.698-.413-3.127-.58-1.15-.137-2.504-.126-3.318-.1-.1-.672-.568-1.285-1.096-1.498-1.404-.564-3.573-.428-4.13-.272-.442.125-.932.378-1.205.768-.183.262-.302.595-.302%201.062%200%20.265.007.886.015%201.44l.014%201.054c0%20.494-.4.896-.896.897H7.99c-.485%200-.856.082-1.14.21-.284.128-.484.303-.636.508-.304.408-.357.912-.355%201.426%200%200%200%20.416.102%201.23.084.63.767%205.02%201.414%206.356.25.522.42.736.912.966%201.1.47%203.61.994%204.787%201.146%201.174.15%201.912.466%202.35-.457.002%200%20.088-.227.208-.56.382-1.156.435-2.18.435-2.924%200-.076.11-.078.11%200%200%20.524-.1%202.38%201.303%202.875.554.197%201.7.373%202.864.51%201.055.12%201.82.537%201.82%203.24%200%201.645-.346%201.87-2.152%201.87-1.464%200-2.02.038-2.02-1.125%200-.938.93-.842%201.616-.842.31%200%20.086-.23.086-.81%200-.576.36-.91.02-.918-2.384-.065-3.786-.004-3.786%202.978%200%202.706%201.036%203.208%204.418%203.208%202.65%200%203.588-.086%204.682-3.483.22-.67.742-2.718%201.06-6.154.197-2.173-.194-8.732-.502-10.388zm-4.622%207.25c-.327-.012-.643.01-.937.056.08-.667.353-1.488%201.332-1.453%201.08.033%201.23%201.056%201.237%201.75-.457-.205-1.02-.335-1.635-.357z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampFarkSvg:hover,#the_champ_ss_rearrange .theChampFarkSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.925%209.77V5.613H9.075v20.772h5.54v-8.31h8.31v-4.153h-8.31V9.77%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampFlipboardSvg:hover,#the_champ_ss_rearrange .theChampFlipboardSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19%2019H7V7h12v12z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25%2013H7V7h18v6z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13%2025H7V7h6v18z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampFolkdSvg:hover,#the_champ_ss_rearrange .theChampFolkdSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.956%2010.21c-.183.192-.613.138-.99.14-.102.317-.126.71-.283.974.626.496%201.85.406%202.405.972%201.197-.444.245-1.354.99-2.085%201.134-.14%201.386.588%201.697%201.254-.267.247-.936.102-1.415.14-.26.208-.333.6-.565.833.258.58.96.724%201.133%201.39%201.454-.376%202.954-.71%204.526-.973.41-.43.317-1.356.99-1.53%201.104.213%201.46%201.16%201.556%202.363-.586%201.043-2.1.605-2.546-.277-1.465.226-2.867.52-4.245.832-.11.325.1%201.263-.144%201.81.926.625%201.29-.49%202.122-.42.48.503.495%202.374-.566%202.224-.604-.053-.674-.634-.708-1.25-.432.1-.515-.143-.85-.14-.646.383-.97%201.083-1.695%201.39.094%201.236%201.462.38%202.12.974-.057%201.01-.8%201.345-1.838%201.39-.066-.836.216-1.503-.707-1.945-.94.142-1.37.782-2.264.973-.013.43.175.664.284.972.248.17%201.165-.21%201.415.278-.01%201.075-1.473%201.828-2.264%201.25-.063-.616.382-.734.565-1.11-.267-.293-.405-.713-.564-1.112-.878.342-1.665.773-2.83.834.004.327-.243.41-.14.833-.056.518.68.26.706.696.24%201.26-1.777%201.455-2.12.555-.03-.86%201.033-.65.706-1.808-.713-.274-1.917-.063-2.55-.417-.374.14-.382.644-.706.835.065.4.5.436.425.974-.925.36-2.313.07-2.12-1.114.533-.615%201.49-.076%201.835-.973-.557-.656-1.166-1.263-1.413-2.223-2.124.464-3.843%201.323-5.8%201.947-.187.467-.196%201.107-.566%201.39-.59.148-.625.036-1.273%200-.56-.854-.257-2.7.85-2.78.61-.135.41.523.85.557%202.016-.472%203.78-1.195%205.8-1.667-.433-2.485%203.206-4.233-.85-3.893-.396-1.225.373-2.164%201.13-2.085%201.273.132.285%201.725%201.273%202.224.908-.498%201.543-1.263%202.69-1.53.08-.45-.097-.646-.143-.972-.088-.33-.87.02-.99-.28v-.97c.46-.426%201.663-.355%201.98.138.114.623-.25.773-.706.834.037.427.308.626.424.972.9-.37%202.268-.273%203.538-.277.2-.17.266-.48.28-.836.108-.522-.75-.095-.564-.694.156-1.48%202.125-.633%202.12.416zm1.132%206.256c.652-.378.368-1.677.424-2.64-1.742-1.426-2.885%202.7-.424%202.64zm-6.224%201.53c1.3.173%203.114-1.23%202.97-2.502-.14-1.227-2.55-2.332-3.96-1.67-1.815.858-.44%203.98.99%204.17z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampGoogleBookmarksSvg:hover,#the_champ_ss_rearrange .theChampGoogleBookmarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-12%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampGoogleGmailSvg:hover,#the_champ_ss_rearrange .theChampGoogleGmailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M2.902%2025.777h26.195V6.223H2.902v19.554zm22.44-4.007v3.806H6.955v-3.6h.032l.093-.034%206.9-5.558%202.09%201.77%201.854-1.63%207.42%205.246zm0-.672l-7.027-4.917%207.028-6.09V21.1zm-1.17-14.67l-.947.905c-2.356%202.284-4.693%204.75-7.17%206.876l-.078.06L8.062%206.39l16.11.033zm-10.597%209.61l-6.62%205.294.016-10.914%206.607%205.62%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampHackerNewsSvg:hover,#the_champ_ss_rearrange .theChampHackerNewsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.275%2017.834v7.13h-2.602v-7.182L9%207.035h3.07l2.967%206.115c.365.755.702%201.51.988%202.316.312-.728.65-1.483%201.042-2.29l3.018-6.142H23l-5.725%2010.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampHatenaSvg:hover,#the_champ_ss_rearrange .theChampHatenaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M6.96%208.33h7.328c1.247%200%202.206.366%202.875%201.098.666.733%201.002%201.64%201.002%202.72%200%20.91-.24%201.688-.715%202.336-.318.433-.784.773-1.396%201.023.928.266%201.614.72%202.05%201.367.44.645.66%201.457.66%202.432%200%20.795-.157%201.512-.468%202.146-.314.635-.74%201.14-1.28%201.508-.337.23-.842.396-1.52.502-.9.14-1.498.21-1.79.21H6.958V8.328zm3.877%206.017h1.74c.623%200%201.058-.13%201.302-.382.24-.255.364-.623.364-1.104%200-.442-.123-.793-.366-1.045-.245-.25-.67-.377-1.276-.377h-1.767v2.91zm0%206.027h2.038c.69%200%201.176-.145%201.458-.434.282-.29.425-.68.425-1.168%200-.453-.142-.818-.42-1.092-.28-.277-.77-.414-1.47-.414h-2.03v3.108zM21.213%208.52h3.584v9.58h-3.584z%22%2F%3E%3Ccircle%20cx%3D%2223.005%22%20cy%3D%2221.635%22%20r%3D%222.036%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampInstapaperSvg:hover,#the_champ_ss_rearrange .theChampInstapaperSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.98%205.5h8.04v1.265h-.62c-.582%200-1.004.08-1.264.242-.262.162-.453.39-.572.69-.12.297-.182.874-.182%201.732v13.53c0%20.683.064%201.167.195%201.453.13.286.313.494.55.625.234.13.658.196%201.27.196h.618V26.5H11.98v-1.265h.662c.592%200%201.012-.067%201.258-.203.246-.135.424-.33.533-.587.11-.256.166-.75.166-1.483V9.112c0-.776-.057-1.3-.168-1.567-.11-.268-.287-.465-.533-.59-.247-.128-.667-.19-1.26-.19h-.66V5.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampJamespotSvg:hover,#the_champ_ss_rearrange .theChampJamespotSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.427%2024.073c.677.4%201.633.708%202.927.708%201.848%200%202.587-.83%202.587-2.71V5h2.436v17.13c0%202.745-1.478%204.87-5.176%204.87-1.664%200-2.99-.4-3.573-.678l.8-2.25z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampKakaoSvg:hover,#the_champ_ss_rearrange .theChampKakaoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.345%206h-8.688c-.583%200-1.06.45-1.06%201.005v8.814c0%20.553.477%201.003%201.06%201.003h4.007c-.03.98-.445%202.056-1.077%202.996-.612.904-1.613%201.796-2.156%202.223l-.04.032c-.117.107-.202.23-.204.405-.003.13.07.232.15.34l.018.022%202.774%202.975s.137.137.247.163c.126.03.27.032.368-.042%204.84-3.56%205.537-8.023%205.66-10.44V7.004C21.403%206.45%2020.93%206%2020.346%206%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampKindleItSvg:hover,#the_champ_ss_rearrange .theChampKindleItSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.927%2027H10V5h2.927v11.754l5.15-5.47h3.683l-5.814%206.067L22%2027h-3.407l-4.704-7.763-.964%201.037V27z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampKnownSvg:hover,#the_champ_ss_rearrange .theChampKnownSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.38%202.65c-7.45%200-13.5%206.048-13.5%2013.5s6.05%2013.5%2013.5%2013.5%2013.5-6.048%2013.5-13.5-6.04-13.5-13.5-13.5zm.078%2025.203c-6.387%200-11.57-5.184-11.57-11.572%200-6.385%205.183-11.57%2011.57-11.57%206.387%200%2011.57%205.185%2011.57%2011.57.002%206.39-5.175%2011.574-11.57%2011.574z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.856%2021.758c-.393%200-.694-.07-.903-.2-.154-.094-.4-.402-.74-.91l-3.934-5.964%203.3-3.2c.254-.248.463-.433.625-.54s.293-.178.41-.217c.107-.03.308-.046.593-.046h.207v-.01l.555-.01V8.55h-.648v.01h-6.087v2.12h.548c.31%200%20.494.023.57.077.078.054.117.13.117.23%200%20.055-.023.11-.062.18-.04.068-.154.2-.34.4l-4.257%204.436v-4.08c0-.402.03-.68.1-.826.07-.147.178-.262.34-.34.1-.053.363-.076.78-.076h.44V8.56H8.8v2.113h.563c.34%200%20.58.04.71.116.132.075.225.19.286.345.06.154.084.455.084.91v8.37c0%20.478-.022.78-.076.903-.062.153-.154.26-.285.33-.132.07-.394.11-.78.11H8.8v2.12h6.666v-2.12h-.556c-.363%200-.61-.032-.733-.094s-.216-.162-.278-.31c-.063-.145-.1-.408-.1-.786v-1.543l2.067-2.013%202.4%203.842c.2.332.3.54.3.625%200%20.077-.054.147-.162.2-.108.054-.417.077-.918.077h-.278v2.12h6.89v-2.12h-.24z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampLineSvg:hover,#the_champ_ss_rearrange .theChampLineSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampLiveJournalSvg:hover,#the_champ_ss_rearrange .theChampLiveJournalSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7.08%209.882l.004-.008.004-.01c.195-.408.422-.81.674-1.192.264-.393.53-.75.81-1.06%201.493-1.683%203.524-2.692%206.08-3.015l.733-.097.426.61%208.426%2012.14.188.27.027.328.608%207.65.164%202.002-1.854-.783-7.23-3.053-.325-.143-.208-.286-8.422-12.14-.4-.574.3-.638zm2.72.13c-.06.097-.118.202-.18.305l7.79%2011.235%205.05%202.13-.427-5.32-7.79-11.226c-1.603.326-2.884%201.032-3.84%202.102-.227.252-.428.514-.602.775z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M8.186%2010.4c1.283-2.66%203.488-4.192%206.62-4.594l8.423%2012.14.61%207.648-7.23-3.057L8.186%2010.4z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M15.158%206.316l1.89%202.717c-2.597.352-5.354%202.552-6.603%204.62l-1.898-2.735c1.115-2.09%204.27-4.18%206.61-4.602z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.69%2022.727l.283%203.084-2.924-1.235%201.224-1.202%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16.367%2022.11c.846-1.09%202.03-1.903%202.164-3.868l-5.273-7.602c-1.27.914-2.227%201.933-2.83%202.97l5.94%208.5z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.896%2017.537c-1.312.41-2.498%201.232-4.383.67l-5.272-7.6c1.303-.87%202.59-1.412%203.77-1.605l5.887%208.535z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.248%208.95l-1.846.24v-.004c-.244.04-.514.113-.8.214h-.01c-2.726.944-4.46%202.964-5.784%205.454l-.68-1.004c.604-.86%202.52-5.224%208.484-5.94.27.258.415.692.636%201.04z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampMailRuSvg:hover,#the_champ_ss_rearrange .theChampMailRuSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.975%2015.894c-.134-2.542-2.02-4.07-4.3-4.07h-.086c-2.63%200-4.09%202.068-4.09%204.417%200%202.633%201.765%204.296%204.077%204.296%202.58%200%204.275-1.89%204.4-4.127l-.003-.515zm-4.37-6.346c1.755%200%203.407.776%204.62%201.993v.006c0-.584.395-1.024.94-1.024h.14c.85%200%201.025.808%201.025%201.063l.005%209.08c-.06.595.613.9.988.52%201.457-1.497%203.203-7.702-.907-11.295-3.83-3.352-8.967-2.8-11.7-.916-2.904%202.003-4.764%206.438-2.958%2010.603%201.968%204.543%207.6%205.896%2010.947%204.546%201.696-.684%202.48%201.607.72%202.355-2.66%201.132-10.066%201.02-13.525-4.972-2.338-4.046-2.212-11.163%203.987-14.85%204.74-2.822%2010.99-2.042%2014.762%201.895%203.937%204.117%203.705%2011.82-.137%2014.818-1.742%201.36-4.326.035-4.312-1.947l-.02-.647c-1.21%201.203-2.824%201.905-4.58%201.905-3.475%200-6.53-3.056-6.53-6.528%200-3.508%203.057-6.6%206.533-6.6%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampMendeleySvg:hover,#the_champ_ss_rearrange .theChampMendeleySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.596%2018.11c-1.466-.087-2.02-.834-1.93-2.164.076-1.113.274-2.22.418-3.327-.023-1.743-.942-3.13-2.488-3.59-1.583-.47-2.97-.14-4.102%201.15-2.322%202.646-2.616%202.634-5.023-.045-1.152-1.28-2.852-1.66-4.39-.98-1.5.667-2.37%202.237-2.15%203.954.08.625.278%201.235.377%201.863.338%202.122-.105%202.7-2.226%203.147-1.066.228-1.913.786-2.05%201.99-.137%201.22.17%202.39%201.404%202.75.77.226%201.853.084%202.55-.32.96-.553%201.064-1.64.733-2.74-.62-2.05-.027-3.04%202.115-3.34.836-.117%201.766-.022%202.568.235%201.302.41%201.692%201.373%201.175%202.65-.45%201.1-.443%202.09.39%202.984.84.9%202.417%201.08%203.518.435%201.12-.657%201.497-1.807%201.042-3.164-.608-1.814-.085-2.783%201.807-3.123.7-.126%201.463-.113%202.16.025%201.834.367%202.377%201.377%201.84%203.188-.504%201.698.196%203.09%201.72%203.43%201.332.295%202.624-.607%202.89-2.022.308-1.633-.593-2.882-2.344-2.988zm-10.71-.085c-1.374-.06-2.453-1.194-2.445-2.57.01-1.46%201.148-2.567%202.61-2.54%201.467.026%202.57%201.177%202.523%202.627-.05%201.43-1.255%202.545-2.687%202.483z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampMeneameSvg:hover,#the_champ_ss_rearrange .theChampMeneameSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M25.514%2010.435c-1.582%201.605-4.438%201.56-5.502%203.726-.906%202.57%201.23%206.677%202.12%209.02.603%201.21-4.716%202.378-4.065%202.677%203.754-.043%205.354-1.412%204.904-3.094-.43-1.607-2.376-4.816-2.376-7.383.056-1.938%202.222-2.533%203.618-3.322%201.622-.727%203.14-2.35%202.72-4.25-.018-.672-1.187-2.907-.71-1.175.26%201.278.385%202.856-.706%203.802z%22%2F%3E%3Cpath%20d%3D%22M20.632%207.546C18.59%206.492%2016.32%205.854%2013.946%206.41c-1.277.236-2.78.933-3.637%202.1-1.123%201.34-1.166%203.288-.43%204.82.57%201.18%201.44%202.492%202.85%202.688%201.21.182%202.54.018%203.566-.683-1.223.21-2.64.646-3.736-.172-1.842-1.177-2.735-3.85-1.618-5.8.898-1.7%202.705-2.178%204.62-2.262%202.55-.11%204.995%201.345%205.934%201.7.903.285%202.2.645%202.844-.315.376-.446.226-1.674-.08-1.788.09.86-.543%201.943-1.524%201.66-.736-.17-1.41-.523-2.104-.81zM6.94%2015.156c-1.183%201.865-2.264%204.05-1.85%206.322.38%202.375%202.678%204.05%204.963%204.35%202.348.273%204.69.205%207.043.035.397-.385-1.92-.373-2.895-.514-2.224-.254-4.64-.3-6.55-1.623-1.775-1.33-2.01-3.938-1.155-5.863.714-1.814%201.782-3.568%202.903-5.084-.876.727-1.683%201.27-2.456%202.376z%22%2F%3E%3Cpath%20d%3D%22M12.787%2021.02c1.386.107%203.688-.032%204.768.724.387.582-.332%203.802-.084%204.174.553.162%201.186-3.773.836-4.75-.266-.75-4.966-.352-5.518-.147z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampMixiSvg:hover,#the_champ_ss_rearrange .theChampMixiSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M16.09%205.246C9.617%205.246%204%209.216%204%2016.63c0%206.93%207.707%2010.193%2012.758%209.01v2.374S28%2025.054%2028%2015.034c0-6.11-4.505-9.788-11.91-9.788z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.92%2020.024h-1.657v-5.688s-.505-1.586-1.585-1.586c-.9%200-2.525.374-2.525%202.08v5.193h-1.657V14.77c0-1.586-.787-2.09-1.506-2.09-1.15%200-2.727.807-2.727%202.403v4.94H9.605v-9.01h1.657v1.03c.656-.546%201.564-1.03%202.727-1.03%201.222%200%202.09.434%202.604%201.282.73-.677%201.777-1.202%203.082-1.202%201.97%200%203.24%201.788%203.24%203.202v5.73z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampMySpaceSvg:hover,#the_champ_ss_rearrange .theChampMySpaceSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M24%2017.716c-2.21%200-4%201.79-4%204v1.712h8v-1.713c0-2.21-1.79-4-4-4z%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2212.571%22%20r%3D%223.999%22%2F%3E%3Cpath%20d%3D%22M15.147%2018.31c-2.054%200-3.72%201.66-3.72%203.71v1.408h7.437c.002-.615.002-1.148.002-1.408%200-2.05-1.664-3.71-3.72-3.71z%22%2F%3E%3Cellipse%20cx%3D%2215.147%22%20cy%3D%2213.446%22%20rx%3D%223.719%22%20ry%3D%223.71%22%2F%3E%3Cpath%20d%3D%22M7.148%2018.875C5.41%2018.875%204%2020.277%204%2022.008v1.42h6.295c.002-.636.002-1.178.002-1.42%200-1.73-1.41-3.133-3.15-3.133z%22%2F%3E%3Cellipse%20cx%3D%227.148%22%20cy%3D%2214.58%22%20rx%3D%223.148%22%20ry%3D%223.133%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampNetlogSvg:hover,#the_champ_ss_rearrange .theChampNetlogSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M9.05%2026.276c1.658-2.12%204.19-3.48%207.03-3.48%202.807%200%205.314%201.324%206.975%203.404%202.678-2.098%204.404-5.353%204.404-9.018%200-6.328-5.13-11.46-11.46-11.46S4.54%2010.855%204.54%2017.182c0%203.713%201.772%207.004%204.51%209.095z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%224.051%22%3E%3C%2Fcircle%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampNetvouzSvg:hover,#the_champ_ss_rearrange .theChampNetvouzSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.25%208.72v17.184H5.5V6.096h8.396l5.605%205.77v6.43%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.75%2023.28V6.095h4.75v19.808h-8.396L12.5%2020.13v-6.427%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampNewsVineSvg:hover,#the_champ_ss_rearrange .theChampNewsVineSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.828%2019.498l2.875-2.084c.264.166.572.264.906.264.936%200%201.695-.76%201.695-1.7s-.76-1.7-1.697-1.7c-.94%200-1.702.76-1.702%201.7%200%20.07.006.14.014.21l-2.094%201.516v-4.73l2.896-2.1c.26.158.56.25.885.25.937%200%201.696-.76%201.696-1.7%200-.937-.76-1.7-1.697-1.7-.94%200-1.702.763-1.702%201.7%200%20.08.006.16.018.235l-2.098%201.52V4h-1.656v3.79l-2.11-1.528c.02-.102.032-.205.032-.313%200-.94-.764-1.7-1.7-1.7-.94%200-1.7.76-1.7%201.7%200%20.936.76%201.7%201.7%201.7.296%200%20.573-.078.815-.21l2.962%202.143v4.73L13.06%2012.79c.017-.094.028-.19.028-.286%200-.94-.764-1.7-1.7-1.7-.94%200-1.7.76-1.7%201.7%200%20.938.76%201.7%201.7%201.7.304%200%20.59-.083.84-.224l2.938%202.13v5.044L13.07%2019.63c.014-.092.023-.185.023-.28%200-.938-.76-1.7-1.7-1.7-.938%200-1.697.762-1.697%201.7%200%20.94.76%201.7%201.697%201.7.31%200%20.598-.084.846-.226l2.935%202.124V28h1.655v-1.665l2.87-2.077c.263.166.573.266.91.266.937%200%201.698-.76%201.698-1.7%200-.938-.762-1.698-1.7-1.698s-1.698.76-1.698%201.7c0%20.067.004.134.012.2l-2.092%201.517v-5.045z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampNUjijSvg:hover,#the_champ_ss_rearrange .theChampNUjijSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M8.223%204h4v4h-4zm0%206.223h4V28h-4zM19.777%204h4v4h-4zm0%206.223h4V28h-4zM14%204h4v4h-4zm0%206.223h4v11.11h-4z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampOdnoklassnikiSvg:hover,#the_champ_ss_rearrange .theChampOdnoklassnikiSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampOknotizieSvg:hover,#the_champ_ss_rearrange .theChampOknotizieSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M14.613%2027.342H13.37l-4.796-7.3v7.3h-1.15v-9.25H8.66l4.8%207.3v-7.3h1.154v9.25zm6.015-9.408c1.282%200%202.332.438%203.147%201.312.817.875%201.225%202.03%201.225%203.47%200%201.44-.408%202.597-1.225%203.472-.815.874-1.865%201.312-3.147%201.312-1.286%200-2.34-.44-3.16-1.316-.82-.877-1.23-2.033-1.23-3.467%200-1.44.41-2.596%201.23-3.47.82-.876%201.874-1.313%203.16-1.313zm-.013%208.52c.916%200%201.667-.33%202.252-.985.585-.66.877-1.576.877-2.754s-.29-2.096-.874-2.752c-.583-.656-1.326-.984-2.23-.984-.92%200-1.674.33-2.263.985-.59.656-.884%201.574-.884%202.752%200%201.174.293%202.09.88%202.748.587.658%201.335.988%202.242.988z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M11.39%204.5c1.283%200%202.333.438%203.15%201.312.815.875%201.224%202.032%201.224%203.47%200%201.44-.408%202.597-1.225%203.472-.817.875-1.867%201.312-3.15%201.312-1.286%200-2.34-.438-3.16-1.314C7.41%2011.874%207%2010.72%207%209.282c0-1.438.41-2.595%201.23-3.47S10.105%204.5%2011.39%204.5zm-.012%208.52c.916%200%201.667-.33%202.252-.985.585-.656.877-1.574.877-2.752s-.29-2.095-.874-2.752c-.583-.654-1.326-.982-2.23-.982-.92%200-1.674.328-2.264.984-.59.658-.885%201.576-.885%202.753%200%201.174.293%202.09.88%202.75.587.656%201.335.986%202.242.986zm11.317.89H21.29l-2.154-3.402-.737.738v2.663h-1.183V4.656h1.18V9.9l2.556-2.69h1.486l-2.51%202.495%202.764%204.203z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampOutlookcomSvg:hover,#the_champ_ss_rearrange .theChampOutlookcomSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%208.29v5.5l1.92%201.208c.053.016.163.016.212%200l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%2015.84l1.755%201.204c.246.183.543%200%20.543%200-.297.183%208.104-5.397%208.104-5.397V21.75c0%201.102-.704%201.562-1.496%201.562H19.52V15.84z%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M10.445%2013.305c-.6%200-1.073.282-1.426.842-.355.56-.53%201.305-.53%202.23%200%20.936.175%201.677.53%202.22.347.546.813.82%201.38.82.59%200%201.055-.266%201.4-.795.344-.53.517-1.266.517-2.206%200-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M2.123%205.5v21.51l16.362%203.428V2.33L2.123%205.5zm10.95%2014.387c-.693.91-1.594%201.367-2.706%201.367-1.082%200-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448%200-1.496.343-2.707%201.037-3.63.693-.926%201.614-1.388%202.754-1.388%201.08%200%201.955.438%202.62%201.324.667.885%201%202.05%201%203.495.004%201.496-.345%202.695-1.034%203.604z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampPinboardSvg:hover,#the_champ_ss_rearrange .theChampPinboardSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.357%2018.913l-5.01%205.014.88-4.5-6.588-8.075-3.48.044%204.316-4.313%204.035-4.04V6.85l7.796%206.403%204.502-.786-4.876%204.87%209.907%2011.62%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampPlurkSvg:hover,#the_champ_ss_rearrange .theChampPlurkSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.215%2016.016h-8.43V9.7h8.43v6.316zm4.2%204.2V5.5H7.585v21h4.2v-6.285h12.63z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampPocketSvg:hover,#the_champ_ss_rearrange .theChampPocketSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.005%206.244c2.927%200%205.854-.002%208.782%200%201.396.002%202.195.78%202.188%202.165-.015%202.485.116%204.987-.11%207.456-.75%208.204-10.027%2012.607-16.91%208.064-3.086-2.036-4.82-4.925-4.917-8.672-.06-2.34-.034-4.684-.018-7.025.008-1.214.812-1.98%202.056-1.983%202.975-.01%205.952-.004%208.93-.006zm-5.037%205.483c-.867.093-1.365.396-1.62%201.025-.27.67-.078%201.256.417%201.732%201.688%201.62%203.378%203.238%205.09%204.838.745.695%201.537.687%202.278-.01%201.654-1.55%203.298-3.112%204.93-4.686.827-.797.91-1.714.252-2.38-.694-.704-1.583-.647-2.447.17-1.097%201.04-2.215%202.06-3.266%203.143-.485.494-.77.434-1.227-.025-1.1-1.107-2.234-2.18-3.39-3.225-.325-.29-.77-.447-1.017-.583z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampPrintFriendlySvg:hover,#the_champ_ss_rearrange .theChampPrintFriendlySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M4.467%2014.305h23.065v6.498H4.467v-6.498z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M5.228%2012.83H26.77l.745%201.39H4.485l.743-1.39z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20d%3D%22M9.844%206.516h12.312v7.31H9.844z%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M8.602%2017.37h14.574v3.396H8.602z%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M10.152%2017.97h11.27l2.233%207.515H7.92l2.232-7.514z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampProtopageBookmarksSvg:hover,#the_champ_ss_rearrange .theChampProtopageBookmarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M17.866%2014.47l7.626-1.048.574%203.078-7.68%201.038%203.54%207.058-2.804%201.418-3.614-7.23-5.873%205.557-2.144-2.29%205.74-5.42-6.86-3.602%201.593-2.697%206.808%203.595%201.3-7.375%203.1.546-1.303%207.374z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampPushaSvg:hover,#the_champ_ss_rearrange .theChampPushaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M29.27%2022.188V8.068L17.208%2014.92l3.838%202.33C15.716%2024.144%205.898%2029.306%200%2031.964V32h19.635c3.682-4.865%207.03-11.46%207.03-11.46l2.605%201.648z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampQzoneSvg:hover,#the_champ_ss_rearrange .theChampQzoneSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.996%2012.83l-7.423-.737c-.566-.053-.694-.142-.87-.604l-3.175-7.043c-.29-.598-.765-.598-1.055%200l-3.384%207.04c-.23.393-.337.48-.896.534l-7.188.808c-.66.064-.808.493-.327.952l5.64%205.185c.265.25.27.355.194.697l-1.447%207.61c-.122.65.25.914.823.58l6.44-3.716c.45-.284.868-.293%201.31-.018l6.47%203.734c.575.333.948.07.826-.582L22.83%2021.2c.663-.226%201.306-.5%201.69-.81l-.155.03c-2.29.547-5.437.872-8.355.872-1.08%200-2.126-.038-3.128-.11l-.006.005c-.88-.063-1.727-.15-2.53-.26-.3-.05.026-.242.026-.242l7.758-5.513s.202-.126.002-.153c-3.188-.5-6.723-.625-10.042-.625h-.23c2.245-.51%205.07-.815%208.14-.815%201.81%200%203.538.106%205.11.297-.003.003.887.124%201.31.193.33.05.024.24.024.24l-7.77%205.385s-.18.106.015.135c2.39.338%205.333.458%207.98.492l-.12-.652c-.057-.378%200-.51.286-.78l5.478-5.12c.484-.454.34-.88-.32-.944z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampRediffMyPageSvg:hover,#the_champ_ss_rearrange .theChampRediffMyPageSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.506%206.004c-.336%200-.64%200-.92-.002L20.926%206c-1.742%200-2.418.07-3.738.923-.744.457-1.38%201.034-1.85%201.517V6.188c0-.102-.08-.184-.182-.184h-5.71c-.1%200-.183.082-.183.184v19.62c0%20.115.115.23.232.18h5.71c.1%200%20.18-.08.18-.18V14.933c0-2.584%201.85-2.916%203.464-2.916h3.703c.1%200%20.182-.08.182-.182V6.188c-.05-.147-.172-.147-.287-.184h.056z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampRenrenSvg:hover,#the_champ_ss_rearrange .theChampRenrenSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.74%203.266C17.833%203.088%2016.924%203%2016.013%203c-.934%200-1.843.088-2.753.266%200%208.96-.07%2016.176-9.26%2021.662C5.138%2026.566%206.616%2027.96%208.322%2029c3.595-2.168%205.687-4.736%207.69-8.275%202%203.54%204.07%206.107%207.688%208.275%201.706-1.04%203.184-2.434%204.3-4.072-9.19-5.487-9.26-12.7-9.26-21.662z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampSegnaloSvg:hover,#the_champ_ss_rearrange .theChampSegnaloSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.65%2011.186c-3.252-1.153-6.64-.972-9.263%201.434-2.76%202.53-3.165%207.208-1.02%2010.172%201.948%202.695%206.138%203.82%209.284%203.58.79-.062%205.125-1.776%204.16-2.845-.174-.192-.41-.29-.454-.31-.042-.017-.104-.032-.136-.038-.03-.007-.264-.05-.522-.076-1.88-.21-3.745.424-5.64-.325-.825-.328-1.674-.668-2.207-1.41-.375-.524-1.086-2.715.16-2.31l7.453%202.404c1.705.55%202.792.625%203.288-1.405.978-3.978-1.35-7.545-5.1-8.875zm-.09%206.423c-.93.046-3.202-.94-3.617-1.076-1.11-.358-2.117-.922-.537-2.053%201.9-1.36%204.214.538%204.51%202.45.038.26-.1.665-.357.678z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.33%206.97c-1.732.556-3.154%201.852-4.18%203.317-.01.012-.006.018-.012.03-.006.01-.018.02-.02.03-.664%202.168%204.32.844%205.263.54.75-.242%204.84-1.912%204.61-3.078-.362-1.837-4.385-1.247-5.66-.84zm-4.032%202.375C17.42%208.2%2017.02%207.21%2016.12%206.488c-.645-.518-2.716-1.49-3.358-.383-.317.55.01%201.31.195%201.862.233.696.612%201.322%201.137%201.835.764.747%202.385.972%203.01.01.142-.218.186-.44.19-.448%200-.008.004-.013.004-.02z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampSinaWeiboSvg:hover,#the_champ_ss_rearrange .theChampSinaWeiboSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4.91%2019.953c0%203.028%203.943%205.484%208.807%205.484%204.862%200%208.806-2.456%208.806-5.484%200-3.027-3.943-5.482-8.806-5.482-4.863%200-8.807%202.457-8.807%205.484%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.92%2024.99c-4.303.424-8.02-1.52-8.3-4.346-.278-2.827%202.987-5.463%207.292-5.888%204.304-.426%208.018%201.52%208.297%204.345.276%202.83-2.985%205.466-7.29%205.89m8.612-9.38c-.367-.11-.62-.186-.428-.665.416-1.046.458-1.946.01-2.59-.846-1.204-3.155-1.14-5.8-.03%200-.004-.834.362-.62-.297.406-1.31.345-2.406-.29-3.04-1.435-1.436-5.255.056-8.53%203.33C4.424%2014.77%203%2017.37%203%2019.618c0%204.3%205.513%206.913%2010.907%206.913%207.07%200%2011.776-4.106%2011.776-7.37%200-1.97-1.66-3.09-3.15-3.55%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.226%207.74C25.52%205.848%2023%205.127%2020.676%205.62h-.002c-.536.115-.88.644-.765%201.182.112.536.642.882%201.18.765%201.653-.35%203.442.164%204.66%201.508%201.212%201.346%201.542%203.18%201.02%204.787-.17.525.118%201.085.64%201.255.524.168%201.088-.118%201.256-.64v-.004c.728-2.262.268-4.84-1.44-6.732m-2.622%202.367c-.832-.922-2.058-1.272-3.192-1.03-.462.098-.756.552-.656%201.017.097.46.553.758%201.016.657v.003c.552-.117%201.15.053%201.562.502.406.453.514%201.066.338%201.606h.004c-.147.45.102.935.55%201.08.45.144.936-.102%201.08-.552.356-1.1.135-2.357-.7-3.28%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampSiteJotSvg:hover,#the_champ_ss_rearrange .theChampSiteJotSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.506%208.08c.645%200%201.3.073%201.967.225.547.12.937.285%201.173.495.236.21.354.5.354.868%200%20.232-.043.414-.13.547-.086.13-.272.29-.56.48-.333.224-.524.49-.573.794-.05.302-.094%201.482-.134%203.54-.018%201.99-.033%203.185-.048%203.583-.015.398-.05.785-.107%201.16-.167%201.098-.504%201.958-1.01%202.582-.414.51-.946.912-1.596%201.205-.65.294-1.335.44-2.054.44-.64%200-1.278-.108-1.92-.325-.64-.22-1.197-.518-1.67-.902-.39-.315-.7-.74-.93-1.278-.23-.538-.347-1.11-.347-1.72%200-.75.184-1.37.546-1.863.362-.492.816-.738%201.363-.738.534%200%20.99.207%201.362.62.375.42.56.938.56%201.555%200%20.155-.033.42-.102.787-.012.075-.018.157-.018.247%200%20.24.066.436.2.586.13.15.307.227.524.227.386%200%20.696-.226.933-.677.234-.45.352-1.043.352-1.78l-.01-1.024-.017-2.76c-.052-1.676-.09-2.662-.116-2.96-.027-.296-.09-.538-.195-.725-.086-.15-.162-.246-.23-.29-.065-.046-.245-.117-.538-.215-.138-.038-.256-.144-.353-.315-.098-.174-.147-.357-.147-.554%200-.405.122-.73.366-.975.245-.242.644-.44%201.196-.59.62-.17%201.254-.25%201.91-.25z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.202%208c.593%200%201.37.19%202.33.574.114.046.207.068.275.068.058%200%20.23-.068.518-.203.093-.047.19-.07.294-.07.383%200%20.79.4%201.22%201.195.43.797.642%201.555.642%202.275%200%20.422-.097.776-.29%201.066-.19.288-.426.434-.702.434-.23%200-.416-.06-.56-.18-.144-.12-.46-.478-.95-1.07-.69-.842-1.368-1.263-2.035-1.263-.322%200-.58.102-.772.305-.192.203-.29.47-.29.8%200%20.653.44%201.146%201.32%201.476%201.192.46%201.954.793%202.287%201.003%201.467.934%202.2%202.305%202.2%204.114%200%201.6-.5%202.907-1.5%203.922C13.163%2023.48%2011.826%2024%2010.176%2024c-.736%200-1.513-.115-2.33-.344-.816-.23-1.406-.497-1.77-.805-.274-.24-.523-.764-.745-1.57-.22-.81-.33-1.596-.33-2.363%200-.367.058-.646.173-.833.143-.24.324-.36.543-.36.22%200%20.43.146.63.438.12.165.405.695.855%201.59.215.42.553.768%201.016%201.048.463.278.94.417%201.437.417.426%200%20.77-.104%201.035-.31.265-.207.396-.472.396-.794%200-.3-.103-.56-.31-.777-.208-.22-.544-.422-1.01-.61-.823-.337-1.45-.648-1.88-.93-.433-.28-.835-.636-1.21-1.063-.908-1.053-1.362-2.246-1.362-3.583%200-.66.12-1.306.355-1.933.236-.627.57-1.17%201-1.628C7.633%208.53%208.812%208%2010.203%208z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampSlashdotSvg:hover,#the_champ_ss_rearrange .theChampSlashdotSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M20.89%206h-5L8.61%2026h5%22%2F%3E%3Ccircle%20cx%3D%2220.89%22%20cy%3D%2223.5%22%20r%3D%222.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampStumpediaSvg:hover,#the_champ_ss_rearrange .theChampStumpediaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.1%206.875s-.13.717-.293.912c-.163.197-.62.166-1.045%200-.427-.162-.85-.195-1.274-.03-.425.162-.784.134-.717-.356.065-.49.328-.98.688-1.014.36-.03%201.11-.163%201.207-.36.1-.194-.07-.456-.23-.718-.16-.26-.455-.652-.585-.555-.13.1-.49-.13-.62.262-.132.393-.85%201.403-1.373%201.958-.524.557-1.21%201.602-.85%202.253.36.654.947.688%201.733.688h1.165s.273.23.238.523c-.032.293.263%202.71.263%203.527s-.033.85.195.85h.394s-.163.652-.654%202.284c-.49%201.634-.88%202.876-1.144%203.203-.26.326-.424.588-.424%201.01%200%20.428-.13%201.08-.326%201.44-.196.36-.262.883-.523%201.145-.26.262-.26.328-.358.72-.1.392-.526.882-.655%201.075-.127.197-1.817%201.486-1.915%201.848-.098.358%201.577.53%202.31.44.88-.11%201.135-.007%201.388-.436.273-.462.876-1.51%201.192-2.308.18-.457-.1-.816.294-1.34.39-.522%201.01-1.403%201.433-1.895.425-.49.425-1.078.784-1.8.36-.716.785-1.565%201.11-1.5.327.065.75.456%201.34%201.076.588.62.523.947.62%201.534.1.59.228%201.34.523%201.864.295.524.458%201.014.523%201.47.065.458-.1.88%200%201.405.098.52.556.943.816%201.37.26.42%201.272.39%202.12.42.85.035%201.635.167%201.404-.226-.232-.392-1.045-.916-1.275-1.045-.23-.13-.36-.13-.555-.818-.197-.685-.85-3.722-1.047-4.8-.195-1.078-.652-2.385-1.046-3.104-.39-.718-1.6-2.874-1.6-2.874l-.1-.293h.393s-.163-.687-.262-.85c-.098-.163-.49-1.44-.556-2.09-.065-.653-.197-1.077.13-1.044.327.03%201.568%200%202.32-.197.75-.195.686-.26.717-.88.033-.62%200-1.798-.03-2.58-.034-.784-.296-1.015-.49-1.11-.195-.1-.817.13-.914.326-.1.193-.49.488-.132.75.36.262.425.393.62.457.197.066.197.196.197.36%200%20.163.13.913-.196%201.044-.324.132-1.274.034-1.664-.064-.394-.097-1.176-.815-1.502-.782-.325.033-.62-.294-.653-.72-.03-.424.59-.16.687-.814.1-.652.59-2.103-.814-2.45-.784-.192-1.373.425-1.57%201.372-.148.698-.002%201.007.587%201.465z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M15.688%206.736c-.183.46-1.135%202.4-1.135%202.4s-1.28-.712-3.423-.712c-1.877%200-3%20.924-3.324%201.962-.176.562-.552%202.19%201.475%203.18%201.418.69%203.29%201.465%204.755%202.45%201.906%201.276%202.81%203.327%202.454%205.87-.41%202.92-2.444%205.56-5.473%205.822-2.403.208-6-.536-6.91-1.314.275-.816.56-1.975.78-2.634%201.005.493%202.72.936%204.185%201.11%202.758.326%204.152-.908%204.554-2.44.284-1.087.332-2.204-.12-3.013-1.093-1.96-3.375-2.244-5.392-3.24-3.016-1.492-3.69-3.54-3.308-5.774.437-2.546%201.918-3.803%204.18-4.356%202.128-.52%204.59-.305%206.704.69z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampSvejoSvg:hover,#the_champ_ss_rearrange .theChampSvejoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c.31.16.48.29.48.29l.04-.02c.2-4.96-2.933-7.41-2.933-7.41-.688.87-1.147%202.21-1.387%203.04.26.11.51.24.76.38%202.13%201.19%202.83%202.92%203.04%203.72z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c-.22-.8-.91-2.53-3.04-3.73-.25-.14-.5-.26-.76-.38-2.27-.99-4.73-.96-4.73-.96s0%202.92%203.08%204.95c.48-.17%201-.31%201.57-.42%201.81-.32%203.19.19%203.88.54z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.796%2013.244c-.93%201.82%202.15%206.7%204.75%209.37%201.29%201.33%201.93%202.48%202.19%203.052%202.1.5%203.278-.29%203.42-.4l.068-.12c.932-1.94-1.46-4.818-3.19-7.068-2.138-2.78-2.698-4.832-2.698-4.832l-.01-.01c-3.5-1.582-4.53.008-4.53.008z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.176%2025.274c-.15.11-1.32.9-3.42.4-1.1-.26-2.47-.88-4.07-2.15-2.31-1.818-4.03-3.43-5.2-5.53-.3-.528-.98-.568-1.37.2-.6%201.19-.67%204.5.7%206.44%200%200-.38%201.28.62%202.37.67.73%202.22%201.06%203.06.76l.17-.07s1.73%201.302%204.37.813c2.64-.49%204.33-1.73%205.18-3.24l-.04.007zm3.01-11.4s.38-1.28-.62-2.37c-.67-.73-2.22-1.06-3.06-.76l-.12.05-.04.02s-.17-.13-.48-.28c-.69-.36-2.07-.87-3.89-.53-.57.102-1.09.25-1.57.42-1.68.59-2.83%201.542-3.51%202.66l-.1.17s1.02-1.59%204.53-.01c.84.382%201.83.94%202.98%201.75%202.41%201.692%204.03%203.432%205.2%205.53.3.53.98.57%201.37-.198.61-1.2.68-4.512-.69-6.45z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampSymbalooFeedsSvg:hover,#the_champ_ss_rearrange .theChampSymbalooFeedsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7%207h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2013.75h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2020.5h4.5V25H7zm6.75%200h4.5V25h-4.5zm6.75%200H25V25h-4.5z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampTuentiSvg:hover,#the_champ_ss_rearrange .theChampTuentiSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.907%2019.803l-2.463%205.062c-.316.655-.974%201.035-1.656%201.035-.272%200-.545-.062-.807-.188-.914-.445-1.293-1.55-.846-2.465l2.46-5.062c.446-.914%201.55-1.293%202.464-.848.917.447%201.295%201.552.85%202.466zm-.053-7.497c-.445.444-1.055.698-1.682.698-.625%200-1.236-.254-1.678-.698-.445-.444-.7-1.054-.7-1.68%200-.626.255-1.236.7-1.68.885-.888%202.478-.888%203.36%200%20.442.444.696%201.054.696%201.68%200%20.626-.254%201.235-.696%201.68zm9.834%207.17c-.443%202.075-1.266%204.003-2.445%205.73-.35.517-.922.794-1.502.794-.35%200-.705-.103-1.02-.316-.826-.564-1.04-1.695-.476-2.52.912-1.34%201.55-2.835%201.896-4.448.378-1.775.378-3.654-.003-5.432-.344-1.61-.982-3.107-1.895-4.445-.564-.83-.35-1.96.48-2.525.827-.564%201.958-.35%202.522.48%201.178%201.727%202%203.655%202.443%205.73.49%202.272.49%204.675%200%206.95z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampTwiddlaSvg:hover,#the_champ_ss_rearrange .theChampTwiddlaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.5%205.688l1.375%201.375-4.812%204.812L5.688%2010.5C5.256%209.926%205%209.21%205%208.438%205%206.538%206.54%205%208.438%205c.773%200%201.488.256%202.062.688zm2.406%202.406l-4.812%204.812%2012.72%2012.72L27%2027l-1.375-6.188-12.72-12.718zm-.095%203.533l9.627%209.625-1.186%201.183-9.624-9.625%201.186-1.183z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampViadeoSvg:hover,#the_champ_ss_rearrange .theChampViadeoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15.107%204s2.838%201.88%203.326%207.05c0%200%20.957%2012.423-5.47%2014.858%200%200%20.577.106%201.224.076%200%200%207.947-5.012%204.3-14.742%200%200-1.09-3.396-3.38-7.242zm4.15%208.483s-1.48-2.29.397-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M19.256%2012.483s-1.48-2.29.398-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.486%2019.434c0%201.19-.283%202.3-.85%203.33-.57%201.03-1.34%201.824-2.306%202.383-.967.56-2.03.84-3.186.84-1.156%200-2.22-.28-3.186-.84-.97-.56-1.736-1.354-2.305-2.383-.568-1.03-.853-2.14-.853-3.33%200-1.847.625-3.42%201.87-4.723%201.247-1.3%202.74-1.95%204.474-1.95.824%200%201.596.15%202.313.448.072-.754.336-1.456.63-2.03-.903-.326-1.88-.49-2.936-.49-2.506%200-4.582.92-6.223%202.77-1.494%201.675-2.24%203.65-2.24%205.933%200%202.3.79%204.31%202.367%206.03C9.63%2027.14%2011.664%2028%2014.15%2028c2.48%200%204.508-.86%206.086-2.58%201.578-1.72%202.367-3.73%202.367-6.03%200-1.233-.22-2.374-.65-3.427-.725.445-1.412.678-1.982.797.345.816.517%201.707.517%202.674z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampTypePadPostSvg:hover,#the_champ_ss_rearrange .theChampTypePadPostSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%208.875c-6.627%200-12%203.225-12%207.202%200%20.844.342%202.21.787%202.407.447.196%201.67.683%2012.523-3.836%200%200-9.096%204.09-9.83%205.85-.253.605%202.154%202.627%208.52%202.627%206.626%200%2012-3.148%2012-7.125s-5.374-7.125-12-7.125z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampWaneloSvg:hover,#the_champ_ss_rearrange .theChampWaneloSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10%2022h10v10H10zM0%2022h10v10H0z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%2012h12v10H20z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10%2012h10v10H10z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%2012h10v10H0z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%200h12v12H20z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10%200h10v12H10z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h10v12H0z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampWebnewsSvg:hover,#the_champ_ss_rearrange .theChampWebnewsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M6%206h5.48v14.557h1.844V6h5.396v14.557h1.852V6H26v18.196h-1.82V26h-7.25v-1.825h-1.838V26h-7.25v-1.825H6V6z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampWordPressSvg:hover,#the_champ_ss_rearrange .theChampWordPressSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2214.75%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Cg%3E%3Cpath%20d%3D%22M3.176%2016c0%205.076%202.95%209.462%207.226%2011.54L4.287%2010.78c-.712%201.595-1.11%203.36-1.11%205.22zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008%200-1.18.897-2.278%202.156-2.278.057%200%20.11.008.166.01-2.28-2.09-5.32-3.367-8.658-3.367-4.48%200-8.422%202.3-10.715%205.78.302.01.585.017.826.017%201.343%200%203.418-.164%203.418-.164.69-.042.774.974.084%201.056%200%200-.694.08-1.466.12l4.668%2013.892%202.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058%200%200%202.116.164%203.38.164%201.34%200%203.416-.163%203.416-.163.69-.04.77.976.08%201.058%200%200-.694.08-1.467.12l4.634%2013.785%201.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43%201.766l-3.85%2011.18c1.15.34%202.365.523%203.624.523%201.492%200%202.925-.26%204.26-.728-.035-.056-.066-.113-.093-.177L16.225%2017.12zM27.25%209.848c.055.408.086.848.086%201.318%200%201.3-.242%202.764-.975%204.594l-3.916%2011.324C26.26%2024.86%2028.822%2020.73%2028.822%2016c0-2.23-.568-4.326-1.57-6.152z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16%201.052C7.757%201.052%201.052%207.757%201.052%2016c0%208.242%206.705%2014.948%2014.948%2014.948%208.242%200%2014.948-6.706%2014.948-14.95%200-8.24-6.706-14.946-14.948-14.946zm0%2029.212c-7.865%200-14.264-6.4-14.264-14.265S8.136%201.734%2016%201.734c7.863%200%2014.264%206.398%2014.264%2014.263%200%207.863-6.4%2014.264-14.264%2014.264z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampWykopSvg:hover,#the_champ_ss_rearrange .theChampWykopSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M28.5%2023.54c0%202.74-2.22%204.96-4.96%204.96H8.46c-2.74%200-4.96-2.22-4.96-4.96V8.46c0-2.74%202.22-4.96%204.96-4.96h15.08c2.74%200%204.96%202.22%204.96%204.96v15.08z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.052%207.997l4.942%2010.043-2.01.99-4.94-10.044-4.018%201.977%204.943%2010.043-2.01.988L9.016%2011.95%205%2013.93l5.93%2012.05L27%2018.073l-5.93-12.05%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampYahooMailSvg:hover,#the_champ_ss_rearrange .theChampYahooMailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.495%206.097c1.09.31%202.213.28%203.304%200l-7.418%2012.09v9.91c-.468-.155-.935-.22-1.37-.22-.47%200-.937.065-1.404.22v-9.91L7.19%206.097c1.09.28%202.213.31%203.304%200l5.516%208.788%205.483-8.787z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampYahooMessengerSvg:hover,#the_champ_ss_rearrange .theChampYahooMessengerSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2027c6.074%200%2011-4.926%2011-11%200-6.075-4.926-11-11-11S5%209.925%205%2016c0%206.074%204.926%2011%2011%2011zm2.808-17.016c.792%200%201.434.64%201.434%201.432%200%20.79-.642%201.432-1.434%201.432-.79%200-1.432-.64-1.432-1.432%200-.79.642-1.432%201.432-1.432zm-5.443%200c.79%200%201.433.64%201.433%201.432%200%20.79-.642%201.432-1.433%201.432s-1.433-.64-1.433-1.432c0-.79.642-1.432%201.433-1.432zm-5.1%204.583h15.47v2.866h-.032c-.32%203.975-3.644%207.103-7.702%207.103-4.06%200-7.38-3.128-7.7-7.103h-.033v-2.866zm14.42%202.56H9.13v-1.764h13.554v1.764z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampYoolinkSvg:hover,#the_champ_ss_rearrange .theChampYoolinkSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2212%22%3E%3C%2Fcircle%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M14.47%2023.09v-4.908l-3.604-5.856c-.315-.528-.538-.94-.67-1.235-.13-.294-.196-.552-.196-.77%200-.36.132-.67.398-.93.264-.26.59-.39.98-.39.41%200%20.72.12.933.365.213.243.53.727.953%201.45l2.758%204.697%202.79-4.696c.17-.287.31-.53.423-.727.114-.198.24-.384.378-.556.14-.172.29-.305.46-.396.166-.09.37-.136.613-.136.376%200%20.688.13.94.385.252.258.378.554.378.892%200%20.273-.064.55-.19.82-.127.275-.345.655-.654%201.14l-3.694%205.94v4.91c0%20.64-.14%201.118-.422%201.436-.282.317-.642.475-1.08.475-.44%200-.8-.156-1.076-.47-.275-.312-.412-.793-.412-1.44z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_horizontal_sharing .theChampYouMobSvg:hover,#the_champ_ss_rearrange .theChampYouMobSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M4%209.498h1.82l2.7%2010.754%202.677-10.754h1.81v12.72h-1.213V14.71c0-.26.003-.69.01-1.29.012-.6.015-1.244.015-1.93L9.14%2022.216H7.88L5.173%2011.49v.39c0%20.31.008.786.02%201.423.013.64.02%201.108.02%201.407v7.507H4V9.497zm15.735%204.372c.604.795.907%201.966.907%203.51%200%201.495-.267%202.73-.8%203.704-.534.975-1.36%201.46-2.48%201.46-.934%200-1.677-.43-2.228-1.292-.55-.86-.825-2.02-.825-3.473%200-1.56.29-2.8.87-3.723.576-.922%201.356-1.383%202.333-1.383.877%200%201.616.4%202.22%201.194zm-.714%206.16c.28-.78.423-1.65.423-2.607%200-.863-.102-1.568-.304-2.11-.323-.853-.875-1.278-1.656-1.278-.695%200-1.2.36-1.518%201.088-.314.727-.474%201.604-.474%202.63%200%20.985.16%201.808.475%202.466.316.654.817.982%201.503.982.755%200%201.27-.39%201.553-1.172zm2.937-10.575h1.118v4.615c.253-.445.554-.785.905-1.02.35-.232.73-.35%201.142-.35.854%200%201.547.397%202.08%201.19.53.796.798%201.966.798%203.512%200%201.467-.26%202.684-.788%203.654-.524.97-1.253%201.454-2.186%201.454-.52%200-.964-.17-1.323-.51-.213-.202-.44-.526-.687-.972v1.188h-1.06V9.456zm4.398%2010.675c.31-.67.463-1.552.463-2.65%200-.974-.154-1.782-.463-2.423-.312-.64-.768-.96-1.368-.96-.527%200-.988.262-1.382.786-.397.525-.595%201.392-.595%202.598%200%20.873.083%201.58.245%202.123.304%201.02.868%201.532%201.7%201.532.622%200%201.088-.334%201.4-1.004z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}
css/share-hover-svg-vertical.css ADDED
@@ -0,0 +1 @@
 
1
+ @charset "utf-8";.the_champ_vertical_sharing .theChampYummlySvg:hover,#the_champ_ss_vertical_rearrange .theChampYummlySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2010.5%2010%20q%204%20-2%202.5%201%20l%20-1%204%20q%200%202%205%200%20l%201%20-6.5%20m%20-1%206.5%20l%20-1%204%20c%20-3%206%20-6%20-1%200%20-1%20q%201%20-1%205%201%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBufferSvg:hover,#the_champ_ss_vertical_rearrange .theChampBufferSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2039%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2015%206%20l%20-10%205%20l%2010%205%20l%2010%20-5%20z%22%20stroke-width%3D%220%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%205.5%2014.5%20l%209.5%205%20l%209.5%20-5%20m%20-19%204%20l%209.5%205%20l%209.5%20-5%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampFacebookSvg:hover,#the_champ_ss_vertical_rearrange .theChampFacebookSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M14%2025%20v%20-13%20Q%2013%206%2021%207.5%20M%2010%2014%20L%2020%2014%22%20stroke-width%3D%224%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampDeliciousSvg:hover,#the_champ_ss_vertical_rearrange .theChampDeliciousSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22stroke%3A%23fff%3Bfill%3Anone%22%3E%3C%2Frect%3E%0A%3Crect%20x%3D%2215%22%20y%3D%220%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22fill%3A%23fff%3Bstroke%3A%23fff%22%3E%3C%2Frect%3E%0A%3Crect%20x%3D%220%22%20y%3D%2215%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22fill%3A%23fff%3Bstroke%3A%23fff%22%3E%3C%2Frect%3E%0A%3Crect%20x%3D%2215%22%20y%3D%2215%22%20width%3D%2215%22%20height%3D%2215%22%20style%3D%22stroke%3A%23fff%3Bfill%3Anone%3B%22%3E%3C%2Frect%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampDiggSvg:hover,#the_champ_ss_vertical_rearrange .theChampDiggSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2049%2049%22%3E%3Cpath%20d%3D%22M%206%2020%20h%2010%20c%200%20-14%20-9%20-14%20-9%200%20m%205%200%20v%207%20m%20-1%200%20v%20-7%20m%204%20-7%20h%204.5%20v%20-5%20h%208%20v%208%20h%20-8%20v%20-3%20m%208%200%20h%204%20v%205.5%20h%20-3%20v%2012%20h%20-4%20v%20-8%20m%200%208%20h%20-6.5%20v%20-12%20h%20-2%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cellipse%20cx%3D%2211.5%22%20cy%3D%2228.5%22%20rx%3D%224%22%20ry%3D%222%22%20style%3D%22fill%3A%23fff%3B%22%3E%3C%2Fellipse%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampEmailSvg:hover,#the_champ_ss_vertical_rearrange .theChampEmailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2043%2043%22%3E%3Cpath%20d%3D%22M%205.5%2011%20h%2023%20v%201%20l%20-11%206%20l%20-11%20-6%20v%20-1%20m%200%202%20l%2011%206%20l%2011%20-6%20v%2011%20h%20-22%20v%20-11%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampFloatitSvg:hover,#the_champ_ss_vertical_rearrange .theChampFloatitSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Ccircle%20cx%3D%2215%22%20cy%3D%2215%22%20r%3D%2210%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2215%22%20cy%3D%2215%22%20r%3D%225%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%205%2015%20h%205%20M%2015%205%20v%205%20M%2025%2015%20h%20-5%20M%2015%2025%20v%20-5%22%20stroke-width%3D%223%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampGoogleplusSvg:hover,#the_champ_ss_vertical_rearrange .theChampGoogleplusSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2065%2049%20h%2018%20m%20-9%20-9%20v%2018%22%20stroke%3D%22%23fff%22%20stroke-width%3D%225%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampLinkedinSvg:hover,#the_champ_ss_vertical_rearrange .theChampLinkedinSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%0A%3Ccircle%20cx%3D%2210%22%20cy%3D%228%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%0A%3Cpath%20d%3D%22M%2010%2011%20v%2011%20m%205%200%20v%20-11%20m%200%203%20q%206%20-3%207%200%20v%208%22%20stroke-width%3D%223%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampMoreSvg:hover,#the_champ_ss_vertical_rearrange .theChampMoreSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2215%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2210%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%2010%2015%20L%2020%2010%20m%200%2010%20L%2010%2015%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampPinterestSvg:hover,#the_champ_ss_vertical_rearrange .theChampPinterestSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6.5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M%206%2020%20c%20-3%20-4%20-2%20-10%203%20-13.5%20c%204%20-3%2011%20-3%2015%203%20c%203%205%202%2013%20-6%2015%20q%20-4%201%20-6%20-3%20l%20-2%206%20l%20-1.2%202%20l%20-0.8%20-2%20l%202.5%20-11%20c%20-2%20-4%201%20-8%204%20-6%20q%200%205%20-1.4%208.5%20c%203%208%2010%200%209.5%20-4%20c%200%20-9%20-11%20-11%20-14.5%20-4%20c%200%200%20-3%205%200%208%20l%20-1%202%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampPrintSvg:hover,#the_champ_ss_vertical_rearrange .theChampPrintSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-6%2038%2038%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%207%2010%20h%202%20v%203%20h%2012%20v%20-3%20h%202%20v%207%20h%20-2%20v%20-3%20h%20-12%20v%203%20h%20-2%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221.8%22%20height%3D%227%22%20width%3D%2210%22%20x%3D%2210%22%20y%3D%225%22%20fill%3D%22none%22%3E%3C%2Frect%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%20height%3D%225%22%20width%3D%228%22%20x%3D%2211%22%20y%3D%2216%22%20fill%3D%22%23fff%22%3E%3C%2Frect%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampRedditSvg:hover,#the_champ_ss_vertical_rearrange .theChampRedditSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%3Cellipse%20cx%3D%2215%22%20cy%3D%2219%22%20rx%3D%229%22%20ry%3D%227%22%20style%3D%22stroke%3A%23fff%3Bstroke-width%3A2%22%20fill%3D%22none%22%3E%3C%2Fellipse%3E%3Ccircle%20cx%3D%2211%22%20cy%3D%2217%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2219%22%20cy%3D%2217%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2222%22%20cy%3D%227%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%227%22%20cy%3D%2214%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2223%22%20cy%3D%2214%22%20r%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%2010%2022%20q%205%203%2010%200%20M%2015%2012%20l%201%20-6%20l%206%201%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampStumbleuponSvg:hover,#the_champ_ss_vertical_rearrange .theChampStumbleuponSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Cpath%20d%3D%22M%206.6%2015%20v%201%20c%20-1%207%206.5%207%205.5%200%20v%20-4%20c%20-1%20-7%206%20-7%206%20-2%20v%202.5%20m%200%202.5%20v%201%20c%20-1%207%206.5%207%205.5%200%20v%20-1%22%20stroke-width%3D%223.5%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampTumblrSvg:hover,#the_champ_ss_vertical_rearrange .theChampTumblrSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Cpath%20d%3D%22M%2014%207%20v%2014%20q%203%202%206%200%20M%2014%207.5%20q%200%205.5%20-4%205.5%20h%209%22%20stroke-width%3D%223%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampTwitterSvg:hover,#the_champ_ss_vertical_rearrange .theChampTwitterSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-8%20-8%2064%2064%22%3E%0A%3Cpath%20d%3D%22M%2038%2019%20q%202%20-1%204%20-5%20q%20-1.5%202%20-4%202%20q%201.5%20-1%203.5%20-5%20q%20-1.5%202%20-5%202%20c%20-5%20-5%20-13%20-2%20-12%206%20q%20-7%201%20-15%20-8%20q%20-2%204%201%209%20q%20-1%200%20-3%20-1%20q%200%205%205%207%20q%20-1%20.5%20-3%200%20q%201%204%208%206%20q%20-5%203%20-11%203%20c%2014%208%2030%200%2031.5%20-14%22%20stroke-width%3D%220.3%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampVkontakteSvg:hover,#the_champ_ss_vertical_rearrange .theChampVkontakteSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%0A%3Cpath%20d%3D%22M%202.5%209%20h%204.5%20l%205%207%20v%20-7%20h%204.5%20v%207%20l%205%20-7%20h%205%20l%20-5%207%20l%205%207%20h%20-5%20l%20-5%20-7%20v%207%20h%20-4.5%20q%20-2%200%20-5%20-6%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampYahooSvg:hover,#the_champ_ss_vertical_rearrange .theChampYahooSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Cpath%20d%3D%22M%208%2010%20l%207%207%20l%205%20-5%20m%20-4.7%205%20v%203%20h%20-0.5%20v%20-3%20m%208%20-4%20v%205%20m%200%201%20v%201%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%206%2010%20h%206%20m%205%202%20h%206%20m%20-11%209.5%20h%206%22%20stroke-width%3D%221.4%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampXingSvg:hover,#the_champ_ss_vertical_rearrange .theChampXingSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%0A%3Cpath%20d%3D%22M%206%209%20h%205%20l%204%204%20l%20-5%207%20h%20-5%20l%205%20-7%20z%20m%2015%20-4%20h%205%20l%20-9%2013%20l%204%208%20h%20-5%20l%20-4%20-8%20z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampWhatsappSvg:hover,#the_champ_ss_vertical_rearrange .theChampWhatsappSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2040%2040%22%3E%3Cpath%20id%3D%22arc1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M%2011.579798566743314%2024.396926207859085%20A%2010%2010%200%201%200%206.808479557110079%2020.73576436351046%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%207%2019%20l%20-1%206%20l%206%20-1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2010%2010%20q%20-1%208%208%2011%20c%205%20-1%200%20-6%20-1%20-3%20q%20-4%20-3%20-5%20-5%20c%204%20-2%20-1%20-5%20-1%20-4%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampAIMSvg:hover,#the_champ_ss_vertical_rearrange .theChampAIMSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.75%2016.548c-.24.558-.465%201.08-.707%201.646%202.756%201.873%205.48%203.752%207.615%206.453l-2.11%201.43c-.708-.768-1.364-1.59-2.132-2.29-1.047-.958-2.156-1.85-3.557-2.285-.585-.183-.98-.086-1.39.41-1.527%201.862-3.26%203.49-5.476%204.522-1.368.64-1.368.642-1.972-.695-.178-.39-.346-.785-.54-1.226%201.827-.433%203.38-1.246%204.62-2.62.74-.822%201.166-1.716%201.26-2.856.17-2.103.628-4.15%201.828-5.95.534-.797%201.768-.98%202.493-.37.062.046.11.126.13.2.48%201.81%202.08%202.005%203.58%201.63.573-.146%201.118-.404%201.73-.63l1.07%201.483c-1.903%201.718-4.075%201.73-6.444%201.145zm.842-12.054c1.78.02%203.254%201.57%203.22%203.386-.032%201.734-1.62%203.284-3.325%203.246-1.822-.04-3.326-1.604-3.284-3.418.038-1.8%201.555-3.236%203.39-3.214z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampAmazonWishListSvg:hover,#the_champ_ss_vertical_rearrange .theChampAmazonWishListSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.998%2023.842c-.127%200-.256.03-.377.086-.132.055-.27.117-.4.172l-.194.08-.25.1v.005c-2.72%201.102-5.573%201.748-8.215%201.805-.097.004-.193.004-.29.004-4.153.003-7.544-1.926-10.964-3.823-.12-.06-.24-.094-.36-.094-.156%200-.313.058-.43.164-.114.106-.183.266-.182.426%200%20.207.112.395.267.52%203.21%202.786%206.73%205.376%2011.46%205.378.094%200%20.188-.002.28-.004%203.01-.07%206.415-1.085%209.058-2.745l.016-.01c.346-.207.69-.44%201.018-.703.205-.15.346-.385.344-.63-.01-.435-.377-.73-.775-.73zm3.666-1.54c-.012-.265-.068-.466-.178-.632l-.01-.016-.015-.02c-.11-.12-.216-.167-.333-.218-.347-.133-.853-.205-1.46-.207-.437%200-.92.04-1.4.143l-.002-.03-.486.16-.01.006-.276.09v.012c-.322.136-.615.302-.89.498-.167.13-.31.297-.317.556-.004.14.066.3.185.395.12.097.257.13.378.13.027%200%20.055%200%20.078-.005l.023-.002.018-.003c.238-.053.586-.085.992-.144.347-.037.72-.066%201.04-.066.225%200%20.43.014.57.045.07.016.12.032.15.05.01.003.016.007.02.01.006.02.016.067.014.14.004.268-.11.767-.266%201.25-.152.487-.338.974-.46%201.298-.03.075-.048.157-.048.247-.003.13.05.287.16.393.11.104.255.145.374.145h.006c.18-.002.332-.07.463-.176%201.236-1.112%201.666-2.888%201.684-3.888l-.003-.16z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.355%2010.384c-.728.055-1.565.11-2.404.222-1.282.17-2.57.39-3.63.896-2.07.838-3.467%202.627-3.467%205.254%200%203.3%202.124%204.98%204.81%204.98.894%200%201.622-.114%202.29-.28%201.064-.336%201.958-.95%203.02-2.07.614.838.782%201.23%201.844%202.125.278.114.558.114.78-.052.673-.56%201.85-1.568%202.462-2.125.28-.224.224-.56.056-.837-.613-.783-1.23-1.455-1.23-2.965V10.5c0-2.125.167-4.082-1.397-5.534-1.285-1.173-3.3-1.62-4.864-1.62h-.672c-2.85.164-5.868%201.395-6.54%204.918-.11.447.226.613.45.67l3.13.39c.336-.055.502-.336.56-.613.278-1.23%201.284-1.845%202.4-1.96h.227c.67%200%201.397.28%201.79.84.447.67.39%201.568.39%202.35v.446zm-.613%206.65c-.393.782-1.063%201.286-1.79%201.456-.112%200-.28.055-.448.055-1.228%200-1.956-.95-1.956-2.35%200-1.788%201.06-2.627%202.402-3.018.727-.167%201.567-.225%202.405-.225v.672c0%201.287.057%202.292-.613%203.41z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampAOLMailSvg:hover,#the_champ_ss_vertical_rearrange .theChampAOLMailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M17.334%2013.26c-2.315%200-4.067%201.8-4.067%204.027%200%202.35%201.824%204.03%204.067%204.03%202.243%200%204.062-1.68%204.062-4.03%200-2.228-1.744-4.027-4.062-4.027zm0%202.127c1-.007%201.82.847%201.82%201.9%200%201.048-.82%201.9-1.82%201.9s-1.818-.853-1.818-1.9c0-1.053.817-1.9%201.818-1.9zm11.59%204.518c0%20.778-.63%201.412-1.41%201.412-.778%200-1.41-.634-1.41-1.412%200-.778.632-1.408%201.41-1.408.78%200%201.41.63%201.41%201.408zm-4.104%201.418h-2.216v-10.28h2.216v10.28zM9.33%2011.04s2.585%206.79%203.862%2010.13c.015.037.028.078.047.132-.06.006-.105.01-.15.01-.83.002-1.664-.003-2.497.004-.12.002-.17-.04-.204-.156-.116-.385-.247-.766-.365-1.147-.032-.11-.074-.153-.193-.153-1.066.006-2.132.006-3.2%200-.1%200-.142.03-.173.13-.127.405-.26.81-.39%201.21-.02.076-.05.117-.136.117-.874-.006-1.75-.004-2.624-.004-.016%200-.036-.005-.07-.012.023-.06.04-.116.064-.17%201.286-3.307%203.91-10.086%203.91-10.086H9.33zm-.023%206.674c-.343-1.147-.68-2.274-1.02-3.4h-.03l-1.017%203.4h2.067z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampAppnetSvg:hover,#the_champ_ss_vertical_rearrange .theChampAppnetSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%207.158L4.156%2025h2.422l2.695-4h13.453l2.695%204h2.425L16%207.158zM10.82%2019L16%2011.2l5.178%207.8H10.82z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBaiduSvg:hover,#the_champ_ss_vertical_rearrange .theChampBaiduSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M8.68%2016.617c2.485-.534%202.145-3.51%202.073-4.16-.123-1.002-1.3-2.752-2.9-2.612-2.013.18-2.307%203.087-2.307%203.087-.273%201.346.65%204.22%203.133%203.685m4.614-4.986c1.373%200%202.482-1.58%202.482-3.533s-1.11-3.533-2.482-3.533-2.485%201.58-2.485%203.533%201.112%203.536%202.485%203.536m5.918.233c1.837.24%203.015-1.72%203.25-3.205.24-1.482-.946-3.207-2.244-3.503-1.305-.3-2.93%201.787-3.08%203.148-.177%201.666.237%203.326%202.073%203.56m7.276%202.496c0-.71-.59-2.85-2.78-2.85-2.193%200-2.483%202.02-2.483%203.447%200%201.362.113%203.263%202.84%203.204%202.72-.06%202.422-3.084%202.422-3.8m-2.78%206.237s-2.84-2.197-4.497-4.572c-2.25-3.503-5.445-2.076-6.513-.298-1.062%201.783-2.717%202.91-2.954%203.21-.24.292-3.43%202.017-2.723%205.165.71%203.146%203.2%203.087%203.2%203.087s1.833.18%203.96-.298c2.132-.475%203.966.116%203.966.116s4.97%201.667%206.33-1.54c1.36-3.207-.768-4.872-.768-4.872%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBalatarinSvg:hover,#the_champ_ss_vertical_rearrange .theChampBalatarinSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M29%2017H3v10c0%201.1.9%202%202%202h22c1.1%200%202-.9%202-2V17z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%2022h8v2h-8z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M29%2015H3V5c0-1.1.9-2%202-2h22c1.1%200%202%20.9%202%202v10z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15%205h2v8h-2z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M12%208h8v2h-8z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBibSonomySvg:hover,#the_champ_ss_vertical_rearrange .theChampBibSonomySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%228%22%3E%3C%2Fcircle%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBittyBrowserSvg:hover,#the_champ_ss_vertical_rearrange .theChampBittyBrowserSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4%204h12v12H4z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%204v16H4v8h24V4%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBlinklistSvg:hover,#the_champ_ss_vertical_rearrange .theChampBlinklistSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M3%2010.35v11.3l8.977-5.418%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.55%2027.454c-4.397%200-8.314-2.39-10.205-6.36l1.675-1.04c1.558%203.274%204.906%205.388%208.53%205.388%205.204%200%209.438-4.235%209.438-9.44%200-5.208-4.233-9.443-9.44-9.443-3.804%200-7.22%202.26-8.7%205.763l-1.733-1.057c1.798-4.25%205.82-6.72%2010.434-6.72C23.86%204.546%2029%209.683%2029%2015.996c0%206.317-5.136%2011.457-11.45%2011.457z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M11.425%2018.623c1.02%202.406%203.403%204.09%206.18%204.09%203.71%200%206.715-3.006%206.715-6.712%200-3.71-3.005-6.712-6.714-6.712-2.887%200-5.35%201.823-6.295%204.38l3.958%202.566-3.84%202.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBloggerPostSvg:hover,#the_champ_ss_vertical_rearrange .theChampBloggerPostSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M12.393%206.112h4.367c1.61.19%203.96%201.572%204.824%203.41.238.515.363.594.56%202.12.106.786.16%201.367.51%201.69.495.45%202.333.147%202.696.43l.277.22.166.343.06.277-.04%205.048c-.02%203.43-2.81%206.238-6.244%206.238h-7.177c-3.436%200-6.244-2.81-6.244-6.238v-7.29c-.003-3.434%202.806-6.248%206.242-6.248z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M12.47%2011.22h3.464c.66%200%201.195.534%201.195%201.188%200%20.653-.538%201.195-1.198%201.195H12.47c-.66%200-1.194-.542-1.194-1.195%200-.654.535-1.19%201.195-1.19zm0%207.15h7.038c.654%200%201.19.534%201.19%201.188%200%20.646-.535%201.188-1.19%201.188H12.47c-.66%200-1.194-.54-1.194-1.188%200-.654.535-1.19%201.195-1.19z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBlogMarksSvg:hover,#the_champ_ss_vertical_rearrange .theChampBlogMarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2018.917L17.646%2016l-8.408-4.795V29l13.524-7.71%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2010.71L9.238%203v8.204l8.408%204.794%205.116-2.915%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBoxnetSvg:hover,#the_champ_ss_vertical_rearrange .theChampBoxnetSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.49%2011.36c-1.653%200-3.18.524-4.434%201.41V6.543c0-.893-.725-1.616-1.617-1.616-.895%200-1.617.723-1.617%201.616v11.903c-.017.2.002%201.37.055%201.7.53%203.73%203.73%206.604%207.61%206.604%204.25%200%207.692-3.446%207.692-7.696.003-4.25-3.444-7.695-7.694-7.695zm0%2012.126c-2.45%200-4.434-1.984-4.434-4.432%200-2.45%201.983-4.434%204.433-4.434%202.445%200%204.43%201.984%204.43%204.434%200%202.448-1.984%204.432-4.433%204.432z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBookmarksfrSvg:hover,#the_champ_ss_vertical_rearrange .theChampBookmarksfrSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.256%209.5c-2.188-3.79-6.36-.54-7.83%202.205%201.073.86%201.802%202.112%202.006%203.475%203.103.094%208.023-1.873%205.824-5.68-.7-1.212.515.894%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M15.998%203c-4.368%200-3.664%205.23-2.013%207.886%201.283-.505%202.74-.505%204.023%200C19.66%208.23%2020.366%203%2015.998%203z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M9.255%208.294c-1.108-.64-2.42-.918-3.49-.053-.96.78-1.79%202.268-1.617%203.538.352%202.564%204.32%203.468%206.416%203.405.204-1.363.934-2.618%202.01-3.477-.67-1.256-1.898-2.59-3.32-3.41-.71-.41%201.422.82%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.426%2019.05c-.447-.67-.744-1.435-.862-2.23-2.785-.084-7.768%201.608-6.056%205.24%202.023%204.292%206.448%201.248%208.063-1.765-.44-.354-.83-.773-1.142-1.246-.132-.198.314.47%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.202%2021.458c-.064-.12-.13-.232-.198-.342-1.28.503-2.737.503-4.02%200C12.338%2023.766%2011.624%2029%2016%2029c4.218%200%203.67-4.848%202.204-7.542-.064-.12.678%201.243%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.83%2020.088c-.478-2.46-4.326-3.33-6.398-3.27-.204%201.364-.933%202.617-2.007%203.476.934%201.744%202.858%203.73%204.913%204.006%202.043.276%203.853-2.332%203.49-4.212-.153-.8.137.706%200%200z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampBuddyMarksSvg:hover,#the_champ_ss_vertical_rearrange .theChampBuddyMarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2219.587%22%20cy%3D%227.172%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M21.374%2011.668h-3.572c-.085%200-.168.01-.253.013.32.68.51%201.437.51%202.236%200%201.476-.62%202.807-1.61%203.756%202.314.69%204.084%202.656%204.486%205.08%203.414-.15%205.382-1.114%205.513-1.18l.282-.145h.03V17.06c0-2.97-2.418-5.39-5.39-5.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2212.413%22%20cy%3D%2213.439%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M14.198%2017.937h-3.57c-2.973%200-5.39%202.417-5.39%205.388v4.37l.01.067.303.095c2.838.885%205.3%201.18%207.33%201.18%203.96%200%206.257-1.13%206.398-1.2l.282-.142h.027v-4.37c0-2.97-2.416-5.388-5.388-5.388z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampCare2NewsSvg:hover,#the_champ_ss_vertical_rearrange .theChampCare2NewsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.56%2021.21c1.558.926%203.202%201.637%204.95%202.122.746.207%201.255.03%201.596-.673.102-.21.25-.404.4-.586%202.322-2.812%201.91-6.988-1.06-7.983.66-.517.662-1.2.47-1.92-.156-.59-.265-1.204-.492-1.767-.514-1.278-.694-2.603-.77-3.964-.047-.814-.1-1.767-1-2.068-.875-.292-1.54.357-2.09.977-1.85%202.082-2.9%204.576-3.644%207.22-.372%201.33-.7%202.676-1.077%204.12-.332-.34-.57-.837-.925-.897-.14-.376-.74-2.2.177-3.78.02-.008.033-.022.047-.037l.174-.22c.05-.063.037-.15-.024-.2-.06-.048-.15-.037-.196.025l-.174.223c-.033.04-.035.093-.02.138-.84%201.48-.432%203.147-.23%203.76-.422-.616-1.416-1.792-2.95-2.06-.024-.04-.067-.067-.116-.067h-.28c-.08%200-.143.063-.143.14%200%20.08.062.142.142.142h.28c.023%200%20.043-.007.062-.017%201.54.254%202.51%201.48%202.884%202.046-.38.265.127.786.08%201.276-1.986-1.483-4.072-2.605-6.244-3.572-1.956-.87-3.89-1.798-6.008-2.233-.47-.097-.977-.107-1.25.41-.25.474-.093.936.19%201.34.153.222.347.434.566.585%202.44%201.678%204.303%203.93%206.212%206.145.446.517.896%201.027%201.665%201.065.25.012.455.132.445.446v.123c.047.827.25%201.5.774%202.28%201.365%201.67%203.08%202.88%205.054%203.7.4.167.73.25%201.01.25.685%200%201.018-.517%201.116-1.578.026-1.45-.42-2.82-.863-4.154.352-.27.517.24.788.065.237-.33-.216-.68.018-1.08.172.097.316.173.456.256z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampCiteULikeSvg:hover,#the_champ_ss_vertical_rearrange .theChampCiteULikeSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M8%2024h16v2H8zm0-6h16v2H8zm0-6h16v2H8zm0-6h16v2H8z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampDiaryRuSvg:hover,#the_champ_ss_vertical_rearrange .theChampDiaryRuSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203C8.82%203%203%208.82%203%2016s5.82%2013%2013%2013%2013-5.82%2013-13S23.18%203%2016%203zm0%2024.807C9.48%2027.807%204.192%2022.522%204.192%2016%204.192%209.48%209.48%204.193%2016%204.193c3.92%200%207.392%201.91%209.54%204.85h-8.308s-2.863.397-3.18%202.544c-.34%202.293-1.988%202.465-1.988%202.465h-4.69v1.51h9.74c.206-1.086%201.16-1.907%202.305-1.907%201.143%200%202.096.82%202.302%201.908h1.632v.874h-1.632c-.206%201.087-1.16%201.91-2.305%201.91-1.147%200-2.1-.823-2.306-1.91H7.37v1.59h4.69s1.67%200%201.988%202.464c.304%202.356%203.18%202.548%203.18%202.548h8.25c-2.15%202.895-5.596%204.77-9.48%204.77z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampDiasporaSvg:hover,#the_champ_ss_vertical_rearrange .theChampDiasporaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.498%206.49v6.258l-5.953-1.933L6%2015.57l5.95%201.934-3.677%205.063%204.046%202.942L16%2020.442l3.68%205.064%204.047-2.943L20.05%2017.5%2026%2015.57l-1.545-4.755-5.953%201.933V6.49h-5.004z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampDiHITTSvg:hover,#the_champ_ss_vertical_rearrange .theChampDiHITTSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.668%2026.125H19.01l.014-2.145h-.09c-.88%201.558-2.582%202.47-4.345%202.47-3.794%200-6.26-3.643-6.26-8.522%200-5.608%203.055-8.665%206.49-8.665%201.764%200%203.027.705%203.584%201.705h.09V5.552h5.17m-5.17%2010.79c0-2.29-1.353-2.966-2.232-2.966-1.88%200-2.73%202.055-2.73%204.552%200%202.852%201.113%204.35%202.7%204.35.97%200%202.262-.618%202.262-2.88v-3.055z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampDiigoSvg:hover,#the_champ_ss_vertical_rearrange .theChampDiigoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M23.81%204.5c.012.198.035.396.035.593%200%204.807.026%209.615-.01%2014.422-.02%203.248-1.5%205.678-4.393%207.158-4.66%202.385-10.495-.64-11.212-5.836-.76-5.517%203.747-9.56%208.682-9.018%201.114.12%202.16.5%203.134%201.07.517.3.527.295.53-.29.007-2.7.01-5.4.014-8.103h3.22zm-7.914%2019.97c2.608.068%204.82-2.025%204.954-4.552.138-2.626-1.89-5.074-4.727-5.145-2.7-.067-4.867%202-4.973%204.71-.107%202.72%202.13%205.008%204.746%204.988z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampDZoneSvg:hover,#the_champ_ss_vertical_rearrange .theChampDZoneSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.957%2021.422l8.6-10.75h-7.972V9.008H28v1.628l-8.65%2010.69H28v1.667H16.957v-1.57z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4%209.007h5.59c1.898%200%203.37.683%204.416%202.047.933%201.23%201.4%202.81%201.4%204.73%200%201.486-.277%202.83-.828%204.028-.97%202.12-2.64%203.18-5.007%203.18H4V9.007zm5.22%2012.367c.626%200%201.14-.066%201.544-.2.72-.247%201.31-.724%201.768-1.428.367-.565.63-1.29.792-2.17.094-.527.14-1.016.14-1.466%200-1.732-.336-3.078-1.01-4.037-.674-.958-1.758-1.438-3.254-1.438H5.913v10.74H9.22z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampEvernoteSvg:hover,#the_champ_ss_vertical_rearrange .theChampEvernoteSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M7.884%208.573h2.276c.13%200%20.236-.106.236-.235%200%200-.027-1.95-.027-2.494v-.006c0-.445.09-.833.253-1.16l.078-.145c-.007%200-.017.005-.025.014l-4.42%204.385c-.01.007-.014.016-.017.026.09-.046.215-.107.233-.115.386-.175.85-.27%201.41-.27zm17.704-.477c-.18-.968-.755-1.444-1.275-1.632-.56-.203-1.698-.413-3.127-.58-1.15-.137-2.504-.126-3.318-.1-.1-.672-.568-1.285-1.096-1.498-1.404-.564-3.573-.428-4.13-.272-.442.125-.932.378-1.205.768-.183.262-.302.595-.302%201.062%200%20.265.007.886.015%201.44l.014%201.054c0%20.494-.4.896-.896.897H7.99c-.485%200-.856.082-1.14.21-.284.128-.484.303-.636.508-.304.408-.357.912-.355%201.426%200%200%200%20.416.102%201.23.084.63.767%205.02%201.414%206.356.25.522.42.736.912.966%201.1.47%203.61.994%204.787%201.146%201.174.15%201.912.466%202.35-.457.002%200%20.088-.227.208-.56.382-1.156.435-2.18.435-2.924%200-.076.11-.078.11%200%200%20.524-.1%202.38%201.303%202.875.554.197%201.7.373%202.864.51%201.055.12%201.82.537%201.82%203.24%200%201.645-.346%201.87-2.152%201.87-1.464%200-2.02.038-2.02-1.125%200-.938.93-.842%201.616-.842.31%200%20.086-.23.086-.81%200-.576.36-.91.02-.918-2.384-.065-3.786-.004-3.786%202.978%200%202.706%201.036%203.208%204.418%203.208%202.65%200%203.588-.086%204.682-3.483.22-.67.742-2.718%201.06-6.154.197-2.173-.194-8.732-.502-10.388zm-4.622%207.25c-.327-.012-.643.01-.937.056.08-.667.353-1.488%201.332-1.453%201.08.033%201.23%201.056%201.237%201.75-.457-.205-1.02-.335-1.635-.357z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampFarkSvg:hover,#the_champ_ss_vertical_rearrange .theChampFarkSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.925%209.77V5.613H9.075v20.772h5.54v-8.31h8.31v-4.153h-8.31V9.77%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampFlipboardSvg:hover,#the_champ_ss_vertical_rearrange .theChampFlipboardSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19%2019H7V7h12v12z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25%2013H7V7h18v6z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13%2025H7V7h6v18z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampFolkdSvg:hover,#the_champ_ss_vertical_rearrange .theChampFolkdSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.956%2010.21c-.183.192-.613.138-.99.14-.102.317-.126.71-.283.974.626.496%201.85.406%202.405.972%201.197-.444.245-1.354.99-2.085%201.134-.14%201.386.588%201.697%201.254-.267.247-.936.102-1.415.14-.26.208-.333.6-.565.833.258.58.96.724%201.133%201.39%201.454-.376%202.954-.71%204.526-.973.41-.43.317-1.356.99-1.53%201.104.213%201.46%201.16%201.556%202.363-.586%201.043-2.1.605-2.546-.277-1.465.226-2.867.52-4.245.832-.11.325.1%201.263-.144%201.81.926.625%201.29-.49%202.122-.42.48.503.495%202.374-.566%202.224-.604-.053-.674-.634-.708-1.25-.432.1-.515-.143-.85-.14-.646.383-.97%201.083-1.695%201.39.094%201.236%201.462.38%202.12.974-.057%201.01-.8%201.345-1.838%201.39-.066-.836.216-1.503-.707-1.945-.94.142-1.37.782-2.264.973-.013.43.175.664.284.972.248.17%201.165-.21%201.415.278-.01%201.075-1.473%201.828-2.264%201.25-.063-.616.382-.734.565-1.11-.267-.293-.405-.713-.564-1.112-.878.342-1.665.773-2.83.834.004.327-.243.41-.14.833-.056.518.68.26.706.696.24%201.26-1.777%201.455-2.12.555-.03-.86%201.033-.65.706-1.808-.713-.274-1.917-.063-2.55-.417-.374.14-.382.644-.706.835.065.4.5.436.425.974-.925.36-2.313.07-2.12-1.114.533-.615%201.49-.076%201.835-.973-.557-.656-1.166-1.263-1.413-2.223-2.124.464-3.843%201.323-5.8%201.947-.187.467-.196%201.107-.566%201.39-.59.148-.625.036-1.273%200-.56-.854-.257-2.7.85-2.78.61-.135.41.523.85.557%202.016-.472%203.78-1.195%205.8-1.667-.433-2.485%203.206-4.233-.85-3.893-.396-1.225.373-2.164%201.13-2.085%201.273.132.285%201.725%201.273%202.224.908-.498%201.543-1.263%202.69-1.53.08-.45-.097-.646-.143-.972-.088-.33-.87.02-.99-.28v-.97c.46-.426%201.663-.355%201.98.138.114.623-.25.773-.706.834.037.427.308.626.424.972.9-.37%202.268-.273%203.538-.277.2-.17.266-.48.28-.836.108-.522-.75-.095-.564-.694.156-1.48%202.125-.633%202.12.416zm1.132%206.256c.652-.378.368-1.677.424-2.64-1.742-1.426-2.885%202.7-.424%202.64zm-6.224%201.53c1.3.173%203.114-1.23%202.97-2.502-.14-1.227-2.55-2.332-3.96-1.67-1.815.858-.44%203.98.99%204.17z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampGoogleBookmarksSvg:hover,#the_champ_ss_vertical_rearrange .theChampGoogleBookmarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-12%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampGoogleGmailSvg:hover,#the_champ_ss_vertical_rearrange .theChampGoogleGmailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M2.902%2025.777h26.195V6.223H2.902v19.554zm22.44-4.007v3.806H6.955v-3.6h.032l.093-.034%206.9-5.558%202.09%201.77%201.854-1.63%207.42%205.246zm0-.672l-7.027-4.917%207.028-6.09V21.1zm-1.17-14.67l-.947.905c-2.356%202.284-4.693%204.75-7.17%206.876l-.078.06L8.062%206.39l16.11.033zm-10.597%209.61l-6.62%205.294.016-10.914%206.607%205.62%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampHackerNewsSvg:hover,#the_champ_ss_vertical_rearrange .theChampHackerNewsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.275%2017.834v7.13h-2.602v-7.182L9%207.035h3.07l2.967%206.115c.365.755.702%201.51.988%202.316.312-.728.65-1.483%201.042-2.29l3.018-6.142H23l-5.725%2010.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampHatenaSvg:hover,#the_champ_ss_vertical_rearrange .theChampHatenaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M6.96%208.33h7.328c1.247%200%202.206.366%202.875%201.098.666.733%201.002%201.64%201.002%202.72%200%20.91-.24%201.688-.715%202.336-.318.433-.784.773-1.396%201.023.928.266%201.614.72%202.05%201.367.44.645.66%201.457.66%202.432%200%20.795-.157%201.512-.468%202.146-.314.635-.74%201.14-1.28%201.508-.337.23-.842.396-1.52.502-.9.14-1.498.21-1.79.21H6.958V8.328zm3.877%206.017h1.74c.623%200%201.058-.13%201.302-.382.24-.255.364-.623.364-1.104%200-.442-.123-.793-.366-1.045-.245-.25-.67-.377-1.276-.377h-1.767v2.91zm0%206.027h2.038c.69%200%201.176-.145%201.458-.434.282-.29.425-.68.425-1.168%200-.453-.142-.818-.42-1.092-.28-.277-.77-.414-1.47-.414h-2.03v3.108zM21.213%208.52h3.584v9.58h-3.584z%22%2F%3E%3Ccircle%20cx%3D%2223.005%22%20cy%3D%2221.635%22%20r%3D%222.036%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampInstapaperSvg:hover,#the_champ_ss_vertical_rearrange .theChampInstapaperSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.98%205.5h8.04v1.265h-.62c-.582%200-1.004.08-1.264.242-.262.162-.453.39-.572.69-.12.297-.182.874-.182%201.732v13.53c0%20.683.064%201.167.195%201.453.13.286.313.494.55.625.234.13.658.196%201.27.196h.618V26.5H11.98v-1.265h.662c.592%200%201.012-.067%201.258-.203.246-.135.424-.33.533-.587.11-.256.166-.75.166-1.483V9.112c0-.776-.057-1.3-.168-1.567-.11-.268-.287-.465-.533-.59-.247-.128-.667-.19-1.26-.19h-.66V5.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampJamespotSvg:hover,#the_champ_ss_vertical_rearrange .theChampJamespotSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.427%2024.073c.677.4%201.633.708%202.927.708%201.848%200%202.587-.83%202.587-2.71V5h2.436v17.13c0%202.745-1.478%204.87-5.176%204.87-1.664%200-2.99-.4-3.573-.678l.8-2.25z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampKakaoSvg:hover,#the_champ_ss_vertical_rearrange .theChampKakaoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.345%206h-8.688c-.583%200-1.06.45-1.06%201.005v8.814c0%20.553.477%201.003%201.06%201.003h4.007c-.03.98-.445%202.056-1.077%202.996-.612.904-1.613%201.796-2.156%202.223l-.04.032c-.117.107-.202.23-.204.405-.003.13.07.232.15.34l.018.022%202.774%202.975s.137.137.247.163c.126.03.27.032.368-.042%204.84-3.56%205.537-8.023%205.66-10.44V7.004C21.403%206.45%2020.93%206%2020.346%206%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampKindleItSvg:hover,#the_champ_ss_vertical_rearrange .theChampKindleItSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.927%2027H10V5h2.927v11.754l5.15-5.47h3.683l-5.814%206.067L22%2027h-3.407l-4.704-7.763-.964%201.037V27z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampKnownSvg:hover,#the_champ_ss_vertical_rearrange .theChampKnownSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.38%202.65c-7.45%200-13.5%206.048-13.5%2013.5s6.05%2013.5%2013.5%2013.5%2013.5-6.048%2013.5-13.5-6.04-13.5-13.5-13.5zm.078%2025.203c-6.387%200-11.57-5.184-11.57-11.572%200-6.385%205.183-11.57%2011.57-11.57%206.387%200%2011.57%205.185%2011.57%2011.57.002%206.39-5.175%2011.574-11.57%2011.574z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.856%2021.758c-.393%200-.694-.07-.903-.2-.154-.094-.4-.402-.74-.91l-3.934-5.964%203.3-3.2c.254-.248.463-.433.625-.54s.293-.178.41-.217c.107-.03.308-.046.593-.046h.207v-.01l.555-.01V8.55h-.648v.01h-6.087v2.12h.548c.31%200%20.494.023.57.077.078.054.117.13.117.23%200%20.055-.023.11-.062.18-.04.068-.154.2-.34.4l-4.257%204.436v-4.08c0-.402.03-.68.1-.826.07-.147.178-.262.34-.34.1-.053.363-.076.78-.076h.44V8.56H8.8v2.113h.563c.34%200%20.58.04.71.116.132.075.225.19.286.345.06.154.084.455.084.91v8.37c0%20.478-.022.78-.076.903-.062.153-.154.26-.285.33-.132.07-.394.11-.78.11H8.8v2.12h6.666v-2.12h-.556c-.363%200-.61-.032-.733-.094s-.216-.162-.278-.31c-.063-.145-.1-.408-.1-.786v-1.543l2.067-2.013%202.4%203.842c.2.332.3.54.3.625%200%20.077-.054.147-.162.2-.108.054-.417.077-.918.077h-.278v2.12h6.89v-2.12h-.24z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampLineSvg:hover,#the_champ_ss_vertical_rearrange .theChampLineSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampLiveJournalSvg:hover,#the_champ_ss_vertical_rearrange .theChampLiveJournalSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7.08%209.882l.004-.008.004-.01c.195-.408.422-.81.674-1.192.264-.393.53-.75.81-1.06%201.493-1.683%203.524-2.692%206.08-3.015l.733-.097.426.61%208.426%2012.14.188.27.027.328.608%207.65.164%202.002-1.854-.783-7.23-3.053-.325-.143-.208-.286-8.422-12.14-.4-.574.3-.638zm2.72.13c-.06.097-.118.202-.18.305l7.79%2011.235%205.05%202.13-.427-5.32-7.79-11.226c-1.603.326-2.884%201.032-3.84%202.102-.227.252-.428.514-.602.775z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M8.186%2010.4c1.283-2.66%203.488-4.192%206.62-4.594l8.423%2012.14.61%207.648-7.23-3.057L8.186%2010.4z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M15.158%206.316l1.89%202.717c-2.597.352-5.354%202.552-6.603%204.62l-1.898-2.735c1.115-2.09%204.27-4.18%206.61-4.602z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.69%2022.727l.283%203.084-2.924-1.235%201.224-1.202%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16.367%2022.11c.846-1.09%202.03-1.903%202.164-3.868l-5.273-7.602c-1.27.914-2.227%201.933-2.83%202.97l5.94%208.5z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.896%2017.537c-1.312.41-2.498%201.232-4.383.67l-5.272-7.6c1.303-.87%202.59-1.412%203.77-1.605l5.887%208.535z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.248%208.95l-1.846.24v-.004c-.244.04-.514.113-.8.214h-.01c-2.726.944-4.46%202.964-5.784%205.454l-.68-1.004c.604-.86%202.52-5.224%208.484-5.94.27.258.415.692.636%201.04z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampMailRuSvg:hover,#the_champ_ss_vertical_rearrange .theChampMailRuSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.975%2015.894c-.134-2.542-2.02-4.07-4.3-4.07h-.086c-2.63%200-4.09%202.068-4.09%204.417%200%202.633%201.765%204.296%204.077%204.296%202.58%200%204.275-1.89%204.4-4.127l-.003-.515zm-4.37-6.346c1.755%200%203.407.776%204.62%201.993v.006c0-.584.395-1.024.94-1.024h.14c.85%200%201.025.808%201.025%201.063l.005%209.08c-.06.595.613.9.988.52%201.457-1.497%203.203-7.702-.907-11.295-3.83-3.352-8.967-2.8-11.7-.916-2.904%202.003-4.764%206.438-2.958%2010.603%201.968%204.543%207.6%205.896%2010.947%204.546%201.696-.684%202.48%201.607.72%202.355-2.66%201.132-10.066%201.02-13.525-4.972-2.338-4.046-2.212-11.163%203.987-14.85%204.74-2.822%2010.99-2.042%2014.762%201.895%203.937%204.117%203.705%2011.82-.137%2014.818-1.742%201.36-4.326.035-4.312-1.947l-.02-.647c-1.21%201.203-2.824%201.905-4.58%201.905-3.475%200-6.53-3.056-6.53-6.528%200-3.508%203.057-6.6%206.533-6.6%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampMendeleySvg:hover,#the_champ_ss_vertical_rearrange .theChampMendeleySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.596%2018.11c-1.466-.087-2.02-.834-1.93-2.164.076-1.113.274-2.22.418-3.327-.023-1.743-.942-3.13-2.488-3.59-1.583-.47-2.97-.14-4.102%201.15-2.322%202.646-2.616%202.634-5.023-.045-1.152-1.28-2.852-1.66-4.39-.98-1.5.667-2.37%202.237-2.15%203.954.08.625.278%201.235.377%201.863.338%202.122-.105%202.7-2.226%203.147-1.066.228-1.913.786-2.05%201.99-.137%201.22.17%202.39%201.404%202.75.77.226%201.853.084%202.55-.32.96-.553%201.064-1.64.733-2.74-.62-2.05-.027-3.04%202.115-3.34.836-.117%201.766-.022%202.568.235%201.302.41%201.692%201.373%201.175%202.65-.45%201.1-.443%202.09.39%202.984.84.9%202.417%201.08%203.518.435%201.12-.657%201.497-1.807%201.042-3.164-.608-1.814-.085-2.783%201.807-3.123.7-.126%201.463-.113%202.16.025%201.834.367%202.377%201.377%201.84%203.188-.504%201.698.196%203.09%201.72%203.43%201.332.295%202.624-.607%202.89-2.022.308-1.633-.593-2.882-2.344-2.988zm-10.71-.085c-1.374-.06-2.453-1.194-2.445-2.57.01-1.46%201.148-2.567%202.61-2.54%201.467.026%202.57%201.177%202.523%202.627-.05%201.43-1.255%202.545-2.687%202.483z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampMeneameSvg:hover,#the_champ_ss_vertical_rearrange .theChampMeneameSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M25.514%2010.435c-1.582%201.605-4.438%201.56-5.502%203.726-.906%202.57%201.23%206.677%202.12%209.02.603%201.21-4.716%202.378-4.065%202.677%203.754-.043%205.354-1.412%204.904-3.094-.43-1.607-2.376-4.816-2.376-7.383.056-1.938%202.222-2.533%203.618-3.322%201.622-.727%203.14-2.35%202.72-4.25-.018-.672-1.187-2.907-.71-1.175.26%201.278.385%202.856-.706%203.802z%22%2F%3E%3Cpath%20d%3D%22M20.632%207.546C18.59%206.492%2016.32%205.854%2013.946%206.41c-1.277.236-2.78.933-3.637%202.1-1.123%201.34-1.166%203.288-.43%204.82.57%201.18%201.44%202.492%202.85%202.688%201.21.182%202.54.018%203.566-.683-1.223.21-2.64.646-3.736-.172-1.842-1.177-2.735-3.85-1.618-5.8.898-1.7%202.705-2.178%204.62-2.262%202.55-.11%204.995%201.345%205.934%201.7.903.285%202.2.645%202.844-.315.376-.446.226-1.674-.08-1.788.09.86-.543%201.943-1.524%201.66-.736-.17-1.41-.523-2.104-.81zM6.94%2015.156c-1.183%201.865-2.264%204.05-1.85%206.322.38%202.375%202.678%204.05%204.963%204.35%202.348.273%204.69.205%207.043.035.397-.385-1.92-.373-2.895-.514-2.224-.254-4.64-.3-6.55-1.623-1.775-1.33-2.01-3.938-1.155-5.863.714-1.814%201.782-3.568%202.903-5.084-.876.727-1.683%201.27-2.456%202.376z%22%2F%3E%3Cpath%20d%3D%22M12.787%2021.02c1.386.107%203.688-.032%204.768.724.387.582-.332%203.802-.084%204.174.553.162%201.186-3.773.836-4.75-.266-.75-4.966-.352-5.518-.147z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampMixiSvg:hover,#the_champ_ss_vertical_rearrange .theChampMixiSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M16.09%205.246C9.617%205.246%204%209.216%204%2016.63c0%206.93%207.707%2010.193%2012.758%209.01v2.374S28%2025.054%2028%2015.034c0-6.11-4.505-9.788-11.91-9.788z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.92%2020.024h-1.657v-5.688s-.505-1.586-1.585-1.586c-.9%200-2.525.374-2.525%202.08v5.193h-1.657V14.77c0-1.586-.787-2.09-1.506-2.09-1.15%200-2.727.807-2.727%202.403v4.94H9.605v-9.01h1.657v1.03c.656-.546%201.564-1.03%202.727-1.03%201.222%200%202.09.434%202.604%201.282.73-.677%201.777-1.202%203.082-1.202%201.97%200%203.24%201.788%203.24%203.202v5.73z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampMySpaceSvg:hover,#the_champ_ss_vertical_rearrange .theChampMySpaceSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M24%2017.716c-2.21%200-4%201.79-4%204v1.712h8v-1.713c0-2.21-1.79-4-4-4z%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2212.571%22%20r%3D%223.999%22%2F%3E%3Cpath%20d%3D%22M15.147%2018.31c-2.054%200-3.72%201.66-3.72%203.71v1.408h7.437c.002-.615.002-1.148.002-1.408%200-2.05-1.664-3.71-3.72-3.71z%22%2F%3E%3Cellipse%20cx%3D%2215.147%22%20cy%3D%2213.446%22%20rx%3D%223.719%22%20ry%3D%223.71%22%2F%3E%3Cpath%20d%3D%22M7.148%2018.875C5.41%2018.875%204%2020.277%204%2022.008v1.42h6.295c.002-.636.002-1.178.002-1.42%200-1.73-1.41-3.133-3.15-3.133z%22%2F%3E%3Cellipse%20cx%3D%227.148%22%20cy%3D%2214.58%22%20rx%3D%223.148%22%20ry%3D%223.133%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampNetlogSvg:hover,#the_champ_ss_vertical_rearrange .theChampNetlogSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M9.05%2026.276c1.658-2.12%204.19-3.48%207.03-3.48%202.807%200%205.314%201.324%206.975%203.404%202.678-2.098%204.404-5.353%204.404-9.018%200-6.328-5.13-11.46-11.46-11.46S4.54%2010.855%204.54%2017.182c0%203.713%201.772%207.004%204.51%209.095z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%224.051%22%3E%3C%2Fcircle%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampNetvouzSvg:hover,#the_champ_ss_vertical_rearrange .theChampNetvouzSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.25%208.72v17.184H5.5V6.096h8.396l5.605%205.77v6.43%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.75%2023.28V6.095h4.75v19.808h-8.396L12.5%2020.13v-6.427%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampNewsVineSvg:hover,#the_champ_ss_vertical_rearrange .theChampNewsVineSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.828%2019.498l2.875-2.084c.264.166.572.264.906.264.936%200%201.695-.76%201.695-1.7s-.76-1.7-1.697-1.7c-.94%200-1.702.76-1.702%201.7%200%20.07.006.14.014.21l-2.094%201.516v-4.73l2.896-2.1c.26.158.56.25.885.25.937%200%201.696-.76%201.696-1.7%200-.937-.76-1.7-1.697-1.7-.94%200-1.702.763-1.702%201.7%200%20.08.006.16.018.235l-2.098%201.52V4h-1.656v3.79l-2.11-1.528c.02-.102.032-.205.032-.313%200-.94-.764-1.7-1.7-1.7-.94%200-1.7.76-1.7%201.7%200%20.936.76%201.7%201.7%201.7.296%200%20.573-.078.815-.21l2.962%202.143v4.73L13.06%2012.79c.017-.094.028-.19.028-.286%200-.94-.764-1.7-1.7-1.7-.94%200-1.7.76-1.7%201.7%200%20.938.76%201.7%201.7%201.7.304%200%20.59-.083.84-.224l2.938%202.13v5.044L13.07%2019.63c.014-.092.023-.185.023-.28%200-.938-.76-1.7-1.7-1.7-.938%200-1.697.762-1.697%201.7%200%20.94.76%201.7%201.697%201.7.31%200%20.598-.084.846-.226l2.935%202.124V28h1.655v-1.665l2.87-2.077c.263.166.573.266.91.266.937%200%201.698-.76%201.698-1.7%200-.938-.762-1.698-1.7-1.698s-1.698.76-1.698%201.7c0%20.067.004.134.012.2l-2.092%201.517v-5.045z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampNUjijSvg:hover,#the_champ_ss_vertical_rearrange .theChampNUjijSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M8.223%204h4v4h-4zm0%206.223h4V28h-4zM19.777%204h4v4h-4zm0%206.223h4V28h-4zM14%204h4v4h-4zm0%206.223h4v11.11h-4z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampOdnoklassnikiSvg:hover,#the_champ_ss_vertical_rearrange .theChampOdnoklassnikiSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampOknotizieSvg:hover,#the_champ_ss_vertical_rearrange .theChampOknotizieSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M14.613%2027.342H13.37l-4.796-7.3v7.3h-1.15v-9.25H8.66l4.8%207.3v-7.3h1.154v9.25zm6.015-9.408c1.282%200%202.332.438%203.147%201.312.817.875%201.225%202.03%201.225%203.47%200%201.44-.408%202.597-1.225%203.472-.815.874-1.865%201.312-3.147%201.312-1.286%200-2.34-.44-3.16-1.316-.82-.877-1.23-2.033-1.23-3.467%200-1.44.41-2.596%201.23-3.47.82-.876%201.874-1.313%203.16-1.313zm-.013%208.52c.916%200%201.667-.33%202.252-.985.585-.66.877-1.576.877-2.754s-.29-2.096-.874-2.752c-.583-.656-1.326-.984-2.23-.984-.92%200-1.674.33-2.263.985-.59.656-.884%201.574-.884%202.752%200%201.174.293%202.09.88%202.748.587.658%201.335.988%202.242.988z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M11.39%204.5c1.283%200%202.333.438%203.15%201.312.815.875%201.224%202.032%201.224%203.47%200%201.44-.408%202.597-1.225%203.472-.817.875-1.867%201.312-3.15%201.312-1.286%200-2.34-.438-3.16-1.314C7.41%2011.874%207%2010.72%207%209.282c0-1.438.41-2.595%201.23-3.47S10.105%204.5%2011.39%204.5zm-.012%208.52c.916%200%201.667-.33%202.252-.985.585-.656.877-1.574.877-2.752s-.29-2.095-.874-2.752c-.583-.654-1.326-.982-2.23-.982-.92%200-1.674.328-2.264.984-.59.658-.885%201.576-.885%202.753%200%201.174.293%202.09.88%202.75.587.656%201.335.986%202.242.986zm11.317.89H21.29l-2.154-3.402-.737.738v2.663h-1.183V4.656h1.18V9.9l2.556-2.69h1.486l-2.51%202.495%202.764%204.203z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampOutlookcomSvg:hover,#the_champ_ss_vertical_rearrange .theChampOutlookcomSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%208.29v5.5l1.92%201.208c.053.016.163.016.212%200l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%2015.84l1.755%201.204c.246.183.543%200%20.543%200-.297.183%208.104-5.397%208.104-5.397V21.75c0%201.102-.704%201.562-1.496%201.562H19.52V15.84z%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M10.445%2013.305c-.6%200-1.073.282-1.426.842-.355.56-.53%201.305-.53%202.23%200%20.936.175%201.677.53%202.22.347.546.813.82%201.38.82.59%200%201.055-.266%201.4-.795.344-.53.517-1.266.517-2.206%200-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M2.123%205.5v21.51l16.362%203.428V2.33L2.123%205.5zm10.95%2014.387c-.693.91-1.594%201.367-2.706%201.367-1.082%200-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448%200-1.496.343-2.707%201.037-3.63.693-.926%201.614-1.388%202.754-1.388%201.08%200%201.955.438%202.62%201.324.667.885%201%202.05%201%203.495.004%201.496-.345%202.695-1.034%203.604z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampPinboardSvg:hover,#the_champ_ss_vertical_rearrange .theChampPinboardSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.357%2018.913l-5.01%205.014.88-4.5-6.588-8.075-3.48.044%204.316-4.313%204.035-4.04V6.85l7.796%206.403%204.502-.786-4.876%204.87%209.907%2011.62%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampPlurkSvg:hover,#the_champ_ss_vertical_rearrange .theChampPlurkSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.215%2016.016h-8.43V9.7h8.43v6.316zm4.2%204.2V5.5H7.585v21h4.2v-6.285h12.63z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampPocketSvg:hover,#the_champ_ss_vertical_rearrange .theChampPocketSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.005%206.244c2.927%200%205.854-.002%208.782%200%201.396.002%202.195.78%202.188%202.165-.015%202.485.116%204.987-.11%207.456-.75%208.204-10.027%2012.607-16.91%208.064-3.086-2.036-4.82-4.925-4.917-8.672-.06-2.34-.034-4.684-.018-7.025.008-1.214.812-1.98%202.056-1.983%202.975-.01%205.952-.004%208.93-.006zm-5.037%205.483c-.867.093-1.365.396-1.62%201.025-.27.67-.078%201.256.417%201.732%201.688%201.62%203.378%203.238%205.09%204.838.745.695%201.537.687%202.278-.01%201.654-1.55%203.298-3.112%204.93-4.686.827-.797.91-1.714.252-2.38-.694-.704-1.583-.647-2.447.17-1.097%201.04-2.215%202.06-3.266%203.143-.485.494-.77.434-1.227-.025-1.1-1.107-2.234-2.18-3.39-3.225-.325-.29-.77-.447-1.017-.583z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampPrintFriendlySvg:hover,#the_champ_ss_vertical_rearrange .theChampPrintFriendlySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M4.467%2014.305h23.065v6.498H4.467v-6.498z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M5.228%2012.83H26.77l.745%201.39H4.485l.743-1.39z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20d%3D%22M9.844%206.516h12.312v7.31H9.844z%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M8.602%2017.37h14.574v3.396H8.602z%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M10.152%2017.97h11.27l2.233%207.515H7.92l2.232-7.514z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampProtopageBookmarksSvg:hover,#the_champ_ss_vertical_rearrange .theChampProtopageBookmarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M17.866%2014.47l7.626-1.048.574%203.078-7.68%201.038%203.54%207.058-2.804%201.418-3.614-7.23-5.873%205.557-2.144-2.29%205.74-5.42-6.86-3.602%201.593-2.697%206.808%203.595%201.3-7.375%203.1.546-1.303%207.374z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampPushaSvg:hover,#the_champ_ss_vertical_rearrange .theChampPushaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M29.27%2022.188V8.068L17.208%2014.92l3.838%202.33C15.716%2024.144%205.898%2029.306%200%2031.964V32h19.635c3.682-4.865%207.03-11.46%207.03-11.46l2.605%201.648z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampQzoneSvg:hover,#the_champ_ss_vertical_rearrange .theChampQzoneSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.996%2012.83l-7.423-.737c-.566-.053-.694-.142-.87-.604l-3.175-7.043c-.29-.598-.765-.598-1.055%200l-3.384%207.04c-.23.393-.337.48-.896.534l-7.188.808c-.66.064-.808.493-.327.952l5.64%205.185c.265.25.27.355.194.697l-1.447%207.61c-.122.65.25.914.823.58l6.44-3.716c.45-.284.868-.293%201.31-.018l6.47%203.734c.575.333.948.07.826-.582L22.83%2021.2c.663-.226%201.306-.5%201.69-.81l-.155.03c-2.29.547-5.437.872-8.355.872-1.08%200-2.126-.038-3.128-.11l-.006.005c-.88-.063-1.727-.15-2.53-.26-.3-.05.026-.242.026-.242l7.758-5.513s.202-.126.002-.153c-3.188-.5-6.723-.625-10.042-.625h-.23c2.245-.51%205.07-.815%208.14-.815%201.81%200%203.538.106%205.11.297-.003.003.887.124%201.31.193.33.05.024.24.024.24l-7.77%205.385s-.18.106.015.135c2.39.338%205.333.458%207.98.492l-.12-.652c-.057-.378%200-.51.286-.78l5.478-5.12c.484-.454.34-.88-.32-.944z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampRediffMyPageSvg:hover,#the_champ_ss_vertical_rearrange .theChampRediffMyPageSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.506%206.004c-.336%200-.64%200-.92-.002L20.926%206c-1.742%200-2.418.07-3.738.923-.744.457-1.38%201.034-1.85%201.517V6.188c0-.102-.08-.184-.182-.184h-5.71c-.1%200-.183.082-.183.184v19.62c0%20.115.115.23.232.18h5.71c.1%200%20.18-.08.18-.18V14.933c0-2.584%201.85-2.916%203.464-2.916h3.703c.1%200%20.182-.08.182-.182V6.188c-.05-.147-.172-.147-.287-.184h.056z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampRenrenSvg:hover,#the_champ_ss_vertical_rearrange .theChampRenrenSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.74%203.266C17.833%203.088%2016.924%203%2016.013%203c-.934%200-1.843.088-2.753.266%200%208.96-.07%2016.176-9.26%2021.662C5.138%2026.566%206.616%2027.96%208.322%2029c3.595-2.168%205.687-4.736%207.69-8.275%202%203.54%204.07%206.107%207.688%208.275%201.706-1.04%203.184-2.434%204.3-4.072-9.19-5.487-9.26-12.7-9.26-21.662z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampSegnaloSvg:hover,#the_champ_ss_vertical_rearrange .theChampSegnaloSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.65%2011.186c-3.252-1.153-6.64-.972-9.263%201.434-2.76%202.53-3.165%207.208-1.02%2010.172%201.948%202.695%206.138%203.82%209.284%203.58.79-.062%205.125-1.776%204.16-2.845-.174-.192-.41-.29-.454-.31-.042-.017-.104-.032-.136-.038-.03-.007-.264-.05-.522-.076-1.88-.21-3.745.424-5.64-.325-.825-.328-1.674-.668-2.207-1.41-.375-.524-1.086-2.715.16-2.31l7.453%202.404c1.705.55%202.792.625%203.288-1.405.978-3.978-1.35-7.545-5.1-8.875zm-.09%206.423c-.93.046-3.202-.94-3.617-1.076-1.11-.358-2.117-.922-.537-2.053%201.9-1.36%204.214.538%204.51%202.45.038.26-.1.665-.357.678z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.33%206.97c-1.732.556-3.154%201.852-4.18%203.317-.01.012-.006.018-.012.03-.006.01-.018.02-.02.03-.664%202.168%204.32.844%205.263.54.75-.242%204.84-1.912%204.61-3.078-.362-1.837-4.385-1.247-5.66-.84zm-4.032%202.375C17.42%208.2%2017.02%207.21%2016.12%206.488c-.645-.518-2.716-1.49-3.358-.383-.317.55.01%201.31.195%201.862.233.696.612%201.322%201.137%201.835.764.747%202.385.972%203.01.01.142-.218.186-.44.19-.448%200-.008.004-.013.004-.02z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampSinaWeiboSvg:hover,#the_champ_ss_vertical_rearrange .theChampSinaWeiboSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4.91%2019.953c0%203.028%203.943%205.484%208.807%205.484%204.862%200%208.806-2.456%208.806-5.484%200-3.027-3.943-5.482-8.806-5.482-4.863%200-8.807%202.457-8.807%205.484%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.92%2024.99c-4.303.424-8.02-1.52-8.3-4.346-.278-2.827%202.987-5.463%207.292-5.888%204.304-.426%208.018%201.52%208.297%204.345.276%202.83-2.985%205.466-7.29%205.89m8.612-9.38c-.367-.11-.62-.186-.428-.665.416-1.046.458-1.946.01-2.59-.846-1.204-3.155-1.14-5.8-.03%200-.004-.834.362-.62-.297.406-1.31.345-2.406-.29-3.04-1.435-1.436-5.255.056-8.53%203.33C4.424%2014.77%203%2017.37%203%2019.618c0%204.3%205.513%206.913%2010.907%206.913%207.07%200%2011.776-4.106%2011.776-7.37%200-1.97-1.66-3.09-3.15-3.55%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.226%207.74C25.52%205.848%2023%205.127%2020.676%205.62h-.002c-.536.115-.88.644-.765%201.182.112.536.642.882%201.18.765%201.653-.35%203.442.164%204.66%201.508%201.212%201.346%201.542%203.18%201.02%204.787-.17.525.118%201.085.64%201.255.524.168%201.088-.118%201.256-.64v-.004c.728-2.262.268-4.84-1.44-6.732m-2.622%202.367c-.832-.922-2.058-1.272-3.192-1.03-.462.098-.756.552-.656%201.017.097.46.553.758%201.016.657v.003c.552-.117%201.15.053%201.562.502.406.453.514%201.066.338%201.606h.004c-.147.45.102.935.55%201.08.45.144.936-.102%201.08-.552.356-1.1.135-2.357-.7-3.28%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampSiteJotSvg:hover,#the_champ_ss_vertical_rearrange .theChampSiteJotSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.506%208.08c.645%200%201.3.073%201.967.225.547.12.937.285%201.173.495.236.21.354.5.354.868%200%20.232-.043.414-.13.547-.086.13-.272.29-.56.48-.333.224-.524.49-.573.794-.05.302-.094%201.482-.134%203.54-.018%201.99-.033%203.185-.048%203.583-.015.398-.05.785-.107%201.16-.167%201.098-.504%201.958-1.01%202.582-.414.51-.946.912-1.596%201.205-.65.294-1.335.44-2.054.44-.64%200-1.278-.108-1.92-.325-.64-.22-1.197-.518-1.67-.902-.39-.315-.7-.74-.93-1.278-.23-.538-.347-1.11-.347-1.72%200-.75.184-1.37.546-1.863.362-.492.816-.738%201.363-.738.534%200%20.99.207%201.362.62.375.42.56.938.56%201.555%200%20.155-.033.42-.102.787-.012.075-.018.157-.018.247%200%20.24.066.436.2.586.13.15.307.227.524.227.386%200%20.696-.226.933-.677.234-.45.352-1.043.352-1.78l-.01-1.024-.017-2.76c-.052-1.676-.09-2.662-.116-2.96-.027-.296-.09-.538-.195-.725-.086-.15-.162-.246-.23-.29-.065-.046-.245-.117-.538-.215-.138-.038-.256-.144-.353-.315-.098-.174-.147-.357-.147-.554%200-.405.122-.73.366-.975.245-.242.644-.44%201.196-.59.62-.17%201.254-.25%201.91-.25z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.202%208c.593%200%201.37.19%202.33.574.114.046.207.068.275.068.058%200%20.23-.068.518-.203.093-.047.19-.07.294-.07.383%200%20.79.4%201.22%201.195.43.797.642%201.555.642%202.275%200%20.422-.097.776-.29%201.066-.19.288-.426.434-.702.434-.23%200-.416-.06-.56-.18-.144-.12-.46-.478-.95-1.07-.69-.842-1.368-1.263-2.035-1.263-.322%200-.58.102-.772.305-.192.203-.29.47-.29.8%200%20.653.44%201.146%201.32%201.476%201.192.46%201.954.793%202.287%201.003%201.467.934%202.2%202.305%202.2%204.114%200%201.6-.5%202.907-1.5%203.922C13.163%2023.48%2011.826%2024%2010.176%2024c-.736%200-1.513-.115-2.33-.344-.816-.23-1.406-.497-1.77-.805-.274-.24-.523-.764-.745-1.57-.22-.81-.33-1.596-.33-2.363%200-.367.058-.646.173-.833.143-.24.324-.36.543-.36.22%200%20.43.146.63.438.12.165.405.695.855%201.59.215.42.553.768%201.016%201.048.463.278.94.417%201.437.417.426%200%20.77-.104%201.035-.31.265-.207.396-.472.396-.794%200-.3-.103-.56-.31-.777-.208-.22-.544-.422-1.01-.61-.823-.337-1.45-.648-1.88-.93-.433-.28-.835-.636-1.21-1.063-.908-1.053-1.362-2.246-1.362-3.583%200-.66.12-1.306.355-1.933.236-.627.57-1.17%201-1.628C7.633%208.53%208.812%208%2010.203%208z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampSlashdotSvg:hover,#the_champ_ss_vertical_rearrange .theChampSlashdotSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M20.89%206h-5L8.61%2026h5%22%2F%3E%3Ccircle%20cx%3D%2220.89%22%20cy%3D%2223.5%22%20r%3D%222.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampStumpediaSvg:hover,#the_champ_ss_vertical_rearrange .theChampStumpediaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.1%206.875s-.13.717-.293.912c-.163.197-.62.166-1.045%200-.427-.162-.85-.195-1.274-.03-.425.162-.784.134-.717-.356.065-.49.328-.98.688-1.014.36-.03%201.11-.163%201.207-.36.1-.194-.07-.456-.23-.718-.16-.26-.455-.652-.585-.555-.13.1-.49-.13-.62.262-.132.393-.85%201.403-1.373%201.958-.524.557-1.21%201.602-.85%202.253.36.654.947.688%201.733.688h1.165s.273.23.238.523c-.032.293.263%202.71.263%203.527s-.033.85.195.85h.394s-.163.652-.654%202.284c-.49%201.634-.88%202.876-1.144%203.203-.26.326-.424.588-.424%201.01%200%20.428-.13%201.08-.326%201.44-.196.36-.262.883-.523%201.145-.26.262-.26.328-.358.72-.1.392-.526.882-.655%201.075-.127.197-1.817%201.486-1.915%201.848-.098.358%201.577.53%202.31.44.88-.11%201.135-.007%201.388-.436.273-.462.876-1.51%201.192-2.308.18-.457-.1-.816.294-1.34.39-.522%201.01-1.403%201.433-1.895.425-.49.425-1.078.784-1.8.36-.716.785-1.565%201.11-1.5.327.065.75.456%201.34%201.076.588.62.523.947.62%201.534.1.59.228%201.34.523%201.864.295.524.458%201.014.523%201.47.065.458-.1.88%200%201.405.098.52.556.943.816%201.37.26.42%201.272.39%202.12.42.85.035%201.635.167%201.404-.226-.232-.392-1.045-.916-1.275-1.045-.23-.13-.36-.13-.555-.818-.197-.685-.85-3.722-1.047-4.8-.195-1.078-.652-2.385-1.046-3.104-.39-.718-1.6-2.874-1.6-2.874l-.1-.293h.393s-.163-.687-.262-.85c-.098-.163-.49-1.44-.556-2.09-.065-.653-.197-1.077.13-1.044.327.03%201.568%200%202.32-.197.75-.195.686-.26.717-.88.033-.62%200-1.798-.03-2.58-.034-.784-.296-1.015-.49-1.11-.195-.1-.817.13-.914.326-.1.193-.49.488-.132.75.36.262.425.393.62.457.197.066.197.196.197.36%200%20.163.13.913-.196%201.044-.324.132-1.274.034-1.664-.064-.394-.097-1.176-.815-1.502-.782-.325.033-.62-.294-.653-.72-.03-.424.59-.16.687-.814.1-.652.59-2.103-.814-2.45-.784-.192-1.373.425-1.57%201.372-.148.698-.002%201.007.587%201.465z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M15.688%206.736c-.183.46-1.135%202.4-1.135%202.4s-1.28-.712-3.423-.712c-1.877%200-3%20.924-3.324%201.962-.176.562-.552%202.19%201.475%203.18%201.418.69%203.29%201.465%204.755%202.45%201.906%201.276%202.81%203.327%202.454%205.87-.41%202.92-2.444%205.56-5.473%205.822-2.403.208-6-.536-6.91-1.314.275-.816.56-1.975.78-2.634%201.005.493%202.72.936%204.185%201.11%202.758.326%204.152-.908%204.554-2.44.284-1.087.332-2.204-.12-3.013-1.093-1.96-3.375-2.244-5.392-3.24-3.016-1.492-3.69-3.54-3.308-5.774.437-2.546%201.918-3.803%204.18-4.356%202.128-.52%204.59-.305%206.704.69z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampSvejoSvg:hover,#the_champ_ss_vertical_rearrange .theChampSvejoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c.31.16.48.29.48.29l.04-.02c.2-4.96-2.933-7.41-2.933-7.41-.688.87-1.147%202.21-1.387%203.04.26.11.51.24.76.38%202.13%201.19%202.83%202.92%203.04%203.72z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c-.22-.8-.91-2.53-3.04-3.73-.25-.14-.5-.26-.76-.38-2.27-.99-4.73-.96-4.73-.96s0%202.92%203.08%204.95c.48-.17%201-.31%201.57-.42%201.81-.32%203.19.19%203.88.54z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.796%2013.244c-.93%201.82%202.15%206.7%204.75%209.37%201.29%201.33%201.93%202.48%202.19%203.052%202.1.5%203.278-.29%203.42-.4l.068-.12c.932-1.94-1.46-4.818-3.19-7.068-2.138-2.78-2.698-4.832-2.698-4.832l-.01-.01c-3.5-1.582-4.53.008-4.53.008z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.176%2025.274c-.15.11-1.32.9-3.42.4-1.1-.26-2.47-.88-4.07-2.15-2.31-1.818-4.03-3.43-5.2-5.53-.3-.528-.98-.568-1.37.2-.6%201.19-.67%204.5.7%206.44%200%200-.38%201.28.62%202.37.67.73%202.22%201.06%203.06.76l.17-.07s1.73%201.302%204.37.813c2.64-.49%204.33-1.73%205.18-3.24l-.04.007zm3.01-11.4s.38-1.28-.62-2.37c-.67-.73-2.22-1.06-3.06-.76l-.12.05-.04.02s-.17-.13-.48-.28c-.69-.36-2.07-.87-3.89-.53-.57.102-1.09.25-1.57.42-1.68.59-2.83%201.542-3.51%202.66l-.1.17s1.02-1.59%204.53-.01c.84.382%201.83.94%202.98%201.75%202.41%201.692%204.03%203.432%205.2%205.53.3.53.98.57%201.37-.198.61-1.2.68-4.512-.69-6.45z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampSymbalooFeedsSvg:hover,#the_champ_ss_vertical_rearrange .theChampSymbalooFeedsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7%207h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2013.75h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2020.5h4.5V25H7zm6.75%200h4.5V25h-4.5zm6.75%200H25V25h-4.5z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampTuentiSvg:hover,#the_champ_ss_vertical_rearrange .theChampTuentiSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.907%2019.803l-2.463%205.062c-.316.655-.974%201.035-1.656%201.035-.272%200-.545-.062-.807-.188-.914-.445-1.293-1.55-.846-2.465l2.46-5.062c.446-.914%201.55-1.293%202.464-.848.917.447%201.295%201.552.85%202.466zm-.053-7.497c-.445.444-1.055.698-1.682.698-.625%200-1.236-.254-1.678-.698-.445-.444-.7-1.054-.7-1.68%200-.626.255-1.236.7-1.68.885-.888%202.478-.888%203.36%200%20.442.444.696%201.054.696%201.68%200%20.626-.254%201.235-.696%201.68zm9.834%207.17c-.443%202.075-1.266%204.003-2.445%205.73-.35.517-.922.794-1.502.794-.35%200-.705-.103-1.02-.316-.826-.564-1.04-1.695-.476-2.52.912-1.34%201.55-2.835%201.896-4.448.378-1.775.378-3.654-.003-5.432-.344-1.61-.982-3.107-1.895-4.445-.564-.83-.35-1.96.48-2.525.827-.564%201.958-.35%202.522.48%201.178%201.727%202%203.655%202.443%205.73.49%202.272.49%204.675%200%206.95z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampTwiddlaSvg:hover,#the_champ_ss_vertical_rearrange .theChampTwiddlaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.5%205.688l1.375%201.375-4.812%204.812L5.688%2010.5C5.256%209.926%205%209.21%205%208.438%205%206.538%206.54%205%208.438%205c.773%200%201.488.256%202.062.688zm2.406%202.406l-4.812%204.812%2012.72%2012.72L27%2027l-1.375-6.188-12.72-12.718zm-.095%203.533l9.627%209.625-1.186%201.183-9.624-9.625%201.186-1.183z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampViadeoSvg:hover,#the_champ_ss_vertical_rearrange .theChampViadeoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15.107%204s2.838%201.88%203.326%207.05c0%200%20.957%2012.423-5.47%2014.858%200%200%20.577.106%201.224.076%200%200%207.947-5.012%204.3-14.742%200%200-1.09-3.396-3.38-7.242zm4.15%208.483s-1.48-2.29.397-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M19.256%2012.483s-1.48-2.29.398-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.486%2019.434c0%201.19-.283%202.3-.85%203.33-.57%201.03-1.34%201.824-2.306%202.383-.967.56-2.03.84-3.186.84-1.156%200-2.22-.28-3.186-.84-.97-.56-1.736-1.354-2.305-2.383-.568-1.03-.853-2.14-.853-3.33%200-1.847.625-3.42%201.87-4.723%201.247-1.3%202.74-1.95%204.474-1.95.824%200%201.596.15%202.313.448.072-.754.336-1.456.63-2.03-.903-.326-1.88-.49-2.936-.49-2.506%200-4.582.92-6.223%202.77-1.494%201.675-2.24%203.65-2.24%205.933%200%202.3.79%204.31%202.367%206.03C9.63%2027.14%2011.664%2028%2014.15%2028c2.48%200%204.508-.86%206.086-2.58%201.578-1.72%202.367-3.73%202.367-6.03%200-1.233-.22-2.374-.65-3.427-.725.445-1.412.678-1.982.797.345.816.517%201.707.517%202.674z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampTypePadPostSvg:hover,#the_champ_ss_vertical_rearrange .theChampTypePadPostSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%208.875c-6.627%200-12%203.225-12%207.202%200%20.844.342%202.21.787%202.407.447.196%201.67.683%2012.523-3.836%200%200-9.096%204.09-9.83%205.85-.253.605%202.154%202.627%208.52%202.627%206.626%200%2012-3.148%2012-7.125s-5.374-7.125-12-7.125z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampWaneloSvg:hover,#the_champ_ss_vertical_rearrange .theChampWaneloSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10%2022h10v10H10zM0%2022h10v10H0z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%2012h12v10H20z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10%2012h10v10H10z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%2012h10v10H0z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%200h12v12H20z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10%200h10v12H10z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h10v12H0z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampWebnewsSvg:hover,#the_champ_ss_vertical_rearrange .theChampWebnewsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M6%206h5.48v14.557h1.844V6h5.396v14.557h1.852V6H26v18.196h-1.82V26h-7.25v-1.825h-1.838V26h-7.25v-1.825H6V6z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampWordPressSvg:hover,#the_champ_ss_vertical_rearrange .theChampWordPressSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2214.75%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Cg%3E%3Cpath%20d%3D%22M3.176%2016c0%205.076%202.95%209.462%207.226%2011.54L4.287%2010.78c-.712%201.595-1.11%203.36-1.11%205.22zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008%200-1.18.897-2.278%202.156-2.278.057%200%20.11.008.166.01-2.28-2.09-5.32-3.367-8.658-3.367-4.48%200-8.422%202.3-10.715%205.78.302.01.585.017.826.017%201.343%200%203.418-.164%203.418-.164.69-.042.774.974.084%201.056%200%200-.694.08-1.466.12l4.668%2013.892%202.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058%200%200%202.116.164%203.38.164%201.34%200%203.416-.163%203.416-.163.69-.04.77.976.08%201.058%200%200-.694.08-1.467.12l4.634%2013.785%201.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43%201.766l-3.85%2011.18c1.15.34%202.365.523%203.624.523%201.492%200%202.925-.26%204.26-.728-.035-.056-.066-.113-.093-.177L16.225%2017.12zM27.25%209.848c.055.408.086.848.086%201.318%200%201.3-.242%202.764-.975%204.594l-3.916%2011.324C26.26%2024.86%2028.822%2020.73%2028.822%2016c0-2.23-.568-4.326-1.57-6.152z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16%201.052C7.757%201.052%201.052%207.757%201.052%2016c0%208.242%206.705%2014.948%2014.948%2014.948%208.242%200%2014.948-6.706%2014.948-14.95%200-8.24-6.706-14.946-14.948-14.946zm0%2029.212c-7.865%200-14.264-6.4-14.264-14.265S8.136%201.734%2016%201.734c7.863%200%2014.264%206.398%2014.264%2014.263%200%207.863-6.4%2014.264-14.264%2014.264z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampWykopSvg:hover,#the_champ_ss_vertical_rearrange .theChampWykopSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M28.5%2023.54c0%202.74-2.22%204.96-4.96%204.96H8.46c-2.74%200-4.96-2.22-4.96-4.96V8.46c0-2.74%202.22-4.96%204.96-4.96h15.08c2.74%200%204.96%202.22%204.96%204.96v15.08z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.052%207.997l4.942%2010.043-2.01.99-4.94-10.044-4.018%201.977%204.943%2010.043-2.01.988L9.016%2011.95%205%2013.93l5.93%2012.05L27%2018.073l-5.93-12.05%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampYahooMailSvg:hover,#the_champ_ss_vertical_rearrange .theChampYahooMailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.495%206.097c1.09.31%202.213.28%203.304%200l-7.418%2012.09v9.91c-.468-.155-.935-.22-1.37-.22-.47%200-.937.065-1.404.22v-9.91L7.19%206.097c1.09.28%202.213.31%203.304%200l5.516%208.788%205.483-8.787z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampYahooMessengerSvg:hover,#the_champ_ss_vertical_rearrange .theChampYahooMessengerSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2027c6.074%200%2011-4.926%2011-11%200-6.075-4.926-11-11-11S5%209.925%205%2016c0%206.074%204.926%2011%2011%2011zm2.808-17.016c.792%200%201.434.64%201.434%201.432%200%20.79-.642%201.432-1.434%201.432-.79%200-1.432-.64-1.432-1.432%200-.79.642-1.432%201.432-1.432zm-5.443%200c.79%200%201.433.64%201.433%201.432%200%20.79-.642%201.432-1.433%201.432s-1.433-.64-1.433-1.432c0-.79.642-1.432%201.433-1.432zm-5.1%204.583h15.47v2.866h-.032c-.32%203.975-3.644%207.103-7.702%207.103-4.06%200-7.38-3.128-7.7-7.103h-.033v-2.866zm14.42%202.56H9.13v-1.764h13.554v1.764z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampYoolinkSvg:hover,#the_champ_ss_vertical_rearrange .theChampYoolinkSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2212%22%3E%3C%2Fcircle%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M14.47%2023.09v-4.908l-3.604-5.856c-.315-.528-.538-.94-.67-1.235-.13-.294-.196-.552-.196-.77%200-.36.132-.67.398-.93.264-.26.59-.39.98-.39.41%200%20.72.12.933.365.213.243.53.727.953%201.45l2.758%204.697%202.79-4.696c.17-.287.31-.53.423-.727.114-.198.24-.384.378-.556.14-.172.29-.305.46-.396.166-.09.37-.136.613-.136.376%200%20.688.13.94.385.252.258.378.554.378.892%200%20.273-.064.55-.19.82-.127.275-.345.655-.654%201.14l-3.694%205.94v4.91c0%20.64-.14%201.118-.422%201.436-.282.317-.642.475-1.08.475-.44%200-.8-.156-1.076-.47-.275-.312-.412-.793-.412-1.44z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.the_champ_vertical_sharing .theChampYouMobSvg:hover,#the_champ_ss_vertical_rearrange .theChampYouMobSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M4%209.498h1.82l2.7%2010.754%202.677-10.754h1.81v12.72h-1.213V14.71c0-.26.003-.69.01-1.29.012-.6.015-1.244.015-1.93L9.14%2022.216H7.88L5.173%2011.49v.39c0%20.31.008.786.02%201.423.013.64.02%201.108.02%201.407v7.507H4V9.497zm15.735%204.372c.604.795.907%201.966.907%203.51%200%201.495-.267%202.73-.8%203.704-.534.975-1.36%201.46-2.48%201.46-.934%200-1.677-.43-2.228-1.292-.55-.86-.825-2.02-.825-3.473%200-1.56.29-2.8.87-3.723.576-.922%201.356-1.383%202.333-1.383.877%200%201.616.4%202.22%201.194zm-.714%206.16c.28-.78.423-1.65.423-2.607%200-.863-.102-1.568-.304-2.11-.323-.853-.875-1.278-1.656-1.278-.695%200-1.2.36-1.518%201.088-.314.727-.474%201.604-.474%202.63%200%20.985.16%201.808.475%202.466.316.654.817.982%201.503.982.755%200%201.27-.39%201.553-1.172zm2.937-10.575h1.118v4.615c.253-.445.554-.785.905-1.02.35-.232.73-.35%201.142-.35.854%200%201.547.397%202.08%201.19.53.796.798%201.966.798%203.512%200%201.467-.26%202.684-.788%203.654-.524.97-1.253%201.454-2.186%201.454-.52%200-.964-.17-1.323-.51-.213-.202-.44-.526-.687-.972v1.188h-1.06V9.456zm4.398%2010.675c.31-.67.463-1.552.463-2.65%200-.974-.154-1.782-.463-2.423-.312-.64-.768-.96-1.368-.96-.527%200-.988.262-1.382.786-.397.525-.595%201.392-.595%202.598%200%20.873.083%201.58.245%202.123.304%201.02.868%201.532%201.7%201.532.622%200%201.088-.334%201.4-1.004z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}
css/share-svg.css ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ @charset "utf-8";
2
+ .theChampYummlySvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNIDEwLjUgMTAgcSA0IC0yIDIuNSAxIGwgLTEgNCBxIDAgMiA1IDAgbCAxIC02LjUgbSAtMSA2LjUgbCAtMSA0IGMgLTMgNiAtNiAtMSAwIC0xIHEgMSAtMSA1IDEiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.theChampBufferSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM5Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gMTUgNiBsIC0xMCA1IGwgMTAgNSBsIDEwIC01IHoiIHN0cm9rZS13aWR0aD0iMCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjxwYXRoIHN0cm9rZT0iI2ZmZiIgZD0iTSA1LjUgMTQuNSBsIDkuNSA1IGwgOS41IC01IG0gLTE5IDQgbCA5LjUgNSBsIDkuNSAtNSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) no-repeat center center}.theChampFacebookSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0xNCAyNSB2IC0xMyBRIDEzIDYgMjEgNy41IE0gMTAgMTQgTCAyMCAxNCIgc3Ryb2tlLXdpZHRoPSI0IiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) no-repeat center center}.theChampDeliciousSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHN0eWxlPSJmaWxsOiNlZWU7IiAvPg0KPHJlY3QgeD0iMTUiIHk9IjAiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgc3R5bGU9ImZpbGw6IzMxNzNEMDsiIC8+DQo8cmVjdCB4PSIwIiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojMDAwOyIgLz4NCjxyZWN0IHg9IjE1IiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojQkRCREJEOyIgLz4NCjwvc3ZnPg==) no-repeat center center}.theChampDiggSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQ5IDQ5Ij48cGF0aCBkPSJNIDYgMjAgaCAxMCBjIDAgLTE0IC05IC0xNCAtOSAwIG0gNSAwIHYgNyBtIC0xIDAgdiAtNyBtIDQgLTcgaCA0LjUgdiAtNSBoIDggdiA4IGggLTggdiAtMyBtIDggMCBoIDQgdiA1LjUgaCAtMyB2IDEyIGggLTQgdiAtOCBtIDAgOCBoIC02LjUgdiAtMTIgaCAtMiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48ZWxsaXBzZSBjeD0iMTEuNSIgY3k9IjI4LjUiIHJ4PSI0IiByeT0iMiIgc3R5bGU9ImZpbGw6d2hpdGU7Ij48L2VsbGlwc2U+PC9zdmc+) no-repeat center center}.theChampEmailSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDQzIDQzIj48cGF0aCBkPSJNIDUuNSAxMSBoIDIzIHYgMSBsIC0xMSA2IGwgLTExIC02IHYgLTEgbSAwIDIgbCAxMSA2IGwgMTEgLTYgdiAxMSBoIC0yMiB2IC0xMSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSIjZmZmIj48L3BhdGg+PC9zdmc+) no-repeat center center}.theChampFloatitSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBmaWxsPSJub25lIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIGZpbGw9Im5vbmUiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0gNSAxNSBoIDUgTSAxNSA1IHYgNSBNIDI1IDE1IGggLTUgTSAxNSAyNSB2IC01IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.theChampGoogleplusSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) no-repeat center center}.theChampLinkedinSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij4NCjxjaXJjbGUgY3g9IjEwIiBjeT0iOCIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPg0KPHBhdGggZD0iTSAxMCAxMSB2IDExIG0gNSAwIHYgLTExIG0gMCAzIHEgNiAtMyA3IDAgdiA4IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) no-repeat center center}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) no-repeat center center}.theChampPinterestSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02LjUgLTUgNDIgNDIiPjxwYXRoIGQ9Ik0gNiAyMCBjIC0zIC00IC0yIC0xMCAzIC0xMy41IGMgNCAtMyAxMSAtMyAxNSAzIGMgMyA1IDIgMTMgLTYgMTUgcSAtNCAxIC02IC0zIGwgLTIgNiBsIC0xLjIgMiBsIC0wLjggLTIgbCAyLjUgLTExIGMgLTIgLTQgMSAtOCA0IC02IHEgMCA1IC0xLjQgOC41IGMgMyA4IDEwIDAgOS41IC00IGMgMCAtOSAtMTEgLTExIC0xNC41IC00IGMgMCAwIC0zIDUgMCA4IGwgLTEgMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48L3N2Zz4=) no-repeat center center}.theChampPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC02IDM4IDM4Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gNyAxMCBoIDIgdiAzIGggMTIgdiAtMyBoIDIgdiA3IGggLTIgdiAtMyBoIC0xMiB2IDMgaCAtMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS44IiBoZWlnaHQ9IjciIHdpZHRoPSIxMCIgeD0iMTAiIHk9IjUiIGZpbGw9Im5vbmUiPjwvcmVjdD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIgaGVpZ2h0PSI1IiB3aWR0aD0iOCIgeD0iMTEiIHk9IjE2IiBmaWxsPSIjZmZmIj48L3JlY3Q+PC9zdmc+) no-repeat center center}.theChampRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj48ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5IiBjeT0iMTciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMiIgY3k9IjciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSI3IiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMyIgY3k9IjE0IiByPSIyIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PHBhdGggZD0iTSAxMCAyMiBxIDUgMyAxMCAwIE0gMTUgMTIgbCAxIC02IGwgNiAxIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.theChampStumbleuponSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBkPSJNIDYuNiAxNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTQgYyAtMSAtNyA2IC03IDYgLTIgdiAyLjUgbSAwIDIuNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTEiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) no-repeat center center}.theChampTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.theChampTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii04IC04IDY0IDY0Ij4NCjxwYXRoIGQ9Ik0gMzggMTkgcSAyIC0xIDQgLTUgcSAtMS41IDIgLTQgMiBxIDEuNSAtMSAzLjUgLTUgcSAtMS41IDIgLTUgMiBjIC01IC01IC0xMyAtMiAtMTIgNiBxIC03IDEgLTE1IC04IHEgLTIgNCAxIDkgcSAtMSAwIC0zIC0xIHEgMCA1IDUgNyBxIC0xIC41IC0zIDAgcSAxIDQgOCA2IHEgLTUgMyAtMTEgMyBjIDE0IDggMzAgMCAzMS41IC0xNCIgc3Ryb2tlLXdpZHRoPSIwLjMiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) no-repeat center center}.theChampVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj4NCjxwYXRoIGQ9Ik0gMi41IDkgaCA0LjUgbCA1IDcgdiAtNyBoIDQuNSB2IDcgbCA1IC03IGggNSBsIC01IDcgbCA1IDcgaCAtNSBsIC01IC03IHYgNyBoIC00LjUgcSAtMiAwIC01IC02IHoiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) no-repeat center center}.theChampYahooSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDggMTAgbCA3IDcgbCA1IC01IG0gLTQuNyA1IHYgMyBoIC0wLjUgdiAtMyBtIDggLTQgdiA1IG0gMCAxIHYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48cGF0aCBkPSJNIDYgMTAgaCA2IG0gNSAyIGggNiBtIC0xMSA5LjUgaCA2IiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) no-repeat center center}.theChampXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj4NCjxwYXRoIGQ9Ik0gNiA5IGggNSBsIDQgNCBsIC01IDcgaCAtNSBsIDUgLTcgeiBtIDE1IC00IGggNSBsIC05IDEzIGwgNCA4IGggLTUgbCAtNCAtOCB6IiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) no-repeat center center}.theChampWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBpZD0iYXJjMSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiIGQ9Ik0gMTEuNTc5Nzk4NTY2NzQzMzE0IDI0LjM5NjkyNjIwNzg1OTA4NSBBIDEwIDEwIDAgMSAwIDYuODA4NDc5NTU3MTEwMDc5IDIwLjczNTc2NDM2MzUxMDQ2Ij48L3BhdGg+PHBhdGggZD0iTSA3IDE5IGwgLTEgNiBsIDYgLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSAxMCAxMCBxIC0xIDggOCAxMSBjIDUgLTEgMCAtNiAtMSAtMyBxIC00IC0zIC01IC01IGMgNCAtMiAtMSAtNSAtMSAtNCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.theChampAIMSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M1.162%2030.846V1.156h29.676v29.69H1.162zm12.684-19.672c-.535.77-1.14%201.483-1.572%202.29-.982%201.83-1.22%203.866-1.47%205.896-.06.483-.255.998-.53%201.397-.657.947-1.642%201.504-2.707%201.864-1.008.34-2.05.575-3.13.87l2.018%204.753c.43%201.015.425%201.005%201.503.656%202.952-.96%205.31-2.778%207.31-5.093.313-.36.56-.404.925-.166.57.374%201.205.67%201.7%201.12%201.177%201.08%202.285%202.233%203.468%203.403l4.73-2.706c-1.48-3.034-4.053-4.945-6.672-6.928.44-.075.765-.117%201.082-.187%201.59-.347%203.103-.852%204.243-2.1.155-.17.325-.535.248-.68-.686-1.255-1.43-2.482-2.152-3.718-2.687%201.55-3.703%201.74-4.356.852%203.384-1.397%204.755-4.144%203.427-6.874-1.26-2.588-4.257-3.56-6.755-2.22C12.93%204.8%2011.46%208.17%2013.85%2011.177z%22%2F%3E%3Cpath%20d%3D%22M13.846%2011.174c-2.388-3.007-.92-6.378%201.305-7.57%202.5-1.338%205.497-.367%206.755%202.22%201.328%202.73-.043%205.478-3.426%206.875.653.89%201.67.694%204.356-.855.725%201.235%201.467%202.463%202.154%203.72.077.143-.093.51-.25.678-1.14%201.247-2.653%201.753-4.243%202.1-.318.068-.64.11-1.082.185%202.62%201.98%205.195%203.894%206.674%206.93-1.66.95-3.25%201.855-4.73%202.704-1.184-1.17-2.29-2.322-3.47-3.402-.495-.453-1.13-.746-1.698-1.12-.365-.237-.61-.194-.926.165-2.002%202.315-4.356%204.133-7.31%205.094-1.078.35-1.073.356-1.503-.656-.674-1.587-1.348-3.172-2.018-4.753%201.08-.295%202.123-.527%203.13-.866%201.066-.36%202.05-.917%202.706-1.864.278-.4.476-.913.535-1.395.247-2.03.484-4.065%201.467-5.897.436-.813%201.04-1.528%201.576-2.296zm2.904%205.374c2.37.587%204.54.573%206.447-1.146l-1.072-1.483c-.61.223-1.154.48-1.727.626-1.5.376-3.102.18-3.58-1.63-.02-.074-.07-.153-.13-.2-.728-.607-1.962-.426-2.493.37-1.2%201.8-1.66%203.85-1.83%205.95-.094%201.142-.517%202.034-1.258%202.856-1.24%201.373-2.795%202.187-4.623%202.62.195.44.365.833.54%201.222.605%201.338.605%201.336%201.974.695%202.216-1.03%203.947-2.658%205.475-4.52.41-.497.807-.595%201.39-.41%201.397.437%202.508%201.326%203.555%202.283.768.702%201.424%201.522%202.13%202.29.813-.55%201.438-.97%202.112-1.43-2.138-2.7-4.86-4.58-7.615-6.45.24-.565.465-1.09.705-1.646zm.842-12.054c-1.834-.022-3.35%201.415-3.39%203.214-.043%201.814%201.46%203.38%203.284%203.418%201.705.038%203.293-1.512%203.326-3.246.034-1.815-1.44-3.364-3.22-3.386z%22%2F%3E%3Cpath%20fill%3D%22%23FDD500%22%20d%3D%22M16.75%2016.548c-.24.558-.465%201.08-.707%201.646%202.756%201.873%205.48%203.752%207.615%206.453l-2.11%201.43c-.708-.768-1.364-1.59-2.132-2.29-1.047-.958-2.156-1.85-3.557-2.285-.585-.183-.98-.086-1.39.41-1.527%201.862-3.26%203.49-5.476%204.522-1.368.64-1.368.642-1.972-.695-.178-.39-.346-.785-.54-1.226%201.827-.433%203.38-1.246%204.62-2.62.74-.822%201.166-1.716%201.26-2.856.17-2.103.628-4.15%201.828-5.95.534-.797%201.768-.98%202.493-.37.062.046.11.126.13.2.48%201.81%202.08%202.005%203.58%201.63.573-.146%201.118-.404%201.73-.63l1.07%201.483c-1.903%201.718-4.075%201.73-6.444%201.145zm.842-12.054c1.78.02%203.254%201.57%203.22%203.386-.032%201.734-1.62%203.284-3.325%203.246-1.822-.04-3.326-1.604-3.284-3.418.038-1.8%201.555-3.236%203.39-3.214z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampAmazonWishListSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23F90%22%20d%3D%22M24.998%2023.842c-.127%200-.256.03-.377.086-.132.055-.27.117-.4.172l-.194.08-.25.1v.005c-2.72%201.102-5.573%201.748-8.215%201.805-.097.004-.193.004-.29.004-4.153.003-7.544-1.926-10.964-3.823-.12-.06-.24-.094-.36-.094-.156%200-.313.058-.43.164-.114.106-.183.266-.182.426%200%20.207.112.395.267.52%203.21%202.786%206.73%205.376%2011.46%205.378.094%200%20.188-.002.28-.004%203.01-.07%206.415-1.085%209.058-2.745l.016-.01c.346-.207.69-.44%201.018-.703.205-.15.346-.385.344-.63-.01-.435-.377-.73-.775-.73zm3.666-1.54c-.012-.265-.068-.466-.178-.632l-.01-.016-.015-.02c-.11-.12-.216-.167-.333-.218-.347-.133-.853-.205-1.46-.207-.437%200-.92.04-1.4.143l-.002-.03-.486.16-.01.006-.276.09v.012c-.322.136-.615.302-.89.498-.167.13-.31.297-.317.556-.004.14.066.3.185.395.12.097.257.13.378.13.027%200%20.055%200%20.078-.005l.023-.002.018-.003c.238-.053.586-.085.992-.144.347-.037.72-.066%201.04-.066.225%200%20.43.014.57.045.07.016.12.032.15.05.01.003.016.007.02.01.006.02.016.067.014.14.004.268-.11.767-.266%201.25-.152.487-.338.974-.46%201.298-.03.075-.048.157-.048.247-.003.13.05.287.16.393.11.104.255.145.374.145h.006c.18-.002.332-.07.463-.176%201.236-1.112%201.666-2.888%201.684-3.888l-.003-.16z%22%2F%3E%3Cpath%20d%3D%22M17.355%2010.384c-.728.055-1.565.11-2.404.222-1.282.17-2.57.39-3.63.896-2.07.838-3.467%202.627-3.467%205.254%200%203.3%202.124%204.98%204.81%204.98.894%200%201.622-.114%202.29-.28%201.064-.336%201.958-.95%203.02-2.07.614.838.782%201.23%201.844%202.125.278.114.558.114.78-.052.673-.56%201.85-1.568%202.462-2.125.28-.224.224-.56.056-.837-.613-.783-1.23-1.455-1.23-2.965V10.5c0-2.125.167-4.082-1.397-5.534-1.285-1.173-3.3-1.62-4.864-1.62h-.672c-2.85.164-5.868%201.395-6.54%204.918-.11.447.226.613.45.67l3.13.39c.336-.055.502-.336.56-.613.278-1.23%201.284-1.845%202.4-1.96h.227c.67%200%201.397.28%201.79.84.447.67.39%201.568.39%202.35v.446zm-.613%206.65c-.393.782-1.063%201.286-1.79%201.456-.112%200-.28.055-.448.055-1.228%200-1.956-.95-1.956-2.35%200-1.788%201.06-2.627%202.402-3.018.727-.167%201.567-.225%202.405-.225v.672c0%201.287.057%202.292-.613%203.41z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampAOLMailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M17.334%2013.26c-2.315%200-4.067%201.8-4.067%204.027%200%202.35%201.824%204.03%204.067%204.03%202.243%200%204.062-1.68%204.062-4.03%200-2.228-1.744-4.027-4.062-4.027zm0%202.127c1-.007%201.82.847%201.82%201.9%200%201.048-.82%201.9-1.82%201.9s-1.818-.853-1.818-1.9c0-1.053.817-1.9%201.818-1.9zm11.59%204.518c0%20.778-.63%201.412-1.41%201.412-.778%200-1.41-.634-1.41-1.412%200-.778.632-1.408%201.41-1.408.78%200%201.41.63%201.41%201.408zm-4.104%201.418h-2.216v-10.28h2.216v10.28zM9.33%2011.04s2.585%206.79%203.862%2010.13c.015.037.028.078.047.132-.06.006-.105.01-.15.01-.83.002-1.664-.003-2.497.004-.12.002-.17-.04-.204-.156-.116-.385-.247-.766-.365-1.147-.032-.11-.074-.153-.193-.153-1.066.006-2.132.006-3.2%200-.1%200-.142.03-.173.13-.127.405-.26.81-.39%201.21-.02.076-.05.117-.136.117-.874-.006-1.75-.004-2.624-.004-.016%200-.036-.005-.07-.012.023-.06.04-.116.064-.17%201.286-3.307%203.91-10.086%203.91-10.086H9.33zm-.023%206.674c-.343-1.147-.68-2.274-1.02-3.4h-.03l-1.017%203.4h2.067z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampAppnetSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M16%207.158L4.156%2025h2.422l2.695-4h13.453l2.695%204h2.425L16%207.158zM10.82%2019L16%2011.2l5.178%207.8H10.82z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampBaiduSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%232319DC%22%20d%3D%22M8.68%2016.617c2.485-.534%202.145-3.51%202.073-4.16-.123-1.002-1.3-2.752-2.9-2.612-2.013.18-2.307%203.087-2.307%203.087-.273%201.346.65%204.22%203.133%203.685m4.614-4.986c1.373%200%202.482-1.58%202.482-3.533s-1.11-3.533-2.482-3.533-2.485%201.58-2.485%203.533%201.112%203.536%202.485%203.536m5.918.233c1.837.24%203.015-1.72%203.25-3.205.24-1.482-.946-3.207-2.244-3.503-1.305-.3-2.93%201.787-3.08%203.148-.177%201.666.237%203.326%202.073%203.56m7.276%202.496c0-.71-.59-2.85-2.78-2.85-2.193%200-2.483%202.02-2.483%203.447%200%201.362.113%203.263%202.84%203.204%202.72-.06%202.422-3.084%202.422-3.8m-2.78%206.237s-2.84-2.197-4.497-4.572c-2.25-3.503-5.445-2.076-6.513-.298-1.062%201.783-2.717%202.91-2.954%203.21-.24.292-3.43%202.017-2.723%205.165.71%203.146%203.2%203.087%203.2%203.087s1.833.18%203.96-.298c2.132-.475%203.966.116%203.966.116s4.97%201.667%206.33-1.54c1.36-3.207-.768-4.872-.768-4.872%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampBalatarinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23B90E10%22%20d%3D%22M29%2017H3v10c0%201.1.9%202%202%202h22c1.1%200%202-.9%202-2V17z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M12%2022h8v2h-8z%22%2F%3E%3Cpath%20fill%3D%22%23079948%22%20d%3D%22M29%2015H3V5c0-1.1.9-2%202-2h22c1.1%200%202%20.9%202%202v10z%22%2F%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M15%205h2v8h-2z%22%2F%3E%3Cpath%20d%3D%22M12%208h8v2h-8z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampBibSonomySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22%23A3003E%22%20stroke%3D%22%232A2A2A%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%228%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampBittyBrowserSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23999%22%20d%3D%22M4%204h12v12H4z%22%2F%3E%3Cpath%20fill%3D%22%23999%22%20d%3D%22M20%204v16H4v8h24V4%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampBlinklistSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M3%2010.35v11.3l8.977-5.418%22%2F%3E%3Cpath%20d%3D%22M17.55%2027.454c-4.397%200-8.314-2.39-10.205-6.36l1.675-1.04c1.558%203.274%204.906%205.388%208.53%205.388%205.204%200%209.438-4.235%209.438-9.44%200-5.208-4.233-9.443-9.44-9.443-3.804%200-7.22%202.26-8.7%205.763l-1.733-1.057c1.798-4.25%205.82-6.72%2010.434-6.72C23.86%204.546%2029%209.683%2029%2015.996c0%206.317-5.136%2011.457-11.45%2011.457z%22%2F%3E%3Cpath%20d%3D%22M11.425%2018.623c1.02%202.406%203.403%204.09%206.18%204.09%203.71%200%206.715-3.006%206.715-6.712%200-3.71-3.005-6.712-6.714-6.712-2.887%200-5.35%201.823-6.295%204.38l3.958%202.566-3.84%202.39z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampBloggerPostSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M12.393%206.112h4.367c1.61.19%203.96%201.572%204.824%203.41.238.515.363.594.56%202.12.106.786.16%201.367.51%201.69.495.45%202.333.147%202.696.43l.277.22.166.343.06.277-.04%205.048c-.02%203.43-2.81%206.238-6.244%206.238h-7.177c-3.436%200-6.244-2.81-6.244-6.238v-7.29c-.003-3.434%202.806-6.248%206.242-6.248z%22%2F%3E%3Cpath%20fill%3D%22%23F8A154%22%20d%3D%22M12.47%2011.22h3.464c.66%200%201.195.534%201.195%201.188%200%20.653-.538%201.195-1.198%201.195H12.47c-.66%200-1.194-.542-1.194-1.195%200-.654.535-1.19%201.195-1.19zm0%207.15h7.038c.654%200%201.19.534%201.19%201.188%200%20.646-.535%201.188-1.19%201.188H12.47c-.66%200-1.194-.54-1.194-1.188%200-.654.535-1.19%201.195-1.19z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampBlogMarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23A3DE38%22%20d%3D%22M22.762%2018.917L17.646%2016l-8.408-4.795V29l13.524-7.71%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M22.762%2010.71L9.238%203v8.204l8.408%204.794%205.116-2.915%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampBoxnetSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M16.49%2011.36c-1.653%200-3.18.524-4.434%201.41V6.543c0-.893-.725-1.616-1.617-1.616-.895%200-1.617.723-1.617%201.616v11.903c-.017.2.002%201.37.055%201.7.53%203.73%203.73%206.604%207.61%206.604%204.25%200%207.692-3.446%207.692-7.696.003-4.25-3.444-7.695-7.694-7.695zm0%2012.126c-2.45%200-4.434-1.984-4.434-4.432%200-2.45%201.983-4.434%204.433-4.434%202.445%200%204.43%201.984%204.43%204.434%200%202.448-1.984%204.432-4.433%204.432z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampBookmarksfrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23CC3467%22%20d%3D%22M27.256%209.5c-2.188-3.79-6.36-.54-7.83%202.205%201.073.86%201.802%202.112%202.006%203.475%203.103.094%208.023-1.873%205.824-5.68-.7-1.212.515.894%200%200z%22%2F%3E%3Cpath%20fill%3D%22%2396C044%22%20d%3D%22M15.998%203c-4.368%200-3.664%205.23-2.013%207.886%201.283-.505%202.74-.505%204.023%200C19.66%208.23%2020.366%203%2015.998%203z%22%2F%3E%3Cpath%20fill%3D%22%23CC3467%22%20d%3D%22M9.255%208.294c-1.108-.64-2.42-.918-3.49-.053-.96.78-1.79%202.268-1.617%203.538.352%202.564%204.32%203.468%206.416%203.405.204-1.363.934-2.618%202.01-3.477-.67-1.256-1.898-2.59-3.32-3.41-.71-.41%201.422.82%200%200z%22%2F%3E%3Cpath%20fill%3D%22%2396C044%22%20d%3D%22M11.426%2019.05c-.447-.67-.744-1.435-.862-2.23-2.785-.084-7.768%201.608-6.056%205.24%202.023%204.292%206.448%201.248%208.063-1.765-.44-.354-.83-.773-1.142-1.246-.132-.198.314.47%200%200z%22%2F%3E%3Cpath%20fill%3D%22%23CC3467%22%20d%3D%22M18.202%2021.458c-.064-.12-.13-.232-.198-.342-1.28.503-2.737.503-4.02%200C12.338%2023.766%2011.624%2029%2016%2029c4.218%200%203.67-4.848%202.204-7.542-.064-.12.678%201.243%200%200z%22%2F%3E%3Cpath%20fill%3D%22%2396C044%22%20d%3D%22M27.83%2020.088c-.478-2.46-4.326-3.33-6.398-3.27-.204%201.364-.933%202.617-2.007%203.476.934%201.744%202.858%203.73%204.913%204.006%202.043.276%203.853-2.332%203.49-4.212-.153-.8.137.706%200%200z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampBuddyMarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%238B0102%22%3E%3Ccircle%20cx%3D%2219.587%22%20cy%3D%227.172%22%20r%3D%224.209%22%2F%3E%3Cpath%20d%3D%22M21.374%2011.668h-3.572c-.085%200-.168.01-.253.013.32.68.51%201.437.51%202.236%200%201.476-.62%202.807-1.61%203.756%202.314.69%204.084%202.656%204.486%205.08%203.414-.15%205.382-1.114%205.513-1.18l.282-.145h.03V17.06c0-2.97-2.418-5.39-5.39-5.39z%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23BA3628%22%3E%3Ccircle%20cx%3D%2212.413%22%20cy%3D%2213.439%22%20r%3D%224.209%22%2F%3E%3Cpath%20d%3D%22M14.198%2017.937h-3.57c-2.973%200-5.39%202.417-5.39%205.388v4.37l.01.067.303.095c2.838.885%205.3%201.18%207.33%201.18%203.96%200%206.257-1.13%206.398-1.2l.282-.142h.027v-4.37c0-2.97-2.416-5.388-5.388-5.388z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampCare2NewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.56%2021.21c1.558.926%203.202%201.637%204.95%202.122.746.207%201.255.03%201.596-.673.102-.21.25-.404.4-.586%202.322-2.812%201.91-6.988-1.06-7.983.66-.517.662-1.2.47-1.92-.156-.59-.265-1.204-.492-1.767-.514-1.278-.694-2.603-.77-3.964-.047-.814-.1-1.767-1-2.068-.875-.292-1.54.357-2.09.977-1.85%202.082-2.9%204.576-3.644%207.22-.372%201.33-.7%202.676-1.077%204.12-.332-.34-.57-.837-.925-.897-.14-.376-.74-2.2.177-3.78.02-.008.033-.022.047-.037l.174-.22c.05-.063.037-.15-.024-.2-.06-.048-.15-.037-.196.025l-.174.223c-.033.04-.035.093-.02.138-.84%201.48-.432%203.147-.23%203.76-.422-.616-1.416-1.792-2.95-2.06-.024-.04-.067-.067-.116-.067h-.28c-.08%200-.143.063-.143.14%200%20.08.062.142.142.142h.28c.023%200%20.043-.007.062-.017%201.54.254%202.51%201.48%202.884%202.046-.38.265.127.786.08%201.276-1.986-1.483-4.072-2.605-6.244-3.572-1.956-.87-3.89-1.798-6.008-2.233-.47-.097-.977-.107-1.25.41-.25.474-.093.936.19%201.34.153.222.347.434.566.585%202.44%201.678%204.303%203.93%206.212%206.145.446.517.896%201.027%201.665%201.065.25.012.455.132.445.446v.123c.047.827.25%201.5.774%202.28%201.365%201.67%203.08%202.88%205.054%203.7.4.167.73.25%201.01.25.685%200%201.018-.517%201.116-1.578.026-1.45-.42-2.82-.863-4.154.352-.27.517.24.788.065.237-.33-.216-.68.018-1.08.172.097.316.173.456.256z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampCiteULikeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M8%2024h16v2H8zm0-6h16v2H8zm0-6h16v2H8zm0-6h16v2H8z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampDiaryRuSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23912D31%22%20d%3D%22M16%203C8.82%203%203%208.82%203%2016s5.82%2013%2013%2013%2013-5.82%2013-13S23.18%203%2016%203zm0%2024.807C9.48%2027.807%204.192%2022.522%204.192%2016%204.192%209.48%209.48%204.193%2016%204.193c3.92%200%207.392%201.91%209.54%204.85h-8.308s-2.863.397-3.18%202.544c-.34%202.293-1.988%202.465-1.988%202.465h-4.69v1.51h9.74c.206-1.086%201.16-1.907%202.305-1.907%201.143%200%202.096.82%202.302%201.908h1.632v.874h-1.632c-.206%201.087-1.16%201.91-2.305%201.91-1.147%200-2.1-.823-2.306-1.91H7.37v1.59h4.69s1.67%200%201.988%202.464c.304%202.356%203.18%202.548%203.18%202.548h8.25c-2.15%202.895-5.596%204.77-9.48%204.77z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampDiasporaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M13.498%206.49v6.258l-5.953-1.933L6%2015.57l5.95%201.934-3.677%205.063%204.046%202.942L16%2020.442l3.68%205.064%204.047-2.943L20.05%2017.5%2026%2015.57l-1.545-4.755-5.953%201.933V6.49h-5.004z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampDiHITTSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M23.668%2026.125H19.01l.014-2.145h-.09c-.88%201.558-2.582%202.47-4.345%202.47-3.794%200-6.26-3.643-6.26-8.522%200-5.608%203.055-8.665%206.49-8.665%201.764%200%203.027.705%203.584%201.705h.09V5.552h5.17m-5.17%2010.79c0-2.29-1.353-2.966-2.232-2.966-1.88%200-2.73%202.055-2.73%204.552%200%202.852%201.113%204.35%202.7%204.35.97%200%202.262-.618%202.262-2.88v-3.055z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampDiigoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23FFF%22%20d%3D%22M23.81%204.5c.012.198.035.396.035.593%200%204.807.026%209.615-.01%2014.422-.02%203.248-1.5%205.678-4.393%207.158-4.66%202.385-10.495-.64-11.212-5.836-.76-5.517%203.747-9.56%208.682-9.018%201.114.12%202.16.5%203.134%201.07.517.3.527.295.53-.29.007-2.7.01-5.4.014-8.103h3.22zm-7.914%2019.97c2.608.068%204.82-2.025%204.954-4.552.138-2.626-1.89-5.074-4.727-5.145-2.7-.067-4.867%202-4.973%204.71-.107%202.72%202.13%205.008%204.746%204.988z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}
3
+ .theChampDZoneSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%232A95CB%22%20d%3D%22M16.957%2021.422l8.6-10.75h-7.972V9.008H28v1.628l-8.65%2010.69H28v1.667H16.957v-1.57z%22%2F%3E%3Cpath%20fill%3D%22%2382C251%22%20d%3D%22M4%209.007h5.59c1.898%200%203.37.683%204.416%202.047.933%201.23%201.4%202.81%201.4%204.73%200%201.486-.277%202.83-.828%204.028-.97%202.12-2.64%203.18-5.007%203.18H4V9.007zm5.22%2012.367c.626%200%201.14-.066%201.544-.2.72-.247%201.31-.724%201.768-1.428.367-.565.63-1.29.792-2.17.094-.527.14-1.016.14-1.466%200-1.732-.336-3.078-1.01-4.037-.674-.958-1.758-1.438-3.254-1.438H5.913v10.74H9.22z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}
4
+ .theChampEvernoteSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%232A2A2A%22%20d%3D%22M7.884%208.573h2.276c.13%200%20.236-.106.236-.235%200%200-.027-1.95-.027-2.494v-.006c0-.445.09-.833.253-1.16l.078-.145c-.007%200-.017.005-.025.014l-4.42%204.385c-.01.007-.014.016-.017.026.09-.046.215-.107.233-.115.386-.175.85-.27%201.41-.27zm17.704-.477c-.18-.968-.755-1.444-1.275-1.632-.56-.203-1.698-.413-3.127-.58-1.15-.137-2.504-.126-3.318-.1-.1-.672-.568-1.285-1.096-1.498-1.404-.564-3.573-.428-4.13-.272-.442.125-.932.378-1.205.768-.183.262-.302.595-.302%201.062%200%20.265.007.886.015%201.44l.014%201.054c0%20.494-.4.896-.896.897H7.99c-.485%200-.856.082-1.14.21-.284.128-.484.303-.636.508-.304.408-.357.912-.355%201.426%200%200%200%20.416.102%201.23.084.63.767%205.02%201.414%206.356.25.522.42.736.912.966%201.1.47%203.61.994%204.787%201.146%201.174.15%201.912.466%202.35-.457.002%200%20.088-.227.208-.56.382-1.156.435-2.18.435-2.924%200-.076.11-.078.11%200%200%20.524-.1%202.38%201.303%202.875.554.197%201.7.373%202.864.51%201.055.12%201.82.537%201.82%203.24%200%201.645-.346%201.87-2.152%201.87-1.464%200-2.02.038-2.02-1.125%200-.938.93-.842%201.616-.842.31%200%20.086-.23.086-.81%200-.576.36-.91.02-.918-2.384-.065-3.786-.004-3.786%202.978%200%202.706%201.036%203.208%204.418%203.208%202.65%200%203.588-.086%204.682-3.483.22-.67.742-2.718%201.06-6.154.197-2.173-.194-8.732-.502-10.388zm-4.622%207.25c-.327-.012-.643.01-.937.056.08-.667.353-1.488%201.332-1.453%201.08.033%201.23%201.056%201.237%201.75-.457-.205-1.02-.335-1.635-.357z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}
5
+
6
+ .theChampFarkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M22.925%209.77V5.613H9.075v20.772h5.54v-8.31h8.31v-4.153h-8.31V9.77%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}
7
+
8
+ .theChampFlipboardSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23F5CCCC%22%20d%3D%22M19%2019H7V7h12v12z%22%2F%3E%3Cpath%20fill%3D%22%23FAE5E5%22%20d%3D%22M25%2013H7V7h18v6z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M13%2025H7V7h6v18z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFolkdSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%230F70B2%22%20d%3D%22M19.956%2010.21c-.183.192-.613.138-.99.14-.102.317-.126.71-.283.974.626.496%201.85.406%202.405.972%201.197-.444.245-1.354.99-2.085%201.134-.14%201.386.588%201.697%201.254-.267.247-.936.102-1.415.14-.26.208-.333.6-.565.833.258.58.96.724%201.133%201.39%201.454-.376%202.954-.71%204.526-.973.41-.43.317-1.356.99-1.53%201.104.213%201.46%201.16%201.556%202.363-.586%201.043-2.1.605-2.546-.277-1.465.226-2.867.52-4.245.832-.11.325.1%201.263-.144%201.81.926.625%201.29-.49%202.122-.42.48.503.495%202.374-.566%202.224-.604-.053-.674-.634-.708-1.25-.432.1-.515-.143-.85-.14-.646.383-.97%201.083-1.695%201.39.094%201.236%201.462.38%202.12.974-.057%201.01-.8%201.345-1.838%201.39-.066-.836.216-1.503-.707-1.945-.94.142-1.37.782-2.264.973-.013.43.175.664.284.972.248.17%201.165-.21%201.415.278-.01%201.075-1.473%201.828-2.264%201.25-.063-.616.382-.734.565-1.11-.267-.293-.405-.713-.564-1.112-.878.342-1.665.773-2.83.834.004.327-.243.41-.14.833-.056.518.68.26.706.696.24%201.26-1.777%201.455-2.12.555-.03-.86%201.033-.65.706-1.808-.713-.274-1.917-.063-2.55-.417-.374.14-.382.644-.706.835.065.4.5.436.425.974-.925.36-2.313.07-2.12-1.114.533-.615%201.49-.076%201.835-.973-.557-.656-1.166-1.263-1.413-2.223-2.124.464-3.843%201.323-5.8%201.947-.187.467-.196%201.107-.566%201.39-.59.148-.625.036-1.273%200-.56-.854-.257-2.7.85-2.78.61-.135.41.523.85.557%202.016-.472%203.78-1.195%205.8-1.667-.433-2.485%203.206-4.233-.85-3.893-.396-1.225.373-2.164%201.13-2.085%201.273.132.285%201.725%201.273%202.224.908-.498%201.543-1.263%202.69-1.53.08-.45-.097-.646-.143-.972-.088-.33-.87.02-.99-.28v-.97c.46-.426%201.663-.355%201.98.138.114.623-.25.773-.706.834.037.427.308.626.424.972.9-.37%202.268-.273%203.538-.277.2-.17.266-.48.28-.836.108-.522-.75-.095-.564-.694.156-1.48%202.125-.633%202.12.416zm1.132%206.256c.652-.378.368-1.677.424-2.64-1.742-1.426-2.885%202.7-.424%202.64zm-6.224%201.53c1.3.173%203.114-1.23%202.97-2.502-.14-1.227-2.55-2.332-3.96-1.67-1.815.858-.44%203.98.99%204.17z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampGoogleBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-12%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampGoogleGmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M2.902%206.223h26.195v19.554H2.902z%22%2F%3E%3Cpath%20fill%3D%22%23E14C41%22%20d%3D%22M2.902%2025.777h26.195V6.223H2.902v19.554zm22.44-4.007v3.806H6.955v-3.6h.032l.093-.034%206.9-5.558%202.09%201.77%201.854-1.63%207.42%205.246zm0-.672l-7.027-4.917%207.028-6.09V21.1zm-1.17-14.67l-.947.905c-2.356%202.284-4.693%204.75-7.17%206.876l-.078.06L8.062%206.39l16.11.033zm-10.597%209.61l-6.62%205.294.016-10.914%206.607%205.62%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampHackerNewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M17.275%2017.834v7.13h-2.602v-7.182L9%207.035h3.07l2.967%206.115c.365.755.702%201.51.988%202.316.312-.728.65-1.483%201.042-2.29l3.018-6.142H23l-5.725%2010.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampHatenaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M6.96%208.33h7.328c1.247%200%202.206.366%202.875%201.098.666.733%201.002%201.64%201.002%202.72%200%20.91-.24%201.688-.715%202.336-.318.433-.784.773-1.396%201.023.928.266%201.614.72%202.05%201.367.44.645.66%201.457.66%202.432%200%20.795-.157%201.512-.468%202.146-.314.635-.74%201.14-1.28%201.508-.337.23-.842.396-1.52.502-.9.14-1.498.21-1.79.21H6.958V8.328zm3.877%206.017h1.74c.623%200%201.058-.13%201.302-.382.24-.255.364-.623.364-1.104%200-.442-.123-.793-.366-1.045-.245-.25-.67-.377-1.276-.377h-1.767v2.91zm0%206.027h2.038c.69%200%201.176-.145%201.458-.434.282-.29.425-.68.425-1.168%200-.453-.142-.818-.42-1.092-.28-.277-.77-.414-1.47-.414h-2.03v3.108zM21.213%208.52h3.584v9.58h-3.584z%22%2F%3E%3Ccircle%20cx%3D%2223.005%22%20cy%3D%2221.635%22%20r%3D%222.036%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampInstapaperSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23111%22%20d%3D%22M11.98%205.5h8.04v1.265h-.62c-.582%200-1.004.08-1.264.242-.262.162-.453.39-.572.69-.12.297-.182.874-.182%201.732v13.53c0%20.683.064%201.167.195%201.453.13.286.313.494.55.625.234.13.658.196%201.27.196h.618V26.5H11.98v-1.265h.662c.592%200%201.012-.067%201.258-.203.246-.135.424-.33.533-.587.11-.256.166-.75.166-1.483V9.112c0-.776-.057-1.3-.168-1.567-.11-.268-.287-.465-.533-.59-.247-.128-.667-.19-1.26-.19h-.66V5.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampJamespotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M12.427%2024.073c.677.4%201.633.708%202.927.708%201.848%200%202.587-.83%202.587-2.71V5h2.436v17.13c0%202.745-1.478%204.87-5.176%204.87-1.664%200-2.99-.4-3.573-.678l.8-2.25z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampKakaoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.345%206h-8.688c-.583%200-1.06.45-1.06%201.005v8.814c0%20.553.477%201.003%201.06%201.003h4.007c-.03.98-.445%202.056-1.077%202.996-.612.904-1.613%201.796-2.156%202.223l-.04.032c-.117.107-.202.23-.204.405-.003.13.07.232.15.34l.018.022%202.774%202.975s.137.137.247.163c.126.03.27.032.368-.042%204.84-3.56%205.537-8.023%205.66-10.44V7.004C21.403%206.45%2020.93%206%2020.346%206%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampKindleItSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFA036%22%20d%3D%22M12.927%2027H10V5h2.927v11.754l5.15-5.47h3.683l-5.814%206.067L22%2027h-3.407l-4.704-7.763-.964%201.037V27z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampKnownSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff101%22%20d%3D%22M16.38%202.65c-7.45%200-13.5%206.048-13.5%2013.5s6.05%2013.5%2013.5%2013.5%2013.5-6.048%2013.5-13.5-6.04-13.5-13.5-13.5zm.078%2025.203c-6.387%200-11.57-5.184-11.57-11.572%200-6.385%205.183-11.57%2011.57-11.57%206.387%200%2011.57%205.185%2011.57%2011.57.002%206.39-5.175%2011.574-11.57%2011.574z%22%2F%3E%3Cpath%20fill%3D%22%23fff101%22%20d%3D%22M23.856%2021.758c-.393%200-.694-.07-.903-.2-.154-.094-.4-.402-.74-.91l-3.934-5.964%203.3-3.2c.254-.248.463-.433.625-.54s.293-.178.41-.217c.107-.03.308-.046.593-.046h.207v-.01l.555-.01V8.55h-.648v.01h-6.087v2.12h.548c.31%200%20.494.023.57.077.078.054.117.13.117.23%200%20.055-.023.11-.062.18-.04.068-.154.2-.34.4l-4.257%204.436v-4.08c0-.402.03-.68.1-.826.07-.147.178-.262.34-.34.1-.053.363-.076.78-.076h.44V8.56H8.8v2.113h.563c.34%200%20.58.04.71.116.132.075.225.19.286.345.06.154.084.455.084.91v8.37c0%20.478-.022.78-.076.903-.062.153-.154.26-.285.33-.132.07-.394.11-.78.11H8.8v2.12h6.666v-2.12h-.556c-.363%200-.61-.032-.733-.094s-.216-.162-.278-.31c-.063-.145-.1-.408-.1-.786v-1.543l2.067-2.013%202.4%203.842c.2.332.3.54.3.625%200%20.077-.054.147-.162.2-.108.054-.417.077-.918.077h-.278v2.12h6.89v-2.12h-.24z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampLineSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampLiveJournalSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M7.08%209.882l.004-.008.004-.01c.195-.408.422-.81.674-1.192.264-.393.53-.75.81-1.06%201.493-1.683%203.524-2.692%206.08-3.015l.733-.097.426.61%208.426%2012.14.188.27.027.328.608%207.65.164%202.002-1.854-.783-7.23-3.053-.325-.143-.208-.286-8.422-12.14-.4-.574.3-.638zm2.72.13c-.06.097-.118.202-.18.305l7.79%2011.235%205.05%202.13-.427-5.32-7.79-11.226c-1.603.326-2.884%201.032-3.84%202.102-.227.252-.428.514-.602.775z%22%2F%3E%3Cpath%20fill%3D%22%23FFC805%22%20d%3D%22M8.186%2010.4c1.283-2.66%203.488-4.192%206.62-4.594l8.423%2012.14.61%207.648-7.23-3.057L8.186%2010.4z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M15.158%206.316l1.89%202.717c-2.597.352-5.354%202.552-6.603%204.62l-1.898-2.735c1.115-2.09%204.27-4.18%206.61-4.602z%22%2F%3E%3Cpath%20fill%3D%22%239291AD%22%20d%3D%22M13.285%2010.666c-1.22.873-2.197%201.915-2.84%202.987l-1.898-2.735c.557-1.043%201.654-2.108%202.875-2.944l1.863%202.692z%22%2F%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M7.215%2010.283c1.35-3.24%204.182-4.8%207.568-5.527l.55-.026.38.397.314.322%201.14%201.817-1.835.243h-.012c-.242.038-.512.108-.8.212h-.003c-.3.1-.613.238-.957.406-1.69.837-3.4%202.216-3.898%203.306l-.928%201.746-1.252-1.66-.166-.285-.25-.453.15-.5z%22%2F%3E%3Cpath%20fill%3D%22%23F5A8AA%22%20d%3D%22M8.33%2010.597c.95-2.725%203.1-4.214%206.504-4.615l.314.322c-2.3.35-5.756%202.777-6.598%204.62l-.22-.327z%22%2F%3E%3Cpath%20fill%3D%22%23485E85%22%20d%3D%22M23.69%2022.727l.283%203.084-2.924-1.235%201.224-1.202%22%2F%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M16.41%2021.274c.053-.062.113-.133.176-.197.635-.712%201.287-1.447%201.43-2.695l-4.875-7.02c-.436.35-.832.706-1.176%201.062-.363.382-.674.775-.924%201.168l5.37%207.682zm.93.483c-.203.222-.398.445-.572.665l-.416.54-.402-.566-5.94-8.49-.183-.265.166-.282c.318-.558.73-1.097%201.236-1.63.494-.526%201.076-1.027%201.726-1.5l.424-.305.296.425%205.27%207.6.103.15-.014.17c-.113%201.718-.92%202.615-1.697%203.49z%22%2F%3E%3Cpath%20fill%3D%22%236A9AC2%22%20d%3D%22M16.367%2022.11c.846-1.09%202.03-1.903%202.164-3.868l-5.273-7.602c-1.27.914-2.227%201.933-2.83%202.97l5.94%208.5z%22%2F%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M22.125%2017.31c-.09.026-.168.062-.248.093-.89.35-1.81.71-3.027.396l-4.87-7.02c.48-.29.95-.53%201.405-.73.486-.208.96-.36%201.42-.464l5.32%207.724zm.12%201.037c.28-.11.563-.22.823-.294l.658-.21-.39-.568-5.888-8.532-.18-.267-.32.052c-.635.105-1.287.3-1.967.59-.66.286-1.67.887-2.342%201.33l5.893%208.313c1.647.49%202.627.014%203.717-.412z%22%2F%3E%3Cpath%20fill%3D%22%23A1BBD6%22%20d%3D%22M22.896%2017.537c-1.312.41-2.498%201.232-4.383.67l-5.272-7.6c1.303-.87%202.59-1.412%203.77-1.605l5.887%208.535z%22%2F%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M18.248%208.95l-1.846.24v-.004c-.244.04-.514.113-.8.214h-.01c-2.726.944-4.46%202.964-5.784%205.454l-.68-1.004c.604-.86%202.52-5.224%208.484-5.94.27.258.415.692.636%201.04z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMailRuSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23F89C0E%22%20d%3D%22M19.975%2015.894c-.134-2.542-2.02-4.07-4.3-4.07h-.086c-2.63%200-4.09%202.068-4.09%204.417%200%202.633%201.765%204.296%204.077%204.296%202.58%200%204.275-1.89%204.4-4.127l-.003-.515zm-4.37-6.346c1.755%200%203.407.776%204.62%201.993v.006c0-.584.395-1.024.94-1.024h.14c.85%200%201.025.808%201.025%201.063l.005%209.08c-.06.595.613.9.988.52%201.457-1.497%203.203-7.702-.907-11.295-3.83-3.352-8.967-2.8-11.7-.916-2.904%202.003-4.764%206.438-2.958%2010.603%201.968%204.543%207.6%205.896%2010.947%204.546%201.696-.684%202.48%201.607.72%202.355-2.66%201.132-10.066%201.02-13.525-4.972-2.338-4.046-2.212-11.163%203.987-14.85%204.74-2.822%2010.99-2.042%2014.762%201.895%203.937%204.117%203.705%2011.82-.137%2014.818-1.742%201.36-4.326.035-4.312-1.947l-.02-.647c-1.21%201.203-2.824%201.905-4.58%201.905-3.475%200-6.53-3.056-6.53-6.528%200-3.508%203.057-6.6%206.533-6.6%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMendeleySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M26.596%2018.11c-1.466-.087-2.02-.834-1.93-2.164.076-1.113.274-2.22.418-3.327-.023-1.743-.942-3.13-2.488-3.59-1.583-.47-2.97-.14-4.102%201.15-2.322%202.646-2.616%202.634-5.023-.045-1.152-1.28-2.852-1.66-4.39-.98-1.5.667-2.37%202.237-2.15%203.954.08.625.278%201.235.377%201.863.338%202.122-.105%202.7-2.226%203.147-1.066.228-1.913.786-2.05%201.99-.137%201.22.17%202.39%201.404%202.75.77.226%201.853.084%202.55-.32.96-.553%201.064-1.64.733-2.74-.62-2.05-.027-3.04%202.115-3.34.836-.117%201.766-.022%202.568.235%201.302.41%201.692%201.373%201.175%202.65-.45%201.1-.443%202.09.39%202.984.84.9%202.417%201.08%203.518.435%201.12-.657%201.497-1.807%201.042-3.164-.608-1.814-.085-2.783%201.807-3.123.7-.126%201.463-.113%202.16.025%201.834.367%202.377%201.377%201.84%203.188-.504%201.698.196%203.09%201.72%203.43%201.332.295%202.624-.607%202.89-2.022.308-1.633-.593-2.882-2.344-2.988zm-10.71-.085c-1.374-.06-2.453-1.194-2.445-2.57.01-1.46%201.148-2.567%202.61-2.54%201.467.026%202.57%201.177%202.523%202.627-.05%201.43-1.255%202.545-2.687%202.483z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMeneameSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M25.514%2010.435c-1.582%201.605-4.438%201.56-5.502%203.726-.906%202.57%201.23%206.677%202.12%209.02.603%201.21-4.716%202.378-4.065%202.677%203.754-.043%205.354-1.412%204.904-3.094-.43-1.607-2.376-4.816-2.376-7.383.056-1.938%202.222-2.533%203.618-3.322%201.622-.727%203.14-2.35%202.72-4.25-.018-.672-1.187-2.907-.71-1.175.26%201.278.385%202.856-.706%203.802z%22%2F%3E%3Cpath%20d%3D%22M20.632%207.546C18.59%206.492%2016.32%205.854%2013.946%206.41c-1.277.236-2.78.933-3.637%202.1-1.123%201.34-1.166%203.288-.43%204.82.57%201.18%201.44%202.492%202.85%202.688%201.21.182%202.54.018%203.566-.683-1.223.21-2.64.646-3.736-.172-1.842-1.177-2.735-3.85-1.618-5.8.898-1.7%202.705-2.178%204.62-2.262%202.55-.11%204.995%201.345%205.934%201.7.903.285%202.2.645%202.844-.315.376-.446.226-1.674-.08-1.788.09.86-.543%201.943-1.524%201.66-.736-.17-1.41-.523-2.104-.81zM6.94%2015.156c-1.183%201.865-2.264%204.05-1.85%206.322.38%202.375%202.678%204.05%204.963%204.35%202.348.273%204.69.205%207.043.035.397-.385-1.92-.373-2.895-.514-2.224-.254-4.64-.3-6.55-1.623-1.775-1.33-2.01-3.938-1.155-5.863.714-1.814%201.782-3.568%202.903-5.084-.876.727-1.683%201.27-2.456%202.376z%22%2F%3E%3Cpath%20d%3D%22M12.787%2021.02c1.386.107%203.688-.032%204.768.724.387.582-.332%203.802-.084%204.174.553.162%201.186-3.773.836-4.75-.266-.75-4.966-.352-5.518-.147z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMixiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23D1AD5A%22%20d%3D%22M16.09%205.246C9.617%205.246%204%209.216%204%2016.63c0%206.93%207.707%2010.193%2012.758%209.01v2.374S28%2025.054%2028%2015.034c0-6.11-4.505-9.788-11.91-9.788z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M22.92%2020.024h-1.657v-5.688s-.505-1.586-1.585-1.586c-.9%200-2.525.374-2.525%202.08v5.193h-1.657V14.77c0-1.586-.787-2.09-1.506-2.09-1.15%200-2.727.807-2.727%202.403v4.94H9.605v-9.01h1.657v1.03c.656-.546%201.564-1.03%202.727-1.03%201.222%200%202.09.434%202.604%201.282.73-.677%201.777-1.202%203.082-1.202%201.97%200%203.24%201.788%203.24%203.202v5.73z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMySpaceSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M24%2017.716c-2.21%200-4%201.79-4%204v1.712h8v-1.713c0-2.21-1.79-4-4-4z%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2212.571%22%20r%3D%223.999%22%2F%3E%3Cpath%20d%3D%22M15.147%2018.31c-2.054%200-3.72%201.66-3.72%203.71v1.408h7.437c.002-.615.002-1.148.002-1.408%200-2.05-1.664-3.71-3.72-3.71z%22%2F%3E%3Cellipse%20cx%3D%2215.147%22%20cy%3D%2213.446%22%20rx%3D%223.719%22%20ry%3D%223.71%22%2F%3E%3Cpath%20d%3D%22M7.148%2018.875C5.41%2018.875%204%2020.277%204%2022.008v1.42h6.295c.002-.636.002-1.178.002-1.42%200-1.73-1.41-3.133-3.15-3.133z%22%2F%3E%3Cellipse%20cx%3D%227.148%22%20cy%3D%2214.58%22%20rx%3D%223.148%22%20ry%3D%223.133%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampNetlogSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M9.05%2026.276c1.658-2.12%204.19-3.48%207.03-3.48%202.807%200%205.314%201.324%206.975%203.404%202.678-2.098%204.404-5.353%204.404-9.018%200-6.328-5.13-11.46-11.46-11.46S4.54%2010.855%204.54%2017.182c0%203.713%201.772%207.004%204.51%209.095z%22%2F%3E%3Ccircle%20fill%3D%22%232A2A2A%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%224.051%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampNetvouzSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%236C3%22%20d%3D%22M10.25%208.72v17.184H5.5V6.096h8.396l5.605%205.77v6.43%22%2F%3E%3Cpath%20fill%3D%22%2309C%22%20d%3D%22M21.75%2023.28V6.095h4.75v19.808h-8.396L12.5%2020.13v-6.427%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampNewsVineSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M16.828%2019.498l2.875-2.084c.264.166.572.264.906.264.936%200%201.695-.76%201.695-1.7s-.76-1.7-1.697-1.7c-.94%200-1.702.76-1.702%201.7%200%20.07.006.14.014.21l-2.094%201.516v-4.73l2.896-2.1c.26.158.56.25.885.25.937%200%201.696-.76%201.696-1.7%200-.937-.76-1.7-1.697-1.7-.94%200-1.702.763-1.702%201.7%200%20.08.006.16.018.235l-2.098%201.52V4h-1.656v3.79l-2.11-1.528c.02-.102.032-.205.032-.313%200-.94-.764-1.7-1.7-1.7-.94%200-1.7.76-1.7%201.7%200%20.936.76%201.7%201.7%201.7.296%200%20.573-.078.815-.21l2.962%202.143v4.73L13.06%2012.79c.017-.094.028-.19.028-.286%200-.94-.764-1.7-1.7-1.7-.94%200-1.7.76-1.7%201.7%200%20.938.76%201.7%201.7%201.7.304%200%20.59-.083.84-.224l2.938%202.13v5.044L13.07%2019.63c.014-.092.023-.185.023-.28%200-.938-.76-1.7-1.7-1.7-.938%200-1.697.762-1.697%201.7%200%20.94.76%201.7%201.697%201.7.31%200%20.598-.084.846-.226l2.935%202.124V28h1.655v-1.665l2.87-2.077c.263.166.573.266.91.266.937%200%201.698-.76%201.698-1.7%200-.938-.762-1.698-1.7-1.698s-1.698.76-1.698%201.7c0%20.067.004.134.012.2l-2.092%201.517v-5.045z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampNUjijSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M8.223%204h4v4h-4zm0%206.223h4V28h-4zM19.777%204h4v4h-4zm0%206.223h4V28h-4zM14%204h4v4h-4zm0%206.223h4v11.11h-4z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampOknotizieSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M14.613%2027.342H13.37l-4.796-7.3v7.3h-1.15v-9.25H8.66l4.8%207.3v-7.3h1.154v9.25zm6.015-9.408c1.282%200%202.332.438%203.147%201.312.817.875%201.225%202.03%201.225%203.47%200%201.44-.408%202.597-1.225%203.472-.815.874-1.865%201.312-3.147%201.312-1.286%200-2.34-.44-3.16-1.316-.82-.877-1.23-2.033-1.23-3.467%200-1.44.41-2.596%201.23-3.47.82-.876%201.874-1.313%203.16-1.313zm-.013%208.52c.916%200%201.667-.33%202.252-.985.585-.66.877-1.576.877-2.754s-.29-2.096-.874-2.752c-.583-.656-1.326-.984-2.23-.984-.92%200-1.674.33-2.263.985-.59.656-.884%201.574-.884%202.752%200%201.174.293%202.09.88%202.748.587.658%201.335.988%202.242.988z%22%20fill%3D%22%23FE5000%22%2F%3E%3Cpath%20d%3D%22M11.39%204.5c1.283%200%202.333.438%203.15%201.312.815.875%201.224%202.032%201.224%203.47%200%201.44-.408%202.597-1.225%203.472-.817.875-1.867%201.312-3.15%201.312-1.286%200-2.34-.438-3.16-1.314C7.41%2011.874%207%2010.72%207%209.282c0-1.438.41-2.595%201.23-3.47S10.105%204.5%2011.39%204.5zm-.012%208.52c.916%200%201.667-.33%202.252-.985.585-.656.877-1.574.877-2.752s-.29-2.095-.874-2.752c-.583-.654-1.326-.982-2.23-.982-.92%200-1.674.328-2.264.984-.59.658-.885%201.576-.885%202.753%200%201.174.293%202.09.88%202.75.587.656%201.335.986%202.242.986zm11.317.89H21.29l-2.154-3.402-.737.738v2.663h-1.183V4.656h1.18V9.9l2.556-2.69h1.486l-2.51%202.495%202.764%204.203z%22%20fill%3D%22%2388D32D%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampOutlookcomSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%230072C6%22%20d%3D%22M19.52%208.29v5.5l1.92%201.208c.053.016.163.016.212%200l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z%22%2F%3E%3Cpath%20fill%3D%22%230072C6%22%20d%3D%22M19.52%2015.84l1.755%201.204c.246.183.543%200%20.543%200-.297.183%208.104-5.397%208.104-5.397V21.75c0%201.102-.704%201.562-1.496%201.562H19.52V15.84z%22%2F%3E%3Cg%20fill%3D%22%230072C6%22%3E%3Cpath%20d%3D%22M10.445%2013.305c-.6%200-1.073.282-1.426.842-.355.56-.53%201.305-.53%202.23%200%20.936.175%201.677.53%202.22.347.546.813.82%201.38.82.59%200%201.055-.266%201.4-.795.344-.53.517-1.266.517-2.206%200-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z%22%2F%3E%3Cpath%20d%3D%22M2.123%205.5v21.51l16.362%203.428V2.33L2.123%205.5zm10.95%2014.387c-.693.91-1.594%201.367-2.706%201.367-1.082%200-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448%200-1.496.343-2.707%201.037-3.63.693-.926%201.614-1.388%202.754-1.388%201.08%200%201.955.438%202.62%201.324.667.885%201%202.05%201%203.495.004%201.496-.345%202.695-1.034%203.604z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampPinboardSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M17.357%2018.913l-5.01%205.014.88-4.5-6.588-8.075-3.48.044%204.316-4.313%204.035-4.04V6.85l7.796%206.403%204.502-.786-4.876%204.87%209.907%2011.62%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampPlurkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.215%2016.016h-8.43V9.7h8.43v6.316zm4.2%204.2V5.5H7.585v21h4.2v-6.285h12.63z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampPocketSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23EE4056%22%20d%3D%22M16.005%206.244c2.927%200%205.854-.002%208.782%200%201.396.002%202.195.78%202.188%202.165-.015%202.485.116%204.987-.11%207.456-.75%208.204-10.027%2012.607-16.91%208.064-3.086-2.036-4.82-4.925-4.917-8.672-.06-2.34-.034-4.684-.018-7.025.008-1.214.812-1.98%202.056-1.983%202.975-.01%205.952-.004%208.93-.006zm-5.037%205.483c-.867.093-1.365.396-1.62%201.025-.27.67-.078%201.256.417%201.732%201.688%201.62%203.378%203.238%205.09%204.838.745.695%201.537.687%202.278-.01%201.654-1.55%203.298-3.112%204.93-4.686.827-.797.91-1.714.252-2.38-.694-.704-1.583-.647-2.447.17-1.097%201.04-2.215%202.06-3.266%203.143-.485.494-.77.434-1.227-.025-1.1-1.107-2.234-2.18-3.39-3.225-.325-.29-.77-.447-1.017-.583z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampPrintFriendlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23A9A9A9%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M4.467%2014.305h23.065v6.498H4.467v-6.498z%22%2F%3E%3Cpath%20fill%3D%22%23DCDCDC%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M5.228%2012.83H26.77l.745%201.39H4.485l.743-1.39z%22%2F%3E%3Cpath%20d%3D%22M9.19%208.118h13.467v6.106H9.19z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M9.844%206.516h12.312v7.31H9.844z%22%2F%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M8.602%2017.37h14.574v3.396H8.602z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M10.152%2017.97h11.27l2.233%207.515H7.92l2.232-7.514z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampProtopageBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M17.866%2014.47l7.626-1.048.574%203.078-7.68%201.038%203.54%207.058-2.804%201.418-3.614-7.23-5.873%205.557-2.144-2.29%205.74-5.42-6.86-3.602%201.593-2.697%206.808%203.595%201.3-7.375%203.1.546-1.303%207.374z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampPushaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M29.27%2022.188V8.068L17.208%2014.92l3.838%202.33C15.716%2024.144%205.898%2029.306%200%2031.964V32h19.635c3.682-4.865%207.03-11.46%207.03-11.46l2.605%201.648z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampQzoneSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFC820%22%20d%3D%22M27.996%2012.83l-7.423-.737c-.566-.053-.694-.142-.87-.604l-3.175-7.043c-.29-.598-.765-.598-1.055%200l-3.384%207.04c-.23.393-.337.48-.896.534l-7.188.808c-.66.064-.808.493-.327.952l5.64%205.185c.265.25.27.355.194.697l-1.447%207.61c-.122.65.25.914.823.58l6.44-3.716c.45-.284.868-.293%201.31-.018l6.47%203.734c.575.333.948.07.826-.582L22.83%2021.2c.663-.226%201.306-.5%201.69-.81l-.155.03c-2.29.547-5.437.872-8.355.872-1.08%200-2.126-.038-3.128-.11l-.006.005c-.88-.063-1.727-.15-2.53-.26-.3-.05.026-.242.026-.242l7.758-5.513s.202-.126.002-.153c-3.188-.5-6.723-.625-10.042-.625h-.23c2.245-.51%205.07-.815%208.14-.815%201.81%200%203.538.106%205.11.297-.003.003.887.124%201.31.193.33.05.024.24.024.24l-7.77%205.385s-.18.106.015.135c2.39.338%205.333.458%207.98.492l-.12-.652c-.057-.378%200-.51.286-.78l5.478-5.12c.484-.454.34-.88-.32-.944z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampRediffMyPageSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M22.506%206.004c-.336%200-.64%200-.92-.002L20.926%206c-1.742%200-2.418.07-3.738.923-.744.457-1.38%201.034-1.85%201.517V6.188c0-.102-.08-.184-.182-.184h-5.71c-.1%200-.183.082-.183.184v19.62c0%20.115.115.23.232.18h5.71c.1%200%20.18-.08.18-.18V14.933c0-2.584%201.85-2.916%203.464-2.916h3.703c.1%200%20.182-.08.182-.182V6.188c-.05-.147-.172-.147-.287-.184h.056z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampRenrenSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M18.74%203.266C17.833%203.088%2016.924%203%2016.013%203c-.934%200-1.843.088-2.753.266%200%208.96-.07%2016.176-9.26%2021.662C5.138%2026.566%206.616%2027.96%208.322%2029c3.595-2.168%205.687-4.736%207.69-8.275%202%203.54%204.07%206.107%207.688%208.275%201.706-1.04%203.184-2.434%204.3-4.072-9.19-5.487-9.26-12.7-9.26-21.662z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampSegnaloSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FF6500%22%20d%3D%22M16.65%2011.186c-3.252-1.153-6.64-.972-9.263%201.434-2.76%202.53-3.165%207.208-1.02%2010.172%201.948%202.695%206.138%203.82%209.284%203.58.79-.062%205.125-1.776%204.16-2.845-.174-.192-.41-.29-.454-.31-.042-.017-.104-.032-.136-.038-.03-.007-.264-.05-.522-.076-1.88-.21-3.745.424-5.64-.325-.825-.328-1.674-.668-2.207-1.41-.375-.524-1.086-2.715.16-2.31l7.453%202.404c1.705.55%202.792.625%203.288-1.405.978-3.978-1.35-7.545-5.1-8.875zm-.09%206.423c-.93.046-3.202-.94-3.617-1.076-1.11-.358-2.117-.922-.537-2.053%201.9-1.36%204.214.538%204.51%202.45.038.26-.1.665-.357.678z%22%2F%3E%3Cpath%20fill%3D%22%2303AE00%22%20d%3D%22M21.33%206.97c-1.732.556-3.154%201.852-4.18%203.317-.01.012-.006.018-.012.03-.006.01-.018.02-.02.03-.664%202.168%204.32.844%205.263.54.75-.242%204.84-1.912%204.61-3.078-.362-1.837-4.385-1.247-5.66-.84zm-4.032%202.375C17.42%208.2%2017.02%207.21%2016.12%206.488c-.645-.518-2.716-1.49-3.358-.383-.317.55.01%201.31.195%201.862.233.696.612%201.322%201.137%201.835.764.747%202.385.972%203.01.01.142-.218.186-.44.19-.448%200-.008.004-.013.004-.02z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampSinaWeiboSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M4.91%2019.953c0%203.028%203.943%205.484%208.807%205.484%204.862%200%208.806-2.456%208.806-5.484%200-3.027-3.943-5.482-8.806-5.482-4.863%200-8.807%202.457-8.807%205.484%22%2F%3E%3Cpath%20fill%3D%22%23E6162D%22%20d%3D%22M13.92%2024.99c-4.303.424-8.02-1.52-8.3-4.346-.278-2.827%202.987-5.463%207.292-5.888%204.304-.426%208.018%201.52%208.297%204.345.276%202.83-2.985%205.466-7.29%205.89m8.612-9.38c-.367-.11-.62-.186-.428-.665.416-1.046.458-1.946.01-2.59-.846-1.204-3.155-1.14-5.8-.03%200-.004-.834.362-.62-.297.406-1.31.345-2.406-.29-3.04-1.435-1.436-5.255.056-8.53%203.33C4.424%2014.77%203%2017.37%203%2019.618c0%204.3%205.513%206.913%2010.907%206.913%207.07%200%2011.776-4.106%2011.776-7.37%200-1.97-1.66-3.09-3.15-3.55%22%2F%3E%3Cpath%20fill%3D%22%23F93%22%20d%3D%22M27.226%207.74C25.52%205.848%2023%205.127%2020.676%205.62h-.002c-.536.115-.88.644-.765%201.182.112.536.642.882%201.18.765%201.653-.35%203.442.164%204.66%201.508%201.212%201.346%201.542%203.18%201.02%204.787-.17.525.118%201.085.64%201.255.524.168%201.088-.118%201.256-.64v-.004c.728-2.262.268-4.84-1.44-6.732m-2.622%202.367c-.832-.922-2.058-1.272-3.192-1.03-.462.098-.756.552-.656%201.017.097.46.553.758%201.016.657v.003c.552-.117%201.15.053%201.562.502.406.453.514%201.066.338%201.606h.004c-.147.45.102.935.55%201.08.45.144.936-.102%201.08-.552.356-1.1.135-2.357-.7-3.28%22%2F%3E%3Cpath%20d%3D%22M14.16%2019.87c-.15.26-.484.383-.746.275-.256-.104-.335-.393-.19-.646.15-.253.47-.376.725-.274.26.094.35.386.21.644m-1.373%201.762c-.417.665-1.308.956-1.98.65-.66-.303-.855-1.073-.44-1.722.413-.644%201.274-.932%201.94-.652.673.287.888%201.054.48%201.724m1.564-4.7c-2.046-.533-4.363.488-5.253%202.293-.904%201.84-.028%203.884%202.04%204.552%202.144.69%204.67-.368%205.55-2.354.865-1.944-.216-3.944-2.336-4.49%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampSiteJotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23CA0805%22%20d%3D%22M23.506%208.08c.645%200%201.3.073%201.967.225.547.12.937.285%201.173.495.236.21.354.5.354.868%200%20.232-.043.414-.13.547-.086.13-.272.29-.56.48-.333.224-.524.49-.573.794-.05.302-.094%201.482-.134%203.54-.018%201.99-.033%203.185-.048%203.583-.015.398-.05.785-.107%201.16-.167%201.098-.504%201.958-1.01%202.582-.414.51-.946.912-1.596%201.205-.65.294-1.335.44-2.054.44-.64%200-1.278-.108-1.92-.325-.64-.22-1.197-.518-1.67-.902-.39-.315-.7-.74-.93-1.278-.23-.538-.347-1.11-.347-1.72%200-.75.184-1.37.546-1.863.362-.492.816-.738%201.363-.738.534%200%20.99.207%201.362.62.375.42.56.938.56%201.555%200%20.155-.033.42-.102.787-.012.075-.018.157-.018.247%200%20.24.066.436.2.586.13.15.307.227.524.227.386%200%20.696-.226.933-.677.234-.45.352-1.043.352-1.78l-.01-1.024-.017-2.76c-.052-1.676-.09-2.662-.116-2.96-.027-.296-.09-.538-.195-.725-.086-.15-.162-.246-.23-.29-.065-.046-.245-.117-.538-.215-.138-.038-.256-.144-.353-.315-.098-.174-.147-.357-.147-.554%200-.405.122-.73.366-.975.245-.242.644-.44%201.196-.59.62-.17%201.254-.25%201.91-.25z%22%2F%3E%3Cpath%20fill%3D%22%232A2A2A%22%20d%3D%22M10.202%208c.593%200%201.37.19%202.33.574.114.046.207.068.275.068.058%200%20.23-.068.518-.203.093-.047.19-.07.294-.07.383%200%20.79.4%201.22%201.195.43.797.642%201.555.642%202.275%200%20.422-.097.776-.29%201.066-.19.288-.426.434-.702.434-.23%200-.416-.06-.56-.18-.144-.12-.46-.478-.95-1.07-.69-.842-1.368-1.263-2.035-1.263-.322%200-.58.102-.772.305-.192.203-.29.47-.29.8%200%20.653.44%201.146%201.32%201.476%201.192.46%201.954.793%202.287%201.003%201.467.934%202.2%202.305%202.2%204.114%200%201.6-.5%202.907-1.5%203.922C13.163%2023.48%2011.826%2024%2010.176%2024c-.736%200-1.513-.115-2.33-.344-.816-.23-1.406-.497-1.77-.805-.274-.24-.523-.764-.745-1.57-.22-.81-.33-1.596-.33-2.363%200-.367.058-.646.173-.833.143-.24.324-.36.543-.36.22%200%20.43.146.63.438.12.165.405.695.855%201.59.215.42.553.768%201.016%201.048.463.278.94.417%201.437.417.426%200%20.77-.104%201.035-.31.265-.207.396-.472.396-.794%200-.3-.103-.56-.31-.777-.208-.22-.544-.422-1.01-.61-.823-.337-1.45-.648-1.88-.93-.433-.28-.835-.636-1.21-1.063-.908-1.053-1.362-2.246-1.362-3.583%200-.66.12-1.306.355-1.933.236-.627.57-1.17%201-1.628C7.633%208.53%208.812%208%2010.203%208z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampSlashdotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M20.89%206h-5L8.61%2026h5%22%2F%3E%3Ccircle%20cx%3D%2220.89%22%20cy%3D%2223.5%22%20r%3D%222.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampStumpediaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFC808%22%20d%3D%22M19.1%206.875s-.13.717-.293.912c-.163.197-.62.166-1.045%200-.427-.162-.85-.195-1.274-.03-.425.162-.784.134-.717-.356.065-.49.328-.98.688-1.014.36-.03%201.11-.163%201.207-.36.1-.194-.07-.456-.23-.718-.16-.26-.455-.652-.585-.555-.13.1-.49-.13-.62.262-.132.393-.85%201.403-1.373%201.958-.524.557-1.21%201.602-.85%202.253.36.654.947.688%201.733.688h1.165s.273.23.238.523c-.032.293.263%202.71.263%203.527s-.033.85.195.85h.394s-.163.652-.654%202.284c-.49%201.634-.88%202.876-1.144%203.203-.26.326-.424.588-.424%201.01%200%20.428-.13%201.08-.326%201.44-.196.36-.262.883-.523%201.145-.26.262-.26.328-.358.72-.1.392-.526.882-.655%201.075-.127.197-1.817%201.486-1.915%201.848-.098.358%201.577.53%202.31.44.88-.11%201.135-.007%201.388-.436.273-.462.876-1.51%201.192-2.308.18-.457-.1-.816.294-1.34.39-.522%201.01-1.403%201.433-1.895.425-.49.425-1.078.784-1.8.36-.716.785-1.565%201.11-1.5.327.065.75.456%201.34%201.076.588.62.523.947.62%201.534.1.59.228%201.34.523%201.864.295.524.458%201.014.523%201.47.065.458-.1.88%200%201.405.098.52.556.943.816%201.37.26.42%201.272.39%202.12.42.85.035%201.635.167%201.404-.226-.232-.392-1.045-.916-1.275-1.045-.23-.13-.36-.13-.555-.818-.197-.685-.85-3.722-1.047-4.8-.195-1.078-.652-2.385-1.046-3.104-.39-.718-1.6-2.874-1.6-2.874l-.1-.293h.393s-.163-.687-.262-.85c-.098-.163-.49-1.44-.556-2.09-.065-.653-.197-1.077.13-1.044.327.03%201.568%200%202.32-.197.75-.195.686-.26.717-.88.033-.62%200-1.798-.03-2.58-.034-.784-.296-1.015-.49-1.11-.195-.1-.817.13-.914.326-.1.193-.49.488-.132.75.36.262.425.393.62.457.197.066.197.196.197.36%200%20.163.13.913-.196%201.044-.324.132-1.274.034-1.664-.064-.394-.097-1.176-.815-1.502-.782-.325.033-.62-.294-.653-.72-.03-.424.59-.16.687-.814.1-.652.59-2.103-.814-2.45-.784-.192-1.373.425-1.57%201.372-.148.698-.002%201.007.587%201.465z%22%2F%3E%3Cpath%20fill%3D%22%232A2A2A%22%20d%3D%22M15.688%206.736c-.183.46-1.135%202.4-1.135%202.4s-1.28-.712-3.423-.712c-1.877%200-3%20.924-3.324%201.962-.176.562-.552%202.19%201.475%203.18%201.418.69%203.29%201.465%204.755%202.45%201.906%201.276%202.81%203.327%202.454%205.87-.41%202.92-2.444%205.56-5.473%205.822-2.403.208-6-.536-6.91-1.314.275-.816.56-1.975.78-2.634%201.005.493%202.72.936%204.185%201.11%202.758.326%204.152-.908%204.554-2.44.284-1.087.332-2.204-.12-3.013-1.093-1.96-3.375-2.244-5.392-3.24-3.016-1.492-3.69-3.54-3.308-5.774.437-2.546%201.918-3.803%204.18-4.356%202.128-.52%204.59-.305%206.704.69z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampSvejoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%235BD428%22%20d%3D%22M19.865%2010.524c.31.16.48.29.48.29l.04-.02c.2-4.96-2.933-7.41-2.933-7.41-.688.87-1.147%202.21-1.387%203.04.26.11.51.24.76.38%202.13%201.19%202.83%202.92%203.04%203.72z%22%2F%3E%3Cpath%20fill%3D%22%2337AD29%22%20d%3D%22M19.865%2010.524c-.22-.8-.91-2.53-3.04-3.73-.25-.14-.5-.26-.76-.38-2.27-.99-4.73-.96-4.73-.96s0%202.92%203.08%204.95c.48-.17%201-.31%201.57-.42%201.81-.32%203.19.19%203.88.54z%22%2F%3E%3Cpath%20fill%3D%22%23FDAA09%22%20d%3D%22M10.796%2013.244c-.93%201.82%202.15%206.7%204.75%209.37%201.29%201.33%201.93%202.48%202.19%203.052%202.1.5%203.278-.29%203.42-.4l.068-.12c.932-1.94-1.46-4.818-3.19-7.068-2.138-2.78-2.698-4.832-2.698-4.832l-.01-.01c-3.5-1.582-4.53.008-4.53.008z%22%2F%3E%3Cpath%20fill%3D%22%23FEE70A%22%20d%3D%22M21.176%2025.274c-.15.11-1.32.9-3.42.4-1.1-.26-2.47-.88-4.07-2.15-2.31-1.818-4.03-3.43-5.2-5.53-.3-.528-.98-.568-1.37.2-.6%201.19-.67%204.5.7%206.44%200%200-.38%201.28.62%202.37.67.73%202.22%201.06%203.06.76l.17-.07s1.73%201.302%204.37.813c2.64-.49%204.33-1.73%205.18-3.24l-.04.007zm3.01-11.4s.38-1.28-.62-2.37c-.67-.73-2.22-1.06-3.06-.76l-.12.05-.04.02s-.17-.13-.48-.28c-.69-.36-2.07-.87-3.89-.53-.57.102-1.09.25-1.57.42-1.68.59-2.83%201.542-3.51%202.66l-.1.17s1.02-1.59%204.53-.01c.84.382%201.83.94%202.98%201.75%202.41%201.692%204.03%203.432%205.2%205.53.3.53.98.57%201.37-.198.61-1.2.68-4.512-.69-6.45z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampSymbalooFeedsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7%207h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2013.75h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2020.5h4.5V25H7zm6.75%200h4.5V25h-4.5zm6.75%200H25V25h-4.5z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampTuentiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M13.907%2019.803l-2.463%205.062c-.316.655-.974%201.035-1.656%201.035-.272%200-.545-.062-.807-.188-.914-.445-1.293-1.55-.846-2.465l2.46-5.062c.446-.914%201.55-1.293%202.464-.848.917.447%201.295%201.552.85%202.466zm-.053-7.497c-.445.444-1.055.698-1.682.698-.625%200-1.236-.254-1.678-.698-.445-.444-.7-1.054-.7-1.68%200-.626.255-1.236.7-1.68.885-.888%202.478-.888%203.36%200%20.442.444.696%201.054.696%201.68%200%20.626-.254%201.235-.696%201.68zm9.834%207.17c-.443%202.075-1.266%204.003-2.445%205.73-.35.517-.922.794-1.502.794-.35%200-.705-.103-1.02-.316-.826-.564-1.04-1.695-.476-2.52.912-1.34%201.55-2.835%201.896-4.448.378-1.775.378-3.654-.003-5.432-.344-1.61-.982-3.107-1.895-4.445-.564-.83-.35-1.96.48-2.525.827-.564%201.958-.35%202.522.48%201.178%201.727%202%203.655%202.443%205.73.49%202.272.49%204.675%200%206.95z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampTwiddlaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%232A2A2A%22%20d%3D%22M10.5%205.688l1.375%201.375-4.812%204.812L5.688%2010.5C5.256%209.926%205%209.21%205%208.438%205%206.538%206.54%205%208.438%205c.773%200%201.488.256%202.062.688zm2.406%202.406l-4.812%204.812%2012.72%2012.72L27%2027l-1.375-6.188-12.72-12.718zm-.095%203.533l9.627%209.625-1.186%201.183-9.624-9.625%201.186-1.183z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampViadeoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23F79A30%22%3E%3Cpath%20d%3D%22M15.107%204s2.838%201.88%203.326%207.05c0%200%20.957%2012.423-5.47%2014.858%200%200%20.577.106%201.224.076%200%200%207.947-5.012%204.3-14.742%200%200-1.09-3.396-3.38-7.242zm4.15%208.483s-1.48-2.29.397-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%2F%3E%3Cpath%20d%3D%22M19.256%2012.483s-1.48-2.29.398-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%2F%3E%3C%2Fg%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.486%2019.434c0%201.19-.283%202.3-.85%203.33-.57%201.03-1.34%201.824-2.306%202.383-.967.56-2.03.84-3.186.84-1.156%200-2.22-.28-3.186-.84-.97-.56-1.736-1.354-2.305-2.383-.568-1.03-.853-2.14-.853-3.33%200-1.847.625-3.42%201.87-4.723%201.247-1.3%202.74-1.95%204.474-1.95.824%200%201.596.15%202.313.448.072-.754.336-1.456.63-2.03-.903-.326-1.88-.49-2.936-.49-2.506%200-4.582.92-6.223%202.77-1.494%201.675-2.24%203.65-2.24%205.933%200%202.3.79%204.31%202.367%206.03C9.63%2027.14%2011.664%2028%2014.15%2028c2.48%200%204.508-.86%206.086-2.58%201.578-1.72%202.367-3.73%202.367-6.03%200-1.233-.22-2.374-.65-3.427-.725.445-1.412.678-1.982.797.345.816.517%201.707.517%202.674z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampTypePadPostSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23D2DE61%22%20d%3D%22M16%208.875c-6.627%200-12%203.225-12%207.202%200%20.844.342%202.21.787%202.407.447.196%201.67.683%2012.523-3.836%200%200-9.096%204.09-9.83%205.85-.253.605%202.154%202.627%208.52%202.627%206.626%200%2012-3.148%2012-7.125s-5.374-7.125-12-7.125z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampWaneloSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23F6E38E%22%20d%3D%22M10%2022h10v10H10zM0%2022h10v10H0z%22%2F%3E%3Cpath%20fill%3D%22%2381C1E1%22%20d%3D%22M20%2012h12v10H20z%22%2F%3E%3Cpath%20fill%3D%22%2381B58A%22%20d%3D%22M10%2012h10v10H10z%22%2F%3E%3Cpath%20fill%3D%22%23F6E38E%22%20d%3D%22M0%2012h10v10H0z%22%2F%3E%3Cpath%20fill%3D%22%231997D4%22%20d%3D%22M20%200h12v12H20z%22%2F%3E%3Cpath%20fill%3D%22%2319802A%22%20d%3D%22M10%200h10v12H10z%22%2F%3E%3Cpath%20fill%3D%22%23FDD932%22%20d%3D%22M0%200h10v12H0z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampWebnewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M6%206h5.48v14.557h1.844V6h5.396v14.557h1.852V6H26v18.196h-1.82V26h-7.25v-1.825h-1.838V26h-7.25v-1.825H6V6z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampWordPressSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22%23FFF%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2214.75%22%2F%3E%3Cg%20fill%3D%22%23464646%22%3E%3Cpath%20d%3D%22M3.176%2016c0%205.076%202.95%209.462%207.226%2011.54L4.287%2010.78c-.712%201.595-1.11%203.36-1.11%205.22zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008%200-1.18.897-2.278%202.156-2.278.057%200%20.11.008.166.01-2.28-2.09-5.32-3.367-8.658-3.367-4.48%200-8.422%202.3-10.715%205.78.302.01.585.017.826.017%201.343%200%203.418-.164%203.418-.164.69-.042.774.974.084%201.056%200%200-.694.08-1.466.12l4.668%2013.892%202.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058%200%200%202.116.164%203.38.164%201.34%200%203.416-.163%203.416-.163.69-.04.77.976.08%201.058%200%200-.694.08-1.467.12l4.634%2013.785%201.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43%201.766l-3.85%2011.18c1.15.34%202.365.523%203.624.523%201.492%200%202.925-.26%204.26-.728-.035-.056-.066-.113-.093-.177L16.225%2017.12zM27.25%209.848c.055.408.086.848.086%201.318%200%201.3-.242%202.764-.975%204.594l-3.916%2011.324C26.26%2024.86%2028.822%2020.73%2028.822%2016c0-2.23-.568-4.326-1.57-6.152z%22%2F%3E%3Cpath%20d%3D%22M16%201.052C7.757%201.052%201.052%207.757%201.052%2016c0%208.242%206.705%2014.948%2014.948%2014.948%208.242%200%2014.948-6.706%2014.948-14.95%200-8.24-6.706-14.946-14.948-14.946zm0%2029.212c-7.865%200-14.264-6.4-14.264-14.265S8.136%201.734%2016%201.734c7.863%200%2014.264%206.398%2014.264%2014.263%200%207.863-6.4%2014.264-14.264%2014.264z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampWykopSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M28.5%2023.54c0%202.74-2.22%204.96-4.96%204.96H8.46c-2.74%200-4.96-2.22-4.96-4.96V8.46c0-2.74%202.22-4.96%204.96-4.96h15.08c2.74%200%204.96%202.22%204.96%204.96v15.08z%22%2F%3E%3Cpath%20fill%3D%22%23F58237%22%20d%3D%22M17.052%207.997l4.942%2010.043-2.01.99-4.94-10.044-4.018%201.977%204.943%2010.043-2.01.988L9.016%2011.95%205%2013.93l5.93%2012.05L27%2018.073l-5.93-12.05%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampYahooMailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M21.495%206.097c1.09.31%202.213.28%203.304%200l-7.418%2012.09v9.91c-.468-.155-.935-.22-1.37-.22-.47%200-.937.065-1.404.22v-9.91L7.19%206.097c1.09.28%202.213.31%203.304%200l5.516%208.788%205.483-8.787z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampYahooMessengerSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M16%2027c6.074%200%2011-4.926%2011-11%200-6.075-4.926-11-11-11S5%209.925%205%2016c0%206.074%204.926%2011%2011%2011zm2.808-17.016c.792%200%201.434.64%201.434%201.432%200%20.79-.642%201.432-1.434%201.432-.79%200-1.432-.64-1.432-1.432%200-.79.642-1.432%201.432-1.432zm-5.443%200c.79%200%201.433.64%201.433%201.432%200%20.79-.642%201.432-1.433%201.432s-1.433-.64-1.433-1.432c0-.79.642-1.432%201.433-1.432zm-5.1%204.583h15.47v2.866h-.032c-.32%203.975-3.644%207.103-7.702%207.103-4.06%200-7.38-3.128-7.7-7.103h-.033v-2.866zm14.42%202.56H9.13v-1.764h13.554v1.764z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampYoolinkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22%232E6EB5%22%20stroke%3D%22%23FFF%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2212%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M14.47%2023.09v-4.908l-3.604-5.856c-.315-.528-.538-.94-.67-1.235-.13-.294-.196-.552-.196-.77%200-.36.132-.67.398-.93.264-.26.59-.39.98-.39.41%200%20.72.12.933.365.213.243.53.727.953%201.45l2.758%204.697%202.79-4.696c.17-.287.31-.53.423-.727.114-.198.24-.384.378-.556.14-.172.29-.305.46-.396.166-.09.37-.136.613-.136.376%200%20.688.13.94.385.252.258.378.554.378.892%200%20.273-.064.55-.19.82-.127.275-.345.655-.654%201.14l-3.694%205.94v4.91c0%20.64-.14%201.118-.422%201.436-.282.317-.642.475-1.08.475-.44%200-.8-.156-1.076-.47-.275-.312-.412-.793-.412-1.44z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampYouMobSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M4%209.498h1.82l2.7%2010.754%202.677-10.754h1.81v12.72h-1.213V14.71c0-.26.003-.69.01-1.29.012-.6.015-1.244.015-1.93L9.14%2022.216H7.88L5.173%2011.49v.39c0%20.31.008.786.02%201.423.013.64.02%201.108.02%201.407v7.507H4V9.497zm15.735%204.372c.604.795.907%201.966.907%203.51%200%201.495-.267%202.73-.8%203.704-.534.975-1.36%201.46-2.48%201.46-.934%200-1.677-.43-2.228-1.292-.55-.86-.825-2.02-.825-3.473%200-1.56.29-2.8.87-3.723.576-.922%201.356-1.383%202.333-1.383.877%200%201.616.4%202.22%201.194zm-.714%206.16c.28-.78.423-1.65.423-2.607%200-.863-.102-1.568-.304-2.11-.323-.853-.875-1.278-1.656-1.278-.695%200-1.2.36-1.518%201.088-.314.727-.474%201.604-.474%202.63%200%20.985.16%201.808.475%202.466.316.654.817.982%201.503.982.755%200%201.27-.39%201.553-1.172zm2.937-10.575h1.118v4.615c.253-.445.554-.785.905-1.02.35-.232.73-.35%201.142-.35.854%200%201.547.397%202.08%201.19.53.796.798%201.966.798%203.512%200%201.467-.26%202.684-.788%203.654-.524.97-1.253%201.454-2.186%201.454-.52%200-.964-.17-1.323-.51-.213-.202-.44-.526-.687-.972v1.188h-1.06V9.456zm4.398%2010.675c.31-.67.463-1.552.463-2.65%200-.974-.154-1.782-.463-2.423-.312-.64-.768-.96-1.368-.96-.527%200-.988.262-1.382.786-.397.525-.595%201.392-.595%202.598%200%20.873.083%201.58.245%202.123.304%201.02.868%201.532%201.7%201.532.622%200%201.088-.334%201.4-1.004z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}
helper.php CHANGED
@@ -40,6 +40,17 @@ function the_champ_login_notifications($loginOptions){
40
  return $errorHtml;
41
  }
42
 
 
 
 
 
 
 
 
 
 
 
 
43
  /**
44
  * Facebook option page of plugin in WP admin.
45
  */
@@ -97,13 +108,6 @@ function the_champ_like_buttons_page(){
97
  require 'admin/like_buttons.php';
98
  }
99
 
100
- /**
101
- * Plugin options page in WP Admin.
102
- */
103
- function the_champ_option_page(){
104
- require 'admin/admin.php';
105
- }
106
-
107
  /**
108
  * Validate plugin options.
109
  *
@@ -129,6 +133,7 @@ function the_champ_options_init(){
129
  register_setting('the_champ_login_options', 'the_champ_login', 'the_champ_validate_options');
130
  register_setting('the_champ_sharing_options', 'the_champ_sharing', 'the_champ_validate_options');
131
  register_setting('the_champ_counter_options', 'the_champ_counter', 'the_champ_validate_options');
 
132
  if(the_champ_social_sharing_enabled() || the_champ_social_counter_enabled() || the_champ_social_commenting_enabled()){
133
  // show option to disable sharing on particular page/post
134
  $post_types = get_post_types( array( 'public' => true ), 'names', 'and' );
@@ -149,7 +154,7 @@ function the_champ_admin_scripts(){
149
  ?>
150
  <script>var theChampWebsiteUrl = '<?php echo site_url() ?>', theChampHelpBubbleTitle = "<?php echo __('Click to show help', 'Super-Socializer') ?>", theChampHelpBubbleCollapseTitle = "<?php echo __('Click to hide help', 'Super-Socializer') ?>" </script>
151
  <?php
152
- wp_enqueue_script('the_champ_admin_script', plugins_url('js/admin/admin.js', __FILE__), array('jquery', 'jquery-ui-tabs'));
153
  }
154
 
155
  /**
@@ -163,7 +168,6 @@ function the_champ_fb_sdk_script(){
163
  * Include javascript files in admin sharing page.
164
  */
165
  function the_champ_admin_sharing_scripts(){
166
- wp_enqueue_script('the_champ_modernizer', plugins_url('js/modernizr.custom.82187.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION);
167
  wp_enqueue_script('the_champ_sharing', plugins_url('js/admin/sharing/admin.js', __FILE__), array('jquery', 'jquery-ui-sortable'), THE_CHAMP_SS_VERSION);
168
  }
169
 
@@ -181,6 +185,55 @@ function the_champ_admin_style(){
181
  wp_enqueue_style('the_champ_admin_style', plugins_url('css/admin.css', __FILE__), false, THE_CHAMP_SS_VERSION);
182
  }
183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  function the_champ_add_settings_link($links, $file){
185
  static $plugin;
186
  if(!$plugin){
@@ -363,8 +416,8 @@ function the_champ_facebook_plugin_enabled(){
363
  * Check if Facebook Like/Recommend is enabled
364
  */
365
  function the_champ_facebook_like_rec_enabled(){
366
- global $theChampCounterOptions;
367
- if( the_champ_social_counter_enabled() && ( ( the_champ_horizontal_counter_enabled() && isset($theChampCounterOptions['horizontal_providers']) && ( in_array('facebook_like', $theChampCounterOptions['horizontal_providers']) || in_array('facebook_recommend', $theChampCounterOptions['horizontal_providers']) ) ) || ( the_champ_vertical_counter_enabled() && isset($theChampCounterOptions['vertical_providers']) && ( in_array('facebook_like', $theChampCounterOptions['vertical_providers']) || in_array('facebook_recommend', $theChampCounterOptions['vertical_providers']) ) ) ) ){
368
  return true;
369
  }
370
  return false;
@@ -447,7 +500,6 @@ function the_champ_account_linking(){
447
  $userVerified = false;
448
  $ajaxUrl = 'admin-ajax.php';
449
  $notification = '';
450
- wp_enqueue_script('the_champ_modernizer', plugins_url('js/modernizr.custom.82187.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION);
451
  wp_enqueue_script('the_champ_sl_common', plugins_url('js/front/social_login/common.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION);
452
  }
453
  // linking functions
@@ -677,22 +729,22 @@ function the_champ_sharing_meta_setup(){
677
  <p>
678
  <label for="the_champ_sharing">
679
  <input type="checkbox" name="_the_champ_meta[sharing]" id="the_champ_sharing" value="1" <?php checked('1', @$sharingMeta['sharing']); ?> />
680
- <?php _e('Disable Horizontal Social Sharing on this '.$postType, 'Super-Socializer') ?>
681
  </label>
682
  <br/>
683
  <label for="the_champ_vertical_sharing">
684
  <input type="checkbox" name="_the_champ_meta[vertical_sharing]" id="the_champ_vertical_sharing" value="1" <?php checked('1', @$sharingMeta['vertical_sharing']); ?> />
685
- <?php _e('Disable Vertical Social Sharing on this '.$postType, 'Super-Socializer') ?>
686
  </label>
687
  <br/>
688
  <label for="the_champ_counter">
689
  <input type="checkbox" name="_the_champ_meta[counter]" id="the_champ_counter" value="1" <?php checked('1', @$sharingMeta['counter']); ?> />
690
- <?php _e('Disable Horizontal like buttons on this '.$postType, 'Super-Socializer') ?>
691
  </label>
692
  <br/>
693
  <label for="the_champ_vertical_counter">
694
  <input type="checkbox" name="_the_champ_meta[vertical_counter]" id="the_champ_vertical_counter" value="1" <?php checked('1', @$sharingMeta['vertical_counter']); ?> />
695
- <?php _e('Disable Vertical like buttons on this '.$postType, 'Super-Socializer') ?>
696
  </label>
697
  <br/>
698
  <label for="the_champ_fb_comments">
@@ -702,17 +754,17 @@ function the_champ_sharing_meta_setup(){
702
  <?php
703
  if(the_champ_social_sharing_enabled()){
704
  global $theChampSharingOptions;
705
- $excludedProviders = array('print', 'email', 'yahoo', 'digg', 'float it', 'tumblr', 'xing', 'whatsapp', 'yummly');
706
- if(isset($theChampSharingOptions['hor_enable']) && isset($theChampSharingOptions['horizontal_counts']) && isset($theChampSharingOptions['providers']) && count($theChampSharingOptions['providers']) > 0){
707
  ?>
708
  <p>
709
- <strong><?php _e('Horizontal sharing', 'Super-Socializer') ?></strong>
710
  <?php
711
- foreach(array_diff($theChampSharingOptions['providers'], $excludedProviders) as $sharingProvider){
712
  ?>
713
  <br/>
714
  <label for="the_champ_<?php echo $sharingProvider ?>_horizontal_sharing_count">
715
- <span style="width: 242px; float:left"><?php _e('Starting share count for ' . ucfirst($sharingProvider), 'Super-Socializer') ?></span>
716
  <input type="text" name="_the_champ_meta[<?php echo $sharingProvider ?>_horizontal_count]" id="the_champ_<?php echo $sharingProvider ?>_horizontal_sharing_count" value="<?php echo isset($sharingMeta[$sharingProvider.'_horizontal_count']) ? $sharingMeta[$sharingProvider.'_horizontal_count'] : '' ?>" />
717
  </label>
718
  <?php
@@ -722,16 +774,16 @@ function the_champ_sharing_meta_setup(){
722
  <?php
723
  }
724
 
725
- if(isset($theChampSharingOptions['vertical_enable']) && isset($theChampSharingOptions['vertical_counts']) && isset($theChampSharingOptions['vertical_providers']) && count($theChampSharingOptions['vertical_providers']) > 0){
726
  ?>
727
  <p>
728
- <strong><?php _e('Vertical sharing', 'Super-Socializer') ?></strong>
729
  <?php
730
- foreach(array_diff($theChampSharingOptions['vertical_providers'], $excludedProviders) as $sharingProvider){
731
  ?>
732
  <br/>
733
  <label for="the_champ_<?php echo $sharingProvider ?>_vertical_sharing_count">
734
- <span style="width: 242px; float:left"><?php _e('Starting share count for ' . ucfirst($sharingProvider), 'Super-Socializer') ?></span>
735
  <input type="text" name="_the_champ_meta[<?php echo $sharingProvider ?>_vertical_count]" id="the_champ_<?php echo $sharingProvider ?>_vertical_sharing_count" value="<?php echo isset($sharingMeta[$sharingProvider.'_vertical_count']) ? $sharingMeta[$sharingProvider.'_vertical_count'] : '' ?>" />
736
  </label>
737
  <?php
40
  return $errorHtml;
41
  }
42
 
43
+ /**
44
+ * General options page of plugin in admin area
45
+ */
46
+ function the_champ_general_options_page(){
47
+ // facebook options
48
+ global $theChampGeneralOptions;
49
+ // message on saving options
50
+ echo the_champ_settings_saved_notification();
51
+ require 'admin/general_options.php';
52
+ }
53
+
54
  /**
55
  * Facebook option page of plugin in WP admin.
56
  */
108
  require 'admin/like_buttons.php';
109
  }
110
 
 
 
 
 
 
 
 
111
  /**
112
  * Validate plugin options.
113
  *
133
  register_setting('the_champ_login_options', 'the_champ_login', 'the_champ_validate_options');
134
  register_setting('the_champ_sharing_options', 'the_champ_sharing', 'the_champ_validate_options');
135
  register_setting('the_champ_counter_options', 'the_champ_counter', 'the_champ_validate_options');
136
+ register_setting('the_champ_general_options', 'the_champ_general', 'the_champ_validate_options');
137
  if(the_champ_social_sharing_enabled() || the_champ_social_counter_enabled() || the_champ_social_commenting_enabled()){
138
  // show option to disable sharing on particular page/post
139
  $post_types = get_post_types( array( 'public' => true ), 'names', 'and' );
154
  ?>
155
  <script>var theChampWebsiteUrl = '<?php echo site_url() ?>', theChampHelpBubbleTitle = "<?php echo __('Click to show help', 'Super-Socializer') ?>", theChampHelpBubbleCollapseTitle = "<?php echo __('Click to hide help', 'Super-Socializer') ?>" </script>
156
  <?php
157
+ wp_enqueue_script('the_champ_admin_script', plugins_url('js/admin/admin.js', __FILE__), array('jquery', 'jquery-ui-tabs'), THE_CHAMP_SS_VERSION);
158
  }
159
 
160
  /**
168
  * Include javascript files in admin sharing page.
169
  */
170
  function the_champ_admin_sharing_scripts(){
 
171
  wp_enqueue_script('the_champ_sharing', plugins_url('js/admin/sharing/admin.js', __FILE__), array('jquery', 'jquery-ui-sortable'), THE_CHAMP_SS_VERSION);
172
  }
173
 
185
  wp_enqueue_style('the_champ_admin_style', plugins_url('css/admin.css', __FILE__), false, THE_CHAMP_SS_VERSION);
186
  }
187
 
188
+ /**
189
+ * Include CSS files at sharing options page in admin
190
+ */
191
+ function the_champ_admin_sharing_style(){
192
+ global $theChampSharingOptions;
193
+
194
+ wp_enqueue_style( 'the_champ_admin_svg', plugins_url( 'css/share-svg.css', __FILE__ ), false, THE_CHAMP_SS_VERSION );
195
+ if( $theChampSharingOptions['horizontal_font_color_default'] != '' ) {
196
+ $updated = the_champ_update_css( 'horizontal_sharing_replace_color', 'horizontal_font_color_default', 'share-default-svg-horizontal' );
197
+ wp_enqueue_style( 'the_champ_admin_svg_horizontal', plugins_url( 'css/share-default-svg-horizontal.css', __FILE__ ), false, ( $updated === true ? rand() : THE_CHAMP_SS_VERSION ) );
198
+ }
199
+ if( $theChampSharingOptions['horizontal_font_color_hover'] != '' ) {
200
+ $updated = the_champ_update_css( 'horizontal_sharing_replace_color_hover', 'horizontal_font_color_hover', 'share-hover-svg-horizontal' );
201
+ wp_enqueue_style( 'the_champ_admin_svg_horizontal_hover', plugins_url( 'css/share-hover-svg-horizontal.css', __FILE__ ), false, ( $updated === true ? rand() : THE_CHAMP_SS_VERSION ) );
202
+ }
203
+ if( $theChampSharingOptions['vertical_font_color_default'] != '' ) {
204
+ $updated = the_champ_update_css( 'vertical_sharing_replace_color', 'vertical_font_color_default', 'share-default-svg-vertical' );
205
+ wp_enqueue_style( 'the_champ_admin_svg_vertical', plugins_url( 'css/share-default-svg-vertical.css', __FILE__ ), false, ( $updated === true ? rand() : THE_CHAMP_SS_VERSION ) );
206
+ }
207
+ if( $theChampSharingOptions['vertical_font_color_hover'] != '' ) {
208
+ $updated = the_champ_update_css( 'vertical_sharing_replace_color_hover', 'vertical_font_color_hover', 'share-hover-svg-vertical' );
209
+ wp_enqueue_style( 'the_champ_admin_svg_vertical_hover', plugins_url( 'css/share-hover-svg-vertical.css', __FILE__ ), false, ( $updated === true ? rand() : THE_CHAMP_SS_VERSION ) );
210
+ }
211
+ }
212
+
213
+ /**
214
+ * Update CSS file
215
+ */
216
+ function the_champ_update_css( $replace_color_option, $logo_color_option, $css_file ) {
217
+ global $theChampSharingOptions;
218
+ if ( $theChampSharingOptions[$replace_color_option] != $theChampSharingOptions[$logo_color_option] ) {
219
+ $path = plugin_dir_url( __FILE__ ) . 'css/' . $css_file . '.css';
220
+ $content = file( $path );
221
+ if ( $content !== false ) {
222
+ $handle = fopen( dirname( __FILE__ ) . '/css/' . $css_file . '.css','w' );
223
+ if ( $handle !== false ) {
224
+ foreach ( $content as $value ) {
225
+ fwrite( $handle, str_replace( str_replace( '#', '%23', $theChampSharingOptions[$replace_color_option] ), str_replace( '#', '%23', $theChampSharingOptions[$logo_color_option] ), $value ) );
226
+ }
227
+ fclose( $handle );
228
+ $theChampSharingOptions[$replace_color_option] = $theChampSharingOptions[$logo_color_option];
229
+ update_option( 'the_champ_sharing', $theChampSharingOptions );
230
+ return true;
231
+ }
232
+ }
233
+ }
234
+ return false;
235
+ }
236
+
237
  function the_champ_add_settings_link($links, $file){
238
  static $plugin;
239
  if(!$plugin){
416
  * Check if Facebook Like/Recommend is enabled
417
  */
418
  function the_champ_facebook_like_rec_enabled(){
419
+ global $theChampCounterOptions, $theChampSharingOptions;
420
+ if( ( the_champ_social_counter_enabled() && ( ( the_champ_horizontal_counter_enabled() && isset($theChampCounterOptions['horizontal_providers']) && ( in_array('facebook_like', $theChampCounterOptions['horizontal_providers']) || in_array('facebook_recommend', $theChampCounterOptions['horizontal_providers']) ) ) || ( the_champ_vertical_counter_enabled() && isset($theChampCounterOptions['vertical_providers']) && ( in_array('facebook_like', $theChampCounterOptions['vertical_providers']) || in_array('facebook_recommend', $theChampCounterOptions['vertical_providers']) ) ) ) ) || ( the_champ_social_sharing_enabled() && ( ( the_champ_horizontal_sharing_enabled() && isset($theChampSharingOptions['horizontal_re_providers']) && ( in_array('facebook_like', $theChampSharingOptions['horizontal_re_providers']) || in_array('facebook_recommend', $theChampSharingOptions['horizontal_re_providers']) ) ) || ( the_champ_vertical_sharing_enabled() && isset($theChampSharingOptions['vertical_re_providers']) && ( in_array('facebook_like', $theChampSharingOptions['vertical_re_providers']) || in_array('facebook_recommend', $theChampSharingOptions['vertical_re_providers']) ) ) ) ) ){
421
  return true;
422
  }
423
  return false;
500
  $userVerified = false;
501
  $ajaxUrl = 'admin-ajax.php';
502
  $notification = '';
 
503
  wp_enqueue_script('the_champ_sl_common', plugins_url('js/front/social_login/common.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION);
504
  }
505
  // linking functions
729
  <p>
730
  <label for="the_champ_sharing">
731
  <input type="checkbox" name="_the_champ_meta[sharing]" id="the_champ_sharing" value="1" <?php checked('1', @$sharingMeta['sharing']); ?> />
732
+ <?php _e('Disable Standard Social Sharing on this '.$postType, 'Super-Socializer') ?>
733
  </label>
734
  <br/>
735
  <label for="the_champ_vertical_sharing">
736
  <input type="checkbox" name="_the_champ_meta[vertical_sharing]" id="the_champ_vertical_sharing" value="1" <?php checked('1', @$sharingMeta['vertical_sharing']); ?> />
737
+ <?php _e('Disable Floating Social Sharing on this '.$postType, 'Super-Socializer') ?>
738
  </label>
739
  <br/>
740
  <label for="the_champ_counter">
741
  <input type="checkbox" name="_the_champ_meta[counter]" id="the_champ_counter" value="1" <?php checked('1', @$sharingMeta['counter']); ?> />
742
+ <?php _e('Disable Standard like buttons on this '.$postType, 'Super-Socializer') ?>
743
  </label>
744
  <br/>
745
  <label for="the_champ_vertical_counter">
746
  <input type="checkbox" name="_the_champ_meta[vertical_counter]" id="the_champ_vertical_counter" value="1" <?php checked('1', @$sharingMeta['vertical_counter']); ?> />
747
+ <?php _e('Disable Floating like buttons on this '.$postType, 'Super-Socializer') ?>
748
  </label>
749
  <br/>
750
  <label for="the_champ_fb_comments">
754
  <?php
755
  if(the_champ_social_sharing_enabled()){
756
  global $theChampSharingOptions;
757
+ $validNetworks = array('facebook', 'twitter', 'linkedin', 'google_plus', 'delicious', 'buffer', 'reddit', 'pinterest', 'stumbleupon', 'vkontakte');
758
+ if(isset($theChampSharingOptions['hor_enable']) && isset($theChampSharingOptions['horizontal_counts']) && isset($theChampSharingOptions['horizontal_re_providers']) && count($theChampSharingOptions['horizontal_re_providers']) > 0){
759
  ?>
760
  <p>
761
+ <strong><?php _e('Standard Sharing Interface', 'Super-Socializer') ?></strong>
762
  <?php
763
+ foreach(array_intersect($theChampSharingOptions['horizontal_re_providers'], $validNetworks) as $sharingProvider){
764
  ?>
765
  <br/>
766
  <label for="the_champ_<?php echo $sharingProvider ?>_horizontal_sharing_count">
767
+ <span style="width: 242px; float:left"><?php _e('Starting share count for ' . ucfirst(str_replace('_', ' ', $sharingProvider)), 'Super-Socializer') ?></span>
768
  <input type="text" name="_the_champ_meta[<?php echo $sharingProvider ?>_horizontal_count]" id="the_champ_<?php echo $sharingProvider ?>_horizontal_sharing_count" value="<?php echo isset($sharingMeta[$sharingProvider.'_horizontal_count']) ? $sharingMeta[$sharingProvider.'_horizontal_count'] : '' ?>" />
769
  </label>
770
  <?php
774
  <?php
775
  }
776
 
777
+ if(isset($theChampSharingOptions['vertical_enable']) && isset($theChampSharingOptions['vertical_counts']) && isset($theChampSharingOptions['vertical_re_providers']) && count($theChampSharingOptions['vertical_re_providers']) > 0){
778
  ?>
779
  <p>
780
+ <strong><?php _e('Floating Sharing Interface', 'Super-Socializer') ?></strong>
781
  <?php
782
+ foreach(array_intersect($theChampSharingOptions['vertical_re_providers'], $validNetworks) as $sharingProvider){
783
  ?>
784
  <br/>
785
  <label for="the_champ_<?php echo $sharingProvider ?>_vertical_sharing_count">
786
+ <span style="width: 242px; float:left"><?php _e('Starting share count for ' . ucfirst(str_replace('_', ' ', $sharingProvider)), 'Super-Socializer') ?></span>
787
  <input type="text" name="_the_champ_meta[<?php echo $sharingProvider ?>_vertical_count]" id="the_champ_<?php echo $sharingProvider ?>_vertical_sharing_count" value="<?php echo isset($sharingMeta[$sharingProvider.'_vertical_count']) ? $sharingMeta[$sharingProvider.'_vertical_count'] : '' ?>" />
788
  </label>
789
  <?php
images/sharing/buffer_share.png ADDED
Binary file
images/sharing/facebook_like.png ADDED
Binary file
images/sharing/facebook_recommend.png ADDED
Binary file
images/sharing/google_plus_share.png ADDED
Binary file
images/sharing/google_plusone.png ADDED
Binary file
images/sharing/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("Silence is Golden"); ?>
1
+ <?php // Silence is golden
images/sharing/linkedin_share.png ADDED
Binary file
images/sharing/more_sprite.png DELETED
Binary file
images/sharing/pinterest_pin.png ADDED
Binary file
images/sharing/pullout.png DELETED
Binary file
images/sharing/pushin.png DELETED
Binary file
images/sharing/reddit_badge.png ADDED
Binary file
images/sharing/sharing.png DELETED
Binary file
images/sharing/stumbleupon_badge.png ADDED
Binary file
images/sharing/twitter_tweet.png ADDED
Binary file
images/sharing/xing_share.png ADDED
Binary file
images/sharing/yummly_share.png ADDED
Binary file
images/snaps/ss_twitter_username.png CHANGED
Binary file
inc/social_login.php CHANGED
@@ -83,7 +83,7 @@ if(isset($theChampLoginOptions['enable_before_wc']) && $theChampLoginOptions['en
83
  add_action( 'woocommerce_before_customer_login_form', 'the_champ_login_button' );
84
  }
85
  if(isset($theChampLoginOptions['enable_after_wc']) && $theChampLoginOptions['enable_after_wc'] == 1){
86
- add_action( 'woocommerce_after_customer_login_form', 'the_champ_login_button' );
87
  }
88
  if(isset($theChampLoginOptions['enable_wc_checkout']) && $theChampLoginOptions['enable_wc_checkout'] == 1){
89
  add_action( 'woocommerce_checkout_before_customer_details', 'the_champ_login_button' );
83
  add_action( 'woocommerce_before_customer_login_form', 'the_champ_login_button' );
84
  }
85
  if(isset($theChampLoginOptions['enable_after_wc']) && $theChampLoginOptions['enable_after_wc'] == 1){
86
+ add_action( 'woocommerce_login_form', 'the_champ_login_button' );
87
  }
88
  if(isset($theChampLoginOptions['enable_wc_checkout']) && $theChampLoginOptions['enable_wc_checkout'] == 1){
89
  add_action( 'woocommerce_checkout_before_customer_details', 'the_champ_login_button' );
inc/social_sharing.php CHANGED
@@ -4,148 +4,163 @@ defined('ABSPATH') or die("Cheating........Uh!!");
4
  * File contains the functions necessary for Social Sharing functionality
5
  */
6
 
7
- /**
8
- * Render sharing interface html.
9
- */
10
- function the_champ_prepare_sharing_html($postUrl, $sharingType = 'horizontal', $displayCount, $totalShares){
11
- global $theChampSharingOptions, $post;
12
- if($sharingType == 'vertical' && (is_front_page() || is_home())){
13
- $postTitle = wp_title('', false);
14
- if($postTitle == ''){
15
- $postTitle = get_bloginfo('name') . " - " . get_bloginfo('description');
16
  }
17
- }else{
18
  $postTitle = $post->post_title;
19
  }
20
- $postTitle = html_entity_decode($postTitle, ENT_QUOTES, 'UTF-8');
21
- $postTitle = urlencode($postTitle);
22
- $postTitle = str_replace('#', '%23', $postTitle);
23
- $postTitle = esc_html($postTitle);
24
- $postUrl = (isset($theChampSharingOptions['use_shortlink']) && function_exists('wp_get_shortlink')) ? wp_get_shortlink() : $postUrl;
25
- if(!isset($theChampSharingOptions['horizontal_sharing_size'])){
26
- $theChampSharingOptions['horizontal_sharing_size'] = 30;
27
- }
28
- if(!isset($theChampSharingOptions['horizontal_sharing_shape'])){
29
- $theChampSharingOptions['horizontal_sharing_shape'] = 'round';
30
- }
31
- if(!isset($theChampSharingOptions['vertical_sharing_size'])){
32
- $theChampSharingOptions['vertical_sharing_size'] = 35;
33
- }
34
- if(!isset($theChampSharingOptions['vertical_sharing_shape'])){
35
- $theChampSharingOptions['vertical_sharing_shape'] = 'square';
36
- }
37
- $output = apply_filters('the_champ_sharing_interface_filter', '', $postUrl, $sharingType, $theChampSharingOptions, $post, $displayCount, $totalShares);
38
- if($output != ''){
39
  return $output;
40
  }
41
  $html = '';
42
  $sharingMeta = '';
43
- if(!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))){
44
- $sharingMeta = get_post_meta($post->ID, '_the_champ_meta', true);
45
  }
46
- if(isset($theChampSharingOptions[$sharingType.'_re_providers'])){
47
- $html = '<ul '. ($sharingType == 'horizontal' && isset($theChampSharingOptions['hor_sharing_alignment']) && $theChampSharingOptions['hor_sharing_alignment'] == "center" ? "style='list-style: none;position: relative;left: 50%;'" : "") .' class="the_champ_sharing_ul">';
48
- $style = 'style="width:' . $theChampSharingOptions[$sharingType . '_sharing_size'] . 'px;height:' . $theChampSharingOptions[$sharingType . '_sharing_size'] . 'px;';
49
- $counterContainerInitHtml = '<span class="the_champ_share_count';
50
- $counterContainerEndHtml = '</span>';
 
 
 
 
51
  $innerStyle = 'display:block;';
52
  $liClass = 'theChampSharingRound';
53
- if($theChampSharingOptions[$sharingType . '_sharing_shape'] == 'round'){
54
  $style .= 'border-radius:999px;';
55
  $innerStyle .= 'border-radius:999px;';
 
 
56
  }
57
- if($sharingType == 'vertical' && $theChampSharingOptions[$sharingType . '_sharing_shape'] == 'square'){
58
  $style .= 'margin:0;';
59
- $counterContainerInitHtml = '<ss class="the_champ_square_count';
60
- $counterContainerEndHtml = '</ss>';
61
  $liClass = '';
62
  }
63
  $style .= '"';
64
  $liItems = '';
65
- foreach($theChampSharingOptions[$sharingType.'_re_providers'] as $provider){
66
- $liItems .= '<li class="' . ($liClass != '' ? $liClass : 'theChamp' . ucfirst(str_replace(' ', '', $provider)) .'Background theChamp' . ucfirst(str_replace(' ', '', $provider)) .'SquareBackground') . '">';
67
- if($displayCount){
68
- $startingCount = isset($sharingMeta[$provider . '_' . $sharingType . '_count']) && $sharingMeta[$provider . '_' . $sharingType . '_count'] != '' ? true : false;
69
- $liItems .= $counterContainerInitHtml . ' the_champ_'.$provider.'_count" '. ($startingCount ? 'ss_st_count="'. $sharingMeta[$provider . '_' . $sharingType . '_count'] .'"' : '') .' >&nbsp;' . $counterContainerEndHtml;
 
 
 
 
 
 
 
 
 
70
  }
71
- if($provider == 'print'){
72
- $liItems .= '<i ' .$style. ' alt="Print" Title="Print" class="theChampSharing theChamp'. ucfirst($provider) .'Background" onclick=\'window.print()\'><ss style="display:block" class="theChampSharingSvg theChamp'. ucfirst($provider) .'Svg"></ss></i>';
73
- }elseif($provider == 'email'){
74
- $liItems .= '<i ' .$style. ' alt="Email" Title="Email" class="theChampSharing theChamp'. ucfirst($provider) .'Background" onclick="window.location.href = \'mailto:?subject=\' + decodeURIComponent(\''. $postTitle .'\') + \'&body=\' + decodeURIComponent(\''.$postUrl.'\')"><ss style="display:block" class="theChampSharingSvg theChamp'. ucfirst($provider) .'Svg"></ss></i>';
75
- }else{
76
- if($provider == 'facebook'){
77
- $sharingUrl = 'https://www.facebook.com/sharer/sharer.php?u=' . $postUrl;
78
- }elseif($provider == 'twitter'){
79
- $sharingUrl = 'http://twitter.com/intent/tweet?'. (isset($theChampSharingOptions['twitter_username']) && $theChampSharingOptions['twitter_username'] != '' ? 'via=' . $theChampSharingOptions['twitter_username'] . '&' : '') . 'text=' . $postTitle .'&url=' . $postUrl;
80
- }elseif($provider == 'linkedin'){
81
- $sharingUrl = 'http://www.linkedin.com/shareArticle?mini=true&url=' . $postUrl . '&title=' . $postTitle;
82
- }elseif($provider == 'google'){
83
- $sharingUrl = 'https://plus.google.com/share?url=' . $postUrl;
84
- }elseif($provider == 'yahoo'){
85
- $sharingUrl = 'http://bookmarks.yahoo.com/toolbar/SaveBM/?u=' . $postUrl . '&t=' . $postTitle;
86
- }elseif($provider == 'reddit'){
87
- $sharingUrl = 'http://reddit.com/submit?url='.$postUrl.'&title=' . $postTitle;
88
- }elseif($provider == 'digg'){
89
- $sharingUrl = 'http://digg.com/submit?url='.$postUrl.'&title=' . $postTitle;
90
- }elseif($provider == 'delicious'){
91
- $sharingUrl = 'http://del.icio.us/post?url='.$postUrl.'&title=' . $postTitle;
92
- }elseif($provider == 'stumbleupon'){
93
- $sharingUrl = 'http://www.stumbleupon.com/submit?url='.$postUrl.'&title=' . $postTitle;
94
- }elseif($provider == 'float it'){
95
- $sharingUrl = 'http://www.designfloat.com/submit.php?url='.$postUrl.'&title=' . $postTitle;
96
- }elseif($provider == 'tumblr'){
97
- $sharingUrl = 'http://www.tumblr.com/share?v=3&u='.urlencode($postUrl).'&t=' . $postTitle . '&s=';
98
- }elseif($provider == 'vkontakte'){
99
- $sharingUrl = 'http://vkontakte.ru/share.php?&url='.urlencode($postUrl);
100
- }elseif($provider == 'xing'){
101
- $sharingUrl = 'https://www.xing-share.com/social_plugins/share?url='. urlencode($postUrl) .'&wtmc=XING&sc_p=xing-share';
102
- }elseif($provider == 'whatsapp'){
103
- $sharingUrl = 'whatsapp://send?text='. $postTitle . ' ' . urlencode($postUrl);
104
- }elseif($provider == 'yummly'){
105
- $sharingUrl = 'http://www.yummly.com/urb/verify?url=' . urlencode($postUrl) . '&title=' . $postTitle;
106
- }elseif($provider == 'buffer'){
107
- $sharingUrl = 'https://buffer.com/add?url=' . urlencode($postUrl) . '&title=' . $postTitle;
108
- }elseif($provider == 'pinterest'){
109
- $sharingUrl = "javascript:void((function(){var e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','//assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)})());";
110
- }
111
- $liItems .= '<i ' .$style. ' alt="'.($provider == 'google' ? 'Google Plus' : ucfirst($provider)).'" Title="'.($provider == 'google' ? 'Google Plus' : ucfirst($provider)).'" class="theChampSharing theChamp'. ucfirst( str_replace(' ', '', $provider) ) .'Background" ';
112
- if($provider == 'pinterest'){
113
- $liItems .= 'onclick="'.$sharingUrl.'"><ss style="display:block" class="theChampSharingSvg theChamp'. ucfirst($provider) .'Svg"></ss></i>';
114
- }elseif($provider == 'whatsapp'){
115
- $liItems .= '><a href="'.$sharingUrl.'"><ss style="display:block" class="theChampSharingSvg theChamp'. ucfirst($provider) .'Svg"></ss></a></i>';
116
- }else{
117
- $liItems .= 'onclick=\' theChampPopup("'.$sharingUrl.'")\'><ss style="'. $innerStyle .'" class="theChampSharingSvg theChamp'. ucfirst( str_replace(' ', '', $provider) ) .'Svg"></ss></i>';
118
- }
119
  }
120
- $liItems .= '</li>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  }
122
- if(isset($theChampSharingOptions[$sharingType . '_more'])){
123
- $liItems .= '<li class="' . ($liClass != '' ? $liClass : 'theChampMoreBackground') . '">';
124
- if($displayCount){
 
125
  $liItems .= $counterContainerInitHtml . '">&nbsp;' . $counterContainerEndHtml;
126
  }
127
- $liItems .= '<i ' .$style. ' title="More" alt="More" class="theChampSharing theChampMoreBackground" onclick="theChampMoreSharingPopup(this, \''.$postUrl.'\', \''.$postTitle.'\')" ><ss style="display:block" class="theChampSharingSvg theChampMoreSvg"></ss></i></li>';
128
  }
129
 
130
  $totalSharesHtml = '';
131
- if($totalShares){
132
  $totalSharesHtml = '<li class="' . $liClass . '">';
133
- if($displayCount){
134
  $totalSharesHtml .= $counterContainerInitHtml . '">&nbsp;' . $counterContainerEndHtml;
135
  }
136
- if($sharingType == 'horizontal'){
137
  $addStyle = ';margin-left:9px !important;';
138
- }else{
139
  $addStyle = ';margin-bottom:9px !important;';
140
  }
141
  $addStyle .= '"';
142
- $style = str_replace(';"', $addStyle, $style);
143
  $totalSharesHtml .= '<i ' . $style . ' title="Total Shares" alt="Total Shares" class="theChampSharing theChampTCBackground"></i></li>';
144
  }
145
 
146
- if($sharingType == 'vertical'){
147
  $html .= $totalSharesHtml . $liItems;
148
- }else{
149
  $html .= $liItems . $totalSharesHtml;
150
  }
151
 
@@ -214,36 +229,22 @@ function the_champ_prepare_counter_html($postUrl, $sharingType = 'horizontal', $
214
 
215
  function the_champ_generate_sharing_bitly_url($url, $postId = 0){
216
  global $theChampSharingOptions;
217
- $bitlyUrl = get_post_meta($postId, '_the_champ_ss_bitly_url', true);
218
- if($bitlyUrl){
219
- return $bitlyUrl;
220
- }else{
221
- //generate the URL
222
- $bitly = 'http://api.bit.ly/v3/shorten?format=txt&login='. $theChampSharingOptions['bitly_username'] .'&apiKey='. $theChampSharingOptions['bitly_key'] .'&longUrl='.urlencode($url);
223
- $response = wp_remote_get( $bitly, array( 'timeout' => 15 ) );
224
- if( ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 200 === $response['response']['code'] ){
225
- $shortUrl = trim(wp_remote_retrieve_body( $response ));
226
- update_post_meta($postId, '_the_champ_ss_bitly_url', $shortUrl);
227
- return $shortUrl;
228
- }
229
  }
230
  return false;
231
  }
232
 
233
  function the_champ_generate_counter_bitly_url($url, $postId = 0){
234
  global $theChampCounterOptions;
235
- $bitlyUrl = get_post_meta($postId, '_the_champ_ss_bitly_url', true);
236
- if($bitlyUrl){
237
- return $bitlyUrl;
238
- }else{
239
- //generate the URL
240
- $bitly = 'http://api.bit.ly/v3/shorten?format=txt&login='. $theChampCounterOptions['bitly_username'] .'&apiKey='. $theChampCounterOptions['bitly_key'] .'&longUrl='.urlencode($url);
241
- $response = wp_remote_get( $bitly, array( 'timeout' => 15 ) );
242
- if( ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 200 === $response['response']['code'] ){
243
- $shortUrl = trim(wp_remote_retrieve_body( $response ));
244
- update_post_meta($postId, '_the_champ_ss_bitly_url', $shortUrl);
245
- return $shortUrl;
246
- }
247
  }
248
  return false;
249
  }
@@ -637,12 +638,26 @@ function the_champ_sharing_count(){
637
  the_champ_ajax_response(array('status' => 0, 'message' => __('Invalid request')));
638
  }
639
  global $theChampSharingOptions;
640
- $horizontalSharingNetworks = isset($theChampSharingOptions['providers']) ? $theChampSharingOptions['providers'] : array();
641
- $verticalSharingNetworks = isset($theChampSharingOptions['vertical_providers']) ? $theChampSharingOptions['vertical_providers'] : array();
642
  $sharingNetworks = array_unique(array_merge($horizontalSharingNetworks, $verticalSharingNetworks));
643
  if(count($sharingNetworks) == 0){
644
  the_champ_ajax_response(array('status' => 0, 'message' => __('Providers not selected')));
645
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
646
  $responseData = array();
647
  foreach($targetUrls as $targetUrl){
648
  foreach($sharingNetworks as $provider){
@@ -651,8 +666,8 @@ function the_champ_sharing_count(){
651
  $url = 'http://api.facebook.com/restserver.php?method=links.getStats&urls=' . $targetUrl . '&format=json&callback=';
652
  break;
653
  case 'twitter':
654
- $url = 'http://urls.api.twitter.com/1/urls/count.json?url=' . $targetUrl;
655
- break;
656
  case 'linkedin':
657
  $url = 'http://www.linkedin.com/countserv/count/share?url='. $targetUrl .'&format=json';
658
  break;
@@ -671,7 +686,7 @@ function the_champ_sharing_count(){
671
  case 'stumbleupon':
672
  $url = 'http://www.stumbleupon.com/services/1.01/badge.getinfo?url='. $targetUrl;
673
  break;
674
- case 'google':
675
  $url = 'http://share.yandex.ru/gpp.xml?url='. $targetUrl;
676
  break;
677
  case 'vkontakte':
@@ -699,12 +714,12 @@ function the_champ_sharing_count(){
699
  }
700
  break;
701
  case 'twitter':
702
- if(!empty($body -> count)){
703
- $responseData[$targetUrl]['twitter'] = $body -> count;
704
- }else{
705
- $responseData[$targetUrl]['twitter'] = 0;
706
- }
707
- break;
708
  case 'linkedin':
709
  if(!empty($body -> count)){
710
  $responseData[$targetUrl]['linkedin'] = $body -> count;
@@ -749,11 +764,11 @@ function the_champ_sharing_count(){
749
  $responseData[$targetUrl]['stumbleupon'] = 0;
750
  }
751
  break;
752
- case 'google':
753
  if(!empty($body)){
754
- $responseData[$targetUrl]['google'] = $body;
755
  }else{
756
- $responseData[$targetUrl]['google'] = 0;
757
  }
758
  break;
759
  case 'vkontakte':
4
  * File contains the functions necessary for Social Sharing functionality
5
  */
6
 
7
+ function the_champ_prepare_sharing_html( $postUrl, $sharingType = 'horizontal', $displayCount, $totalShares ) {
8
+
9
+ global $post, $theChampSharingOptions;
10
+
11
+ if ( $sharingType == 'vertical' && ( is_front_page() || is_home() ) ) {
12
+ $postTitle = wp_title( '', false );
13
+ if ( $postTitle == '' ) {
14
+ $postTitle = get_bloginfo( 'name' ) . " - " . get_bloginfo( 'description' );
 
15
  }
16
+ } else {
17
  $postTitle = $post->post_title;
18
  }
19
+ $postTitle = html_entity_decode( $postTitle, ENT_QUOTES, 'UTF-8' );
20
+ $postTitle = urlencode( $postTitle );
21
+ $postTitle = str_replace( '#', '%23', $postTitle );
22
+ $postTitle = esc_html( $postTitle );
23
+
24
+ $output = apply_filters( 'the_champ_sharing_interface_filter', '', $postUrl, $sharingType, $theChampSharingOptions, $post, $displayCount, $totalShares );
25
+ if ( $output != '' ) {
 
 
 
 
 
 
 
 
 
 
 
 
26
  return $output;
27
  }
28
  $html = '';
29
  $sharingMeta = '';
30
+ if (! is_front_page() || ( is_front_page() && 'page' == get_option( 'show_on_front' ) ) ) {
31
+ $sharingMeta = get_post_meta( $post->ID, '_the_champ_meta', true );
32
  }
33
+
34
+ if ( isset( $theChampSharingOptions[$sharingType.'_re_providers'] ) ) {
35
+
36
+ $sharingNetworks = fetch_sharing_networks();
37
+
38
+ $html = '<ul ' . ( $sharingType == 'horizontal' && $theChampSharingOptions['hor_sharing_alignment'] == "center" ? "style='list-style: none;position: relative;left: 50%;'" : "" ) .' class="the_champ_sharing_ul">';
39
+ $style = 'style="width:' . ( $theChampSharingOptions[$sharingType . '_sharing_shape'] != 'rectangle' ? $theChampSharingOptions[$sharingType . '_sharing_size'] : $theChampSharingOptions[$sharingType . '_sharing_width'] ) . 'px;height:' . ( $theChampSharingOptions[$sharingType . '_sharing_shape'] != 'rectangle' ? $theChampSharingOptions[$sharingType . '_sharing_size'] : $theChampSharingOptions[$sharingType . '_sharing_height'] ) . 'px;';
40
+ $counterContainerInitHtml = '<ss class="the_champ_square_count';
41
+ $counterContainerEndHtml = '</ss>';
42
  $innerStyle = 'display:block;';
43
  $liClass = 'theChampSharingRound';
44
+ if ( $theChampSharingOptions[$sharingType . '_sharing_shape'] == 'round' ) {
45
  $style .= 'border-radius:999px;';
46
  $innerStyle .= 'border-radius:999px;';
47
+ } elseif ( $theChampSharingOptions[$sharingType . '_border_radius'] != '' ) {
48
+ $style .= 'border-radius:' . $theChampSharingOptions[$sharingType . '_border_radius'] . 'px;';
49
  }
50
+ if ( $sharingType == 'vertical' && $theChampSharingOptions[$sharingType . '_sharing_shape'] == 'square' ) {
51
  $style .= 'margin:0;';
 
 
52
  $liClass = '';
53
  }
54
  $style .= '"';
55
  $liItems = '';
56
+ $language = $theChampSharingOptions['language'] != '' ? $theChampSharingOptions['language'] : '';
57
+ $likeButtonCountContainer = '';
58
+ if ( $displayCount ) {
59
+ $likeButtonCountContainer = $counterContainerInitHtml . '">&nbsp;' . $counterContainerEndHtml;
60
+ }
61
+
62
+ $counterPlaceholder = '';
63
+ $counterPlaceholderValue = '';
64
+
65
+ if ( $displayCount ) {
66
+ if ( ! isset( $theChampSharingOptions[$sharingType . '_counter_position'] ) ) {
67
+ $counterPosition = $sharingType == 'horizontal' ? 'top' : 'inner_top';
68
+ } else {
69
+ $counterPosition = $theChampSharingOptions[$sharingType . '_counter_position'];
70
  }
71
+ switch ( $counterPosition ) {
72
+ case 'left':
73
+ case 'top':
74
+ $counterPlaceholder = '><i';
75
+ break;
76
+ case 'right':
77
+ case 'bottom':
78
+ $counterPlaceholder = 'i><';
79
+ break;
80
+ case 'inner_left':
81
+ case 'inner_top':
82
+ $counterPlaceholder = '><ss';
83
+ break;
84
+ case 'inner_right':
85
+ case 'inner_bottom':
86
+ $counterPlaceholder = 'ss><';
87
+ break;
88
+ default:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  }
90
+ $counterPlaceholderValue = str_replace( '>', '>' . $counterContainerInitHtml . ' the_champ_%network%_count">&nbsp;' . $counterContainerEndHtml, $counterPlaceholder );
91
+ }
92
+
93
+ $twitterUsername = $theChampSharingOptions['twitter_username'] != '' ? $theChampSharingOptions['twitter_username'] : '';
94
+
95
+ foreach ( $theChampSharingOptions[$sharingType.'_re_providers'] as $provider ) {
96
+ $liItems .= str_replace(
97
+ array(
98
+ '%padding%',
99
+ '%network%',
100
+ '%ucfirst_network%',
101
+ '%like_count_container%',
102
+ '%post_url%',
103
+ '%post_title%',
104
+ '%decoded_post_title%',
105
+ '%twitter_username%',
106
+ '%via_twitter_username%',
107
+ '%language%',
108
+ '%buffer_username%',
109
+ '%style%',
110
+ '%inner_style%',
111
+ '%li_class%',
112
+ $counterPlaceholder,
113
+ '%title%'
114
+ ),
115
+ array(
116
+ ( $theChampSharingOptions[$sharingType . '_sharing_shape'] == 'rectangle' ? $theChampSharingOptions[$sharingType . '_sharing_height'] : $theChampSharingOptions[$sharingType . '_sharing_size'] ) * 21/100,
117
+ $provider,
118
+ ucfirst( str_replace( array( ' ', '_', '.' ), '', $provider ) ),
119
+ $likeButtonCountContainer,
120
+ $postUrl,
121
+ $postTitle,
122
+ urldecode( $postTitle ),
123
+ $twitterUsername,
124
+ $twitterUsername ? 'via=' . $twitterUsername . '&' : '',
125
+ $language,
126
+ $theChampSharingOptions['buffer_username'] != '' ? $theChampSharingOptions['buffer_username'] : '',
127
+ $style,
128
+ $innerStyle,
129
+ $liClass,
130
+ str_replace( '%network%', $provider, isset( $sharingMeta[$provider . '_' . $sharingType . '_count'] ) && $sharingMeta[$provider . '_' . $sharingType . '_count'] != '' ? str_replace( '>&nbsp;', ' ss_st_count="' . $sharingMeta[$provider . '_' . $sharingType . '_count'] . '">&nbsp;', $counterPlaceholderValue ) : $counterPlaceholderValue ),
131
+ ucfirst( str_replace( '_', ' ', $provider ) )
132
+ ),
133
+ $sharingNetworks[$provider]
134
+ );
135
  }
136
+
137
+ if ( isset( $theChampSharingOptions[$sharingType . '_more'] ) ) {
138
+ $liItems .= '<li class="' . ( $liClass != '' ? $liClass : '' ) . '">';
139
+ if ( $displayCount) {
140
  $liItems .= $counterContainerInitHtml . '">&nbsp;' . $counterContainerEndHtml;
141
  }
142
+ $liItems .= '<i ' . $style . ' title="More" alt="More" class="theChampSharing theChampMoreBackground" onclick="theChampMoreSharingPopup(this, \'' . $postUrl . '\', \''.$postTitle.'\' )" ><ss style="display:block" class="theChampSharingSvg theChampMoreSvg"></ss></i></li>';
143
  }
144
 
145
  $totalSharesHtml = '';
146
+ if ( $totalShares ) {
147
  $totalSharesHtml = '<li class="' . $liClass . '">';
148
+ if ( $displayCount) {
149
  $totalSharesHtml .= $counterContainerInitHtml . '">&nbsp;' . $counterContainerEndHtml;
150
  }
151
+ if ( $sharingType == 'horizontal' ) {
152
  $addStyle = ';margin-left:9px !important;';
153
+ } else {
154
  $addStyle = ';margin-bottom:9px !important;';
155
  }
156
  $addStyle .= '"';
157
+ $style = str_replace( ';"', $addStyle, $style );
158
  $totalSharesHtml .= '<i ' . $style . ' title="Total Shares" alt="Total Shares" class="theChampSharing theChampTCBackground"></i></li>';
159
  }
160
 
161
+ if ( $sharingType == 'vertical' ) {
162
  $html .= $totalSharesHtml . $liItems;
163
+ } else {
164
  $html .= $liItems . $totalSharesHtml;
165
  }
166
 
229
 
230
  function the_champ_generate_sharing_bitly_url($url, $postId = 0){
231
  global $theChampSharingOptions;
232
+ //generate the URL
233
+ $bitly = 'http://api.bit.ly/v3/shorten?format=txt&login='. $theChampSharingOptions['bitly_username'] .'&apiKey='. $theChampSharingOptions['bitly_key'] .'&longUrl='.urlencode($url);
234
+ $response = wp_remote_get( $bitly, array( 'timeout' => 15 ) );
235
+ if( ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 200 === $response['response']['code'] ){
236
+ return trim(wp_remote_retrieve_body( $response ));
 
 
 
 
 
 
 
237
  }
238
  return false;
239
  }
240
 
241
  function the_champ_generate_counter_bitly_url($url, $postId = 0){
242
  global $theChampCounterOptions;
243
+ //generate the URL
244
+ $bitly = 'http://api.bit.ly/v3/shorten?format=txt&login='. $theChampCounterOptions['bitly_username'] .'&apiKey='. $theChampCounterOptions['bitly_key'] .'&longUrl='.urlencode($url);
245
+ $response = wp_remote_get( $bitly, array( 'timeout' => 15 ) );
246
+ if( ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 200 === $response['response']['code'] ){
247
+ return trim(wp_remote_retrieve_body( $response ));
 
 
 
 
 
 
 
248
  }
249
  return false;
250
  }
638
  the_champ_ajax_response(array('status' => 0, 'message' => __('Invalid request')));
639
  }
640
  global $theChampSharingOptions;
641
+ $horizontalSharingNetworks = isset($theChampSharingOptions['horizontal_re_providers']) ? $theChampSharingOptions['horizontal_re_providers'] : array();
642
+ $verticalSharingNetworks = isset($theChampSharingOptions['vertical_re_providers']) ? $theChampSharingOptions['vertical_re_providers'] : array();
643
  $sharingNetworks = array_unique(array_merge($horizontalSharingNetworks, $verticalSharingNetworks));
644
  if(count($sharingNetworks) == 0){
645
  the_champ_ajax_response(array('status' => 0, 'message' => __('Providers not selected')));
646
  }
647
+
648
+ $tweetCountService = 'newsharecounts';
649
+ if ( isset( $theChampSharingOptions['tweet_count_service'] ) ) {
650
+ $tweetCountService = $theChampSharingOptions['tweet_count_service'];
651
+ } elseif ( isset( $this->options['vertical_tweet_count_service'] ) ) {
652
+ $tweetCountService = $theChampSharingOptions['vertical_tweet_count_service'];
653
+ }
654
+
655
+ if ( $tweetCountService == 'opensharecount' ) {
656
+ $twitterCountApi = 'http://opensharecount.com/count.json?url=';
657
+ } elseif ( $tweetCountService == 'newsharecounts' ) {
658
+ $twitterCountApi = 'http://public.newsharecounts.com/count.json?url=';
659
+ }
660
+
661
  $responseData = array();
662
  foreach($targetUrls as $targetUrl){
663
  foreach($sharingNetworks as $provider){
666
  $url = 'http://api.facebook.com/restserver.php?method=links.getStats&urls=' . $targetUrl . '&format=json&callback=';
667
  break;
668
  case 'twitter':
669
+ $url = $twitterCountApi . $targetUrl;
670
+ break;
671
  case 'linkedin':
672
  $url = 'http://www.linkedin.com/countserv/count/share?url='. $targetUrl .'&format=json';
673
  break;
686
  case 'stumbleupon':
687
  $url = 'http://www.stumbleupon.com/services/1.01/badge.getinfo?url='. $targetUrl;
688
  break;
689
+ case 'google_plus':
690
  $url = 'http://share.yandex.ru/gpp.xml?url='. $targetUrl;
691
  break;
692
  case 'vkontakte':
714
  }
715
  break;
716
  case 'twitter':
717
+ if ( ! empty( $body -> count ) ) {
718
+ $responseData[$targetUrl]['twitter'] = $body -> count;
719
+ } else {
720
+ $responseData[$targetUrl]['twitter'] = 0;
721
+ }
722
+ break;
723
  case 'linkedin':
724
  if(!empty($body -> count)){
725
  $responseData[$targetUrl]['linkedin'] = $body -> count;
764
  $responseData[$targetUrl]['stumbleupon'] = 0;
765
  }
766
  break;
767
+ case 'google_plus':
768
  if(!empty($body)){
769
+ $responseData[$targetUrl]['google_plus'] = $body;
770
  }else{
771
+ $responseData[$targetUrl]['google_plus'] = 0;
772
  }
773
  break;
774
  case 'vkontakte':
inc/social_sharing_networks.php ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') or die("Cheating........Uh!!");
3
+
4
+ function fetch_sharing_networks(){
5
+ $sharingNetworks = array(
6
+ 'facebook_like' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<div class="fb-like" data-href="%post_url%" data-layout="button_count" data-action="like" data-show-faces="false" data-share="false"></div></li>',
7
+ 'facebook_recommend' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<div class="fb-like" data-href="%post_url%" data-layout="button_count" data-action="recommend" data-show-faces="false" data-share="false"></div></li>',
8
+ 'twitter_tweet' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%" heateor-ss-data-href="%post_url%">%like_count_container%<a href="https://twitter.com/share" class="twitter-share-button" data-url="%post_url%" data-counturl="%post_url%" data-text="%decoded_post_title%" data-via="%twitter_username%" data-lang="%language%" >Tweet</a><script>!function(d,s,id) {var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?"http":"https";if (!d.getElementById(id)) {js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document, "script", "twitter-wjs");</script></li>',
9
+ 'google_plusone' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<script type="text/javascript" src="https://apis.google.com/js/platform.js">{lang: "%language%"}</script><div class="g-plusone" data-size="medium" data-href="%post_url%" data-callback="heateorSsmiGpCallback"></div></li>',
10
+ 'google_plus_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<script type="text/javascript" src="https://apis.google.com/js/platform.js">{lang: "%language%"}</script><div class="g-plus" data-action="share" data-annotation="bubble" data-href="%post_url%"></div></li>',
11
+ 'linkedin_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<script src="//platform.linkedin.com/in.js" type="text/javascript">lang: %language%</script><script type="IN/Share" data-url="%post_url%" data-counter="right"></script></li>',
12
+ 'pinterest_pin' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<a style="text-decoration:none" data-pin-lang="%language%" href="//www.pinterest.com/pin/create/button/?url=%post_url%" data-pin-do="buttonPin" data-pin-config="beside"><img src="//assets.pinterest.com/images/pidgets/pinit_fg_en_rect_gray_20.png" /></a><script type="text/javascript" async src="//assets.pinterest.com/js/pinit.js"></script></li>',
13
+ 'buffer_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<a href="http://bufferapp.com/add" class="buffer-add-button" data-text="%post_title%" data-url="%post_url%" data-count="horizontal" data-via="%buffer_username%" ></a><script type="text/javascript" src="https://d389zggrogs7qo.cloudfront.net/js/button.js"></script></li>',
14
+ 'xing_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_xing">%like_count_container%<div data-type="XING/Share" data-counter="right" data-url="%post_url%" data-lang="%language%"></div><script>(function (d, s) {var x = d.createElement(s), s = d.getElementsByTagName(s)[0]; x.src = "https://www.xing-share.com/js/external/share.js"; s.parentNode.insertBefore(x, s); })(document, "script");</script></li>',
15
+ 'yummly_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_yummly">%like_count_container%<a href="//yummly.com" class="YUMMLY-YUM-BUTTON">Yum</a><script src="https://www.yummly.com/js/widget.js?general"></script></li>',
16
+ 'reddit_badge' => '<li style="padding:%padding%px 0 !important" class="the_champ_reddit">%like_count_container%<script type="text/javascript" src="http://www.reddit.com/static/button/button1.js"></script></li>',
17
+ 'stumbleupon_badge' => '<li style="padding:%padding%px 0 !important" class="the_champ_stumbleupon">%like_count_container%<su:badge layout="1" location="%post_url%"></su:badge><script type="text/javascript">(function() {var li = document.createElement(\'script\' ); li.type = \'text/javascript\'; li.async = true;li.src = (\'https:\' == document.location.protocol ? \'https:\' : \'http:\' ) + \'//platform.stumbleupon.com/1/widgets.js\';var s = document.getElementsByTagName(\'script\' )[0]; s.parentNode.insertBefore(li, s);})();</script></li>',
18
+ 'facebook' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://www.facebook.com/sharer/sharer.php?u=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
19
+ 'twitter' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://twitter.com/intent/tweet?%via_twitter_username%text=%post_title%&url=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
20
+ 'linkedin' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.linkedin.com/shareArticle?mini=true&url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
21
+ 'google_plus' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://plus.google.com/share?url=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
22
+ 'print' => '<li class="%li_class%"><i %style% alt="Print" Title="Print" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'window.print()\'><ss style="display:block" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
23
+ 'email' => '<li class="%li_class%"><i %style% alt="Email" Title="Email" class="theChampSharing theChamp%ucfirst_network%Background" onclick="window.location.href = \'mailto:?subject=\' + decodeURIComponent(\'%post_title%\' ) + \'&body=\' + decodeURIComponent(\'%post_url%\' )"><ss style="display:block" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
24
+ 'yahoo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://bookmarks.yahoo.com/toolbar/SaveBM/?u=%post_url%&t=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
25
+ 'reddit' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://reddit.com/submit?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
26
+ 'digg' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://digg.com/submit?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
27
+ 'delicious' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://del.icio.us/post?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
28
+ 'stumbleupon' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.stumbleupon.com/submit?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
29
+ 'float_it' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.designfloat.com/submit.php?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
30
+ 'tumblr' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.tumblr.com/share?v=3&u=%post_url%&t=%post_title%&s=")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
31
+ 'vkontakte' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://vkontakte.ru/share.php?&url=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
32
+ 'pinterest' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick="javascript:void((function() {var e=document.createElement(\'script\' );e.setAttribute(\'type\',\'text/javascript\' );e.setAttribute(\'charset\',\'UTF-8\' );e.setAttribute(\'src\',\'//assets.pinterest.com/js/pinmarklet.js?r=\'+Math.random()*99999999);document.body.appendChild(e)})());"><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
33
+ 'xing' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://www.xing-share.com/social_plugins/share?url=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
34
+ 'whatsapp' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background"><a href="whatsapp://send?text=%post_title% %post_url%"><ss style="display:block" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></a></i></li>',
35
+ 'yummly' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.yummly.com/urb/verify?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
36
+ 'buffer' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://buffer.com/add?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
37
+ 'AIM' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://lifestream.aol.com/?url=%%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
38
+ 'Amazon_Wish_List' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.amazon.com/wishlist/add?u=%post_url%&t=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
39
+ 'AOL_Mail' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://webmail.aol.com/25045/aol/en-us/Mail/compose-message.aspx?subject=%post_title%&body=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
40
+ 'App.net' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://account.app.net/login/")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
41
+ 'Baidu' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://cang.baidu.com/do/add?it=%post_title%&iu=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
42
+ 'Balatarin' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://www.balatarin.com/login")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
43
+ 'BibSonomy' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.bibsonomy.org/login")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
44
+ 'Bitty_Browser' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.bitty.com/manual/?contenttype=&contentvalue=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
45
+ 'Blinklist' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://blinklist.com/blink?t=%post_title%&d=&u=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
46
+ 'Blogger_Post' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://www.blogger.com/blog_this.pyra?t&u=%post_url%&l&n=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
47
+ 'BlogMarks' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://blogmarks.net/my/new.php?mini=1&simple=1&title=%post_title%&url=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
48
+ 'Bookmarks.fr' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.bookmarks.fr/Connexion/?action=add&address=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
49
+ 'Box.net' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://www.box.com/api/1.0/import?url=%post_url%&name=%post_title%&description=&import_as=link")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
50
+ 'BuddyMarks' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://buddymarks.com/login.php?bookmark_title=%post_title%&bookmark_url=%post_url%&bookmark_desc=&bookmark_tags=")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
51
+ 'Care2_News' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.care2.com/passport/login.html?promoID=10&pg=http://www.care2.com/news/compose?sharehint=news&share[share_type]news&bookmarklet=Y&share[title]=%post_title%&share[link_url]=%post_url%&share[content]=")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
52
+ 'CiteULike' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.citeulike.org/posturl?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
53
+ 'Diary.Ru' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.diary.ru/?newpost&title=%post_title%&text=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
54
+ 'diHITT' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.dihitt.com/submit?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
55
+ 'Diigo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.diigo.com/post?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
56
+ 'DZone' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.dzone.com/links/add.html?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
57
+ 'Evernote' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://www.evernote.com/clip.action?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
58
+ 'Fark' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://www.fark.com/submit?new_url=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
59
+ 'Flipboard' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://share.flipboard.com/flipit/load?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
60
+ 'Folkd' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.folkd.com/page/social-bookmarking.html?addurl=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
61
+ 'Google_Bookmarks' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://www.google.com/bookmarks/mark?op=edit&bkmk=%post_url%&title=%post_title%&annotation=")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
62
+ 'Google_Gmail' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://mail.google.com/mail/?ui=2&view=cm&fs=1&tf=1&su=%post_title%&body=Link:%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
63
+ 'Hacker_News' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://news.ycombinator.com/submitlink?u=%post_url%&t=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
64
+ 'Hatena' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://b.hatena.ne.jp/bookmarklet?url=%post_url%&btitle=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
65
+ 'Instapaper' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.instapaper.com/edit?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
66
+ 'Jamespot' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//my.jamespot.com/")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
67
+ 'Kakao' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://story.kakao.com/share?url=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
68
+ 'Kindle_It' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//fivefilters.org/kindle-it/send.php?url=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
69
+ 'Known' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://withknown.com/share/?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
70
+ 'Line' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background"><a href="line://msg/text/%post_title%! %post_url%"><ss style="display:block" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></a></i></li>',
71
+ 'LiveJournal' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.livejournal.com/update.bml?subject=%post_title%&event=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
72
+ 'Mail.Ru' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://connect.mail.ru/share?share_url=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
73
+ 'Mendeley' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://www.mendeley.com/sign-in/")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
74
+ 'Meneame' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://www.meneame.net/submit.php?url=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
75
+ 'Mixi' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://mixi.jp/share.pl?mode=login&u=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
76
+ 'MySpace' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://myspace.com/")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
77
+ 'Netlog' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.netlog.com/go/manage/links/view=save&origin=external&url=%post_url%&title=%post_title%&description=")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
78
+ 'Netvouz' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.netvouz.com/action/submitBookmark?url=%post_url%&title=%post_title%&popup=no&description=")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
79
+ 'NewsVine' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.newsvine.com/_tools/seed?popoff=0&u=%post_url%&h=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
80
+ 'NUjij' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.nujij.nl/nieuw-bericht.2051051.lynkx?title=%post_title%&url=%post_url%&bericht=&topic=")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
81
+ 'Odnoklassniki' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://connect.ok.ru/dk?cmd=WidgetSharePreview&st.cmd=WidgetSharePreview&st.shareUrl=%post_url%&st.client_id=-1")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
82
+ 'Oknotizie' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//oknotizie.virgilio.it/post?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
83
+ 'Outlook.com' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://mail.live.com/default.aspx?rru=compose?subject=%post_title%&body=%post_url%&lc=1033&id=64855&mkt=en-us&cbcxt=mai")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
84
+ 'Pinboard' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://pinboard.in/popup_login/?url=%post_url%&title=%post_title%&later=&description=&next=same")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
85
+ 'Plurk' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//www.plurk.com/m?content=%post_url%&qualifier=shares")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
86
+ 'Pocket' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://readitlaterlist.com/save?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
87
+ 'PrintFriendly' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.printfriendly.com/print?url=%post_url%&partner=a2a")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
88
+ 'Protopage_Bookmarks' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.protopage.com/add-button-site?url=%post_url%&label=&type=page")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
89
+ 'Pusha' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//www.pusha.se/posta?url=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
90
+ 'Qzone' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
91
+ 'Rediff MyPage' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//share.rediff.com/bookmark/addbookmark?bookmarkurl=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
92
+ 'Renren' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//www.connect.renren.com/share/sharer?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
93
+ 'Segnalo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://segnalo.virgilio.it/post.html.php?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
94
+ 'Sina Weibo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//service.weibo.com/share/share.php?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
95
+ 'SiteJot' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.sitejot.com/loginform.php?iSiteAdd=&iSiteDes=")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
96
+ 'Slashdot' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//slashdot.org/submission?url=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
97
+ 'Stumpedia' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//www.stumpedia.com/submit?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
98
+ 'Svejo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://svejo.net/story/submit_by_url?url=%post_url%&title=%post_title%&summary=")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
99
+ 'Symbaloo_Feeds' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//www.symbaloo.com/")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
100
+ 'Tuenti' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://www.tuenti.com/share?p=b5dd6602&url=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
101
+ 'Twiddla' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//www.twiddla.com/New.aspx?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
102
+ 'TypePad_Post' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("https://www.typepad.com/services/quickpost/post?v=2&qp_show=ac&qp_title=%post_title%&qp_href=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
103
+ 'Viadeo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//www.viadeo.com/shareit/share/?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
104
+ 'Wanelo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//wanelo.com/p/post?bookmarklet=&images%5B%5D=&url=%post_url%&title=%post_title%&price=&shop=")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
105
+ 'Webnews' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//www.webnews.de/login")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
106
+ 'WordPress' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//www.addtoany.com/ext/wordpress/press_this?linkurl=%post_url%&linkname=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
107
+ 'Wykop' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//www.wykop.pl/dodaj?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
108
+ 'Yahoo_Mail' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//compose.mail.yahoo.com/?Subject=%post_title%&body=Link:%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
109
+ 'Yahoo_Messenger' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("ymsgr:sendim?m=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
110
+ 'Yoolink' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//yoolink.to/addorshare?url_value=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
111
+ 'YouMob' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("//youmob.com/startmob.aspx?cookietest=true&mob=%post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>'
112
+ );
113
+ return $sharingNetworks;
114
+ }
inc/widget.php CHANGED
@@ -5,7 +5,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
5
  */
6
  class TheChampLoginWidget extends WP_Widget {
7
  /** constructor */
8
- function TheChampLoginWidget() {
9
  parent::__construct(
10
  'TheChampLogin', //unique id
11
  __('Super Socializer - Login'), //title displayed at admin panel
@@ -15,7 +15,7 @@ class TheChampLoginWidget extends WP_Widget {
15
  }
16
 
17
  /** This is rendered widget content */
18
- function widget( $args, $instance ) {
19
  // if social login is disabled, return
20
  if(!the_champ_social_login_enabled()){
21
  return;
@@ -54,7 +54,7 @@ class TheChampLoginWidget extends WP_Widget {
54
  }
55
 
56
  /** Everything which should happen when user edit widget at admin panel */
57
- function update( $new_instance, $old_instance ) {
58
  $instance = $old_instance;
59
  $instance['title'] = strip_tags( $new_instance['title'] );
60
  $instance['before_widget_content'] = $new_instance['before_widget_content'];
@@ -65,7 +65,7 @@ class TheChampLoginWidget extends WP_Widget {
65
  }
66
 
67
  /** Widget options in admin panel */
68
- function form( $instance ) {
69
  /* Set up default widget settings. */
70
  $defaults = array( 'title' => 'Login with your Social Account', 'before_widget_content' => '', 'after_widget_content' => '' );
71
 
@@ -96,7 +96,7 @@ add_action( 'widgets_init', create_function( '', 'return register_widget( "TheCh
96
  */
97
  class TheChampSharingWidget extends WP_Widget {
98
  /** constructor */
99
- function TheChampSharingWidget() {
100
  parent::__construct(
101
  'TheChampHorizontalSharing', //unique id
102
  'Super Socializer - Sharing (Horizontal Widget)', //title displayed at admin panel
@@ -107,7 +107,7 @@ class TheChampSharingWidget extends WP_Widget {
107
  }
108
 
109
  /** This is rendered widget content */
110
- function widget( $args, $instance ) {
111
  // return if sharing is disabled
112
  if(!the_champ_social_sharing_enabled() || !the_champ_horizontal_sharing_enabled()){
113
  return;
@@ -180,7 +180,7 @@ class TheChampSharingWidget extends WP_Widget {
180
  }
181
 
182
  /** Everything which should happen when user edit widget at admin panel */
183
- function update( $new_instance, $old_instance ) {
184
  $instance = $old_instance;
185
  $instance['title'] = strip_tags( $new_instance['title'] );
186
  $instance['show_counts'] = $new_instance['show_counts'];
@@ -195,7 +195,7 @@ class TheChampSharingWidget extends WP_Widget {
195
  }
196
 
197
  /** Widget edit form at admin panel */
198
- function form( $instance ) {
199
  /* Set up default widget settings. */
200
  $defaults = array( 'title' => 'Share the joy', 'show_counts' => 0, 'total_shares' => 0, 'target_url' => 'default', 'target_url_custom' => '', 'before_widget_content' => '', 'after_widget_content' => '' );
201
 
@@ -247,7 +247,7 @@ add_action( 'widgets_init', create_function( '', 'return register_widget( "TheCh
247
  */
248
  class TheChampVerticalSharingWidget extends WP_Widget {
249
  /** constructor */
250
- function TheChampVerticalSharingWidget() {
251
  parent::__construct(
252
  'TheChampVerticalSharing', //unique id
253
  'Super Socializer - Sharing (Vertical Floating Widget)', //title displayed at admin panel
@@ -258,7 +258,7 @@ class TheChampVerticalSharingWidget extends WP_Widget {
258
  }
259
 
260
  /** This is rendered widget content */
261
- function widget( $args, $instance ) {
262
  // return if sharing is disabled
263
  if(!the_champ_social_sharing_enabled() || !the_champ_vertical_sharing_enabled()){
264
  return;
@@ -320,7 +320,7 @@ class TheChampVerticalSharingWidget extends WP_Widget {
320
  }
321
 
322
  /** Everything which should happen when user edit widget at admin panel */
323
- function update( $new_instance, $old_instance ) {
324
  $instance = $old_instance;
325
  $instance['target_url'] = $new_instance['target_url'];
326
  $instance['show_counts'] = $new_instance['show_counts'];
@@ -337,7 +337,7 @@ class TheChampVerticalSharingWidget extends WP_Widget {
337
  }
338
 
339
  /** Widget edit form at admin panel */
340
- function form( $instance ) {
341
  /* Set up default widget settings. */
342
  $defaults = array('alignment' => 'left', 'show_counts' => 0, 'total_shares' => 0, 'left_offset' => '40', 'right_offset' => '0', 'target_url' => 'default', 'target_url_custom' => '', 'top_offset' => '100', 'vertical_bg' => '');
343
 
@@ -411,7 +411,7 @@ add_action( 'widgets_init', create_function( '', 'return register_widget( "TheCh
411
  */
412
  class TheChampCounterWidget extends WP_Widget {
413
  /** constructor */
414
- function TheChampCounterWidget() {
415
  parent::__construct(
416
  'TheChampHorizontalCounter', //unique id
417
  'Super Socializer - Like Buttons (Horizontal Widget)', //title displayed at admin panel
@@ -423,7 +423,7 @@ class TheChampCounterWidget extends WP_Widget {
423
  }
424
 
425
  /** This is rendered widget content */
426
- function widget( $args, $instance ) {
427
  // return if sharing is disabled
428
  if(!the_champ_social_counter_enabled() || !the_champ_horizontal_counter_enabled()){
429
  return;
@@ -487,7 +487,7 @@ class TheChampCounterWidget extends WP_Widget {
487
  }
488
 
489
  /** Everything which should happen when user edit widget at admin panel */
490
- function update( $new_instance, $old_instance ) {
491
  $instance = $old_instance;
492
  $instance['title'] = strip_tags( $new_instance['title'] );
493
  $instance['target_url'] = strip_tags( $new_instance['target_url'] );
@@ -500,7 +500,7 @@ class TheChampCounterWidget extends WP_Widget {
500
  }
501
 
502
  /** Widget edit form at admin panel */
503
- function form( $instance ) {
504
  /* Set up default widget settings. */
505
  $defaults = array( 'title' => 'Share the joy', 'before_widget_content' => '', 'after_widget_content' => '', 'target_url_custom' => '', 'target_url' => 'default' );
506
 
@@ -548,7 +548,7 @@ add_action( 'widgets_init', create_function( '', 'return register_widget( "TheCh
548
  */
549
  class TheChampVerticalCounterWidget extends WP_Widget {
550
  /** constructor */
551
- function TheChampVerticalCounterWidget() {
552
  parent::__construct(
553
  'TheChampVerticalCounter', //unique id
554
  'Super Socializer - Like Buttons (Vertical Floating Widget)', //title displayed at admin panel
@@ -559,7 +559,7 @@ class TheChampVerticalCounterWidget extends WP_Widget {
559
  }
560
 
561
  /** This is rendered widget content */
562
- function widget( $args, $instance ) {
563
  // return if counter is disabled
564
  if(!the_champ_social_counter_enabled() || !the_champ_vertical_counter_enabled()){
565
  return;
@@ -612,7 +612,7 @@ class TheChampVerticalCounterWidget extends WP_Widget {
612
  }
613
 
614
  /** Everything which should happen when user edit widget at admin panel */
615
- function update( $new_instance, $old_instance ) {
616
  $instance = $old_instance;
617
  $instance['target_url'] = strip_tags( $new_instance['target_url'] );
618
  $instance['target_url_custom'] = strip_tags( $new_instance['target_url_custom'] );
@@ -627,7 +627,7 @@ class TheChampVerticalCounterWidget extends WP_Widget {
627
  }
628
 
629
  /** Widget edit form at admin panel */
630
- function form( $instance ) {
631
  /* Set up default widget settings. */
632
  $defaults = array('alignment' => 'left', 'left_offset' => '40', 'right_offset' => '0', 'top_offset' => '100', 'vertical_bg' => '', 'target_url' => 'default', 'target_url_custom' => '');
633
 
5
  */
6
  class TheChampLoginWidget extends WP_Widget {
7
  /** constructor */
8
+ public function __construct() {
9
  parent::__construct(
10
  'TheChampLogin', //unique id
11
  __('Super Socializer - Login'), //title displayed at admin panel
15
  }
16
 
17
  /** This is rendered widget content */
18
+ public function widget( $args, $instance ) {
19
  // if social login is disabled, return
20
  if(!the_champ_social_login_enabled()){
21
  return;
54
  }
55
 
56
  /** Everything which should happen when user edit widget at admin panel */
57
+ public function update( $new_instance, $old_instance ) {
58
  $instance = $old_instance;
59
  $instance['title'] = strip_tags( $new_instance['title'] );
60
  $instance['before_widget_content'] = $new_instance['before_widget_content'];
65
  }
66
 
67
  /** Widget options in admin panel */
68
+ public function form( $instance ) {
69
  /* Set up default widget settings. */
70
  $defaults = array( 'title' => 'Login with your Social Account', 'before_widget_content' => '', 'after_widget_content' => '' );
71
 
96
  */
97
  class TheChampSharingWidget extends WP_Widget {
98
  /** constructor */
99
+ public function __construct() {
100
  parent::__construct(
101
  'TheChampHorizontalSharing', //unique id
102
  'Super Socializer - Sharing (Horizontal Widget)', //title displayed at admin panel
107
  }
108
 
109
  /** This is rendered widget content */
110
+ public function widget( $args, $instance ) {
111
  // return if sharing is disabled
112
  if(!the_champ_social_sharing_enabled() || !the_champ_horizontal_sharing_enabled()){
113
  return;
180
  }
181
 
182
  /** Everything which should happen when user edit widget at admin panel */
183
+ public function update( $new_instance, $old_instance ) {
184
  $instance = $old_instance;
185
  $instance['title'] = strip_tags( $new_instance['title'] );
186
  $instance['show_counts'] = $new_instance['show_counts'];
195
  }
196
 
197
  /** Widget edit form at admin panel */
198
+ public function form( $instance ) {
199
  /* Set up default widget settings. */
200
  $defaults = array( 'title' => 'Share the joy', 'show_counts' => 0, 'total_shares' => 0, 'target_url' => 'default', 'target_url_custom' => '', 'before_widget_content' => '', 'after_widget_content' => '' );
201
 
247
  */
248
  class TheChampVerticalSharingWidget extends WP_Widget {
249
  /** constructor */
250
+ public function __construct() {
251
  parent::__construct(
252
  'TheChampVerticalSharing', //unique id
253
  'Super Socializer - Sharing (Vertical Floating Widget)', //title displayed at admin panel
258
  }
259
 
260
  /** This is rendered widget content */
261
+ public function widget( $args, $instance ) {
262
  // return if sharing is disabled
263
  if(!the_champ_social_sharing_enabled() || !the_champ_vertical_sharing_enabled()){
264
  return;
320
  }
321
 
322
  /** Everything which should happen when user edit widget at admin panel */
323
+ public function update( $new_instance, $old_instance ) {
324
  $instance = $old_instance;
325
  $instance['target_url'] = $new_instance['target_url'];
326
  $instance['show_counts'] = $new_instance['show_counts'];
337
  }
338
 
339
  /** Widget edit form at admin panel */
340
+ public function form( $instance ) {
341
  /* Set up default widget settings. */
342
  $defaults = array('alignment' => 'left', 'show_counts' => 0, 'total_shares' => 0, 'left_offset' => '40', 'right_offset' => '0', 'target_url' => 'default', 'target_url_custom' => '', 'top_offset' => '100', 'vertical_bg' => '');
343
 
411
  */
412
  class TheChampCounterWidget extends WP_Widget {
413
  /** constructor */
414
+ public function __construct() {
415
  parent::__construct(
416
  'TheChampHorizontalCounter', //unique id
417
  'Super Socializer - Like Buttons (Horizontal Widget)', //title displayed at admin panel
423
  }
424
 
425
  /** This is rendered widget content */
426
+ public function widget( $args, $instance ) {
427
  // return if sharing is disabled
428
  if(!the_champ_social_counter_enabled() || !the_champ_horizontal_counter_enabled()){
429
  return;
487
  }
488
 
489
  /** Everything which should happen when user edit widget at admin panel */
490
+ public function update( $new_instance, $old_instance ) {
491
  $instance = $old_instance;
492
  $instance['title'] = strip_tags( $new_instance['title'] );
493
  $instance['target_url'] = strip_tags( $new_instance['target_url'] );
500
  }
501
 
502
  /** Widget edit form at admin panel */
503
+ public function form( $instance ) {
504
  /* Set up default widget settings. */
505
  $defaults = array( 'title' => 'Share the joy', 'before_widget_content' => '', 'after_widget_content' => '', 'target_url_custom' => '', 'target_url' => 'default' );
506
 
548
  */
549
  class TheChampVerticalCounterWidget extends WP_Widget {
550
  /** constructor */
551
+ public function __construct() {
552
  parent::__construct(
553
  'TheChampVerticalCounter', //unique id
554
  'Super Socializer - Like Buttons (Vertical Floating Widget)', //title displayed at admin panel
559
  }
560
 
561
  /** This is rendered widget content */
562
+ public function widget( $args, $instance ) {
563
  // return if counter is disabled
564
  if(!the_champ_social_counter_enabled() || !the_champ_vertical_counter_enabled()){
565
  return;
612
  }
613
 
614
  /** Everything which should happen when user edit widget at admin panel */
615
+ public function update( $new_instance, $old_instance ) {
616
  $instance = $old_instance;
617
  $instance['target_url'] = strip_tags( $new_instance['target_url'] );
618
  $instance['target_url_custom'] = strip_tags( $new_instance['target_url_custom'] );
627
  }
628
 
629
  /** Widget edit form at admin panel */
630
+ public function form( $instance ) {
631
  /* Set up default widget settings. */
632
  $defaults = array('alignment' => 'left', 'left_offset' => '40', 'right_offset' => '0', 'top_offset' => '100', 'vertical_bg' => '', 'target_url' => 'default', 'target_url_custom' => '');
633
 
js/admin/admin.js CHANGED
@@ -1 +1,39 @@
1
- function theChampEmailPopupOptions(e){jQuery(e).is(":checked")?jQuery("#the_champ_email_popup_options").css("display","block"):jQuery("#the_champ_email_popup_options").css("display","none")}function theChampCommentingOptions(e){jQuery(e).is(":checked")?jQuery("#the_champ_commenting_extra").css("display","none"):jQuery("#the_champ_commenting_extra").css("display","table-row-group")}jQuery(document).ready(function(){jQuery("#tabs").tabs(),jQuery("#the_champ_login_redirection_column").find("input[type=radio]").click(function(){jQuery(this).attr("id")&&"the_champ_login_redirection_custom"==jQuery(this).attr("id")?jQuery("#the_champ_login_redirection_url").css("display","block"):jQuery("#the_champ_login_redirection_url").css("display","none")}),jQuery("#the_champ_login_redirection_custom").is(":checked")?jQuery("#the_champ_login_redirection_url").css("display","block"):jQuery("#the_champ_login_redirection_url").css("display","none"),jQuery("#the_champ_register_redirection_column").find("input[type=radio]").click(function(){jQuery(this).attr("id")&&"the_champ_register_redirection_custom"==jQuery(this).attr("id")?jQuery("#the_champ_register_redirection_url").css("display","block"):jQuery("#the_champ_register_redirection_url").css("display","none")}),jQuery("#the_champ_register_redirection_custom").is(":checked")?jQuery("#the_champ_register_redirection_url").css("display","block"):jQuery("#the_champ_register_redirection_url").css("display","none"),jQuery(".the_champ_help_bubble").attr("title",theChampHelpBubbleTitle),jQuery(".the_champ_help_bubble").toggle(function(){jQuery("#"+jQuery(this).attr("id")+"_cont").show(),jQuery(this).attr("title",theChampHelpBubbleCollapseTitle)},function(){jQuery("#"+jQuery(this).attr("id")+"_cont").hide(),jQuery(this).attr("title",theChampHelpBubbleTitle)}),jQuery("#the_champ_fb_comment_switch_wp").keyup(function(){jQuery(this).prev("span").remove(),""==jQuery(this).val().trim()?jQuery(this).before('<span style="color:red">This cannot be blank</span>'):jQuery(this).val().trim()==jQuery("#the_champ_fb_comment_switch_fb").val().trim()&&jQuery(this).before('<span style="color:red">This cannot be same as text on "Switch to Facebook Commenting" button</span>')}),jQuery("#the_champ_fb_comment_switch_fb").keyup(function(){jQuery(this).prev("span").remove(),""==jQuery(this).val().trim()?jQuery(this).before('<span style="color:red">This cannot be blank</span>'):jQuery(this).val().trim()==jQuery("#the_champ_fb_comment_switch_wp").val().trim()&&jQuery(this).before('<span style="color:red">This cannot be same as text on "Switch to WordPress Commenting" button</span>')})});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ var theChampReferrer = null, theChampReferrerVal = '', theChampReferrerTabId = '';
2
+ function theChampEmailPopupOptions(e) {
3
+ jQuery(e).is(":checked") ? jQuery("#the_champ_email_popup_options").css("display", "block") : jQuery("#the_champ_email_popup_options").css("display", "none")
4
+ }
5
+
6
+ function theChampCommentingOptions(e) {
7
+ jQuery(e).is(":checked") ? jQuery("#the_champ_commenting_extra").css("display", "none") : jQuery("#the_champ_commenting_extra").css("display", "table-row-group")
8
+ }
9
+ jQuery(document).ready(function() {
10
+ jQuery("#tabs").tabs();
11
+ theChampReferrer = jQuery('input[name=_wp_http_referer]'), theChampReferrerVal = jQuery('input[name=_wp_http_referer]').val(), theChampReferrerTabId = location.href.indexOf('#') > 0 ? location.href.substring(location.href.indexOf('#'), location.href.length) : '';
12
+ if(theChampReferrerTabId){theChampSetReferrer(theChampReferrerTabId) }
13
+ jQuery('#tabs ul a').click(function(){
14
+ theChampSetReferrer(jQuery(this).attr('href'));
15
+ });
16
+ jQuery("#the_champ_login_redirection_column").find("input[type=radio]").click(function() {
17
+ jQuery(this).attr("id") && "the_champ_login_redirection_custom" == jQuery(this).attr("id") ? jQuery("#the_champ_login_redirection_url").css("display", "block") : jQuery("#the_champ_login_redirection_url").css("display", "none")
18
+ }), jQuery("#the_champ_login_redirection_custom").is(":checked") ? jQuery("#the_champ_login_redirection_url").css("display", "block") : jQuery("#the_champ_login_redirection_url").css("display", "none"), jQuery("#the_champ_register_redirection_column").find("input[type=radio]").click(function() {
19
+ jQuery(this).attr("id") && "the_champ_register_redirection_custom" == jQuery(this).attr("id") ? jQuery("#the_champ_register_redirection_url").css("display", "block") : jQuery("#the_champ_register_redirection_url").css("display", "none")
20
+ }), jQuery("#the_champ_register_redirection_custom").is(":checked") ? jQuery("#the_champ_register_redirection_url").css("display", "block") : jQuery("#the_champ_register_redirection_url").css("display", "none"), jQuery(".the_champ_help_bubble").attr("title", theChampHelpBubbleTitle), jQuery(".the_champ_help_bubble").toggle(function() {
21
+ jQuery("#" + jQuery(this).attr("id") + "_cont").show(), jQuery(this).attr("title", theChampHelpBubbleCollapseTitle)
22
+ }, function() {
23
+ jQuery("#" + jQuery(this).attr("id") + "_cont").hide(), jQuery(this).attr("title", theChampHelpBubbleTitle)
24
+ }), jQuery("#the_champ_fb_comment_switch_wp").keyup(function() {
25
+ jQuery(this).prev("span").remove(), "" == jQuery(this).val().trim() ? jQuery(this).before('<span style="color:red">This cannot be blank</span>') : jQuery(this).val().trim() == jQuery("#the_champ_fb_comment_switch_fb").val().trim() && jQuery(this).before('<span style="color:red">This cannot be same as text on "Switch to Facebook Commenting" button</span>')
26
+ }), jQuery('input#the_champ_enable_commenting, input#the_champ_login_enable, input#the_champ_counter_enable').click(function(){
27
+ if(jQuery(this).is(':checked')){
28
+ jQuery('div#tabs').css('display', 'block');
29
+ }else{
30
+ jQuery('div#tabs').css('display', 'none');
31
+ }
32
+ }), jQuery("#the_champ_fb_comment_switch_fb").keyup(function() {
33
+ jQuery(this).prev("span").remove(), "" == jQuery(this).val().trim() ? jQuery(this).before('<span style="color:red">This cannot be blank</span>') : jQuery(this).val().trim() == jQuery("#the_champ_fb_comment_switch_wp").val().trim() && jQuery(this).before('<span style="color:red">This cannot be same as text on "Switch to WordPress Commenting" button</span>')
34
+ })
35
+ });
36
+ function theChampSetReferrer(href){
37
+ jQuery(theChampReferrer).val( theChampReferrerVal.substring(0, theChampReferrerVal.indexOf('#') > 0 ? theChampReferrerVal.indexOf('#') : theChampReferrerVal.length) + href );
38
+ }
39
+ jQuery("html, body").animate({ scrollTop: 0 });
js/admin/sharing/admin.js CHANGED
@@ -12,7 +12,7 @@ function theChampVerticalSharingOptionsToggle(e) {
12
 
13
  function theChampToggleOffset(e) {
14
  var t = "left" == e ? "right" : "left";
15
- jQuery("#the_champ_ss_" + e + "_offset_rows").css("display", "table-row-group"), jQuery("#the_champ_ss_" + t + "_offset_rows").css("display", "none")
16
  }
17
 
18
  function theChampSharingSizeValidate(e) {
@@ -29,33 +29,264 @@ function theChampIncrement(e, t, r, a, i) {
29
  }, c = !0)
30
  }, e.onmousedown = s
31
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
- function theChampSharingPreview(e, t, r) {
34
- if ("horizontal" == e) var a = "the_champ_sharing_preview";
35
- else var a = "the_champ_vertical_sharing_preview";
36
- "round" == r ? jQuery("#" + a).css("borderRadius", "999px") : jQuery("#" + a).css("borderRadius", "0px"), jQuery("#" + a).css({
37
- height: t,
38
- width: t
39
- }), jQuery("#" + a + "_message").css("display", "block")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  }
41
  "function" != typeof String.prototype.trim && (String.prototype.trim = function() {
42
  return this.replace(/^\s+|\s+$/g, "")
43
  }), jQuery(document).ready(function() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  jQuery("#the_champ_ss_rearrange, #the_champ_ss_vertical_rearrange").sortable(), jQuery(".theChampHorizontalSharingProviderContainer input").click(function() {
45
- jQuery(this).is(":checked") ? jQuery("#the_champ_ss_rearrange").append('<li title="' + jQuery(this).val() + '" id="the_champ_re_horizontal_' + jQuery(this).val().replace(" ", "_") + '" ><i style="display:block;' + theChampHorSharingStyle + '" class="theChamp' + theChampCapitaliseFirstLetter(jQuery(this).val().replace(" ", "")) + 'Background"><div class="theChampSharingSvg theChamp' + theChampCapitaliseFirstLetter(jQuery(this).val().replace(" ", "")) + 'Svg" style="' + theChampHorDeliciousRadius + '"></div></i><input type="hidden" name="the_champ_sharing[horizontal_re_providers][]" value="' + jQuery(this).val() + '"></li>') : jQuery("#the_champ_re_horizontal_" + jQuery(this).val().replace(" ", "_")).remove()
46
  }), jQuery(".theChampVerticalSharingProviderContainer input").click(function() {
47
- jQuery(this).is(":checked") ? jQuery("#the_champ_ss_vertical_rearrange").append('<li title="' + jQuery(this).val() + '" id="the_champ_re_vertical_' + jQuery(this).val().replace(" ", "_") + '" ><i style="display:block;' + theChampVerticalSharingStyle + '" class="theChamp' + theChampCapitaliseFirstLetter(jQuery(this).val().replace(" ", "")) + 'Background"><div class="theChampSharingSvg theChamp' + theChampCapitaliseFirstLetter(jQuery(this).val().replace(" ", "")) + 'Svg" style="' + theChampVerticalDeliciousRadius + '"></div></i><input type="hidden" name="the_champ_sharing[vertical_re_providers][]" value="' + jQuery(this).val() + '"></li>') : jQuery("#the_champ_re_vertical_" + jQuery(this).val().replace(" ", "_")).remove()
48
  }), jQuery("#the_champ_target_url_column").find("input[type=radio]").click(function() {
49
  jQuery(this).attr("id") && "the_champ_target_url_custom" == jQuery(this).attr("id") ? jQuery("#the_champ_target_url_custom_url").css("display", "block") : jQuery("#the_champ_target_url_custom_url").css("display", "none")
50
  }), jQuery("#the_champ_vertical_target_url_column").find("input[type=radio]").click(function() {
51
  jQuery(this).attr("id") && "the_champ_vertical_target_url_custom" == jQuery(this).attr("id") ? jQuery("#the_champ_vertical_target_url_custom_url").css("display", "block") : jQuery("#the_champ_vertical_target_url_custom_url").css("display", "none")
52
  }), jQuery("#the_champ_target_url_custom").is(":checked") ? jQuery("#the_champ_target_url_custom_url").css("display", "block") : jQuery("#the_champ_target_url_custom_url").css("display", "none"), jQuery("#the_champ_vertical_target_url_custom").is(":checked") ? jQuery("#the_champ_vertical_target_url_custom_url").css("display", "block") : jQuery("#the_champ_vertical_target_url_custom_url").css("display", "none")
53
- }), typeof Modernizr.svg == 'undefined' || Modernizr.svg || jQuery(function() {
54
- jQuery('#tabs-2').remove();
55
- var e = [];
56
- if (jQuery("#the_champ_ss_rearrange").length && e.push(jQuery("#the_champ_ss_rearrange")), jQuery("#the_champ_ss_vertical_rearrange").length && e.push(jQuery("#the_champ_ss_vertical_rearrange")), e.length)
57
- for (var t = 0; t < e.length; t++) e[t].find("i").each(function() {
58
- var e = theChampCapitaliseFirstLetter(jQuery(this).parent().attr("title").replace(" ", "").toLowerCase());
59
- jQuery(this).attr("class", "theChampSharingButton theChampSharing" + e + "Button").attr("style", "width:32px;height:32px").find("div").remove()
60
- })
61
- });
12
 
13
  function theChampToggleOffset(e) {
14
  var t = "left" == e ? "right" : "left";
15
+ jQuery("#the_champ_" + e + "_offset_rows").css("display", "table-row-group"), jQuery("#the_champ_" + t + "_offset_rows").css("display", "none")
16
  }
17
 
18
  function theChampSharingSizeValidate(e) {
29
  }, c = !0)
30
  }, e.onmousedown = s
31
  }
32
+ function theChampUpdateSharingPreview(e, property, defaultVal, targetId) {
33
+ if(!e){
34
+ e = defaultVal;
35
+ }
36
+ jQuery('#' + targetId).css(property, e);
37
+ }
38
+ function theChampUpdateSharingPreviewHover(e, property, targetId) {
39
+ var val = jQuery(e).val().trim();
40
+ if(!val){
41
+ jQuery('#' + targetId).hover(function(){
42
+ jQuery(this).css(property, val);
43
+ });
44
+ }
45
+ }
46
+ function theChampSharingHorizontalPreview() {
47
+ var tempBorderWidth = theChampBorderWidth ? theChampBorderWidth : '0px';
48
+ if("rectangle" != tempHorShape){
49
+ jQuery("#the_champ_preview").css({
50
+ borderRadius: "round" == tempHorShape ? "999px" : theChampSharingBorderRadius ? theChampSharingBorderRadius : '0px',
51
+ height: tempHorSize,
52
+ width: tempHorSize,
53
+ backgroundColor: theChampSharingBg,
54
+ borderWidth: tempBorderWidth,
55
+ borderColor: theChampBorderColor ? theChampBorderColor : 'transparent',
56
+ borderStyle: 'solid',
57
+ });
58
+ tempHorSize = parseInt(tempHorSize);
59
+ jQuery('.theChampCounterPreviewRight,.theChampCounterPreviewLeft').css({
60
+ height: ( tempHorSize + 2*parseInt(tempBorderWidth) ) + 'px',
61
+ lineHeight: ( tempHorSize + 2*parseInt(tempBorderWidth) ) + 'px'
62
+ });
63
+ jQuery('.theChampCounterPreviewInnerright,.theChampCounterPreviewInnerleft').css("lineHeight", tempHorSize + 'px');
64
+ jQuery('.theChampCounterPreviewInnertop').css("lineHeight", (tempHorSize*38/100) + "px");
65
+ jQuery('.theChampCounterPreviewInnerbottom').css("lineHeight", (tempHorSize*19/100) + "px");
66
+ jQuery('.theChampCounterPreviewTop,.theChampCounterPreviewBottom').css({
67
+ width: 60 + 2*parseInt(tempBorderWidth) + tempHorSize,
68
+ });
69
+ }else{
70
+ jQuery("#the_champ_preview").css({
71
+ borderRadius: theChampSharingBorderRadius ? theChampSharingBorderRadius : '0px',
72
+ height: tempHorHeight,
73
+ width: tempHorWidth,
74
+ backgroundColor: theChampSharingBg,
75
+ borderWidth: tempBorderWidth,
76
+ borderColor: theChampBorderColor ? theChampBorderColor : 'transparent',
77
+ borderStyle: 'solid'
78
+ });
79
+ jQuery('.theChampCounterPreviewRight,.theChampCounterPreviewLeft').css({
80
+ height: ( parseInt(tempHorHeight) + 2*parseInt(tempBorderWidth) ) + 'px',
81
+ lineHeight: ( parseInt(tempHorHeight) + 2*parseInt(tempBorderWidth) ) + 'px',
82
+ });
83
+ jQuery('.theChampCounterPreviewInnerright,.theChampCounterPreviewInnerleft').css('lineHeight', tempHorHeight + 'px');
84
+ jQuery('.theChampCounterPreviewInnertop').css('lineHeight', (tempHorHeight*38/100) + 'px');
85
+ jQuery('.theChampCounterPreviewInnerbottom').css('lineHeight', (tempHorHeight*19/100) + 'px');
86
+ jQuery('.theChampCounterPreviewTop,.theChampCounterPreviewBottom').css({
87
+ width: 60 + 2*parseInt(tempBorderWidth) + parseInt(tempHorWidth),
88
+ });
89
+ }
90
+
91
+ jQuery("#the_champ_preview_message").css("display", "block")
92
+ }
93
 
94
+ function theChampSharingVerticalPreview() {
95
+ var tempVerticalBorderWidth = theChampVerticalBorderWidth ? theChampVerticalBorderWidth : '0px';
96
+ if("rectangle" != tempVerticalShape){
97
+ jQuery("#the_champ_vertical_preview").css({
98
+ borderRadius: "round" == tempVerticalShape ? "999px" : theChampVerticalBorderRadius ? theChampVerticalBorderRadius : '0px',
99
+ height: tempVerticalSize,
100
+ width: tempVerticalSize,
101
+ backgroundColor: theChampVerticalSharingBg,
102
+ borderWidth: tempVerticalBorderWidth,
103
+ borderColor: theChampVerticalBorderColor ? theChampVerticalBorderColor : 'transparent',
104
+ borderStyle: 'solid',
105
+ });
106
+ jQuery('.theChampCounterVerticalPreviewRight,.theChampCounterVerticalPreviewLeft').css({
107
+ height: ( parseInt(tempVerticalSize) + 2*parseInt(tempVerticalBorderWidth) ) + 'px',
108
+ lineHeight: ( parseInt(tempVerticalSize) + 2*parseInt(tempVerticalBorderWidth) ) + 'px',
109
+ });
110
+ jQuery('.theChampCounterVerticalPreviewInnerright,.theChampCounterVerticalPreviewInnerleft').css('lineHeight', tempVerticalSize + 'px');
111
+ jQuery('.theChampCounterVerticalPreviewInnertop').css('lineHeight', (tempVerticalSize*38/100) + 'px');
112
+ jQuery('.theChampCounterVerticalPreviewInnerbottom').css('lineHeight', (tempVerticalSize*19/100) + 'px');
113
+ jQuery('.theChampCounterVerticalPreviewTop,.theChampCounterVerticalPreviewBottom').css({
114
+ width: 60 + 2*parseInt(tempVerticalBorderWidth) + parseInt(tempVerticalSize)
115
+ });
116
+ }else{
117
+ jQuery("#the_champ_vertical_preview").css({
118
+ borderRadius: theChampVerticalBorderRadius ? theChampVerticalBorderRadius : '0px',
119
+ height: tempVerticalHeight,
120
+ width: tempVerticalWidth,
121
+ backgroundColor: theChampVerticalSharingBg,
122
+ borderWidth: tempVerticalBorderWidth,
123
+ borderColor: theChampVerticalBorderColor ? theChampVerticalBorderColor : 'transparent',
124
+ borderStyle: 'solid'
125
+ });
126
+ jQuery('.theChampCounterVerticalPreviewRight,.theChampCounterVerticalPreviewLeft').css({
127
+ height: ( parseInt(tempVerticalHeight) + 2*parseInt(tempVerticalBorderWidth) ) + 'px',
128
+ lineHeight: ( parseInt(tempVerticalHeight) + 2*parseInt(tempVerticalBorderWidth) ) + 'px',
129
+ });
130
+ jQuery('.theChampCounterVerticalPreviewInnerright,.theChampCounterVerticalPreviewInnerleft').css('lineHeight', tempVerticalHeight + 'px');
131
+ jQuery('.theChampCounterVerticalPreviewInnertop').css('lineHeight', (tempVerticalHeight*38/100) + 'px');
132
+ jQuery('.theChampCounterVerticalPreviewInnerbottom').css('lineHeight', (tempVerticalHeight*19/100) + 'px');
133
+ jQuery('.theChampCounterVerticalPreviewTop,.theChampCounterVerticalPreviewBottom').css({
134
+ width: 60 + 2*parseInt(tempVerticalBorderWidth) + parseInt(tempVerticalWidth),
135
+ });
136
+ }
137
+ jQuery("#the_champ_vertical_preview_message").css("display", "block")
138
+ }
139
+
140
+ function theChampCounterPreview(val){
141
+ if(val){
142
+ jQuery('input[name="the_champ_sharing[horizontal_counter_position]"]').each(function(){
143
+ if(jQuery(this).val().indexOf('inner') == -1){
144
+ var property = 'visibility', value = 'visible', inverseValue = 'hidden';
145
+ jQuery('#horizontal_svg').css({
146
+ 'width': '100%',
147
+ 'height':'100%'
148
+ });
149
+ }else{
150
+ var property = 'display', value = 'block', inverseValue = 'none';
151
+ }
152
+ if(jQuery(this).val() == val){
153
+ jQuery('.theChampCounterPreview' + theChampCapitaliseFirstLetter(val.replace('_',''))).css(property, value);
154
+ }else{
155
+ jQuery('.theChampCounterPreview' + theChampCapitaliseFirstLetter(jQuery(this).val().replace('_',''))).css(property, inverseValue);
156
+ }
157
+ });
158
+
159
+ if(val == 'inner_left' || val == 'inner_right'){
160
+ jQuery('#horizontal_svg').css({
161
+ 'width': '50%',
162
+ 'height':'100%'
163
+ });
164
+ }else if(val == 'inner_top' || val == 'inner_bottom'){
165
+ jQuery('#horizontal_svg').css({
166
+ 'width': '100%',
167
+ 'height':'70%'
168
+ });
169
+ }
170
+ }
171
+ }
172
+
173
+ function theChampVerticalCounterPreview(val){
174
+ if(val){
175
+ jQuery('input[name="the_champ_sharing[vertical_counter_position]"]').each(function(){
176
+ if(jQuery(this).val().indexOf('inner') == -1){
177
+ var property = 'visibility', value = 'visible', inverseValue = 'hidden';
178
+ jQuery('#vertical_svg').css({
179
+ 'width': '100%',
180
+ 'height':'100%'
181
+ });
182
+ }else{
183
+ var property = 'display', value = 'block', inverseValue = 'none';
184
+ }
185
+ if(jQuery(this).val() == val){
186
+ jQuery('.theChampCounterVerticalPreview' + theChampCapitaliseFirstLetter(val.replace('_',''))).css(property, value);
187
+ }else{
188
+ jQuery('.theChampCounterVerticalPreview' + theChampCapitaliseFirstLetter(jQuery(this).val().replace('_',''))).css(property, inverseValue);
189
+ }
190
+ if(val == 'inner_left' || val == 'inner_right'){
191
+ jQuery('#vertical_svg').css({
192
+ 'width': '50%',
193
+ 'height':'100%'
194
+ });
195
+ }else if(val == 'inner_top' || val == 'inner_bottom'){
196
+ jQuery('#vertical_svg').css({
197
+ 'width': '100%',
198
+ 'height':'70%'
199
+ });
200
+ }
201
+ });
202
+ }
203
  }
204
  "function" != typeof String.prototype.trim && (String.prototype.trim = function() {
205
  return this.replace(/^\s+|\s+$/g, "")
206
  }), jQuery(document).ready(function() {
207
+ // sharing master conrol
208
+ jQuery('input#the_champ_enable_sharing').click(function(){
209
+ if(jQuery(this).is(':checked')){
210
+ jQuery('div#tabs').css('display', 'block');
211
+ }else{
212
+ jQuery('div#tabs').css('display', 'none');
213
+ }
214
+ });
215
+ // Twitter share count options
216
+ jQuery('input#the_champ_vertical_newsharecounts').click(function(){
217
+ jQuery('#the_champ_newsharecounts').attr('checked', 'checked');
218
+ });
219
+ jQuery('input#the_champ_vertical_opensharecount').click(function(){
220
+ jQuery('#the_champ_opensharecount').attr('checked', 'checked');
221
+ });
222
+ jQuery('input#the_champ_newsharecounts').click(function(){
223
+ jQuery('#the_champ_vertical_newsharecounts').attr('checked', 'checked');
224
+ });
225
+ jQuery('input#the_champ_opensharecount').click(function(){
226
+ jQuery('#the_champ_vertical_opensharecount').attr('checked', 'checked');
227
+ });
228
+ jQuery('input#the_champ_counts').click(function(){
229
+ if(jQuery(this).is(':checked')){
230
+ jQuery('#the_champ_twitter_share_count').css('display', 'table-row');
231
+ }else{
232
+ jQuery('#the_champ_twitter_share_count').css('display', 'none');
233
+ }
234
+ });
235
+ jQuery('input#the_champ_vertical_counts').click(function(){
236
+ if(jQuery(this).is(':checked')){
237
+ jQuery('#the_champ_twitter_vertical_share_count').css('display', 'table-row');
238
+ }else{
239
+ jQuery('#the_champ_twitter_vertical_share_count').css('display', 'none');
240
+ }
241
+ });
242
+ jQuery('input[name="the_champ_sharing[horizontal_sharing_shape]"]').click(function(){
243
+ // toggle height, width options
244
+ if(jQuery(this).val() == 'rectangle'){
245
+ jQuery('#the_champ_rectangle_options').css('display', 'table-row-group');
246
+ jQuery('#the_champ_size_options').css('display', 'none');
247
+ }else{
248
+ jQuery('#the_champ_rectangle_options').css('display', 'none');
249
+ jQuery('#the_champ_size_options').css('display', 'table-row-group');
250
+ }
251
+
252
+ // toggle border radius option
253
+ if(jQuery(this).val() == 'round'){
254
+ jQuery('#the_champ_border_radius_options').css('display', 'none');
255
+ }else{
256
+ jQuery('#the_champ_border_radius_options').css('display', 'table-row-group');
257
+ }
258
+ });
259
+ jQuery('input#the_champ_mobile_sharing_bottom').click(function(){
260
+ if(jQuery(this).is(':checked')){
261
+ jQuery('#the_champ_bottom_sharing_options').css('display', 'table-row-group');
262
+ }else{
263
+ jQuery('#the_champ_bottom_sharing_options').css('display', 'none');
264
+ }
265
+ });
266
+ jQuery('input[name="the_champ_sharing[vertical_sharing_shape]"]').click(function(){
267
+ // toggle height, width options
268
+ if(jQuery(this).val() == 'rectangle'){
269
+ jQuery('#the_champ_vertical_rectangle_options').css('display', 'table-row-group');
270
+ jQuery('#the_champ_vertical_size_options').css('display', 'none');
271
+ }else{
272
+ jQuery('#the_champ_vertical_rectangle_options').css('display', 'none');
273
+ jQuery('#the_champ_vertical_size_options').css('display', 'table-row-group');
274
+ }
275
+
276
+ // toggle border radius option
277
+ if(jQuery(this).val() == 'round'){
278
+ jQuery('#the_champ_vertical_border_radius_options').css('display', 'none');
279
+ }else{
280
+ jQuery('#the_champ_vertical_border_radius_options').css('display', 'table-row-group');
281
+ }
282
+ });
283
  jQuery("#the_champ_ss_rearrange, #the_champ_ss_vertical_rearrange").sortable(), jQuery(".theChampHorizontalSharingProviderContainer input").click(function() {
284
+ jQuery(this).is(":checked") ? jQuery("#the_champ_ss_rearrange").append('<li title="' + jQuery(this).val().replace(/_/g, " ") + '" id="the_champ_re_horizontal_' + jQuery(this).val().replace(/[. ]/g, "_") + '" ><i style="display:block;' + theChampHorSharingStyle + '" class="' + ( jQuery.inArray(jQuery(this).val(), theChampLikeButtons) != -1 ? '' : 'theChampSharingBackground ' ) + 'theChamp' + theChampCapitaliseFirstLetter(jQuery(this).val().replace(/[_. ]/g, "")) + 'Background"><div class="theChampSharingSvg theChamp' + theChampCapitaliseFirstLetter(jQuery(this).val().replace(/[_. ]/g, "")) + 'Svg" style="' + theChampHorDeliciousRadius + '"></div></i><input type="hidden" name="the_champ_sharing[horizontal_re_providers][]" value="' + jQuery(this).val() + '"></li>') : jQuery("#the_champ_re_horizontal_" + jQuery(this).val().replace(/[. ]/g, "_")).remove()
285
  }), jQuery(".theChampVerticalSharingProviderContainer input").click(function() {
286
+ jQuery(this).is(":checked") ? jQuery("#the_champ_ss_vertical_rearrange").append('<li title="' + jQuery(this).val().replace(/_/g, " ") + '" id="the_champ_re_vertical_' + jQuery(this).val().replace(/[. ]/g, "_") + '" ><i style="display:block;' + theChampVerticalSharingStyle + '" class="' + ( jQuery.inArray(jQuery(this).val(), theChampLikeButtons) != -1 ? '' : 'theChampVerticalSharingBackground ' ) + 'theChamp' + theChampCapitaliseFirstLetter(jQuery(this).val().replace(/[_. ]/g, "")) + 'Background"><div class="theChampSharingSvg theChamp' + theChampCapitaliseFirstLetter(jQuery(this).val().replace(/[_. ]/g, "")) + 'Svg" style="' + theChampVerticalDeliciousRadius + '"></div></i><input type="hidden" name="the_champ_sharing[vertical_re_providers][]" value="' + jQuery(this).val() + '"></li>') : jQuery("#the_champ_re_vertical_" + jQuery(this).val().replace(/[. ]/g, "_")).remove()
287
  }), jQuery("#the_champ_target_url_column").find("input[type=radio]").click(function() {
288
  jQuery(this).attr("id") && "the_champ_target_url_custom" == jQuery(this).attr("id") ? jQuery("#the_champ_target_url_custom_url").css("display", "block") : jQuery("#the_champ_target_url_custom_url").css("display", "none")
289
  }), jQuery("#the_champ_vertical_target_url_column").find("input[type=radio]").click(function() {
290
  jQuery(this).attr("id") && "the_champ_vertical_target_url_custom" == jQuery(this).attr("id") ? jQuery("#the_champ_vertical_target_url_custom_url").css("display", "block") : jQuery("#the_champ_vertical_target_url_custom_url").css("display", "none")
291
  }), jQuery("#the_champ_target_url_custom").is(":checked") ? jQuery("#the_champ_target_url_custom_url").css("display", "block") : jQuery("#the_champ_target_url_custom_url").css("display", "none"), jQuery("#the_champ_vertical_target_url_custom").is(":checked") ? jQuery("#the_champ_vertical_target_url_custom_url").css("display", "block") : jQuery("#the_champ_vertical_target_url_custom_url").css("display", "none")
292
+ })
 
 
 
 
 
 
 
 
js/front/combined.js ADDED
@@ -0,0 +1,703 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // general.js
2
+ function theChampPopup(e){window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes")}function theChampStrReplace(e,t,n){for(var r=0;r<e.length;r++){n=n.replace(new RegExp(e[r],"g"),t[r])}return n}function theChampCallAjax(e){if(typeof jQuery!="undefined"){e()}else{theChampGetScript("http://code.jquery.com/jquery-latest.min.js",e)}}function theChampGetScript(e,t){var n=document.createElement("script");n.src=e;var r=document.getElementsByTagName("head")[0],i=false;n.onload=n.onreadystatechange=function(){if(!i&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){i=true;t();n.onload=n.onreadystatechange=null;r.removeChild(n)}};r.appendChild(n)}function theChampGetElementsByClass(e,t){if(e.getElementsByClassName){return e.getElementsByClassName(t)}else{return function(e,t){if(t==null){t=document}var n=[],r=t.getElementsByTagName("*"),i=r.length,s=new RegExp("(^|\\s)"+e+"(\\s|$)"),o,u;for(o=0,u=0;o<i;o++){if(s.test(r[o].className)){n[u]=r[o];u++}}return n}(t,e)}}if(typeof String.prototype.trim!=="function"){String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}}
3
+ // common.js
4
+ function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampAjaxUserAuth(e,t){theChampLoadingIcon(),jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_user_auth",profileData:e,provider:t,redirectionUrl:theChampTwitterRedirect?theChampTwitterRedirect:""},success:function(e){var t=theChampSiteUrl;if(1==e.status)t="register"==e.message?e.url&&""!=e.url?e.url:theChampRegRedirectionUrl+(theChampCommentFormLogin?"/#commentform":""):"linked"==e.message?theChampLinkingRedirection+"?linked=1":e.url&&""!=e.url?e.url:theChampRedirectionUrl+(theChampCommentFormLogin?"/#commentform":"");else if(null!==e.message.match(/ask/)){var a=e.message.split("|");t=theChampSiteUrl+"?SuperSocializerEmail=1&par="+a[1]}else 0==e.status&&"registration disabled"==e.message?t="undefined"!=typeof theChampDisableRegRedirect?theChampDisableRegRedirect:decodeURIComponent(theChampTwitterRedirect):"unverified"==e.message?t=theChampSiteUrl+"?SuperSocializerUnverified=1":"not linked"==e.message?t=theChampLinkingRedirection+"?linked=0":"provider exists"==e.message&&(t=theChampLinkingRedirection+"?linked=2");location.href=t},error:function(){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampInitiateLogin(e){var t=e.getAttribute("alt");if("Login with Facebook"==t)navigator.userAgent.match("CriOS")?location.href="https://www.facebook.com/dialog/oauth?client_id="+theChampFBKey+"&redirect_uri="+theChampRedirectionUrl+"&scope="+theChampFacebookScope:theChampAuthUserFB();else if("Login with Twitter"==t)theChampPopup(theChampSiteUrl+"?SuperSocializerAuth=Twitter&super_socializer_redirect_to="+theChampTwitterRedirect);else if("Login with Xing"==t)theChampPopup(theChampSiteUrl+"?SuperSocializerAuth=Xing&super_socializer_redirect_to="+theChampTwitterRedirect);else{if("Login with Linkedin"==t)return IN.User.authorize(),!1;"Login with Google"==t?theChampInitializeGPLogin():"Login with Vkontakte"==t?theChampInitializeVKLogin():"Login with Instagram"==t&&theChampInitializeInstaLogin()}}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)for(var a=0;a<t.length;a++)jQuery("."+t[a]).css("display","block");else for(var a=0;a<t.length;a++)for(var i=theChampGetElementsByClass(e,t[a]),h=0;h<i.length;h++)i[h].style.display="block"}function theChampValidateEmail(e){var t=/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;return t.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))},error:function(){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampCapitaliseFirstLetter2(e){return e.charAt(0).toUpperCase()+e.slice(1)}theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;
5
+ // Google.js
6
+ function theChampGoogleOnLoad(){theChampDisplayLoginIcon(document,["theChampGoogleButton","theChampGoogleLogin"])}function theChampInitializeGPLogin(){gapi.auth.signIn({callback:theChampGPSignInCallback,clientid:theChampGoogleKey,cookiepolicy:"single_host_origin",scope:"profile email"})}function theChampGPSignInCallback(e){e.status.signed_in?gapi.client.load("plus","v1",function(){e.access_token?theChampGetProfile():''}):''}function theChampGetProfile(){theChampLoadingIcon();var e=gapi.client.plus.people.get({userId:"me"});e.execute(function(e){return e.error?void("Access Not Configured. Please use Google Developers Console to activate the API for your project."==e.message&&(alert(theChampGoogleErrorMessage),window.open("http://support.heateor.com/how-to-get-google-plus-client-id/"))):void(e.id&&theChampCallAjax(function(){theChampAjaxUserAuth(e,"google")}))})}!function(){var e=document.createElement("script");e.type="text/javascript",e.async=!0,e.src="https://apis.google.com/js/client:platform.js?onload=theChampGoogleOnLoad";var o=document.getElementsByTagName("script")[0];o.parentNode.insertBefore(e,o)}();
7
+ // linkedin.js
8
+ function theChampLinkedInOnLoad(){theChampDisplayLoginIcon(document,["theChampLinkedinButton", "theChampLinkedinLogin"])}typeof IN!="undefined"&&IN.Event.on(IN,"auth",function(){theChampLoadingIcon();IN.API.Profile("me").fields(["email-address","id","picture-urls::(original)","first-name","last-name","headline","picture-url","public-profile-url"]).result(function(e){if(e.values[0].id&&e.values[0].id!=""){theChampCallAjax(function(){theChampAjaxUserAuth(e.values[0],"linkedin")})}})})
9
+ // vkontakte.js
10
+ function theChampInitializeVKLogin(){VK.Auth.login(function(t){t.session.mid&&VK.Api.call("getProfiles",{uids:t.session.mid,fields:"uid, first_name, last_name, nickname, photo, photo_big"},function(t){t.response[0].uid&&theChampCallAjax(function(){theChampAjaxUserAuth(t.response[0],"vkontakte")})})})}if(typeof theChampVkKey!="undefined"){window.vkAsyncInit=function(){VK.init({apiId:theChampVkKey}),theChampDisplayLoginIcon(document,["theChampVkontakteButton","theChampVkontakteLogin"])},setTimeout(function(){var t=document.getElementsByTagName("head")[0],e=document.createElement("script");e.type="text/javascript",e.src="//vk.com/js/api/openapi.js",e.async=!0,t.appendChild(e)},0);}
11
+ // instagram.js
12
+ function theChampInitializeInstaLogin(){var e=typeof theChampLinkingRedirection!="undefined"&&theChampLinkingRedirection!=""?theChampLinkingRedirection:theChampTwitterRedirect;theChampPopup("https://instagram.com/oauth/authorize/?client_id="+theChampInstaId+"&redirect_uri="+encodeURI(theChampSiteUrl+"?ssredirect="+e)+"&response_type=token")}function theChampGetHashValue(e){if(typeof e!=="string"){e=""}else{e=e.toLowerCase()}var t=location.hash.toLowerCase().match(new RegExp(e+"=([^&]*)"));var n="";if(t){n=t[1]}return n}function theChampGetParameterByName(e){e=e.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var t=new RegExp("[\\?&]"+e+"=([^&#]*)"),n=t.exec(location.search);return n===null?"":decodeURIComponent(n[1].replace(/\+/g," "))}var theChampInstagramHash=theChampGetHashValue("access_token");if(theChampInstagramHash!=""){var redirection=theChampGetParameterByName("ssredirect");window.opener.location.href=theChampSiteUrl+"?SuperSocializerInstaToken="+theChampInstagramHash+"&super_socializer_redirect_to="+(redirection?redirection:theChampTwitterRedirect);window.close()}
13
+ // sdk.js
14
+ function theChampInitiateFB(){FB.init({appId:theChampFBKey,channelUrl:"//"+theChampSiteUrl+"/channel.html",status:!0,cookie:!0,xfbml:!0,version:"v2.4"})}window.fbAsyncInit=function(){theChampInitiateFB(),theChampFbIosLogin&&theChampAuthUserFB(),"function"==typeof theChampDisplayLoginIcon&&theChampDisplayLoginIcon(document,["theChampFacebookButton","theChampFacebookLogin"]),theChampCommentNotification&&FB.Event.subscribe("comment.create",function(e){e.commentID&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"the_champ_moderate_fb_comments",data:e},success:function(){}})}),theChampFbLikeMycred&&(FB.Event.subscribe("edge.create",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"","Minus point(s) for undoing Facebook like-recommend")})),theChampSsga&&(FB.Event.subscribe("edge.create",function(e){heateorSsgaSocialPluginsTracking("Facebook","Like",e?e:"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsgaSocialPluginsTracking("Facebook","Unlike",e?e:"")}))},function(e){var t,n="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(n)||(t=e.createElement("script"),t.id=n,t.async=!0,t.src="//connect.facebook.net/"+theChampFBLang+"/sdk.js",o.parentNode.insertBefore(t,o))}(document);
15
+ // facebook.js
16
+ function theChampAuthUserFB(){FB.getLoginStatus(theChampFBCheckLoginStatus)}function theChampFBCheckLoginStatus(response){if(response&&response.status=='connected'){theChampLoadingIcon();theChampFBLoginUser()}else{FB.login(theChampFBLoginUser,{scope:theChampFacebookScope})}}function theChampFBLoginUser(){FB.api('/me?fields=id,name,bio,about,link,email,first_name,last_name',function(response){if(!response.id){return}theChampCallAjax(function(){theChampAjaxUserAuth(response,'facebook')})})}
17
+ // commenting.js
18
+ function theChampRenderFBCommenting(){var e=document.getElementById(theChampCommentingId);if(e){var t=[],a=[],m=[];t.wordpress='<div style="clear:both"></div>'+e.innerHTML,theChampFBCommentingContent='<div class="fb-comments" data-href="'+theChampFBCommentUrl+'"',""!=theChampFBCommentColor&&(theChampFBCommentingContent+=' data-colorscheme="'+theChampFBCommentColor+'"'),""!=theChampFBCommentNumPosts&&(theChampFBCommentingContent+=' data-numposts="'+theChampFBCommentNumPosts+'"'),theChampFBCommentingContent+=' data-width="'+theChampFBCommentWidth+'"',""!=theChampFBCommentOrderby&&(theChampFBCommentingContent+=' data-order-by="'+theChampFBCommentOrderby+'"'),theChampFBCommentingContent+=" ></div>",t.fb=theChampFBCommentingContent,a.fb="theChampInitiateFB();",t.googleplus="<div class='g-comments' data-href='"+theChampGpCommentsUrl+"' "+(theChampGpCommentsWidth?"data-width='"+theChampGpCommentsWidth+"'":"")+" data-first_party_property='BLOGGER' data-view_type='FILTERED_POSTMOD' ></div>",a.googleplus=" ",m.googleplus="//apis.google.com/js/plusone.js",t.disqus='<div class="embed-container clearfix" id="disqus_thread">'+(""!=theChampDisqusShortname?theChampDisqusShortname:'<div style="font-size: 14px;clear: both;">Specify a Disqus shortname in Super Socializer &gt; Social Commenting section in admin panel</div>')+"</div>",a.disqus="var disqus_shortname = '"+theChampDisqusShortname+"';(function(d) {var dsq = d.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(dsq); })(document);";var h='<div class="theChampCommentingTabs"><h3 id="theChampReplyTitle" style="margin-bottom:15px" class="comment-reply-title">'+theChampScLabel+"</h3><ul>";theChampScEnabledTabs=theChampScEnabledTabs.split(",");for(var n=0;n<theChampScEnabledTabs.length;n++){h+='<li id="theChampTabs-'+n+'-li" onclick="',h+="this.setAttribute('class', 'theChampSelectedTab');document.getElementById('theChampTabs-"+n+"').style.display='block';","fb"==theChampScEnabledTabs[n]&&(h+="theChampInitiateFB();");for(var s=0;s<theChampScEnabledTabs.length;s++)s!=n&&(h+="document.getElementById('theChampTabs-"+s+"-li').setAttribute('class', '');document.getElementById('theChampTabs-"+s+"').style.display='none';");h+='">',h+=theChampScTabLabels[theChampScEnabledTabs[n]],h+="</li>"}h+="</ul>";for(var n=0;n<theChampScEnabledTabs.length;n++)h+='<div id="theChampTabs-'+n+'" ><div style="clear: both"></div>'+t[theChampScEnabledTabs[n]]+"</div>";h+="</div>",e.innerHTML=h;var d=document.getElementById("reply-title");d&&d.remove();for(var n=0;n<theChampScEnabledTabs.length;n++)if(a[theChampScEnabledTabs[n]]){var o=document.createElement("script");m[theChampScEnabledTabs[n]]&&o.setAttribute("src",m[theChampScEnabledTabs[n]]),o.innerHTML=a[theChampScEnabledTabs[n]],document.getElementById("theChampTabs-"+n).appendChild(o)}document.getElementById("theChampTabs-0-li").setAttribute("class","theChampSelectedTab");for(var n=1;n<theChampScEnabledTabs.length;n++)document.getElementById("theChampTabs-"+n).style.display="none"}}theChampLoadEvent(function(){theChampRenderFBCommenting()});
19
+ // sharing.js
20
+ /**
21
+ * Show more sharing services popup
22
+ */
23
+ function theChampMoreSharingPopup(elem, postUrl, postTitle){
24
+ concate = '</ul></div><div class="footer-panel"><p></p></div></div>';
25
+ var theChampMoreSharingServices = {
26
+ facebook: {
27
+ title: "Facebook",
28
+ locale: "en-US",
29
+ redirect_url: "http://www.facebook.com/sharer.php?u=" + postUrl + "&t=" + postTitle + "&v=3",
30
+ },
31
+ twitter: {
32
+ title: "Twitter",
33
+ locale: "en-US",
34
+ redirect_url: "http://twitter.com/intent/tweet?text=" + postTitle + " " + postUrl,
35
+ },
36
+ google: {
37
+ title: "Google plus",
38
+ locale: "en-US",
39
+ redirect_url: "https://plus.google.com/share?url=" + postUrl,
40
+ },
41
+ linkedin: {
42
+ title: "Linkedin",
43
+ locale: "en-US",
44
+ redirect_url: "http://www.linkedin.com/shareArticle?mini=true&url=" + postUrl + "&title=" + postTitle,
45
+ },
46
+ pinterest: {
47
+ title: "Pinterest",
48
+ locale: "en-US",
49
+ redirect_url: "https://pinterest.com/pin/create/button/?url=" + postUrl + "&media=${media_link}&description=" + postTitle,
50
+ bookmarklet_url: "javascript:void((function(){var e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','//assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)})());"
51
+ },
52
+ yahoo_bookmarks: {
53
+ title: "Yahoo",
54
+ locale: "en-US",
55
+ redirect_url: "http://bookmarks.yahoo.com/toolbar/savebm?u=" + postUrl + "&t=" + postTitle,
56
+ },
57
+ email: {
58
+ title: "Email",
59
+ locale: "en-US",
60
+ redirect_url: "mailto:?subject=" + postTitle + "&body=Link: " + postUrl,
61
+ },
62
+ delicious: {
63
+ title: "Delicious",
64
+ locale: "en-US",
65
+ redirect_url: "http://delicious.com/save?url=" + postUrl + "&title=" + postTitle,
66
+ },
67
+ reddit: {
68
+ title: "Reddit",
69
+ locale: "en-US",
70
+ redirect_url: "http://reddit.com/submit?url=" + postUrl + "&title=" + postTitle,
71
+ },
72
+ float_it: {
73
+ title: "Float it",
74
+ locale: "en-US",
75
+ redirect_url: "http://www.designfloat.com/submit.php?url=" + postUrl + "&title=" + postTitle,
76
+ },
77
+ google_mail: {
78
+ title: "Google Gmail",
79
+ locale: "en-US",
80
+ redirect_url: "https://mail.google.com/mail/?ui=2&view=cm&fs=1&tf=1&su=" + postTitle + "&body=Link: " + postUrl,
81
+ },
82
+ google_bookmarks: {
83
+ title: "Google Bookmarks",
84
+ locale: "en-US",
85
+ redirect_url: "http://www.google.com/bookmarks/mark?op=edit&bkmk=" + postUrl + "&title=" + postTitle,
86
+ },
87
+ digg: {
88
+ title: "Digg",
89
+ locale: "en-US",
90
+ redirect_url: "http://digg.com/submit?phase=2&url=" + postUrl + "&title=" + postTitle,
91
+ },
92
+ stumbleupon: {
93
+ title: "Stumbleupon",
94
+ locale: "en-US",
95
+ redirect_url: "http://www.stumbleupon.com/submit?url=" + postUrl + "&title=" + postTitle,
96
+ },
97
+ printfriendly: {
98
+ title: "PrintFriendly",
99
+ locale: "en-US",
100
+ redirect_url: "http://www.printfriendly.com/print?url=" + postUrl,
101
+ },
102
+ print: {
103
+ title: "Print",
104
+ locale: "en-US",
105
+ redirect_url: "http://www.printfriendly.com/print?url=" + postUrl,
106
+ },
107
+ tumblr: {
108
+ title: "Tumblr",
109
+ locale: "en-US",
110
+ redirect_url: "http://www.tumblr.com/share?v=3&u=" + postUrl + "&t=" + postTitle,
111
+ bookmarklet_url: "javascript:var d=document,w=window,e=w.getSelection,k=d.getSelection,x=d.selection,s=(e?e():(k)?k():(x?x.createRange().text:0)),f='http://www.tumblr.com/share',l=d.location,e=encodeURIComponent,p='?v=3&u='+e(l.href) +'&t='+e(d.title) +'&s='+e(s),u=f+p;try{if(!/^(.*\\.)?tumblr[^.]*$/.test(l.host))throw(0);tstbklt();}catch(z){a =function(){if(!w.open(u,'t','toolbar=0,resizable=0,status=1,width=450,height=430'))l.href=u;};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else a();}void(0);"
112
+ },
113
+ vk: {
114
+ title: "Vkontakte",
115
+ locale: "ru",
116
+ redirect_url: "https://vk.com/share.php?url=" + postUrl + "&title=" + postTitle,
117
+ },
118
+ evernote: {
119
+ title: "Evernote",
120
+ locale: "en-US",
121
+ redirect_url: "https://www.evernote.com/clip.action?url=" + postUrl + "&title=" + postTitle,
122
+ bookmarklet_url: "javascript:(function(){EN_CLIP_HOST='http://www.evernote.com';try{var x=document.createElement('SCRIPT');x.type='text/javascript';x.src=EN_CLIP_HOST+'/public/bookmarkClipper.js?'+(new Date().getTime()/100000);document.getElementsByTagName('head')[0].appendChild(x);}catch(e){location.href=EN_CLIP_HOST+'/clip.action?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title);}})();"
123
+ },
124
+ amazon_us_wish_list: {
125
+ title: "Amazon Wish List",
126
+ locale: "en-US",
127
+ redirect_url: "http://www.amazon.com/wishlist/add?u=" + postUrl + "&t=" + postTitle,
128
+ bookmarklet_url: "javascript:(function(){var w=window,l=w.location,d=w.document,s=d.createElement('script'),e=encodeURIComponent,x='undefined',u='http://www.amazon.com/gp/wishlist/add';if(typeof s!='object')l.href=u+'?u='+e(l)+'&t='+e(d.title);function g(){if(d.readyState&&d.readyState!='complete'){setTimeout(g,200);}else{if(typeof AUWLBook==x)s.setAttribute('src',u+'.js?loc='+e(l)),d.body.appendChild(s);function f(){(typeof AUWLBook==x)?setTimeout(f,200):AUWLBook.showPopover();}f();}}g();}())"
129
+ },
130
+ wordpress_blog: {
131
+ title: "WordPress",
132
+ locale: "en-US",
133
+ redirect_url: "http://www.addtoany.com/ext/wordpress/press_this?linkurl=" + postUrl + "&linkname=" + postTitle,
134
+ },
135
+ whatsapp: {
136
+ title: "Whatsapp",
137
+ locale: "en-US",
138
+ redirect_url: "whatsapp://send?text=" + postTitle + " " + postUrl,
139
+ },
140
+ diigo: {
141
+ title: "Diigo",
142
+ locale: "en-US",
143
+ redirect_url: "http://www.diigo.com/post?url=" + postUrl + "&title=" + postTitle,
144
+ },
145
+ yc_hacker_news: {
146
+ title: "Hacker News",
147
+ locale: "en-US",
148
+ redirect_url: "http://news.ycombinator.com/submitlink?u=" + postUrl + "&t=" + postTitle,
149
+ },
150
+ box_net: {
151
+ title: "Box.net",
152
+ locale: "en-US",
153
+ redirect_url: "https://www.box.net/api/1.0/import?url=" + postUrl + "&name=" + postTitle + "&import_as=link",
154
+ },
155
+ aol_mail: {
156
+ title: "AOL Mail",
157
+ locale: "en-US",
158
+ redirect_url: "http://webmail.aol.com/25045/aol/en-us/Mail/compose-message.aspx?subject=" + postTitle + "&body=" + postUrl,
159
+ },
160
+ yahoo_mail: {
161
+ title: "Yahoo Mail",
162
+ locale: "en-US",
163
+ redirect_url: "http://compose.mail.yahoo.com/?Subject=" + postTitle + "&body=Link: " + postUrl,
164
+ },
165
+ instapaper: {
166
+ title: "Instapaper",
167
+ locale: "en-US",
168
+ redirect_url: "http://www.instapaper.com/edit?url=" + postUrl + "&title=" + postTitle,
169
+ },
170
+ plurk: {
171
+ title: "Plurk",
172
+ locale: "en-US",
173
+ redirect_url: "http://www.plurk.com/m?content=" + postUrl + "&qualifier=shares",
174
+ },
175
+ wanelo: {
176
+ title: "Wanelo",
177
+ locale: "en-US",
178
+ redirect_url: "http://wanelo.com/p/post?bookmarklet=&images%5B%5D=&url=" + postUrl + "&title=" + postTitle + "&price=&shop=",
179
+ bookmarklet_url: "javascript:void ((function(url){if(!window.waneloBookmarklet){var productURL=encodeURIComponent(url),cacheBuster=Math.floor(Math.random()*1e3),element=document.createElement('script');element.setAttribute('src','//wanelo.com/bookmarklet/3/setup?*='+cacheBuster+'&url='+productURL),element.onload=init,element.setAttribute('type','text/javascript'),document.getElementsByTagName('head')[0].appendChild(element)}else init();function init(){window.waneloBookmarklet()}})(window.location.href))"
180
+ },
181
+ aim: {
182
+ title: "AIM",
183
+ locale: "en-US",
184
+ redirect_url: "http://share.aim.com/share/?url=" + postUrl + "&title=" + postTitle,
185
+ },
186
+ stumpedia: {
187
+ title: "Stumpedia",
188
+ locale: "en-US",
189
+ redirect_url: "http://www.stumpedia.com/submit?url=" + postUrl + "&title=" + postTitle,
190
+ },
191
+ viadeo: {
192
+ title: "Viadeo",
193
+ locale: "en-US",
194
+ redirect_url: "http://www.viadeo.com/shareit/share/?url=" + postUrl + "&title=" + postTitle,
195
+ },
196
+ yahoo_messenger: {
197
+ title: "Yahoo Messenger",
198
+ locale: "en-US",
199
+ redirect_url: "ymsgr:sendim?m=" + postUrl,
200
+ },
201
+ pinboard_in: {
202
+ title: "Pinboard",
203
+ locale: "en-US",
204
+ redirect_url: "http://pinboard.in/add?url=" + postUrl + "&title=" + postTitle,
205
+ },
206
+ blogger_post: {
207
+ title: "Blogger Post",
208
+ locale: "en-US",
209
+ redirect_url: "http://www.blogger.com/blog_this.pyra?t=&u=" + postUrl + "&l&n=" + postTitle,
210
+ },
211
+ typepad_post: {
212
+ title: "TypePad Post",
213
+ locale: "en-US",
214
+ redirect_url: "http://www.typepad.com/services/quickpost/post?v=2&qp_show=ac&qp_title=" + postTitle + "&qp_href=" + postUrl + "&qp_text=" + postTitle,
215
+ },
216
+ buffer: {
217
+ title: "Buffer",
218
+ locale: "en-US",
219
+ redirect_url: "http://bufferapp.com/add?url=" + postUrl + "&text=" + postTitle,
220
+ },
221
+ flipboard: {
222
+ title: "Flipboard",
223
+ locale: "en-US",
224
+ redirect_url: "https://share.flipboard.com/flipit/load?v=1.0&url=" + postUrl + "&title=" + postTitle,
225
+ },
226
+ mail: {
227
+ title: "Email",
228
+ locale: "en-US",
229
+ redirect_url: "mailto:?subject=" + postTitle + "&body=Link: " + postUrl,
230
+ },
231
+ pocket: {
232
+ title: "Pocket",
233
+ locale: "en-US",
234
+ redirect_url: "https://readitlaterlist.com/save?url=" + postUrl + "&title=" + postTitle,
235
+ },
236
+ fark: {
237
+ title: "Fark",
238
+ locale: "en-US",
239
+ redirect_url: "http://cgi.fark.com/cgi/fark/submit.pl?new_url=" + postUrl,
240
+ },
241
+ yummly: {
242
+ title: "Yummly",
243
+ locale: "en-US",
244
+ redirect_url: "http://www.yummly.com/urb/verify?url=" + postUrl + "&title=" + postTitle,
245
+ },
246
+ app_net: {
247
+ title: "App.net",
248
+ locale: "en-US",
249
+ redirect_url: "https://account.app.net/login/",
250
+ },
251
+ baidu: {
252
+ title: "Baidu",
253
+ locale: "en-US",
254
+ redirect_url: "http://cang.baidu.com/do/add?it=" + postTitle + "&iu=" + postUrl,
255
+ },
256
+ balatarin: {
257
+ title: "Balatarin",
258
+ locale: "en-US",
259
+ redirect_url: "https://www.balatarin.com/login",
260
+ },
261
+ bibSonomy: {
262
+ title: "BibSonomy",
263
+ locale: "en-US",
264
+ redirect_url: "http://www.bibsonomy.org/login",
265
+ },
266
+ Bitty_Browser: {
267
+ title: "Bitty Browser",
268
+ locale: "en-US",
269
+ redirect_url: "http://www.bitty.com/manual/?contenttype=&contentvalue=" + postUrl,
270
+ },
271
+ Blinklist: {
272
+ title: "Blinklist",
273
+ locale: "en-US",
274
+ redirect_url: "http://blinklist.com/blink?t=" + postTitle + "&d=&u=" + postUrl,
275
+ },
276
+ BlogMarks: {
277
+ title: "BlogMarks",
278
+ locale: "en-US",
279
+ redirect_url: "http://blogmarks.net/my/new.php?mini=1&simple=1&title=" + postTitle + "&url=" + postUrl,
280
+ },
281
+ Bookmarks_fr: {
282
+ title: "Bookmarks.fr",
283
+ locale: "en-US",
284
+ redirect_url: "http://www.bookmarks.fr/Connexion/?action=add&address=" + postUrl + "&title=" + postTitle,
285
+ },
286
+ BuddyMarks: {
287
+ title: "BuddyMarks",
288
+ locale: "en-US",
289
+ redirect_url: "http://buddymarks.com/login.php?bookmark_title=" + postTitle + "&bookmark_url=" + postUrl + "&bookmark_desc=&bookmark_tags=",
290
+ },
291
+ Care2_news: {
292
+ title: "Care2 News",
293
+ locale: "en-US",
294
+ redirect_url: "http://www.care2.com/passport/login.html?promoID=10&pg=http://www.care2.com/news/compose?sharehint=news&share[share_type]news&bookmarklet=Y&share[title]=" + postTitle + "&share[link_url]=" + postUrl + "&share[content]=",
295
+ },
296
+ CiteULike: {
297
+ title: "Cite U Like",
298
+ locale: "en-US",
299
+ redirect_url: "http://www.citeulike.org/posturl?url=" + postUrl + "&title=" + postTitle,
300
+ },
301
+ Diary_Ru: {
302
+ title: "Diary.Ru",
303
+ locale: "en-US",
304
+ redirect_url: "http://www.diary.ru/?newpost&title=" + postTitle + "&text=" + postUrl,
305
+ },
306
+ diHITT: {
307
+ title: "diHITT",
308
+ locale: "en-US",
309
+ redirect_url: "http://www.dihitt.com/submit?url=" + postUrl + "&title=" + postTitle,
310
+ },
311
+ dzone: {
312
+ title: "DZone",
313
+ locale: "en-US",
314
+ redirect_url: "http://www.dzone.com/links/add.html?url=" + postUrl + "&title=" + postTitle,
315
+ },
316
+ Folkd: {
317
+ title: "Folkd",
318
+ locale: "en-US",
319
+ redirect_url: "http://www.folkd.com/page/social-bookmarking.html?addurl=" + postUrl,
320
+ },
321
+ Hatena: {
322
+ title: "Hatena",
323
+ locale: "en-US",
324
+ redirect_url: "http://b.hatena.ne.jp/bookmarklet?url=" + postUrl + "&btitle=" + postTitle,
325
+ },
326
+ Jamespot: {
327
+ title: "Jamespot",
328
+ locale: "en-US",
329
+ redirect_url: "//my.jamespot.com/",
330
+ },
331
+ Kakao: {
332
+ title: "Kakao",
333
+ locale: "en-US",
334
+ redirect_url: "https://story.kakao.com/share?url=" + postUrl,
335
+ },
336
+ Kindle_It: {
337
+ title: "Kindle_It",
338
+ locale: "en-US",
339
+ redirect_url: "//fivefilters.org/kindle-it/send.php?url=" + postUrl,
340
+ },
341
+ Known: {
342
+ title: "Known",
343
+ locale: "en-US",
344
+ redirect_url: "https://withknown.com/share/?url=" + postUrl + "&title=" + postTitle,
345
+ },
346
+ Line: {
347
+ title: "Line",
348
+ locale: "en-US",
349
+ redirect_url: "line://msg/text/" + postTitle + "! " + postUrl,
350
+ },
351
+ LiveJournal: {
352
+ title: "LiveJournal",
353
+ locale: "en-US",
354
+ redirect_url: "http://www.livejournal.com/update.bml?subject=" + postTitle + "&event=" + postUrl,
355
+ },
356
+ Mail_Ru: {
357
+ title: "Mail.Ru",
358
+ locale: "en-US",
359
+ redirect_url: "http://connect.mail.ru/share?share_url=" + postUrl,
360
+ },
361
+ Mendeley: {
362
+ title: "Mendeley",
363
+ locale: "en-US",
364
+ redirect_url: "https://www.mendeley.com/sign-in/",
365
+ },
366
+ Meneame: {
367
+ title: "Meneame",
368
+ locale: "en-US",
369
+ redirect_url: "https://www.meneame.net/submit.php?url=" + postUrl,
370
+ },
371
+ Mixi: {
372
+ title: "Mixi",
373
+ locale: "en-US",
374
+ redirect_url: "https://mixi.jp/share.pl?mode=login&u=" + postUrl,
375
+ },
376
+ MySpace: {
377
+ title: "Mixi",
378
+ locale: "en-US",
379
+ redirect_url: "https://myspace.com/",
380
+ },
381
+ Netlog: {
382
+ title: "Netlog",
383
+ locale: "en-US",
384
+ redirect_url: "http://www.netlog.com/go/manage/links/view=save&origin=external&url=" + postUrl + "&title=" + postTitle + "&description=",
385
+ },
386
+ Netvouz: {
387
+ title: "Netvouz",
388
+ locale: "en-US",
389
+ redirect_url: "http://www.netvouz.com/action/submitBookmark?url=" + postUrl + "&title=" + postTitle + "&popup=no&description=",
390
+ },
391
+ NewsVine: {
392
+ title: "NewsVine",
393
+ locale: "en-US",
394
+ redirect_url: "http://www.newsvine.com/_tools/seed?popoff=0&u=" + postUrl + "&h=" + postTitle,
395
+ },
396
+ NUjij: {
397
+ title: "NUjij",
398
+ locale: "en-US",
399
+ redirect_url: "http://www.nujij.nl/nieuw-bericht.2051051.lynkx?title=" + postTitle + "&url=" + postUrl + "&bericht=&topic=",
400
+ },
401
+ Odnoklassniki: {
402
+ title: "Odnoklassniki",
403
+ locale: "en-US",
404
+ redirect_url: "https://connect.ok.ru/dk?cmd=WidgetSharePreview&st.cmd=WidgetSharePreview&st.shareUrl=" + postUrl + "&st.client_id=-1",
405
+ },
406
+ Oknotizie: {
407
+ title: "Oknotizie",
408
+ locale: "en-US",
409
+ redirect_url: "//oknotizie.virgilio.it/post?url=" + postUrl + "&title=" + postTitle,
410
+ },
411
+ Outlook_com: {
412
+ title: "Outlook.com",
413
+ locale: "en-US",
414
+ redirect_url: "https://mail.live.com/default.aspx?rru=compose?subject=" + postTitle + "&body=" + postUrl + "&lc=1033&id=64855&mkt=en-us&cbcxt=mai",
415
+ },
416
+ Protopage_Bookmarks: {
417
+ title: "Protopage_Bookmarks",
418
+ locale: "en-US",
419
+ redirect_url: "http://www.protopage.com/add-button-site?url=" + postUrl + "&label=&type=page",
420
+ },
421
+ Pusha: {
422
+ title: "Pusha",
423
+ locale: "en-US",
424
+ redirect_url: "//www.pusha.se/posta?url=" + postUrl,
425
+ },
426
+ Qzone: {
427
+ title: "Qzone",
428
+ locale: "en-US",
429
+ redirect_url: "http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=" + postUrl,
430
+ },
431
+ Rediff_MyPage: {
432
+ title: "Rediff MyPage",
433
+ locale: "en-US",
434
+ redirect_url: "//share.rediff.com/bookmark/addbookmark?bookmarkurl=" + postUrl + "&title=" + postTitle,
435
+ },
436
+ Renren: {
437
+ title: "Renren",
438
+ locale: "en-US",
439
+ redirect_url: "//www.connect.renren.com/share/sharer?url=" + postUrl + "&title=" + postTitle,
440
+ },
441
+ Segnalo: {
442
+ title: "Segnalo",
443
+ locale: "en-US",
444
+ redirect_url: "http://segnalo.virgilio.it/post.html.php?url=" + postUrl + "&title=" + postTitle,
445
+ },
446
+ Sina_Weibo: {
447
+ title: "Sina Weibo",
448
+ locale: "en-US",
449
+ redirect_url: "//service.weibo.com/share/share.php?url=" + postUrl + "&title=" + postTitle,
450
+ },
451
+ SiteJot: {
452
+ title: "SiteJot",
453
+ locale: "en-US",
454
+ redirect_url: "http://www.sitejot.com/loginform.php?iSiteAdd=&iSiteDes=",
455
+ },
456
+ Slashdot: {
457
+ title: "Slashdot",
458
+ locale: "en-US",
459
+ redirect_url: "//slashdot.org/submission?url=" + postUrl,
460
+ },
461
+ Svejo: {
462
+ title: "Svejo",
463
+ locale: "en-US",
464
+ redirect_url: "https://svejo.net/story/submit_by_url?url=" + postUrl + "&title=" + postTitle + "&summary=",
465
+ },
466
+ Symbaloo_Feeds: {
467
+ title: "Symbaloo_Feeds",
468
+ locale: "en-US",
469
+ redirect_url: "//www.symbaloo.com/",
470
+ },
471
+ Tuenti: {
472
+ title: "Tuenti",
473
+ locale: "en-US",
474
+ redirect_url: "https://www.tuenti.com/share?p=b5dd6602&url=" + postUrl,
475
+ },
476
+ Twiddla: {
477
+ title: "Twiddla",
478
+ locale: "en-US",
479
+ redirect_url: "//www.twiddla.com/New.aspx?url=" + postUrl + "&title=" + postTitle,
480
+ },
481
+ Webnews: {
482
+ title: "Webnews",
483
+ locale: "en-US",
484
+ redirect_url: "//www.webnews.de/login",
485
+ },
486
+ Wykop: {
487
+ title: "Wykop",
488
+ locale: "en-US",
489
+ redirect_url: "//www.wykop.pl/dodaj?url=" + postUrl + "&title=" + postTitle,
490
+ },
491
+ Yoolink: {
492
+ title: "Yoolink",
493
+ locale: "en-US",
494
+ redirect_url: "//yoolink.to/addorshare?url_value=" + postUrl + "&title=" + postTitle,
495
+ },
496
+ YouMob: {
497
+ title: "YouMob",
498
+ locale: "en-US",
499
+ redirect_url: "//youmob.com/startmob.aspx?cookietest=true&mob=" + postUrl,
500
+ }
501
+ }
502
+ var theChampMoreSharingServicesHtml = '<button id="the_champ_sharing_popup_close" class="close-button separated"><img src="'+ theChampCloseIconPath +'" /></button><div id="the_champ_sharing_more_content"><div class="filter"><input type="text" onkeyup="theChampFilterSharing(this.value.trim())" placeholder="Search" class="search"></div><div class="all-services"><ul class="mini">';
503
+ for(var i in theChampMoreSharingServices){
504
+ var tempTitle = theChampCapitaliseFirstLetter(theChampMoreSharingServices[i].title.replace(/[_. ]/g, ""));
505
+ theChampMoreSharingServicesHtml += '<li><a rel="nofollow" title="'+ theChampMoreSharingServices[i].title +'" alt="'+ theChampMoreSharingServices[i].title +'" ';
506
+ if(theChampMoreSharingServices[i].bookmarklet_url){
507
+ theChampMoreSharingServicesHtml += 'href="' + theChampMoreSharingServices[i].bookmarklet_url + '" ';
508
+ }else{
509
+ theChampMoreSharingServicesHtml += 'onclick="theChampPopup(\'' + theChampMoreSharingServices[i].redirect_url + '\')" href="javascript:void(0)" ';
510
+ }
511
+ theChampMoreSharingServicesHtml += '"><i style="width:22px;height:22px" title="'+ theChampMoreSharingServices[i].title +'" class="theChampSharing theChamp' + tempTitle + 'Background"><ss style="display:block;width:100%;height:100%;" class="theChampSharingSvg theChamp' + tempTitle + 'Svg"></ss></i>' + theChampMoreSharingServices[i].title + '</a></li>';
512
+ }
513
+ theChampMoreSharingServicesHtml += concate;
514
+
515
+ var mainDiv = document.createElement('div');
516
+ mainDiv.innerHTML = theChampMoreSharingServicesHtml;
517
+ mainDiv.setAttribute('id', 'the_champ_sharing_more_providers');
518
+ var bgDiv = document.createElement('div');
519
+ bgDiv.setAttribute('id', 'the_champ_popup_bg');
520
+ jQuery('body').append(mainDiv).append(bgDiv);
521
+ document.getElementById('the_champ_sharing_popup_close').onclick = function(){
522
+ mainDiv.parentNode.removeChild(mainDiv);
523
+ bgDiv.parentNode.removeChild(bgDiv);
524
+ }
525
+ }
526
+
527
+ if(theChampHorizontalSharingCountEnable || theChampVerticalSharingCountEnable){
528
+ // get sharing counts on window load
529
+ theChampLoadEvent(
530
+ function(){
531
+ // sharing counts
532
+ theChampCallAjax(function(){
533
+ theChampGetSharingCounts(theChampHorizontalSharingCountEnable, theChampVerticalSharingCountEnable);
534
+ });
535
+ }
536
+ );
537
+ }
538
+
539
+ /**
540
+ * Search sharing services
541
+ */
542
+ function theChampFilterSharing(val) {
543
+ jQuery('ul.mini li a').each(function(){
544
+ if (jQuery(this).text().toLowerCase().indexOf(val.toLowerCase()) != -1) {
545
+ jQuery(this).parent().css('display', 'block');
546
+ } else {
547
+ jQuery(this).parent().css('display', 'none');
548
+ }
549
+ });
550
+ };
551
+
552
+ /**
553
+ * Get sharing counts
554
+ */
555
+ function theChampGetSharingCounts(horizontalCounts, verticalCounts){
556
+ var targetUrls = [];
557
+ jQuery('.the_champ_sharing_container').each(function(){
558
+ targetUrls.push(jQuery(this).attr('super-socializer-data-href'));
559
+ });
560
+ if(targetUrls.length == 0){
561
+ return;
562
+ }
563
+ jQuery.ajax({
564
+ type: 'GET',
565
+ dataType: 'json',
566
+ url: theChampSharingAjaxUrl,
567
+ data: {
568
+ action: 'the_champ_sharing_count',
569
+ urls: targetUrls,
570
+ },
571
+ success: function(data, textStatus, XMLHttpRequest){
572
+ if(data.status == 1){
573
+ for(var i in data.message){
574
+ var totalCount = 0, sharingContainer;
575
+
576
+ if(!(verticalCounts) && !(horizontalCounts)){
577
+ sharingContainer = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_vertical_sharing, .the_champ_horizontal_sharing)");
578
+ } else if (!(horizontalCounts)){
579
+ sharingContainer = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_horizontal_sharing)");
580
+ } else if (!(verticalCounts)){
581
+ sharingContainer = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_vertical_sharing)");
582
+ } else {
583
+ sharingContainer = jQuery("div[super-socializer-data-href='"+i+"']");
584
+ }
585
+
586
+ for(var j in data.message[i]){
587
+ if(j == 'google'){
588
+ var sharingCount = data.message[i][j].match( /"(.*?)"/ )[1];
589
+ sharingCount = parseInt(sharingCount) || 0;
590
+ }else if(j == 'vkontakte'){
591
+ var sharingCount = parseInt(data.message[i][j].replace('VK.Share.count(0, ', '').replace(');', ''));
592
+ }else{
593
+ var sharingCount = data.message[i][j];
594
+ }
595
+
596
+ var targetElement = jQuery(sharingContainer).find('.the_champ_'+j+'_count');
597
+
598
+ if(jQuery(targetElement).attr('ss_st_count')){
599
+ sharingCount = parseInt(sharingCount) + parseInt(jQuery(targetElement).attr('ss_st_count'));
600
+ }
601
+ totalCount += parseInt(sharingCount);
602
+ if(sharingCount < 1){ continue; }
603
+ var countNWidth = theChampCalculateCountWidth(sharingCount) . split(',');
604
+
605
+ if(!jQuery(targetElement).hasClass('the_champ_square_count')){
606
+ jQuery(targetElement).css('width', countNWidth[1]);
607
+ }else{
608
+ var parent = jQuery(targetElement).parents('.the_champ_vertical_sharing');
609
+ if(jQuery(parent).hasClass('the_champ_bottom_sharing')){
610
+ var parentWidth = parseInt(jQuery(targetElement).parent().css('width')) * 30/100;
611
+ }else{
612
+ var parentWidth = parseInt(jQuery(parent).css('width')) * 24/100;
613
+ }
614
+ jQuery(targetElement).css('fontSize', (parentWidth) + 'px');
615
+ }
616
+ jQuery(targetElement).html(countNWidth[0]).css({'visibility': 'visible', 'display': 'block'});
617
+ }
618
+ var totalCountNWidth = theChampCalculateCountWidth(totalCount) . split(',');
619
+ var totalCountContainer = jQuery(sharingContainer).find('.theChampTCBackground');
620
+ jQuery(totalCountContainer).each(function(){
621
+ var containerWidth = jQuery(this).css('width');
622
+ jQuery(this).html('<div class="theChampTotalShareCount" style="font-size: '+ (parseInt(containerWidth) * 62/100) +'px">' + totalCountNWidth[0] + '</div><div class="theChampTotalShareText" style="font-size: '+ (parseInt(containerWidth) * 38/100) +'px">Share' + (totalCount > 1 ? 's' : '' ) + '</div>');
623
+ });
624
+ }
625
+ }
626
+ }
627
+ });
628
+ }
629
+
630
+ function theChampCalculateCountWidth(sharingCount){
631
+ var width = '12px';
632
+ if(sharingCount > 9 && sharingCount < 100){
633
+ width = '12px';
634
+ }else if(sharingCount > 99 && sharingCount < 1000){
635
+ width = '20px';
636
+ }else if(sharingCount > 999 && sharingCount < 10000){
637
+ sharingCount = Math.floor(sharingCount/1000) + 'K+';
638
+ width = '20px';
639
+ }else if(sharingCount > 9999 && sharingCount < 100000){
640
+ sharingCount = Math.floor(sharingCount/1000) + 'K+';
641
+ width = '30px';
642
+ }else if(sharingCount > 99999 && sharingCount < 1000000){
643
+ sharingCount = Math.floor(sharingCount/1000) + 'K+';
644
+ width = '42px';
645
+ }else if(sharingCount > 999999){
646
+ sharingCount = Math.floor(sharingCount/1000000) + 'M+';
647
+ width = '30px';
648
+ }
649
+ return sharingCount + "," + width;
650
+ }
651
+
652
+ function theChampCapitaliseFirstLetter(e) {
653
+ return e.charAt(0).toUpperCase() + e.slice(1)
654
+ }
655
+
656
+ jQuery(function(){
657
+ var classes = ['the_champ_vertical_sharing', 'the_champ_vertical_counter'];
658
+ for(var i = 0; i < classes.length; i++){
659
+ if(jQuery('.' + classes[i]).length){
660
+ jQuery('.' + classes[i]).each(function(){
661
+ var verticalSharingHtml = jQuery(this).html();
662
+ if(jQuery(this).attr('style').indexOf('right') >= 0){
663
+ var removeClass = 'theChampPushIn', margin = 'Right', alignment = 'right', addClass = 'theChampPullOut';
664
+ }else{
665
+ var removeClass = 'theChampPullOut', margin = 'Left', alignment = 'left', addClass = 'theChampPushIn';
666
+ }
667
+ jQuery(this).html(verticalSharingHtml + '<div title="Hide" style="float:' + alignment + '" onclick="theChampHideSharing(this, \''+ removeClass +'\', \''+ addClass +'\',\'' + margin +'\', \'' + alignment + '\')" class="theChampSharingArrow ' + removeClass + '"></div>');
668
+ });
669
+ }
670
+ }
671
+ });
672
+
673
+ function theChampHideSharing(elem, removeClass, addClass, margin, alignment){
674
+ var animation = {}, counter = jQuery(elem).parent().hasClass('the_champ_vertical_counter'), offset = parseInt(jQuery(elem).parent().css('width')) + 10 - (counter ? 16 : 0);
675
+ var ssOffset = jQuery(elem).parent().attr('ss-offset');
676
+ if(ssOffset){
677
+ var savedOffset = parseInt(ssOffset);
678
+ }else{
679
+ var savedOffset = (counter ? theChampCounterOffset : theChampSharingOffset);
680
+ }
681
+ if(jQuery(elem).attr('title') == 'Hide'){
682
+ animation[alignment] = "-=" + (offset + savedOffset);
683
+ jQuery(elem).parent().animate(animation, 400, function(){
684
+ jQuery(elem).removeClass(removeClass).addClass(addClass).attr('title', 'Share');
685
+ if(counter){
686
+ var cssFloat = alignment == 'left' ? 'right' : 'left';
687
+ jQuery(elem).css('float', cssFloat);
688
+ }else{
689
+ jQuery(elem).css('margin' + margin, offset + 'px')
690
+ }
691
+ });
692
+ }else{
693
+ animation[alignment] = "+=" + (offset + savedOffset);
694
+ jQuery(elem).parent().animate(animation, 400, function(){
695
+ jQuery(elem).removeClass(addClass).addClass(removeClass).attr('title', 'Hide');
696
+ if(counter){
697
+ jQuery(elem).css('float', alignment);
698
+ }else{
699
+ jQuery(elem).css('margin' + margin, '0px');
700
+ }
701
+ });
702
+ }
703
+ }
js/front/sharing/sharing.js CHANGED
@@ -6,496 +6,490 @@ function theChampMoreSharingPopup(elem, postUrl, postTitle){
6
  var theChampMoreSharingServices = {
7
  facebook: {
8
  title: "Facebook",
9
- class: "facebook",
10
  locale: "en-US",
11
  redirect_url: "http://www.facebook.com/sharer.php?u=" + postUrl + "&t=" + postTitle + "&v=3",
12
  },
13
  twitter: {
14
  title: "Twitter",
15
- class: "twitter",
16
  locale: "en-US",
17
  redirect_url: "http://twitter.com/intent/tweet?text=" + postTitle + " " + postUrl,
18
  },
19
  google: {
20
- title: "Google+",
21
- class: "google",
22
  locale: "en-US",
23
  redirect_url: "https://plus.google.com/share?url=" + postUrl,
24
  },
25
  linkedin: {
26
- title: "LinkedIn",
27
- class: "linkedin",
28
  locale: "en-US",
29
  redirect_url: "http://www.linkedin.com/shareArticle?mini=true&url=" + postUrl + "&title=" + postTitle,
30
  },
31
  pinterest: {
32
  title: "Pinterest",
33
- class: "pinterest",
34
  locale: "en-US",
35
  redirect_url: "https://pinterest.com/pin/create/button/?url=" + postUrl + "&media=${media_link}&description=" + postTitle,
36
  bookmarklet_url: "javascript:void((function(){var e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','//assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)})());"
37
  },
38
  yahoo_bookmarks: {
39
- title: "Yahoo Bookmarks",
40
- class: "yahoo",
41
  locale: "en-US",
42
  redirect_url: "http://bookmarks.yahoo.com/toolbar/savebm?u=" + postUrl + "&t=" + postTitle,
43
  },
44
  email: {
45
- title: "Email This",
46
- class: "email",
47
  locale: "en-US",
48
  redirect_url: "mailto:?subject=" + postTitle + "&body=Link: " + postUrl,
49
  },
50
  delicious: {
51
  title: "Delicious",
52
- class: "delicious",
53
  locale: "en-US",
54
  redirect_url: "http://delicious.com/save?url=" + postUrl + "&title=" + postTitle,
55
  },
56
  reddit: {
57
  title: "Reddit",
58
- class: "reddit",
59
  locale: "en-US",
60
  redirect_url: "http://reddit.com/submit?url=" + postUrl + "&title=" + postTitle,
61
  },
 
 
 
 
 
62
  google_mail: {
63
- title: "Google Mail",
64
- class: "google_mail",
65
  locale: "en-US",
66
  redirect_url: "https://mail.google.com/mail/?ui=2&view=cm&fs=1&tf=1&su=" + postTitle + "&body=Link: " + postUrl,
67
  },
68
  google_bookmarks: {
69
  title: "Google Bookmarks",
70
- class: "google_bookmark",
71
  locale: "en-US",
72
  redirect_url: "http://www.google.com/bookmarks/mark?op=edit&bkmk=" + postUrl + "&title=" + postTitle,
73
  },
74
  digg: {
75
  title: "Digg",
76
- class: "digg",
77
  locale: "en-US",
78
  redirect_url: "http://digg.com/submit?phase=2&url=" + postUrl + "&title=" + postTitle,
79
  },
80
  stumbleupon: {
81
- title: "StumbleUpon",
82
- class: "stumbleupon",
83
  locale: "en-US",
84
  redirect_url: "http://www.stumbleupon.com/submit?url=" + postUrl + "&title=" + postTitle,
85
  },
86
- windows_live_favorites: {
87
- title: "Windows Live Favorites",
88
- class: "windows_live",
89
- locale: "en-US",
90
- redirect_url: "https://skydrive.live.com/sharefavorite.aspx/.SharedFavorites?url=" + postUrl + "&title=" + postTitle,
91
- },
92
  printfriendly: {
93
  title: "PrintFriendly",
94
- class: "print_friendly",
 
 
 
 
95
  locale: "en-US",
96
  redirect_url: "http://www.printfriendly.com/print?url=" + postUrl,
97
  },
98
  tumblr: {
99
  title: "Tumblr",
100
- class: "tumblr",
101
  locale: "en-US",
102
  redirect_url: "http://www.tumblr.com/share?v=3&u=" + postUrl + "&t=" + postTitle,
103
  bookmarklet_url: "javascript:var d=document,w=window,e=w.getSelection,k=d.getSelection,x=d.selection,s=(e?e():(k)?k():(x?x.createRange().text:0)),f='http://www.tumblr.com/share',l=d.location,e=encodeURIComponent,p='?v=3&u='+e(l.href) +'&t='+e(d.title) +'&s='+e(s),u=f+p;try{if(!/^(.*\\.)?tumblr[^.]*$/.test(l.host))throw(0);tstbklt();}catch(z){a =function(){if(!w.open(u,'t','toolbar=0,resizable=0,status=1,width=450,height=430'))l.href=u;};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else a();}void(0);"
104
  },
105
  vk: {
106
  title: "Vkontakte",
107
- class: "vkontakte",
108
  locale: "ru",
109
  redirect_url: "https://vk.com/share.php?url=" + postUrl + "&title=" + postTitle,
110
  },
111
  evernote: {
112
  title: "Evernote",
113
- class: "evernote",
114
  locale: "en-US",
115
  redirect_url: "https://www.evernote.com/clip.action?url=" + postUrl + "&title=" + postTitle,
116
  bookmarklet_url: "javascript:(function(){EN_CLIP_HOST='http://www.evernote.com';try{var x=document.createElement('SCRIPT');x.type='text/javascript';x.src=EN_CLIP_HOST+'/public/bookmarkClipper.js?'+(new Date().getTime()/100000);document.getElementsByTagName('head')[0].appendChild(x);}catch(e){location.href=EN_CLIP_HOST+'/clip.action?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title);}})();"
117
  },
118
  amazon_us_wish_list: {
119
- title: "Amazon (US) Wish List",
120
- class: "amazon",
121
  locale: "en-US",
122
  redirect_url: "http://www.amazon.com/wishlist/add?u=" + postUrl + "&t=" + postTitle,
123
  bookmarklet_url: "javascript:(function(){var w=window,l=w.location,d=w.document,s=d.createElement('script'),e=encodeURIComponent,x='undefined',u='http://www.amazon.com/gp/wishlist/add';if(typeof s!='object')l.href=u+'?u='+e(l)+'&t='+e(d.title);function g(){if(d.readyState&&d.readyState!='complete'){setTimeout(g,200);}else{if(typeof AUWLBook==x)s.setAttribute('src',u+'.js?loc='+e(l)),d.body.appendChild(s);function f(){(typeof AUWLBook==x)?setTimeout(f,200):AUWLBook.showPopover();}f();}}g();}())"
124
  },
125
- bebo: {
126
- title: "Bebo",
127
- class: "bebo",
128
- locale: "en-US",
129
- redirect_url: "http://www.bebo.com/c/share?Url=" + postUrl + "&Title=" + postTitle + "&TUUID=49057325-25e8-4241-b062-87f2b1693e3d&MID=8594136688",
130
- },
131
- google_apps_mail: {
132
- title: "Google Apps Mail",
133
- class: "google_apps",
134
- locale: "en-US",
135
- redirect_url: "https://mail.google.com/mail/?ui=2&view=cm&fs=1&tf=1&su=" + postTitle + "&body=Link: " + postUrl,
136
- },
137
- amazon_uk_wish_list: {
138
- title: "Amazon (UK) Wish List",
139
- class: "amazon",
140
- locale: "en-US",
141
- redirect_url: "http://www.amazon.co.uk/wishlist/add?u=" + postUrl + "&t=" + postTitle,
142
- bookmarklet_url: "javascript:(function(){var w=window,l=w.location,d=w.document,s=d.createElement('script'),e=encodeURIComponent,o='object',n='AUWLBookenGB',u='http://www.amazon.co.uk/wishlist/add',r='readyState',T=setTimeout,a='setAttribute',g=function(){d[r]&&d[r]!='complete'?T(g,200):!w[n]?(s[a]('charset','UTF-8'),s[a]('src',u+'.js?loc='+e(l)+'&b='+n),d.body.appendChild(s),f()):f()},f=function(){!w[n]?T(f,200):w[n].showPopover()};typeof s!=o?l.href=u+'?u='+e(l)+'&t='+e(d.title):g()}())"
143
- },
144
- amazon_ca_wish_list: {
145
- title: "Amazon (CA) Wish List",
146
- class: "amazon",
147
- locale: "en-US",
148
- redirect_url: "http://www.amazon.ca/wishlist/add?u=" + postUrl + "&t=" + postTitle,
149
- bookmarklet_url: "javascript:(function(){var w=window,l=w.location,d=w.document,s=d.createElement('script'),e=encodeURIComponent,x='undefined',u='http://www.amazon.ca/gp/wishlist/add';if(typeof s!='object')l.href=u+'?u='+e(l)+'&t='+e(d.title);function g(){if(d.readyState&&d.readyState!='complete'){setTimeout(g,200);}else{if(typeof AUWLBook==x)s.setAttribute('src',u+'.js?loc='+e(l)),d.body.appendChild(s);function f(){(typeof AUWLBook==x)?setTimeout(f,200):AUWLBook.showPopover();}f();}}g();}())"
150
- },
151
- amazon_de_wish_list: {
152
- title: "Amazon (DE) Wish List",
153
- class: "amazon",
154
- locale: "de",
155
- redirect_url: "http://www.amazon.de/wishlist/add?u=" + postUrl + "&t=" + postTitle,
156
- bookmarklet_url: "javascript:(function(){var w=window,l=w.location,d=w.document,s=d.createElement('script'),e=encodeURIComponent,o='object',n='AUWLBookenGB',u='http://www.amazon.de/wishlist/add',r='readyState',T=setTimeout,a='setAttribute',g=function(){d[r]&&d[r]!='complete'?T(g,200):!w[n]?(s[a]('charset','UTF-8'),s[a]('src',u+'.js?loc='+e(l)+'&b='+n),d.body.appendChild(s),f()):f()},f=function(){!w[n]?T(f,200):w[n].showPopover()};typeof s!=o?l.href=u+'?u='+e(l)+'&t='+e(d.title):g()}())"
157
- },
158
- amazon_fr_wish_list: {
159
- title: "Amazon (FR) Wish List",
160
- class: "amazon",
161
- locale: "fr",
162
- redirect_url: "http://www.amazon.fr/wishlist/add?u=" + postUrl + "&t=" + postTitle,
163
- bookmarklet_url: "javascript:(function(){var w=window,l=w.location,d=w.document,s=d.createElement('script'),e=encodeURIComponent,o='object',n='AUWLBookfrFR',u='http://www.amazon.fr/wishlist/add',r='readyState',T=setTimeout,a='setAttribute',g=function(){d[r]&&d[r]!='complete'?T(g,200):!w[n]?(s[a]('charset','UTF-8'),s[a]('src',u+'.js?loc='+e(l)+'&b='+n),d.body.appendChild(s),f()):f()},f=function(){!w[n]?T(f,200):w[n].showPopover()};typeof s!=o?l.href=u+'?u='+e(l)+'&t='+e(d.title):g()}())"
164
- },
165
- amazon_jp_wish_list: {
166
- title: "Amazon (JP) Wish List",
167
- class: "amazon",
168
- locale: "ja",
169
- redirect_url: "http://www.amazon.co.jp/wishlist/add?u=" + postUrl + "&t=" + postTitle,
170
- bookmarklet_url: "javascript:(function(){var w=window,l=w.location,d=w.document,s=d.createElement('script'),e=encodeURIComponent,o='object',n='AUWLBookfrFR',u='http://www.amazon.co.jp/wishlist/add',r='readyState',T=setTimeout,a='setAttribute',g=function(){d[r]&&d[r]!='complete'?T(g,200):!w[n]?(s[a]('charset','UTF-8'),s[a]('src',u+'.js?loc='+e(l)+'&b='+n),d.body.appendChild(s),f()):f()},f=function(){!w[n]?T(f,200):w[n].showPopover()};typeof s!=o?l.href=u+'?u='+e(l)+'&t='+e(d.title):g()}())"
171
- },
172
- mister_wong: {
173
- title: "Mister-Wong",
174
- class: "mister_wong",
175
- locale: "en-US",
176
- redirect_url: "http://www.mister-wong.com/index.php?action=addurl&bm_url=" + postUrl + "&bm_description=" + postTitle,
177
- },
178
- mister_wong_de: {
179
- title: "Mister-Wong DE",
180
- class: "mister_wong",
181
- locale: "de",
182
- redirect_url: "http://www.mister-wong.de/index.php?action=addurl&bm_url=" + postUrl + "&bm_description=" + postTitle,
183
- },
184
- mister_wong_es: {
185
- title: "Mister-Wong ES",
186
- class: "mister_wong",
187
- locale: "es",
188
- redirect_url: "http://www.mister-wong.es/index.php?action=addurl&bm_url=" + postUrl + "&bm_description=" + postTitle,
189
- },
190
- mister_wong_cn: {
191
- title: "Mister-Wong CN",
192
- class: "mister_wong",
193
- locale: "zh-CN",
194
- redirect_url: "http://www.mister-wong.cn/index.php?action=addurl&bm_url=" + postUrl + "&bm_description=" + postTitle,
195
- },
196
- mister_wong_fr: {
197
- title: "Mister-Wong FR",
198
- class: "mister_wong",
199
- locale: "fr",
200
- redirect_url: "http://www.mister-wong.fr/index.php?action=addurl&bm_url=" + postUrl + "&bm_description=" + postTitle,
201
- },
202
- mister_wong_ru: {
203
- title: "Mister-Wong RU",
204
- class: "mister_wong",
205
- locale: "ru",
206
- redirect_url: "http://www.mister-wong.ru/index.php?action=addurl&bm_url=" + postUrl + "&bm_description=" + postTitle,
207
- },
208
  wordpress_blog: {
209
- title: "WordPress Blog",
210
- class: "wordpress",
211
  locale: "en-US",
212
  redirect_url: "http://www.addtoany.com/ext/wordpress/press_this?linkurl=" + postUrl + "&linkname=" + postTitle,
213
  },
 
 
 
 
 
214
  diigo: {
215
  title: "Diigo",
216
- class: "diigo",
217
  locale: "en-US",
218
  redirect_url: "http://www.diigo.com/post?url=" + postUrl + "&title=" + postTitle,
219
  },
220
  yc_hacker_news: {
221
- title: "YC Hacker News",
222
- class: "yc_hacker",
223
  locale: "en-US",
224
  redirect_url: "http://news.ycombinator.com/submitlink?u=" + postUrl + "&t=" + postTitle,
225
  },
226
- techmeme: {
227
- title: "Techmeme",
228
- class: "techmeme",
229
- locale: "en-US",
230
- redirect_url: "http://twitter.com/home/?status=tip @techmeme " + postTitle,
231
- },
232
  box_net: {
233
  title: "Box.net",
234
- class: "box",
235
  locale: "en-US",
236
  redirect_url: "https://www.box.net/api/1.0/import?url=" + postUrl + "&name=" + postTitle + "&import_as=link",
237
  },
238
- yammer: {
239
- title: "Yammer",
240
- class: "yammer",
241
- locale: "en-US",
242
- redirect_url: "http://www.yammer.com/home/bookmarklet?t=" + postTitle + "&u=" + postUrl,
243
- },
244
- /*facebook_send: {
245
- title: "Facebook Send",
246
- class: "facebook",
247
- locale: "en-US",
248
- redirect_url: "https://www.facebook.com/dialog/send?app_id=&name=" + postTitle + "&link=" + postUrl,
249
- },*/
250
- hotmail: {
251
- title: "Hotmail",
252
- class: "hotmail",
253
- locale: "en-US",
254
- redirect_url: "http://mail.live.com/?rru=compose%3Fsubject%3D" + postTitle + "%26body%3D" + postUrl,
255
- },
256
  aol_mail: {
257
  title: "AOL Mail",
258
- class: "aol",
259
  locale: "en-US",
260
  redirect_url: "http://webmail.aol.com/25045/aol/en-us/Mail/compose-message.aspx?subject=" + postTitle + "&body=" + postUrl,
261
  },
262
  yahoo_mail: {
263
- title: "Yahoo! Mail",
264
- class: "yahoo",
265
  locale: "en-US",
266
  redirect_url: "http://compose.mail.yahoo.com/?Subject=" + postTitle + "&body=Link: " + postUrl,
267
  },
268
  instapaper: {
269
  title: "Instapaper",
270
- class: "instapaper",
271
  locale: "en-US",
272
  redirect_url: "http://www.instapaper.com/edit?url=" + postUrl + "&title=" + postTitle,
273
  },
274
- msdn: {
275
- title: "MSDN",
276
- class: "msdn",
277
- locale: "en-US",
278
- redirect_url: "http://social.msdn.microsoft.com/en-US/action/Create/s/E/?url=" + postUrl + "&bm=true&ttl=" + postTitle,
279
- },
280
- orkut: {
281
- title: "Orkut",
282
- class: "orkut",
283
- locale: "en-US",
284
- redirect_url: "http://promote.orkut.com/preview?nt=orkut.com&du=" + postUrl + "&tt=" + postUrl,
285
- },
286
- soup_io: {
287
- title: "Soup.io",
288
- class: "soup",
289
- locale: "en-US",
290
- redirect_url: "http://www.soup.io/bookmarklet?v=5&u=" + postUrl + "&t=" + postTitle,
291
- bookmarklet_url: "javascript:var es=['body','frameset','head'];var u='http://www.soup.io/';var fn='soup_bookmarklet_'+(Math.floor(Math.random()*100000));window.open(u+'bookmarklet-loading.html',fn,'toolbar=0,resizable=1,scrollbars=yes,status=1,width=450,height=400');try{var s=document.createElement('script');s.setAttribute('src',u+'bookmarklet/js/'+ fn +'/5');for (var i=0;i<es.length;i++) {var e=document.getElementsByTagName(es[i])[0];if(e){e.appendChild(s);break;}}}catch(e){alert('This doesnt work here.');}void(0);"
292
- },
293
  plurk: {
294
  title: "Plurk",
295
- class: "plurk",
296
  locale: "en-US",
297
  redirect_url: "http://www.plurk.com/m?content=" + postUrl + "&qualifier=shares",
298
  },
299
- arto: {
300
- title: "Arto",
301
- class: "arto",
302
- locale: "en-US",
303
- redirect_url: "http://www.arto.com/section/linkshare/?lu=" + postUrl + "&ln=" + postTitle,
304
- },
305
- hootsuite: {
306
- title: "HootSuite",
307
- class: "hootsuite",
308
- locale: "en-US",
309
- redirect_url: "http://hootsuite.com/network/hootlet?address=" + postUrl + "&title=" + postTitle,
310
- bookmarklet_url: "javascript:var d=document,w=window,f='http://hootsuite.com/twitter/bookmark-tool-v2?',l=d.location,e=encodeURIComponent,p='address='+e(l.href)+'&title='+e(d.title),u=f+p;a=function(){if(!w.open(u,'t','scrollbars=1,toolbar=0,location=0,resizable=0,status=0,width=555,height=570'))l.href=u;};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else a();void(0);"
311
- },
312
- inbound_org: {
313
- title: "Inbound.org",
314
- class: "inbound",
315
- locale: "en-US",
316
- redirect_url: "http://inbound.org/?url=" + postUrl + "&title=" + postTitle,
317
- },
318
  wanelo: {
319
  title: "Wanelo",
320
- class: "wanelo",
321
  locale: "en-US",
322
  redirect_url: "http://wanelo.com/p/post?bookmarklet=&images%5B%5D=&url=" + postUrl + "&title=" + postTitle + "&price=&shop=",
323
  bookmarklet_url: "javascript:void ((function(url){if(!window.waneloBookmarklet){var productURL=encodeURIComponent(url),cacheBuster=Math.floor(Math.random()*1e3),element=document.createElement('script');element.setAttribute('src','//wanelo.com/bookmarklet/3/setup?*='+cacheBuster+'&url='+productURL),element.onload=init,element.setAttribute('type','text/javascript'),document.getElementsByTagName('head')[0].appendChild(element)}else init();function init(){window.waneloBookmarklet()}})(window.location.href))"
324
  },
325
  aim: {
326
  title: "AIM",
327
- class: "aol",
328
  locale: "en-US",
329
  redirect_url: "http://share.aim.com/share/?url=" + postUrl + "&title=" + postTitle,
330
  },
331
- buzzster: {
332
- title: "Buzzster",
333
- class: "buzzster",
334
- locale: "en-US",
335
- redirect_url: "http://www.buzzster.com/share?v=5;link=" + postUrl + "&subject=" + postTitle,
336
- bookmarklet_url: "javascript:var s=document.createElement('script');s.src='//www.shareaholic.com/media/js/bookmarklets/buzzster.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));"
337
- },
338
  stumpedia: {
339
  title: "Stumpedia",
340
- class: "stumpedia",
341
  locale: "en-US",
342
  redirect_url: "http://www.stumpedia.com/submit?url=" + postUrl + "&title=" + postTitle,
343
  },
344
- identi_ca: {
345
- title: "Identi.ca",
346
- class: "identica",
347
- locale: "en-US",
348
- redirect_url: "http://identi.ca/notice/new?status_textarea=" + postTitle + "%20" + postUrl,
349
- },
350
  viadeo: {
351
  title: "Viadeo",
352
- class: "viadeo",
353
  locale: "en-US",
354
  redirect_url: "http://www.viadeo.com/shareit/share/?url=" + postUrl + "&title=" + postTitle,
355
  },
356
  yahoo_messenger: {
357
  title: "Yahoo Messenger",
358
- class: "yahoo",
359
  locale: "en-US",
360
  redirect_url: "ymsgr:sendim?m=" + postUrl,
361
  },
362
  pinboard_in: {
363
- title: "Pinboard.in",
364
- class: "pinboard",
365
  locale: "en-US",
366
  redirect_url: "http://pinboard.in/add?url=" + postUrl + "&title=" + postTitle,
367
  },
368
- amazon_universal_registry: {
369
- title: "Amazon Universal Registry",
370
- class: "amazon",
371
- locale: "en-US",
372
- redirect_url: "http://www.amazon.com/registry/add?u=" + postUrl + "&t=" + postTitle,
373
- bookmarklet_url: "javascript:(function(){var w=window,l=w.location,d=w.document,s=d.createElement('script'),e=encodeURIComponent,o='object',n='AUWLBook',u='http://www.amazon.com/registry/add',r='readyState',T=setTimeout,a='setAttribute',g=function(){d[r]&&d[r]!='complete'?T(g,200):!w[n]?(s[a]('charset','UTF-8'),s[a]('src',u+'.js?loc='+e(l)),d.body.appendChild(s),f()):f()},f=function(){!w[n]?T(f,200):w[n].showPopover()};typeof s!=o?l.href=u+'?u='+e(l)+'&t='+e(d.title):g()}())"
374
- },
375
- bit_ly: {
376
- title: "Bit.ly",
377
- class: "bitly",
378
- locale: "en-US",
379
- redirect_url: "http://bit.ly/?v=3&u=" + postUrl + "&s=" + postTitle,
380
- bookmarklet_url: "javascript:var e=document.createElement('script');e.setAttribute('language','javascript');e.setAttribute('src','http://bit.ly/bookmarklet/load.js');document.body.appendChild(e);void(0);"
381
- },
382
- kaboodle: {
383
- title: "Kaboodle",
384
- class: "kaboodle",
385
- locale: "en-US",
386
- redirect_url: "http://www.kaboodle.com/",
387
- bookmarklet_url: "javascript:var _mg56v='0.3';(function(){var d=document;var s;try{s=d.standardCreateElement('script');}catch(e){}if(typeof(s)!='object')s=d.createElement('script');try{s.type='text/javascript';s.src='http://www.kaboodle.com/zg/g.js';s.id='c_grab_js';d.getElementsByTagName('head')[0].appendChild(s);}catch(e){ window.location ='http://www.kaboodle.com/za/selectpage?p_pop=false&pa=url&u='+window.location;}})();"
388
- },
389
- we_heart_it: {
390
- title: "We Heart It",
391
- class: "heart",
392
- locale: "en-US",
393
- redirect_url: "",
394
- bookmarklet_url: "javascript:void((function(){var e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','https://weheartit.com/bookmarklet.js');document.body.appendChild(e)})());"
395
- },
396
  blogger_post: {
397
  title: "Blogger Post",
398
- class: "blogger",
399
  locale: "en-US",
400
  redirect_url: "http://www.blogger.com/blog_this.pyra?t=&u=" + postUrl + "&l&n=" + postTitle,
401
  },
402
  typepad_post: {
403
  title: "TypePad Post",
404
- class: "typepad",
405
  locale: "en-US",
406
  redirect_url: "http://www.typepad.com/services/quickpost/post?v=2&qp_show=ac&qp_title=" + postTitle + "&qp_href=" + postUrl + "&qp_text=" + postTitle,
407
  },
408
- tinyurl: {
409
- title: "TinyURL",
410
- class: "tinyurl",
411
- locale: "en-US",
412
- redirect_url: "http://tinyurl.com/create.php?url=" + postUrl,
413
- },
414
- boxee: {
415
- title: "Boxee",
416
- class: "boxee",
417
- locale: "en-US",
418
- redirect_url: "http://boxee.tv/",
419
- bookmarklet_url: "javascript:var b=document.body;if(b&&!document.xmlVersion){void(z=document.createElement('script'));void(z.src='http://www.boxee.tv/bookmarklet');void(b.appendChild(z));}else{}"
420
- },
421
  buffer: {
422
  title: "Buffer",
423
- class: "buffer",
424
  locale: "en-US",
425
  redirect_url: "http://bufferapp.com/add?url=" + postUrl + "&text=" + postTitle,
426
  },
427
  flipboard: {
428
  title: "Flipboard",
429
- class: "flipboard",
430
  locale: "en-US",
431
  redirect_url: "https://share.flipboard.com/flipit/load?v=1.0&url=" + postUrl + "&title=" + postTitle,
432
  },
433
  mail: {
434
- title: "Mail",
435
- class: "email",
436
  locale: "en-US",
437
  redirect_url: "mailto:?subject=" + postTitle + "&body=Link: " + postUrl,
438
  },
439
- springpad: {
440
- title: "SpringPad",
441
- class: "springpad",
442
  locale: "en-US",
443
- redirect_url: "http://springpadit.com/s?type=lifemanagr.Bookmark&url=" + postUrl + "&name=" + postTitle,
444
- bookmarklet_url: "javascript:(function(){SP_HOST='http://springpadit.com';try{var x=document.createElement('SCRIPT');x.type='text/javascript';x.src=SP_HOST+'/public/clipper_inline.js?'+(new Date().getTime()/100000);document.getElementsByTagName('head')[0].appendChild(x);}catch(e){location.href=SP_HOST+'/clip.action?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title);}})();"
445
  },
446
- ning: {
447
- title: "Ning",
448
- class: "ning",
449
  locale: "en-US",
450
- redirect_url: "http://bookmarks.ning.com/addItem.php?url=" + postUrl + "&T=" + postTitle,
451
  },
452
- izeby: {
453
- title: "iZeby",
454
- class: "izeby",
455
  locale: "en-US",
456
- redirect_url: "http://izeby.com/submit.php?url=" + postUrl,
457
  },
458
- /*wykop: {
459
- title: "Wykop",
460
- class: "wykop",
461
- locale: "pl",
462
- redirect_url: "http://www.wykop.pl/dodaj?url=" + postUrl + "&title=" + postTitle,
463
  },
464
- twitthat: {
465
- title: "TwitThat",
466
- class: "twitthat",
467
  locale: "en-US",
468
- redirect_url: "http://twitthat.com/go?url=" + postUrl + "&title=" + postTitle,
469
- },*/
470
- pocket: {
471
- title: "Pocket",
472
- class: "pocket",
473
  locale: "en-US",
474
- redirect_url: "https://readitlaterlist.com/save?url=" + postUrl + "&title=" + postTitle,
475
  },
476
- diigolet: {
477
- title: "Diigolet",
478
- class: "diigolet",
479
  locale: "en-US",
480
- redirect_url: "http://www.diigo.com/",
481
- bookmarklet_url: "javascript:(function(){s=document.createElement('script');s.type='text/javascript';s.src='http://www.diigo.com/javascripts/webtoolbar/diigolet_b_h_b.js';document.body.appendChild(s);})();"
482
  },
483
- fark: {
484
- title: "Fark",
485
- class: "fark",
486
  locale: "en-US",
487
- redirect_url: "http://cgi.fark.com/cgi/fark/submit.pl?new_url=" + postUrl,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
488
  }
489
  }
490
- var theChampMoreSharingServicesHtml = '<h3 class="title ui-drag-handle">Choose a Sharing Service</h3><button id="the_champ_sharing_popup_close" class="close-button separated"><img src="'+ theChampCloseIconPath +'" /></button><div id="the_champ_sharing_more_content"><div class="filter"><input type="text" onkeyup="theChampFilterSharing(this.value.trim())" placeholder="Search" class="search"></div><div class="all-services"><ul class="mini">';
491
  for(var i in theChampMoreSharingServices){
492
- theChampMoreSharingServicesHtml += '<li><a ';
 
493
  if(theChampMoreSharingServices[i].bookmarklet_url){
494
  theChampMoreSharingServicesHtml += 'href="' + theChampMoreSharingServices[i].bookmarklet_url + '" ';
495
  }else{
496
  theChampMoreSharingServicesHtml += 'onclick="theChampPopup(\'' + theChampMoreSharingServices[i].redirect_url + '\')" href="javascript:void(0)" ';
497
  }
498
- theChampMoreSharingServicesHtml += '"><i title="'+ theChampMoreSharingServices[i].title +'" class="the_champ_sharing_service the_champ_sharing_service_' + theChampMoreSharingServices[i].class.toLowerCase().replace('_', '-') + '"></i>' + theChampMoreSharingServices[i].title + '</a></li>';
499
  }
500
  theChampMoreSharingServicesHtml += concate;
501
 
@@ -504,8 +498,7 @@ function theChampMoreSharingPopup(elem, postUrl, postTitle){
504
  mainDiv.setAttribute('id', 'the_champ_sharing_more_providers');
505
  var bgDiv = document.createElement('div');
506
  bgDiv.setAttribute('id', 'the_champ_popup_bg');
507
- elem.parentNode.insertBefore(mainDiv, elem);
508
- elem.parentNode.insertBefore(bgDiv, elem);
509
  document.getElementById('the_champ_sharing_popup_close').onclick = function(){
510
  mainDiv.parentNode.removeChild(mainDiv);
511
  bgDiv.parentNode.removeChild(bgDiv);
@@ -572,9 +565,8 @@ function theChampGetSharingCounts(horizontalCounts, verticalCounts){
572
  }
573
 
574
  for(var j in data.message[i]){
575
- if(j == 'google'){
576
- var sharingCount = data.message[i][j].match( /"(.*?)"/ )[1];
577
- sharingCount = parseInt(sharingCount) || 0;
578
  }else if(j == 'vkontakte'){
579
  var sharingCount = parseInt(data.message[i][j].replace('VK.Share.count(0, ', '').replace(');', ''));
580
  }else{
@@ -588,26 +580,19 @@ function theChampGetSharingCounts(horizontalCounts, verticalCounts){
588
  }
589
  totalCount += parseInt(sharingCount);
590
  if(sharingCount < 1){ continue; }
591
- var countNWidth = theChampCalculateCountWidth(sharingCount) . split(',');
592
-
593
- if(!jQuery(targetElement).hasClass('the_champ_square_count')){
594
- jQuery(targetElement).css('width', countNWidth[1]);
595
- }else{
596
- var parent = jQuery(targetElement).parents('.the_champ_vertical_sharing');
597
- if(jQuery(parent).hasClass('the_champ_bottom_sharing')){
598
- var parentWidth = parseInt(jQuery(targetElement).parent().css('width')) * 30/100;
599
- }else{
600
- var parentWidth = parseInt(jQuery(parent).css('width')) * 24/100;
601
- }
602
- jQuery(targetElement).css('fontSize', (parentWidth) + 'px');
603
  }
604
- jQuery(targetElement).html(countNWidth[0]).css({'visibility': 'visible', 'display': 'block'});
605
  }
606
- var totalCountNWidth = theChampCalculateCountWidth(totalCount) . split(',');
607
  var totalCountContainer = jQuery(sharingContainer).find('.theChampTCBackground');
608
  jQuery(totalCountContainer).each(function(){
609
- var containerWidth = jQuery(this).css('width');
610
- jQuery(this).html('<div class="theChampTotalShareCount" style="font-size: '+ (parseInt(containerWidth) * 62/100) +'px">' + totalCountNWidth[0] + '</div><div class="theChampTotalShareText" style="font-size: '+ (parseInt(containerWidth) * 38/100) +'px">Share' + (totalCount > 1 ? 's' : '' ) + '</div>');
611
  });
612
  }
613
  }
@@ -616,45 +601,22 @@ function theChampGetSharingCounts(horizontalCounts, verticalCounts){
616
  }
617
 
618
  function theChampCalculateCountWidth(sharingCount){
619
- var width = '12px';
620
- if(sharingCount > 9 && sharingCount < 100){
621
- width = '12px';
622
- }else if(sharingCount > 99 && sharingCount < 1000){
623
- width = '20px';
624
- }else if(sharingCount > 999 && sharingCount < 10000){
625
- sharingCount = Math.floor(sharingCount/1000) + 'K+';
626
- width = '20px';
627
  }else if(sharingCount > 9999 && sharingCount < 100000){
628
- sharingCount = Math.floor(sharingCount/1000) + 'K+';
629
- width = '30px';
630
  }else if(sharingCount > 99999 && sharingCount < 1000000){
631
- sharingCount = Math.floor(sharingCount/1000) + 'K+';
632
- width = '42px';
633
  }else if(sharingCount > 999999){
634
- sharingCount = Math.floor(sharingCount/1000000) + 'M+';
635
- width = '30px';
636
  }
637
- return sharingCount + "," + width;
638
  }
639
 
640
  function theChampCapitaliseFirstLetter(e) {
641
  return e.charAt(0).toUpperCase() + e.slice(1)
642
  }
643
 
644
- if(typeof Modernizr == 'defined'){
645
- var theChampSVGCompatible = (typeof Modernizr.svg == 'undefined' || Modernizr.svg) ? true : false;
646
- if(!theChampSVGCompatible){
647
- jQuery(function(){
648
- if(jQuery('.the_champ_sharing_ul').length){
649
- jQuery('.the_champ_sharing_ul i').each(function(){
650
- var alt = theChampCapitaliseFirstLetter(jQuery(this).attr('alt').replace(" Plus", "").replace(" ", "").toLowerCase());
651
- jQuery(this).attr('class', 'theChampSharingButton theChampSharing' + alt + 'Button').attr('style', 'width:32px;height:32px').find('div').remove();
652
- });
653
- }
654
- });
655
- }
656
- }
657
-
658
  jQuery(function(){
659
  var classes = ['the_champ_vertical_sharing', 'the_champ_vertical_counter'];
660
  for(var i = 0; i < classes.length; i++){
@@ -662,9 +624,9 @@ jQuery(function(){
662
  jQuery('.' + classes[i]).each(function(){
663
  var verticalSharingHtml = jQuery(this).html();
664
  if(jQuery(this).attr('style').indexOf('right') >= 0){
665
- var removeClass = theChampSVGCompatible ? 'theChampPushIn' : 'theChampPushInPng', margin = 'Right', alignment = 'right', addClass = theChampSVGCompatible ? 'theChampPullOut' : 'theChampPullOutPng';
666
  }else{
667
- var removeClass = theChampSVGCompatible ? 'theChampPullOut' : 'theChampPullOutPng', margin = 'Left', alignment = 'left', addClass = theChampSVGCompatible ? 'theChampPushIn' : 'theChampPushInPng';
668
  }
669
  jQuery(this).html(verticalSharingHtml + '<div title="Hide" style="float:' + alignment + '" onclick="theChampHideSharing(this, \''+ removeClass +'\', \''+ addClass +'\',\'' + margin +'\', \'' + alignment + '\')" class="theChampSharingArrow ' + removeClass + '"></div>');
670
  });
6
  var theChampMoreSharingServices = {
7
  facebook: {
8
  title: "Facebook",
 
9
  locale: "en-US",
10
  redirect_url: "http://www.facebook.com/sharer.php?u=" + postUrl + "&t=" + postTitle + "&v=3",
11
  },
12
  twitter: {
13
  title: "Twitter",
 
14
  locale: "en-US",
15
  redirect_url: "http://twitter.com/intent/tweet?text=" + postTitle + " " + postUrl,
16
  },
17
  google: {
18
+ title: "Google plus",
 
19
  locale: "en-US",
20
  redirect_url: "https://plus.google.com/share?url=" + postUrl,
21
  },
22
  linkedin: {
23
+ title: "Linkedin",
 
24
  locale: "en-US",
25
  redirect_url: "http://www.linkedin.com/shareArticle?mini=true&url=" + postUrl + "&title=" + postTitle,
26
  },
27
  pinterest: {
28
  title: "Pinterest",
 
29
  locale: "en-US",
30
  redirect_url: "https://pinterest.com/pin/create/button/?url=" + postUrl + "&media=${media_link}&description=" + postTitle,
31
  bookmarklet_url: "javascript:void((function(){var e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','//assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)})());"
32
  },
33
  yahoo_bookmarks: {
34
+ title: "Yahoo",
 
35
  locale: "en-US",
36
  redirect_url: "http://bookmarks.yahoo.com/toolbar/savebm?u=" + postUrl + "&t=" + postTitle,
37
  },
38
  email: {
39
+ title: "Email",
 
40
  locale: "en-US",
41
  redirect_url: "mailto:?subject=" + postTitle + "&body=Link: " + postUrl,
42
  },
43
  delicious: {
44
  title: "Delicious",
 
45
  locale: "en-US",
46
  redirect_url: "http://delicious.com/save?url=" + postUrl + "&title=" + postTitle,
47
  },
48
  reddit: {
49
  title: "Reddit",
 
50
  locale: "en-US",
51
  redirect_url: "http://reddit.com/submit?url=" + postUrl + "&title=" + postTitle,
52
  },
53
+ float_it: {
54
+ title: "Float it",
55
+ locale: "en-US",
56
+ redirect_url: "http://www.designfloat.com/submit.php?url=" + postUrl + "&title=" + postTitle,
57
+ },
58
  google_mail: {
59
+ title: "Google Gmail",
 
60
  locale: "en-US",
61
  redirect_url: "https://mail.google.com/mail/?ui=2&view=cm&fs=1&tf=1&su=" + postTitle + "&body=Link: " + postUrl,
62
  },
63
  google_bookmarks: {
64
  title: "Google Bookmarks",
 
65
  locale: "en-US",
66
  redirect_url: "http://www.google.com/bookmarks/mark?op=edit&bkmk=" + postUrl + "&title=" + postTitle,
67
  },
68
  digg: {
69
  title: "Digg",
 
70
  locale: "en-US",
71
  redirect_url: "http://digg.com/submit?phase=2&url=" + postUrl + "&title=" + postTitle,
72
  },
73
  stumbleupon: {
74
+ title: "Stumbleupon",
 
75
  locale: "en-US",
76
  redirect_url: "http://www.stumbleupon.com/submit?url=" + postUrl + "&title=" + postTitle,
77
  },
 
 
 
 
 
 
78
  printfriendly: {
79
  title: "PrintFriendly",
80
+ locale: "en-US",
81
+ redirect_url: "http://www.printfriendly.com/print?url=" + postUrl,
82
+ },
83
+ print: {
84
+ title: "Print",
85
  locale: "en-US",
86
  redirect_url: "http://www.printfriendly.com/print?url=" + postUrl,
87
  },
88
  tumblr: {
89
  title: "Tumblr",
 
90
  locale: "en-US",
91
  redirect_url: "http://www.tumblr.com/share?v=3&u=" + postUrl + "&t=" + postTitle,
92
  bookmarklet_url: "javascript:var d=document,w=window,e=w.getSelection,k=d.getSelection,x=d.selection,s=(e?e():(k)?k():(x?x.createRange().text:0)),f='http://www.tumblr.com/share',l=d.location,e=encodeURIComponent,p='?v=3&u='+e(l.href) +'&t='+e(d.title) +'&s='+e(s),u=f+p;try{if(!/^(.*\\.)?tumblr[^.]*$/.test(l.host))throw(0);tstbklt();}catch(z){a =function(){if(!w.open(u,'t','toolbar=0,resizable=0,status=1,width=450,height=430'))l.href=u;};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else a();}void(0);"
93
  },
94
  vk: {
95
  title: "Vkontakte",
 
96
  locale: "ru",
97
  redirect_url: "https://vk.com/share.php?url=" + postUrl + "&title=" + postTitle,
98
  },
99
  evernote: {
100
  title: "Evernote",
 
101
  locale: "en-US",
102
  redirect_url: "https://www.evernote.com/clip.action?url=" + postUrl + "&title=" + postTitle,
103
  bookmarklet_url: "javascript:(function(){EN_CLIP_HOST='http://www.evernote.com';try{var x=document.createElement('SCRIPT');x.type='text/javascript';x.src=EN_CLIP_HOST+'/public/bookmarkClipper.js?'+(new Date().getTime()/100000);document.getElementsByTagName('head')[0].appendChild(x);}catch(e){location.href=EN_CLIP_HOST+'/clip.action?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title);}})();"
104
  },
105
  amazon_us_wish_list: {
106
+ title: "Amazon Wish List",
 
107
  locale: "en-US",
108
  redirect_url: "http://www.amazon.com/wishlist/add?u=" + postUrl + "&t=" + postTitle,
109
  bookmarklet_url: "javascript:(function(){var w=window,l=w.location,d=w.document,s=d.createElement('script'),e=encodeURIComponent,x='undefined',u='http://www.amazon.com/gp/wishlist/add';if(typeof s!='object')l.href=u+'?u='+e(l)+'&t='+e(d.title);function g(){if(d.readyState&&d.readyState!='complete'){setTimeout(g,200);}else{if(typeof AUWLBook==x)s.setAttribute('src',u+'.js?loc='+e(l)),d.body.appendChild(s);function f(){(typeof AUWLBook==x)?setTimeout(f,200):AUWLBook.showPopover();}f();}}g();}())"
110
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  wordpress_blog: {
112
+ title: "WordPress",
 
113
  locale: "en-US",
114
  redirect_url: "http://www.addtoany.com/ext/wordpress/press_this?linkurl=" + postUrl + "&linkname=" + postTitle,
115
  },
116
+ whatsapp: {
117
+ title: "Whatsapp",
118
+ locale: "en-US",
119
+ redirect_url: "whatsapp://send?text=" + postTitle + " " + postUrl,
120
+ },
121
  diigo: {
122
  title: "Diigo",
 
123
  locale: "en-US",
124
  redirect_url: "http://www.diigo.com/post?url=" + postUrl + "&title=" + postTitle,
125
  },
126
  yc_hacker_news: {
127
+ title: "Hacker News",
 
128
  locale: "en-US",
129
  redirect_url: "http://news.ycombinator.com/submitlink?u=" + postUrl + "&t=" + postTitle,
130
  },
 
 
 
 
 
 
131
  box_net: {
132
  title: "Box.net",
 
133
  locale: "en-US",
134
  redirect_url: "https://www.box.net/api/1.0/import?url=" + postUrl + "&name=" + postTitle + "&import_as=link",
135
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  aol_mail: {
137
  title: "AOL Mail",
 
138
  locale: "en-US",
139
  redirect_url: "http://webmail.aol.com/25045/aol/en-us/Mail/compose-message.aspx?subject=" + postTitle + "&body=" + postUrl,
140
  },
141
  yahoo_mail: {
142
+ title: "Yahoo Mail",
 
143
  locale: "en-US",
144
  redirect_url: "http://compose.mail.yahoo.com/?Subject=" + postTitle + "&body=Link: " + postUrl,
145
  },
146
  instapaper: {
147
  title: "Instapaper",
 
148
  locale: "en-US",
149
  redirect_url: "http://www.instapaper.com/edit?url=" + postUrl + "&title=" + postTitle,
150
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
  plurk: {
152
  title: "Plurk",
 
153
  locale: "en-US",
154
  redirect_url: "http://www.plurk.com/m?content=" + postUrl + "&qualifier=shares",
155
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
  wanelo: {
157
  title: "Wanelo",
 
158
  locale: "en-US",
159
  redirect_url: "http://wanelo.com/p/post?bookmarklet=&images%5B%5D=&url=" + postUrl + "&title=" + postTitle + "&price=&shop=",
160
  bookmarklet_url: "javascript:void ((function(url){if(!window.waneloBookmarklet){var productURL=encodeURIComponent(url),cacheBuster=Math.floor(Math.random()*1e3),element=document.createElement('script');element.setAttribute('src','//wanelo.com/bookmarklet/3/setup?*='+cacheBuster+'&url='+productURL),element.onload=init,element.setAttribute('type','text/javascript'),document.getElementsByTagName('head')[0].appendChild(element)}else init();function init(){window.waneloBookmarklet()}})(window.location.href))"
161
  },
162
  aim: {
163
  title: "AIM",
 
164
  locale: "en-US",
165
  redirect_url: "http://share.aim.com/share/?url=" + postUrl + "&title=" + postTitle,
166
  },
 
 
 
 
 
 
 
167
  stumpedia: {
168
  title: "Stumpedia",
 
169
  locale: "en-US",
170
  redirect_url: "http://www.stumpedia.com/submit?url=" + postUrl + "&title=" + postTitle,
171
  },
 
 
 
 
 
 
172
  viadeo: {
173
  title: "Viadeo",
 
174
  locale: "en-US",
175
  redirect_url: "http://www.viadeo.com/shareit/share/?url=" + postUrl + "&title=" + postTitle,
176
  },
177
  yahoo_messenger: {
178
  title: "Yahoo Messenger",
 
179
  locale: "en-US",
180
  redirect_url: "ymsgr:sendim?m=" + postUrl,
181
  },
182
  pinboard_in: {
183
+ title: "Pinboard",
 
184
  locale: "en-US",
185
  redirect_url: "http://pinboard.in/add?url=" + postUrl + "&title=" + postTitle,
186
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
187
  blogger_post: {
188
  title: "Blogger Post",
 
189
  locale: "en-US",
190
  redirect_url: "http://www.blogger.com/blog_this.pyra?t=&u=" + postUrl + "&l&n=" + postTitle,
191
  },
192
  typepad_post: {
193
  title: "TypePad Post",
 
194
  locale: "en-US",
195
  redirect_url: "http://www.typepad.com/services/quickpost/post?v=2&qp_show=ac&qp_title=" + postTitle + "&qp_href=" + postUrl + "&qp_text=" + postTitle,
196
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
197
  buffer: {
198
  title: "Buffer",
 
199
  locale: "en-US",
200
  redirect_url: "http://bufferapp.com/add?url=" + postUrl + "&text=" + postTitle,
201
  },
202
  flipboard: {
203
  title: "Flipboard",
 
204
  locale: "en-US",
205
  redirect_url: "https://share.flipboard.com/flipit/load?v=1.0&url=" + postUrl + "&title=" + postTitle,
206
  },
207
  mail: {
208
+ title: "Email",
 
209
  locale: "en-US",
210
  redirect_url: "mailto:?subject=" + postTitle + "&body=Link: " + postUrl,
211
  },
212
+ pocket: {
213
+ title: "Pocket",
 
214
  locale: "en-US",
215
+ redirect_url: "https://readitlaterlist.com/save?url=" + postUrl + "&title=" + postTitle,
 
216
  },
217
+ fark: {
218
+ title: "Fark",
 
219
  locale: "en-US",
220
+ redirect_url: "http://cgi.fark.com/cgi/fark/submit.pl?new_url=" + postUrl,
221
  },
222
+ yummly: {
223
+ title: "Yummly",
 
224
  locale: "en-US",
225
+ redirect_url: "http://www.yummly.com/urb/verify?url=" + postUrl + "&title=" + postTitle,
226
  },
227
+ app_net: {
228
+ title: "App.net",
229
+ locale: "en-US",
230
+ redirect_url: "https://account.app.net/login/",
 
231
  },
232
+ baidu: {
233
+ title: "Baidu",
 
234
  locale: "en-US",
235
+ redirect_url: "http://cang.baidu.com/do/add?it=" + postTitle + "&iu=" + postUrl,
236
+ },
237
+ balatarin: {
238
+ title: "Balatarin",
 
239
  locale: "en-US",
240
+ redirect_url: "https://www.balatarin.com/login",
241
  },
242
+ bibSonomy: {
243
+ title: "BibSonomy",
 
244
  locale: "en-US",
245
+ redirect_url: "http://www.bibsonomy.org/login",
 
246
  },
247
+ Bitty_Browser: {
248
+ title: "Bitty Browser",
 
249
  locale: "en-US",
250
+ redirect_url: "http://www.bitty.com/manual/?contenttype=&contentvalue=" + postUrl,
251
+ },
252
+ Blinklist: {
253
+ title: "Blinklist",
254
+ locale: "en-US",
255
+ redirect_url: "http://blinklist.com/blink?t=" + postTitle + "&d=&u=" + postUrl,
256
+ },
257
+ BlogMarks: {
258
+ title: "BlogMarks",
259
+ locale: "en-US",
260
+ redirect_url: "http://blogmarks.net/my/new.php?mini=1&simple=1&title=" + postTitle + "&url=" + postUrl,
261
+ },
262
+ Bookmarks_fr: {
263
+ title: "Bookmarks.fr",
264
+ locale: "en-US",
265
+ redirect_url: "http://www.bookmarks.fr/Connexion/?action=add&address=" + postUrl + "&title=" + postTitle,
266
+ },
267
+ BuddyMarks: {
268
+ title: "BuddyMarks",
269
+ locale: "en-US",
270
+ redirect_url: "http://buddymarks.com/login.php?bookmark_title=" + postTitle + "&bookmark_url=" + postUrl + "&bookmark_desc=&bookmark_tags=",
271
+ },
272
+ Care2_news: {
273
+ title: "Care2 News",
274
+ locale: "en-US",
275
+ redirect_url: "http://www.care2.com/passport/login.html?promoID=10&pg=http://www.care2.com/news/compose?sharehint=news&share[share_type]news&bookmarklet=Y&share[title]=" + postTitle + "&share[link_url]=" + postUrl + "&share[content]=",
276
+ },
277
+ CiteULike: {
278
+ title: "Cite U Like",
279
+ locale: "en-US",
280
+ redirect_url: "http://www.citeulike.org/posturl?url=" + postUrl + "&title=" + postTitle,
281
+ },
282
+ Diary_Ru: {
283
+ title: "Diary.Ru",
284
+ locale: "en-US",
285
+ redirect_url: "http://www.diary.ru/?newpost&title=" + postTitle + "&text=" + postUrl,
286
+ },
287
+ diHITT: {
288
+ title: "diHITT",
289
+ locale: "en-US",
290
+ redirect_url: "http://www.dihitt.com/submit?url=" + postUrl + "&title=" + postTitle,
291
+ },
292
+ dzone: {
293
+ title: "DZone",
294
+ locale: "en-US",
295
+ redirect_url: "http://www.dzone.com/links/add.html?url=" + postUrl + "&title=" + postTitle,
296
+ },
297
+ Folkd: {
298
+ title: "Folkd",
299
+ locale: "en-US",
300
+ redirect_url: "http://www.folkd.com/page/social-bookmarking.html?addurl=" + postUrl,
301
+ },
302
+ Hatena: {
303
+ title: "Hatena",
304
+ locale: "en-US",
305
+ redirect_url: "http://b.hatena.ne.jp/bookmarklet?url=" + postUrl + "&btitle=" + postTitle,
306
+ },
307
+ Jamespot: {
308
+ title: "Jamespot",
309
+ locale: "en-US",
310
+ redirect_url: "//my.jamespot.com/",
311
+ },
312
+ Kakao: {
313
+ title: "Kakao",
314
+ locale: "en-US",
315
+ redirect_url: "https://story.kakao.com/share?url=" + postUrl,
316
+ },
317
+ Kindle_It: {
318
+ title: "Kindle_It",
319
+ locale: "en-US",
320
+ redirect_url: "//fivefilters.org/kindle-it/send.php?url=" + postUrl,
321
+ },
322
+ Known: {
323
+ title: "Known",
324
+ locale: "en-US",
325
+ redirect_url: "https://withknown.com/share/?url=" + postUrl + "&title=" + postTitle,
326
+ },
327
+ Line: {
328
+ title: "Line",
329
+ locale: "en-US",
330
+ redirect_url: "line://msg/text/" + postTitle + "! " + postUrl,
331
+ },
332
+ LiveJournal: {
333
+ title: "LiveJournal",
334
+ locale: "en-US",
335
+ redirect_url: "http://www.livejournal.com/update.bml?subject=" + postTitle + "&event=" + postUrl,
336
+ },
337
+ Mail_Ru: {
338
+ title: "Mail.Ru",
339
+ locale: "en-US",
340
+ redirect_url: "http://connect.mail.ru/share?share_url=" + postUrl,
341
+ },
342
+ Mendeley: {
343
+ title: "Mendeley",
344
+ locale: "en-US",
345
+ redirect_url: "https://www.mendeley.com/sign-in/",
346
+ },
347
+ Meneame: {
348
+ title: "Meneame",
349
+ locale: "en-US",
350
+ redirect_url: "https://www.meneame.net/submit.php?url=" + postUrl,
351
+ },
352
+ Mixi: {
353
+ title: "Mixi",
354
+ locale: "en-US",
355
+ redirect_url: "https://mixi.jp/share.pl?mode=login&u=" + postUrl,
356
+ },
357
+ MySpace: {
358
+ title: "Mixi",
359
+ locale: "en-US",
360
+ redirect_url: "https://myspace.com/",
361
+ },
362
+ Netlog: {
363
+ title: "Netlog",
364
+ locale: "en-US",
365
+ redirect_url: "http://www.netlog.com/go/manage/links/view=save&origin=external&url=" + postUrl + "&title=" + postTitle + "&description=",
366
+ },
367
+ Netvouz: {
368
+ title: "Netvouz",
369
+ locale: "en-US",
370
+ redirect_url: "http://www.netvouz.com/action/submitBookmark?url=" + postUrl + "&title=" + postTitle + "&popup=no&description=",
371
+ },
372
+ NewsVine: {
373
+ title: "NewsVine",
374
+ locale: "en-US",
375
+ redirect_url: "http://www.newsvine.com/_tools/seed?popoff=0&u=" + postUrl + "&h=" + postTitle,
376
+ },
377
+ NUjij: {
378
+ title: "NUjij",
379
+ locale: "en-US",
380
+ redirect_url: "http://www.nujij.nl/nieuw-bericht.2051051.lynkx?title=" + postTitle + "&url=" + postUrl + "&bericht=&topic=",
381
+ },
382
+ Odnoklassniki: {
383
+ title: "Odnoklassniki",
384
+ locale: "en-US",
385
+ redirect_url: "https://connect.ok.ru/dk?cmd=WidgetSharePreview&st.cmd=WidgetSharePreview&st.shareUrl=" + postUrl + "&st.client_id=-1",
386
+ },
387
+ Oknotizie: {
388
+ title: "Oknotizie",
389
+ locale: "en-US",
390
+ redirect_url: "//oknotizie.virgilio.it/post?url=" + postUrl + "&title=" + postTitle,
391
+ },
392
+ Outlook_com: {
393
+ title: "Outlook.com",
394
+ locale: "en-US",
395
+ redirect_url: "https://mail.live.com/default.aspx?rru=compose?subject=" + postTitle + "&body=" + postUrl + "&lc=1033&id=64855&mkt=en-us&cbcxt=mai",
396
+ },
397
+ Protopage_Bookmarks: {
398
+ title: "Protopage_Bookmarks",
399
+ locale: "en-US",
400
+ redirect_url: "http://www.protopage.com/add-button-site?url=" + postUrl + "&label=&type=page",
401
+ },
402
+ Pusha: {
403
+ title: "Pusha",
404
+ locale: "en-US",
405
+ redirect_url: "//www.pusha.se/posta?url=" + postUrl,
406
+ },
407
+ Qzone: {
408
+ title: "Qzone",
409
+ locale: "en-US",
410
+ redirect_url: "http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=" + postUrl,
411
+ },
412
+ Rediff_MyPage: {
413
+ title: "Rediff MyPage",
414
+ locale: "en-US",
415
+ redirect_url: "//share.rediff.com/bookmark/addbookmark?bookmarkurl=" + postUrl + "&title=" + postTitle,
416
+ },
417
+ Renren: {
418
+ title: "Renren",
419
+ locale: "en-US",
420
+ redirect_url: "//www.connect.renren.com/share/sharer?url=" + postUrl + "&title=" + postTitle,
421
+ },
422
+ Segnalo: {
423
+ title: "Segnalo",
424
+ locale: "en-US",
425
+ redirect_url: "http://segnalo.virgilio.it/post.html.php?url=" + postUrl + "&title=" + postTitle,
426
+ },
427
+ Sina_Weibo: {
428
+ title: "Sina Weibo",
429
+ locale: "en-US",
430
+ redirect_url: "//service.weibo.com/share/share.php?url=" + postUrl + "&title=" + postTitle,
431
+ },
432
+ SiteJot: {
433
+ title: "SiteJot",
434
+ locale: "en-US",
435
+ redirect_url: "http://www.sitejot.com/loginform.php?iSiteAdd=&iSiteDes=",
436
+ },
437
+ Slashdot: {
438
+ title: "Slashdot",
439
+ locale: "en-US",
440
+ redirect_url: "//slashdot.org/submission?url=" + postUrl,
441
+ },
442
+ Svejo: {
443
+ title: "Svejo",
444
+ locale: "en-US",
445
+ redirect_url: "https://svejo.net/story/submit_by_url?url=" + postUrl + "&title=" + postTitle + "&summary=",
446
+ },
447
+ Symbaloo_Feeds: {
448
+ title: "Symbaloo_Feeds",
449
+ locale: "en-US",
450
+ redirect_url: "//www.symbaloo.com/",
451
+ },
452
+ Tuenti: {
453
+ title: "Tuenti",
454
+ locale: "en-US",
455
+ redirect_url: "https://www.tuenti.com/share?p=b5dd6602&url=" + postUrl,
456
+ },
457
+ Twiddla: {
458
+ title: "Twiddla",
459
+ locale: "en-US",
460
+ redirect_url: "//www.twiddla.com/New.aspx?url=" + postUrl + "&title=" + postTitle,
461
+ },
462
+ Webnews: {
463
+ title: "Webnews",
464
+ locale: "en-US",
465
+ redirect_url: "//www.webnews.de/login",
466
+ },
467
+ Wykop: {
468
+ title: "Wykop",
469
+ locale: "en-US",
470
+ redirect_url: "//www.wykop.pl/dodaj?url=" + postUrl + "&title=" + postTitle,
471
+ },
472
+ Yoolink: {
473
+ title: "Yoolink",
474
+ locale: "en-US",
475
+ redirect_url: "//yoolink.to/addorshare?url_value=" + postUrl + "&title=" + postTitle,
476
+ },
477
+ YouMob: {
478
+ title: "YouMob",
479
+ locale: "en-US",
480
+ redirect_url: "//youmob.com/startmob.aspx?cookietest=true&mob=" + postUrl,
481
  }
482
  }
483
+ var theChampMoreSharingServicesHtml = '<button id="the_champ_sharing_popup_close" class="close-button separated"><img src="'+ theChampCloseIconPath +'" /></button><div id="the_champ_sharing_more_content"><div class="filter"><input type="text" onkeyup="theChampFilterSharing(this.value.trim())" placeholder="Search" class="search"></div><div class="all-services"><ul class="mini">';
484
  for(var i in theChampMoreSharingServices){
485
+ var tempTitle = theChampCapitaliseFirstLetter(theChampMoreSharingServices[i].title.replace(/[_. ]/g, ""));
486
+ theChampMoreSharingServicesHtml += '<li><a rel="nofollow" title="'+ theChampMoreSharingServices[i].title +'" alt="'+ theChampMoreSharingServices[i].title +'" ';
487
  if(theChampMoreSharingServices[i].bookmarklet_url){
488
  theChampMoreSharingServicesHtml += 'href="' + theChampMoreSharingServices[i].bookmarklet_url + '" ';
489
  }else{
490
  theChampMoreSharingServicesHtml += 'onclick="theChampPopup(\'' + theChampMoreSharingServices[i].redirect_url + '\')" href="javascript:void(0)" ';
491
  }
492
+ theChampMoreSharingServicesHtml += '"><i style="width:22px;height:22px" title="'+ theChampMoreSharingServices[i].title +'" class="theChampSharing theChamp' + tempTitle + 'Background"><ss style="display:block;width:100%;height:100%;" class="theChampSharingSvg theChamp' + tempTitle + 'Svg"></ss></i>' + theChampMoreSharingServices[i].title + '</a></li>';
493
  }
494
  theChampMoreSharingServicesHtml += concate;
495
 
498
  mainDiv.setAttribute('id', 'the_champ_sharing_more_providers');
499
  var bgDiv = document.createElement('div');
500
  bgDiv.setAttribute('id', 'the_champ_popup_bg');
501
+ jQuery('body').append(mainDiv).append(bgDiv);
 
502
  document.getElementById('the_champ_sharing_popup_close').onclick = function(){
503
  mainDiv.parentNode.removeChild(mainDiv);
504
  bgDiv.parentNode.removeChild(bgDiv);
565
  }
566
 
567
  for(var j in data.message[i]){
568
+ if(j == 'google_plus'){
569
+ var sharingCount = parseInt(data.message[i][j]) || 0;
 
570
  }else if(j == 'vkontakte'){
571
  var sharingCount = parseInt(data.message[i][j].replace('VK.Share.count(0, ', '').replace(');', ''));
572
  }else{
580
  }
581
  totalCount += parseInt(sharingCount);
582
  if(sharingCount < 1){ continue; }
583
+ jQuery(targetElement).html(theChampCalculateCountWidth(sharingCount)).css({'visibility': 'visible', 'display': 'block'});
584
+
585
+ if ( ( typeof theChampReduceHorizontalSvgWidth != 'undefined' && jQuery(sharingContainer).hasClass('the_champ_horizontal_sharing') ) || ( typeof theChampReduceVerticalSvgWidth != 'undefined' && jQuery(sharingContainer).hasClass('the_champ_vertical_sharing') ) ) {
586
+ jQuery(targetElement).parents('li').find('.theChampSharingSvg').css('float', 'left');
587
+ }
588
+ if ( ( typeof theChampReduceHorizontalSvgHeight != 'undefined' && jQuery(sharingContainer).hasClass('the_champ_horizontal_sharing') ) || ( typeof theChampReduceVerticalSvgHeight != 'undefined' && jQuery(sharingContainer).hasClass('the_champ_vertical_sharing') ) ) {
589
+ jQuery(targetElement).parents('li').find('.theChampSharingSvg').css('marginTop', '0');
 
 
 
 
 
590
  }
 
591
  }
 
592
  var totalCountContainer = jQuery(sharingContainer).find('.theChampTCBackground');
593
  jQuery(totalCountContainer).each(function(){
594
+ var containerHeight = jQuery(this).css('height');
595
+ jQuery(this).html('<div class="theChampTotalShareCount" style="font-size: '+ (parseInt(containerHeight) * 62/100) +'px">' + theChampCalculateCountWidth(totalCount) + '</div><div class="theChampTotalShareText" style="font-size: '+ (parseInt(containerHeight) * 38/100) +'px">Shares</div>').css('visibility', 'visible');
596
  });
597
  }
598
  }
601
  }
602
 
603
  function theChampCalculateCountWidth(sharingCount){
604
+ if(sharingCount > 999 && sharingCount < 10000){
605
+ sharingCount = Math.round(sharingCount/1000) + 'K';
 
 
 
 
 
 
606
  }else if(sharingCount > 9999 && sharingCount < 100000){
607
+ sharingCount = Math.round(sharingCount/1000) + 'K';
 
608
  }else if(sharingCount > 99999 && sharingCount < 1000000){
609
+ sharingCount = Math.round(sharingCount/1000) + 'K';
 
610
  }else if(sharingCount > 999999){
611
+ sharingCount = Math.round(sharingCount/1000000) + 'M';
 
612
  }
613
+ return sharingCount;
614
  }
615
 
616
  function theChampCapitaliseFirstLetter(e) {
617
  return e.charAt(0).toUpperCase() + e.slice(1)
618
  }
619
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
620
  jQuery(function(){
621
  var classes = ['the_champ_vertical_sharing', 'the_champ_vertical_counter'];
622
  for(var i = 0; i < classes.length; i++){
624
  jQuery('.' + classes[i]).each(function(){
625
  var verticalSharingHtml = jQuery(this).html();
626
  if(jQuery(this).attr('style').indexOf('right') >= 0){
627
+ var removeClass = 'theChampPushIn', margin = 'Right', alignment = 'right', addClass = 'theChampPullOut';
628
  }else{
629
+ var removeClass = 'theChampPullOut', margin = 'Left', alignment = 'left', addClass = 'theChampPushIn';
630
  }
631
  jQuery(this).html(verticalSharingHtml + '<div title="Hide" style="float:' + alignment + '" onclick="theChampHideSharing(this, \''+ removeClass +'\', \''+ addClass +'\',\'' + margin +'\', \'' + alignment + '\')" class="theChampSharingArrow ' + removeClass + '"></div>');
632
  });
js/front/social_login/common.js CHANGED
@@ -1 +1 @@
1
- function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampAjaxUserAuth(e,t){theChampLoadingIcon(),jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_user_auth",profileData:e,provider:t,redirectionUrl:theChampTwitterRedirect?theChampTwitterRedirect:""},success:function(e){var t=theChampSiteUrl;if(1==e.status)t="register"==e.message?e.url&&""!=e.url?e.url:theChampRegRedirectionUrl+(theChampCommentFormLogin?"/#commentform":""):"linked"==e.message?theChampLinkingRedirection+"?linked=1":e.url&&""!=e.url?e.url:theChampRedirectionUrl+(theChampCommentFormLogin?"/#commentform":"");else if(null!==e.message.match(/ask/)){var a=e.message.split("|");t=theChampSiteUrl+"?SuperSocializerEmail=1&par="+a[1]}else 0==e.status&&"registration disabled"==e.message?t="undefined"!=typeof theChampDisableRegRedirect?theChampDisableRegRedirect:decodeURIComponent(theChampTwitterRedirect):"unverified"==e.message?t=theChampSiteUrl+"?SuperSocializerUnverified=1":"not linked"==e.message?t=theChampLinkingRedirection+"?linked=0":"provider exists"==e.message&&(t=theChampLinkingRedirection+"?linked=2");location.href=t},error:function(){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampInitiateLogin(e){var t=e.getAttribute("alt");if("Login with Facebook"==t)navigator.userAgent.match("CriOS")?location.href="https://www.facebook.com/dialog/oauth?client_id="+theChampFBKey+"&redirect_uri="+theChampRedirectionUrl+"&scope="+theChampFacebookScope:theChampAuthUserFB();else if("Login with Twitter"==t)theChampPopup(theChampSiteUrl+"?SuperSocializerAuth=Twitter&super_socializer_redirect_to="+theChampTwitterRedirect);else if("Login with Xing"==t)theChampPopup(theChampSiteUrl+"?SuperSocializerAuth=Xing&super_socializer_redirect_to="+theChampTwitterRedirect);else{if("Login with Linkedin"==t)return IN.User.authorize(),!1;"Login with Google"==t?theChampInitializeGPLogin():"Login with Vkontakte"==t?theChampInitializeVKLogin():"Login with Instagram"==t&&theChampInitializeInstaLogin()}}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)for(var a=0;a<t.length;a++)jQuery("."+t[a]).css("display","block");else for(var a=0;a<t.length;a++)for(var i=theChampGetElementsByClass(e,t[a]),h=0;h<i.length;h++)i[h].style.display="block"}function theChampValidateEmail(e){var t=/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;return t.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))},error:function(){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampCapitaliseFirstLetter2(e){return e.charAt(0).toUpperCase()+e.slice(1)}theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;"undefined"==typeof Modernizr.svg||Modernizr.svg||jQuery(function(){jQuery(".the_champ_login_ul").length&&jQuery(".the_champ_login_ul i").each(function(){var e=theChampCapitaliseFirstLetter2(jQuery(this).attr("alt").replace("Login with ","").toLowerCase());jQuery(this).attr("class","theChampLogin theChampLoginButton theChamp"+e+"Button").attr("style","display:block;width:32px;height:32px").find("div").remove()})});
1
+ function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampAjaxUserAuth(e,t){theChampLoadingIcon(),jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_user_auth",profileData:e,provider:t,redirectionUrl:theChampTwitterRedirect?theChampTwitterRedirect:""},success:function(e){var t=theChampSiteUrl;if(1==e.status)t="register"==e.message?e.url&&""!=e.url?e.url:theChampRegRedirectionUrl+(theChampCommentFormLogin?"/#commentform":""):"linked"==e.message?theChampLinkingRedirection+"?linked=1":e.url&&""!=e.url?e.url:theChampRedirectionUrl+(theChampCommentFormLogin?"/#commentform":"");else if(null!==e.message.match(/ask/)){var a=e.message.split("|");t=theChampSiteUrl+"?SuperSocializerEmail=1&par="+a[1]}else 0==e.status&&"registration disabled"==e.message?t="undefined"!=typeof theChampDisableRegRedirect?theChampDisableRegRedirect:decodeURIComponent(theChampTwitterRedirect):"unverified"==e.message?t=theChampSiteUrl+"?SuperSocializerUnverified=1":"not linked"==e.message?t=theChampLinkingRedirection+"?linked=0":"provider exists"==e.message&&(t=theChampLinkingRedirection+"?linked=2");location.href=t},error:function(){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampInitiateLogin(e){var t=e.getAttribute("alt");if("Login with Facebook"==t)navigator.userAgent.match("CriOS")?location.href="https://www.facebook.com/dialog/oauth?client_id="+theChampFBKey+"&redirect_uri="+theChampRedirectionUrl+"&scope="+theChampFacebookScope:theChampAuthUserFB();else if("Login with Twitter"==t)theChampPopup(theChampSiteUrl+"?SuperSocializerAuth=Twitter&super_socializer_redirect_to="+theChampTwitterRedirect);else if("Login with Xing"==t)theChampPopup(theChampSiteUrl+"?SuperSocializerAuth=Xing&super_socializer_redirect_to="+theChampTwitterRedirect);else{if("Login with Linkedin"==t)return IN.User.authorize(),!1;"Login with Google"==t?theChampInitializeGPLogin():"Login with Vkontakte"==t?theChampInitializeVKLogin():"Login with Instagram"==t&&theChampInitializeInstaLogin()}}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)for(var a=0;a<t.length;a++)jQuery("."+t[a]).css("display","block");else for(var a=0;a<t.length;a++)for(var i=theChampGetElementsByClass(e,t[a]),h=0;h<i.length;h++)i[h].style.display="block"}function theChampValidateEmail(e){var t=/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;return t.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))},error:function(){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampCapitaliseFirstLetter2(e){return e.charAt(0).toUpperCase()+e.slice(1)}theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;
js/modernizr.custom.82187.js DELETED
@@ -1,4 +0,0 @@
1
- /* Modernizr 2.8.3 (Custom Build) | MIT & BSD
2
- * Build: http://modernizr.com/download/#-svg
3
- */
4
- ;window.Modernizr=function(a,b,c){function u(a){i.cssText=a}function v(a,b){return u(prefixes.join(a+";")+(b||""))}function w(a,b){return typeof a===b}function x(a,b){return!!~(""+a).indexOf(b)}function y(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:w(f,"function")?f.bind(d||b):f}return!1}var d="2.8.3",e={},f=b.documentElement,g="modernizr",h=b.createElement(g),i=h.style,j,k={}.toString,l={svg:"http://www.w3.org/2000/svg"},m={},n={},o={},p=[],q=p.slice,r,s={}.hasOwnProperty,t;!w(s,"undefined")&&!w(s.call,"undefined")?t=function(a,b){return s.call(a,b)}:t=function(a,b){return b in a&&w(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=q.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(q.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(q.call(arguments)))};return e}),m.svg=function(){return!!b.createElementNS&&!!b.createElementNS(l.svg,"svg").createSVGRect};for(var z in m)t(m,z)&&(r=z.toLowerCase(),e[r]=m[z](),p.push((e[r]?"":"no-")+r));return e.addTest=function(a,b){if(typeof a=="object")for(var d in a)t(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,typeof enableClasses!="undefined"&&enableClasses&&(f.className+=" "+(b?"":"no-")+a),e[a]=b}return e},u(""),h=j=null,e._version=d,e}(this,this.document);
 
 
 
 
languages/Super-Socializer.pot ADDED
@@ -0,0 +1,1892 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Super Socializer\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-02 08:23+0530\n"
6
+ "PO-Revision-Date: 2016-01-02 08:23+0530\n"
7
+ "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
+ "Language-Team: Heateor <hello@heateor.com>\n"
9
+ "Language: \n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-Language: English\n"
16
+ "X-Poedit-Country: India\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+
19
+ #: ../super_socializer.php:225
20
+ #, php-format
21
+ msgid "Enter exactly the following url in <strong>Website</strong> and <strong>Callback Url</strong> options in your Twitter app (see step 3 %s)"
22
+ msgstr ""
23
+
24
+ #: ../super_socializer.php:228
25
+ msgid "Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this"
26
+ msgstr ""
27
+
28
+ #: ../super_socializer.php:398
29
+ msgid "Please verify your email address to login."
30
+ msgstr ""
31
+
32
+ #: ../super_socializer.php:398
33
+ msgid "Your email has been verified. Now you can login to your account"
34
+ msgstr ""
35
+
36
+ #: ../super_socializer.php:402
37
+ msgid "Notification"
38
+ msgstr ""
39
+
40
+ #: ../super_socializer.php:420
41
+ #: ../admin/social_login.php:561
42
+ msgid "Email required"
43
+ msgstr ""
44
+
45
+ #: ../super_socializer.php:423
46
+ msgid "Please check your email inbox to complete the registration."
47
+ msgstr ""
48
+
49
+ #: ../super_socializer.php:438
50
+ msgid "Follow steps 11 and 12 at GooglePlus app configuration page, about to open"
51
+ msgstr ""
52
+
53
+ #: ../super_socializer.php:525
54
+ msgid "Leave a reply"
55
+ msgstr ""
56
+
57
+ #: ../super_socializer.php:714
58
+ msgid "Super Socializer - General Options"
59
+ msgstr ""
60
+
61
+ #: ../super_socializer.php:714
62
+ #: ../admin/general_options.php:11
63
+ #: ../admin/social_commenting.php:42
64
+ msgid "General Options"
65
+ msgstr ""
66
+
67
+ #: ../super_socializer.php:775
68
+ msgid "Super Socializer - Social Avatar"
69
+ msgstr ""
70
+
71
+ #: ../super_socializer.php:778
72
+ msgid "Small Avatar Url"
73
+ msgstr ""
74
+
75
+ #: ../super_socializer.php:783
76
+ msgid "Large Avatar Url"
77
+ msgstr ""
78
+
79
+ #: ../super_socializer.php:971
80
+ msgid "Email you entered is already registered or invalid"
81
+ msgstr ""
82
+
83
+ #: ../super_socializer.php:975
84
+ msgid "Please enter a valid email address. You might be required to verify it"
85
+ msgstr ""
86
+
87
+ #: ../helper.php:8
88
+ msgid "Settings saved"
89
+ msgstr ""
90
+
91
+ #: ../helper.php:8
92
+ msgid "Dismiss this notice"
93
+ msgstr ""
94
+
95
+ #: ../helper.php:155
96
+ msgid "Click to show help"
97
+ msgstr ""
98
+
99
+ #: ../helper.php:155
100
+ msgid "Click to hide help"
101
+ msgstr ""
102
+
103
+ #: ../helper.php:242
104
+ msgid "Settings"
105
+ msgstr ""
106
+
107
+ #: ../helper.php:565
108
+ msgid "Account linked successfully"
109
+ msgstr ""
110
+
111
+ #: ../helper.php:569
112
+ msgid "Account already exists or linked"
113
+ msgstr ""
114
+
115
+ #: ../helper.php:578
116
+ msgid "You are already connected with"
117
+ msgstr ""
118
+
119
+ #: ../helper.php:578
120
+ msgid "as primary social network"
121
+ msgstr ""
122
+
123
+ #: ../helper.php:593
124
+ msgid "Link your social account to login to your account at this website"
125
+ msgstr ""
126
+
127
+ #: ../helper.php:630
128
+ msgid "Currently"
129
+ msgstr ""
130
+
131
+ #: ../helper.php:630
132
+ msgid "Remove"
133
+ msgstr ""
134
+
135
+ #: ../helper.php:731
136
+ msgid "Disable Standard Social Sharing on this "
137
+ msgstr ""
138
+
139
+ #: ../helper.php:736
140
+ msgid "Disable Floating Social Sharing on this "
141
+ msgstr ""
142
+
143
+ #: ../helper.php:741
144
+ msgid "Disable Standard like buttons on this "
145
+ msgstr ""
146
+
147
+ #: ../helper.php:746
148
+ msgid "Disable Floating like buttons on this "
149
+ msgstr ""
150
+
151
+ #: ../helper.php:751
152
+ msgid "Disable Social Commenting on this "
153
+ msgstr ""
154
+
155
+ #: ../helper.php:760
156
+ msgid "Standard Sharing Interface"
157
+ msgstr ""
158
+
159
+ #: ../helper.php:766
160
+ #: ../helper.php:785
161
+ msgid "Starting share count for "
162
+ msgstr ""
163
+
164
+ #: ../helper.php:779
165
+ msgid "Floating Sharing Interface"
166
+ msgstr ""
167
+
168
+ #: ../helper.php:871
169
+ msgid "Social Avatar"
170
+ msgstr ""
171
+
172
+ #: ../helper.php:874
173
+ msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
174
+ msgstr ""
175
+
176
+ #: ../helper.php:875
177
+ msgid "Update social avatar, next time I Social Login"
178
+ msgstr ""
179
+
180
+ #: ../helper.php:878
181
+ msgid "Small Avatar"
182
+ msgstr ""
183
+
184
+ #: ../helper.php:882
185
+ msgid "Large Avatar"
186
+ msgstr ""
187
+
188
+ #: ../helper.php:886
189
+ #: ../admin/general_options.php:89
190
+ #: ../admin/social_sharing.php:1713
191
+ #: ../admin/social_commenting.php:464
192
+ #: ../admin/social_login.php:778
193
+ #: ../admin/like_buttons.php:745
194
+ msgid "Save Changes"
195
+ msgstr ""
196
+
197
+ #: ../admin/general_options.php:17
198
+ msgid "Include Javascript in website footer"
199
+ msgstr ""
200
+
201
+ #: ../admin/general_options.php:27
202
+ msgid "If enabled (recommended), Javascript files will be included in the footer of your website."
203
+ msgstr ""
204
+
205
+ #: ../admin/general_options.php:35
206
+ msgid "Load all Javascript files in single file"
207
+ msgstr ""
208
+
209
+ #: ../admin/general_options.php:45
210
+ msgid "Loads Javascript in single request."
211
+ msgstr ""
212
+
213
+ #: ../admin/general_options.php:53
214
+ msgid "Delete all the options on plugin deletion"
215
+ msgstr ""
216
+
217
+ #: ../admin/general_options.php:63
218
+ msgid "If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time."
219
+ msgstr ""
220
+
221
+ #: ../admin/general_options.php:71
222
+ msgid "Custom CSS"
223
+ msgstr ""
224
+
225
+ #: ../admin/general_options.php:81
226
+ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
227
+ msgstr ""
228
+
229
+ #: ../admin/help.php:4
230
+ msgid "About"
231
+ msgstr ""
232
+
233
+ #: ../admin/help.php:4
234
+ msgid "Version"
235
+ msgstr ""
236
+
237
+ #: ../admin/help.php:6
238
+ msgid "by"
239
+ msgstr ""
240
+
241
+ #: ../admin/help.php:7
242
+ msgid "We are a creative team with unique ideas in mind and service in heart. We love what we do. For more info join us at"
243
+ msgstr ""
244
+
245
+ #: ../admin/help.php:17
246
+ msgid "Donate"
247
+ msgstr ""
248
+
249
+ #: ../admin/help.php:19
250
+ msgid "You can help us continue the development of this free plugin by donating"
251
+ msgstr ""
252
+
253
+ #: ../admin/help.php:20
254
+ msgid "Donate Now"
255
+ msgstr ""
256
+
257
+ #: ../admin/help.php:26
258
+ msgid "Plugin Demo"
259
+ msgstr ""
260
+
261
+ #: ../admin/help.php:32
262
+ msgid "Integrate with Google Analytics"
263
+ msgstr ""
264
+
265
+ #: ../admin/help.php:38
266
+ msgid "Boost sharing by awarding points"
267
+ msgstr ""
268
+
269
+ #: ../admin/help.php:44
270
+ msgid "Award points for Social Login"
271
+ msgstr ""
272
+
273
+ #: ../admin/help.php:50
274
+ msgid "Other Add-ons"
275
+ msgstr ""
276
+
277
+ #: ../admin/help.php:55
278
+ msgid "Need Help?"
279
+ msgstr ""
280
+
281
+ #: ../admin/help.php:57
282
+ msgid "If you <strong>have any query</strong>, need help regarding <strong>plugin setup</strong>, want <strong>custom features</strong> in the plugin or <strong>have any suggestion</strong> to improve the plugin, just drop an email at <a href=\"mailto:support@heateor.com\">support@heateor.com</a>"
283
+ msgstr ""
284
+
285
+ #: ../admin/help.php:62
286
+ msgid "Support Us"
287
+ msgstr ""
288
+
289
+ #: ../admin/help.php:65
290
+ #: ../admin/help.php:68
291
+ #: ../admin/help.php:69
292
+ #: ../admin/help.php:70
293
+ #: ../admin/help.php:71
294
+ #: ../admin/help.php:72
295
+ msgid "Rate 5-star"
296
+ msgstr ""
297
+
298
+ #: ../admin/social_sharing.php:9
299
+ #: ../admin/social_commenting.php:8
300
+ #: ../admin/social_login.php:8
301
+ #: ../admin/like_buttons.php:10
302
+ msgid "Master Control"
303
+ msgstr ""
304
+
305
+ #: ../admin/social_sharing.php:14
306
+ msgid "Enable Social Sharing"
307
+ msgstr ""
308
+
309
+ #: ../admin/social_sharing.php:23
310
+ msgid "Master control to enable Social Sharing"
311
+ msgstr ""
312
+
313
+ #: ../admin/social_sharing.php:35
314
+ msgid "Theme Selection"
315
+ msgstr ""
316
+
317
+ #: ../admin/social_sharing.php:36
318
+ #: ../admin/like_buttons.php:37
319
+ msgid "Standard Interface"
320
+ msgstr ""
321
+
322
+ #: ../admin/social_sharing.php:37
323
+ #: ../admin/like_buttons.php:38
324
+ msgid "Floating Interface"
325
+ msgstr ""
326
+
327
+ #: ../admin/social_sharing.php:38
328
+ #: ../admin/like_buttons.php:39
329
+ msgid "Miscellaneous"
330
+ msgstr ""
331
+
332
+ #: ../admin/social_sharing.php:39
333
+ #: ../admin/social_sharing.php:1662
334
+ #: ../admin/social_sharing.php:1664
335
+ #: ../admin/social_login.php:37
336
+ #: ../admin/social_login.php:764
337
+ #: ../admin/like_buttons.php:40
338
+ #: ../admin/like_buttons.php:732
339
+ msgid "Shortcode & Widget"
340
+ msgstr ""
341
+
342
+ #: ../admin/social_sharing.php:40
343
+ msgid "Troubleshooter"
344
+ msgstr ""
345
+
346
+ #: ../admin/social_sharing.php:41
347
+ #: ../admin/social_sharing.php:1693
348
+ #: ../admin/social_commenting.php:36
349
+ #: ../admin/social_commenting.php:452
350
+ msgid "FAQ"
351
+ msgstr ""
352
+
353
+ #: ../admin/social_sharing.php:48
354
+ msgid "Standard interface theme"
355
+ msgstr ""
356
+
357
+ #: ../admin/social_sharing.php:53
358
+ #: ../admin/social_sharing.php:360
359
+ msgid "Icon Preview"
360
+ msgstr ""
361
+
362
+ #: ../admin/social_sharing.php:125
363
+ #: ../admin/social_sharing.php:433
364
+ msgid "Do not forget to save the configuration after making changes by clicking the save button below"
365
+ msgstr ""
366
+
367
+ #: ../admin/social_sharing.php:132
368
+ #: ../admin/social_sharing.php:440
369
+ msgid "Shape"
370
+ msgstr ""
371
+
372
+ #: ../admin/social_sharing.php:136
373
+ #: ../admin/social_sharing.php:444
374
+ msgid "Round"
375
+ msgstr ""
376
+
377
+ #: ../admin/social_sharing.php:138
378
+ #: ../admin/social_sharing.php:446
379
+ msgid "Square"
380
+ msgstr ""
381
+
382
+ #: ../admin/social_sharing.php:140
383
+ #: ../admin/social_sharing.php:448
384
+ msgid "Rectangle"
385
+ msgstr ""
386
+
387
+ #: ../admin/social_sharing.php:147
388
+ #: ../admin/social_sharing.php:455
389
+ msgid "Shape of the sharing icons"
390
+ msgstr ""
391
+
392
+ #: ../admin/social_sharing.php:156
393
+ #: ../admin/social_sharing.php:464
394
+ msgid "Size (in pixels)"
395
+ msgstr ""
396
+
397
+ #: ../admin/social_sharing.php:172
398
+ #: ../admin/social_sharing.php:480
399
+ msgid "Size of the sharing icons"
400
+ msgstr ""
401
+
402
+ #: ../admin/social_sharing.php:182
403
+ #: ../admin/social_sharing.php:490
404
+ msgid "Width (in pixels)"
405
+ msgstr ""
406
+
407
+ #: ../admin/social_sharing.php:198
408
+ #: ../admin/social_sharing.php:506
409
+ msgid "Width of the sharing icons"
410
+ msgstr ""
411
+
412
+ #: ../admin/social_sharing.php:206
413
+ #: ../admin/social_sharing.php:514
414
+ msgid "Height (in pixels)"
415
+ msgstr ""
416
+
417
+ #: ../admin/social_sharing.php:222
418
+ #: ../admin/social_sharing.php:530
419
+ msgid "Height of the sharing icons"
420
+ msgstr ""
421
+
422
+ #: ../admin/social_sharing.php:232
423
+ #: ../admin/social_sharing.php:540
424
+ msgid "Border radius (in pixels)"
425
+ msgstr ""
426
+
427
+ #: ../admin/social_sharing.php:242
428
+ #: ../admin/social_sharing.php:550
429
+ msgid "Specify a value for rounded corners. More the value, more rounded will the corners be. Leave empty for sharp corners."
430
+ msgstr ""
431
+
432
+ #: ../admin/social_sharing.php:251
433
+ #: ../admin/social_sharing.php:559
434
+ msgid "Logo Color"
435
+ msgstr ""
436
+
437
+ #: ../admin/social_sharing.php:255
438
+ #: ../admin/social_sharing.php:276
439
+ #: ../admin/social_sharing.php:296
440
+ #: ../admin/social_sharing.php:563
441
+ #: ../admin/social_sharing.php:584
442
+ #: ../admin/social_sharing.php:603
443
+ msgid "Default"
444
+ msgstr ""
445
+
446
+ #: ../admin/social_sharing.php:257
447
+ #: ../admin/social_sharing.php:277
448
+ #: ../admin/social_sharing.php:301
449
+ #: ../admin/social_sharing.php:565
450
+ #: ../admin/social_sharing.php:585
451
+ #: ../admin/social_sharing.php:608
452
+ msgid "On Hover"
453
+ msgstr ""
454
+
455
+ #: ../admin/social_sharing.php:265
456
+ #: ../admin/social_sharing.php:573
457
+ msgid "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave empty for default. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
458
+ msgstr ""
459
+
460
+ #: ../admin/social_sharing.php:273
461
+ #: ../admin/social_sharing.php:581
462
+ #: ../admin/social_sharing.php:1213
463
+ #: ../admin/like_buttons.php:395
464
+ msgid "Background Color"
465
+ msgstr ""
466
+
467
+ #: ../admin/social_sharing.php:284
468
+ #: ../admin/social_sharing.php:592
469
+ msgid "Specify the color or hex code (example #cc78e0) for icon background. Save \"transparent\" for transparent background. Leave empty for default. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
470
+ msgstr ""
471
+
472
+ #: ../admin/social_sharing.php:292
473
+ #: ../admin/social_sharing.php:600
474
+ msgid "Border"
475
+ msgstr ""
476
+
477
+ #: ../admin/social_sharing.php:298
478
+ #: ../admin/social_sharing.php:303
479
+ #: ../admin/social_sharing.php:605
480
+ #: ../admin/social_sharing.php:610
481
+ msgid "Border Width"
482
+ msgstr ""
483
+
484
+ #: ../admin/social_sharing.php:299
485
+ #: ../admin/social_sharing.php:304
486
+ #: ../admin/social_sharing.php:606
487
+ #: ../admin/social_sharing.php:611
488
+ msgid "Border Color"
489
+ msgstr ""
490
+
491
+ #: ../admin/social_sharing.php:311
492
+ #: ../admin/social_sharing.php:618
493
+ msgid "Icon border"
494
+ msgstr ""
495
+
496
+ #: ../admin/social_sharing.php:319
497
+ #: ../admin/social_sharing.php:626
498
+ msgid "Counter Position"
499
+ msgstr ""
500
+
501
+ #: ../admin/social_sharing.php:319
502
+ #: ../admin/social_sharing.php:626
503
+ msgid "(applies, if counter enabled)"
504
+ msgstr ""
505
+
506
+ #: ../admin/social_sharing.php:323
507
+ #: ../admin/social_sharing.php:630
508
+ #: ../admin/social_sharing.php:851
509
+ #: ../admin/social_sharing.php:1235
510
+ #: ../admin/like_buttons.php:170
511
+ #: ../admin/like_buttons.php:417
512
+ msgid "Left"
513
+ msgstr ""
514
+
515
+ #: ../admin/social_sharing.php:325
516
+ #: ../admin/social_sharing.php:632
517
+ msgid "Top"
518
+ msgstr ""
519
+
520
+ #: ../admin/social_sharing.php:327
521
+ #: ../admin/social_sharing.php:634
522
+ #: ../admin/social_sharing.php:853
523
+ #: ../admin/social_sharing.php:1236
524
+ #: ../admin/like_buttons.php:172
525
+ #: ../admin/like_buttons.php:418
526
+ msgid "Right"
527
+ msgstr ""
528
+
529
+ #: ../admin/social_sharing.php:329
530
+ #: ../admin/social_sharing.php:636
531
+ msgid "Bottom"
532
+ msgstr ""
533
+
534
+ #: ../admin/social_sharing.php:331
535
+ #: ../admin/social_sharing.php:638
536
+ msgid "Inner Left"
537
+ msgstr ""
538
+
539
+ #: ../admin/social_sharing.php:333
540
+ #: ../admin/social_sharing.php:640
541
+ msgid "Inner Top"
542
+ msgstr ""
543
+
544
+ #: ../admin/social_sharing.php:335
545
+ #: ../admin/social_sharing.php:642
546
+ msgid "Inner Right"
547
+ msgstr ""
548
+
549
+ #: ../admin/social_sharing.php:337
550
+ #: ../admin/social_sharing.php:644
551
+ msgid "Inner Bottom"
552
+ msgstr ""
553
+
554
+ #: ../admin/social_sharing.php:345
555
+ #: ../admin/social_sharing.php:652
556
+ msgid "Position of share counter"
557
+ msgstr ""
558
+
559
+ #: ../admin/social_sharing.php:355
560
+ msgid "Floating interface theme"
561
+ msgstr ""
562
+
563
+ #: ../admin/social_sharing.php:667
564
+ msgid "Standard Sharing Interface Options"
565
+ msgstr ""
566
+
567
+ #: ../admin/social_sharing.php:673
568
+ msgid "Enable Standard sharing interface"
569
+ msgstr ""
570
+
571
+ #: ../admin/social_sharing.php:683
572
+ msgid "Master control to enable standard sharing"
573
+ msgstr ""
574
+
575
+ #: ../admin/social_sharing.php:693
576
+ #: ../admin/social_sharing.php:1081
577
+ #: ../admin/like_buttons.php:73
578
+ #: ../admin/like_buttons.php:321
579
+ msgid "Target Url"
580
+ msgstr ""
581
+
582
+ #: ../admin/social_sharing.php:697
583
+ #: ../admin/social_sharing.php:1085
584
+ #: ../admin/like_buttons.php:77
585
+ #: ../admin/like_buttons.php:325
586
+ msgid "Url of the webpage where icons are located (default)"
587
+ msgstr ""
588
+
589
+ #: ../admin/social_sharing.php:699
590
+ #: ../admin/social_sharing.php:1087
591
+ #: ../admin/like_buttons.php:79
592
+ #: ../admin/like_buttons.php:327
593
+ msgid "Url of the homepage of your website"
594
+ msgstr ""
595
+
596
+ #: ../admin/social_sharing.php:701
597
+ #: ../admin/social_sharing.php:1089
598
+ #: ../admin/like_buttons.php:81
599
+ #: ../admin/like_buttons.php:329
600
+ msgid "Custom url"
601
+ msgstr ""
602
+
603
+ #: ../admin/social_sharing.php:708
604
+ #: ../admin/social_sharing.php:1096
605
+ msgid "Url to share"
606
+ msgstr ""
607
+
608
+ #: ../admin/social_sharing.php:716
609
+ #: ../admin/social_login.php:343
610
+ #: ../admin/like_buttons.php:96
611
+ msgid "Title"
612
+ msgstr ""
613
+
614
+ #: ../admin/social_sharing.php:726
615
+ msgid "The text to display above the sharing interface"
616
+ msgstr ""
617
+
618
+ #: ../admin/social_sharing.php:738
619
+ #: ../admin/social_sharing.php:1104
620
+ msgid "Rearrange icons"
621
+ msgstr ""
622
+
623
+ #: ../admin/social_sharing.php:797
624
+ #: ../admin/social_sharing.php:1163
625
+ msgid "Drag the icons to rearrange in desired order"
626
+ msgstr ""
627
+
628
+ #: ../admin/social_sharing.php:805
629
+ #: ../admin/social_sharing.php:1171
630
+ msgid "Select Sharing Services"
631
+ msgstr ""
632
+
633
+ #: ../admin/social_sharing.php:812
634
+ #: ../admin/social_sharing.php:1178
635
+ msgid "Select sharing services to show in social share bar"
636
+ msgstr ""
637
+
638
+ #: ../admin/social_sharing.php:847
639
+ #: ../admin/social_sharing.php:1231
640
+ #: ../admin/like_buttons.php:166
641
+ #: ../admin/like_buttons.php:413
642
+ msgid "Horizontal alignment"
643
+ msgstr ""
644
+
645
+ #: ../admin/social_sharing.php:852
646
+ #: ../admin/like_buttons.php:171
647
+ msgid "Center"
648
+ msgstr ""
649
+
650
+ #: ../admin/social_sharing.php:861
651
+ #: ../admin/social_sharing.php:1244
652
+ msgid "Horizontal alignment of the sharing interface"
653
+ msgstr ""
654
+
655
+ #: ../admin/social_sharing.php:869
656
+ #: ../admin/like_buttons.php:188
657
+ msgid "Position with respect to content"
658
+ msgstr ""
659
+
660
+ #: ../admin/social_sharing.php:873
661
+ #: ../admin/like_buttons.php:192
662
+ msgid "Top of the content"
663
+ msgstr ""
664
+
665
+ #: ../admin/social_sharing.php:875
666
+ #: ../admin/like_buttons.php:194
667
+ msgid "Bottom of the content"
668
+ msgstr ""
669
+
670
+ #: ../admin/social_sharing.php:882
671
+ msgid "Specify position of the sharing interface with respect to the content"
672
+ msgstr ""
673
+
674
+ #: ../admin/social_sharing.php:890
675
+ #: ../admin/social_sharing.php:1310
676
+ msgid "Placement"
677
+ msgstr ""
678
+
679
+ #: ../admin/social_sharing.php:894
680
+ #: ../admin/social_sharing.php:1314
681
+ #: ../admin/social_login.php:624
682
+ #: ../admin/social_login.php:654
683
+ #: ../admin/like_buttons.php:213
684
+ #: ../admin/like_buttons.php:496
685
+ msgid "Homepage"
686
+ msgstr ""
687
+
688
+ #: ../admin/social_sharing.php:896
689
+ #: ../admin/social_sharing.php:1316
690
+ #: ../admin/like_buttons.php:215
691
+ #: ../admin/like_buttons.php:498
692
+ msgid "Posts"
693
+ msgstr ""
694
+
695
+ #: ../admin/social_sharing.php:898
696
+ #: ../admin/social_sharing.php:1318
697
+ #: ../admin/like_buttons.php:217
698
+ #: ../admin/like_buttons.php:500
699
+ msgid "Pages"
700
+ msgstr ""
701
+
702
+ #: ../admin/social_sharing.php:900
703
+ #: ../admin/social_sharing.php:1320
704
+ msgid "Excerpts (at Homepage)"
705
+ msgstr ""
706
+
707
+ #: ../admin/social_sharing.php:902
708
+ #: ../admin/social_sharing.php:1322
709
+ #: ../admin/like_buttons.php:221
710
+ #: ../admin/like_buttons.php:504
711
+ msgid "Category Archives"
712
+ msgstr ""
713
+
714
+ #: ../admin/social_sharing.php:904
715
+ #: ../admin/social_sharing.php:1324
716
+ #: ../admin/like_buttons.php:223
717
+ #: ../admin/like_buttons.php:506
718
+ msgid "Archive Pages (Category, Tag, Author or Date based pages)"
719
+ msgstr ""
720
+
721
+ #: ../admin/social_sharing.php:920
722
+ #: ../admin/like_buttons.php:239
723
+ msgid "BuddyPress activity"
724
+ msgstr ""
725
+
726
+ #: ../admin/social_sharing.php:922
727
+ #: ../admin/like_buttons.php:242
728
+ msgid "BuddyPress group (only at top of content)"
729
+ msgstr ""
730
+
731
+ #: ../admin/social_sharing.php:928
732
+ #: ../admin/social_sharing.php:1346
733
+ #: ../admin/like_buttons.php:249
734
+ #: ../admin/like_buttons.php:527
735
+ msgid "BBPress forum"
736
+ msgstr ""
737
+
738
+ #: ../admin/social_sharing.php:931
739
+ #: ../admin/social_sharing.php:1349
740
+ #: ../admin/like_buttons.php:252
741
+ #: ../admin/like_buttons.php:530
742
+ msgid "BBPress topic"
743
+ msgstr ""
744
+
745
+ #: ../admin/social_sharing.php:934
746
+ #: ../admin/like_buttons.php:255
747
+ msgid "BBPress reply"
748
+ msgstr ""
749
+
750
+ #: ../admin/social_sharing.php:941
751
+ #: ../admin/like_buttons.php:261
752
+ msgid "After individual product at WooCommerce Shop page"
753
+ msgstr ""
754
+
755
+ #: ../admin/social_sharing.php:944
756
+ #: ../admin/like_buttons.php:264
757
+ msgid "WooCommerce Product Page"
758
+ msgstr ""
759
+
760
+ #: ../admin/social_sharing.php:947
761
+ #: ../admin/like_buttons.php:267
762
+ msgid "WooCommerce Thankyou Page"
763
+ msgstr ""
764
+
765
+ #: ../admin/social_sharing.php:958
766
+ msgid "Specify the pages where you want to enable Sharing interface"
767
+ msgstr ""
768
+
769
+ #: ../admin/social_sharing.php:966
770
+ #: ../admin/social_sharing.php:1367
771
+ msgid "Show share counts"
772
+ msgstr ""
773
+
774
+ #: ../admin/social_sharing.php:971
775
+ #: ../admin/social_sharing.php:1372
776
+ msgid "Official share counts are supported for Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, Stumbleupon and Vkontakte"
777
+ msgstr ""
778
+
779
+ #: ../admin/social_sharing.php:988
780
+ #: ../admin/social_sharing.php:1380
781
+ #, php-format
782
+ msgid "Use <a href=\"%s\" target=\"_blank\">NewShareCounts</a> to show Twitter share counts"
783
+ msgstr ""
784
+
785
+ #: ../admin/social_sharing.php:990
786
+ #: ../admin/social_sharing.php:1382
787
+ #, php-format
788
+ msgid "For this to work, you have to enter your website url %s and sign in using Twitter at <a href=\"%s\" target=\"_blank\">their website</a>"
789
+ msgstr ""
790
+
791
+ #: ../admin/social_sharing.php:992
792
+ #: ../admin/social_sharing.php:1384
793
+ #, php-format
794
+ msgid "Use <a href=\"%s\" target=\"_blank\">OpenShareCount</a> to show Twitter share counts"
795
+ msgstr ""
796
+
797
+ #: ../admin/social_sharing.php:994
798
+ #: ../admin/social_sharing.php:1386
799
+ #, php-format
800
+ msgid "For this to work, you have to sign up and register your website url %s at <a href=\"%s\" target=\"_blank\">their website</a>"
801
+ msgstr ""
802
+
803
+ #: ../admin/social_sharing.php:1001
804
+ #: ../admin/social_sharing.php:1393
805
+ msgid "If enabled, share counts are displayed above sharing icons."
806
+ msgstr ""
807
+
808
+ #: ../admin/social_sharing.php:1010
809
+ #: ../admin/social_sharing.php:1402
810
+ msgid "Show total shares"
811
+ msgstr ""
812
+
813
+ #: ../admin/social_sharing.php:1020
814
+ #: ../admin/social_sharing.php:1412
815
+ msgid "If enabled, total shares will be displayed with sharing icons"
816
+ msgstr ""
817
+
818
+ #: ../admin/social_sharing.php:1029
819
+ #: ../admin/social_sharing.php:1421
820
+ msgid "Enable 'More' icon"
821
+ msgstr ""
822
+
823
+ #: ../admin/social_sharing.php:1039
824
+ #: ../admin/social_sharing.php:1431
825
+ msgid "If enabled, \"More\" icon will be displayed after selected sharing icons which shows additional sharing networks in popup"
826
+ msgstr ""
827
+
828
+ #: ../admin/social_sharing.php:1055
829
+ msgid "Floating Sharing Interface Options"
830
+ msgstr ""
831
+
832
+ #: ../admin/social_sharing.php:1061
833
+ msgid "Enable Floating sharing interface"
834
+ msgstr ""
835
+
836
+ #: ../admin/social_sharing.php:1071
837
+ msgid "Master control to enable floating sharing widget"
838
+ msgstr ""
839
+
840
+ #: ../admin/social_sharing.php:1223
841
+ msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
842
+ msgstr ""
843
+
844
+ #: ../admin/social_sharing.php:1253
845
+ #: ../admin/like_buttons.php:435
846
+ msgid "Left offset"
847
+ msgstr ""
848
+
849
+ #: ../admin/social_sharing.php:1263
850
+ msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left. Number can be negative too."
851
+ msgstr ""
852
+
853
+ #: ../admin/social_sharing.php:1273
854
+ #: ../admin/like_buttons.php:455
855
+ msgid "Right offset"
856
+ msgstr ""
857
+
858
+ #: ../admin/social_sharing.php:1283
859
+ msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right. Number can be negative too."
860
+ msgstr ""
861
+
862
+ #: ../admin/social_sharing.php:1292
863
+ #: ../admin/like_buttons.php:474
864
+ msgid "Top offset"
865
+ msgstr ""
866
+
867
+ #: ../admin/social_sharing.php:1302
868
+ msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
869
+ msgstr ""
870
+
871
+ #: ../admin/social_sharing.php:1338
872
+ #: ../admin/like_buttons.php:520
873
+ msgid "BuddyPress group"
874
+ msgstr ""
875
+
876
+ #: ../admin/social_sharing.php:1359
877
+ msgid "Specify the pages where you want to enable vertical Sharing interface"
878
+ msgstr ""
879
+
880
+ #: ../admin/social_sharing.php:1439
881
+ msgid "Vertical floating bar responsiveness"
882
+ msgstr ""
883
+
884
+ #: ../admin/social_sharing.php:1442
885
+ #, php-format
886
+ msgid "Display vertical interface only when screen is wider than %s pixels"
887
+ msgstr ""
888
+
889
+ #: ../admin/social_sharing.php:1449
890
+ msgid "Display vertical interface only when screen is wider than the width specified."
891
+ msgstr ""
892
+
893
+ #: ../admin/social_sharing.php:1457
894
+ msgid "Horizontal floating bar responsiveness"
895
+ msgstr ""
896
+
897
+ #: ../admin/social_sharing.php:1460
898
+ #, php-format
899
+ msgid "Stick vertical floating interface horizontally at bottom only when screen is narrower than %s pixels"
900
+ msgstr ""
901
+
902
+ #: ../admin/social_sharing.php:1467
903
+ msgid "Stick vertical floating interface horizontally at bottom only when screen is narrower than the width specified"
904
+ msgstr ""
905
+
906
+ #: ../admin/social_sharing.php:1477
907
+ msgid "Horizontal floating bar position"
908
+ msgstr ""
909
+
910
+ #: ../admin/social_sharing.php:1480
911
+ #, php-format
912
+ msgid "%s pixels from %s"
913
+ msgstr ""
914
+
915
+ #: ../admin/social_sharing.php:1487
916
+ msgid "Alignment of horizontal floating interface. Number can be negative too."
917
+ msgstr ""
918
+
919
+ #: ../admin/social_sharing.php:1506
920
+ #: ../admin/like_buttons.php:576
921
+ msgid "Url shortener"
922
+ msgstr ""
923
+
924
+ #: ../admin/social_sharing.php:1512
925
+ msgid "Use shortlinks already installed"
926
+ msgstr ""
927
+
928
+ #: ../admin/social_sharing.php:1522
929
+ #: ../admin/like_buttons.php:592
930
+ msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
931
+ msgstr ""
932
+
933
+ #: ../admin/social_sharing.php:1530
934
+ msgid "Enable bit.ly url shortener for sharing"
935
+ msgstr ""
936
+
937
+ #: ../admin/social_sharing.php:1540
938
+ #: ../admin/like_buttons.php:610
939
+ msgid "Master control to enable bit.ly url shortening for sharing"
940
+ msgstr ""
941
+
942
+ #: ../admin/social_sharing.php:1548
943
+ #: ../admin/like_buttons.php:618
944
+ msgid "bit.ly username"
945
+ msgstr ""
946
+
947
+ #: ../admin/social_sharing.php:1558
948
+ #: ../admin/like_buttons.php:628
949
+ #, php-format
950
+ msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
951
+ msgstr ""
952
+
953
+ #: ../admin/social_sharing.php:1567
954
+ #: ../admin/like_buttons.php:637
955
+ msgid "bit.ly API Key"
956
+ msgstr ""
957
+
958
+ #: ../admin/social_sharing.php:1577
959
+ #: ../admin/like_buttons.php:647
960
+ #, php-format
961
+ msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
962
+ msgstr ""
963
+
964
+ #: ../admin/social_sharing.php:1587
965
+ #: ../admin/social_sharing.php:1593
966
+ #: ../admin/social_commenting.php:311
967
+ #: ../admin/like_buttons.php:657
968
+ #: ../admin/like_buttons.php:663
969
+ msgid "Language"
970
+ msgstr ""
971
+
972
+ #: ../admin/social_sharing.php:1603
973
+ #, php-format
974
+ msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
975
+ msgstr ""
976
+
977
+ #: ../admin/social_sharing.php:1612
978
+ msgid "Username in sharing"
979
+ msgstr ""
980
+
981
+ #: ../admin/social_sharing.php:1618
982
+ msgid "Twitter username (without @)"
983
+ msgstr ""
984
+
985
+ #: ../admin/social_sharing.php:1628
986
+ #: ../admin/social_sharing.php:1647
987
+ msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
988
+ msgstr ""
989
+
990
+ #: ../admin/social_sharing.php:1637
991
+ msgid "Buffer username (without @)"
992
+ msgstr ""
993
+
994
+ #: ../admin/social_sharing.php:1674
995
+ msgid "Facebook Sharing Troubleshooter"
996
+ msgstr ""
997
+
998
+ #: ../admin/social_sharing.php:1679
999
+ msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1000
+ msgstr ""
1001
+
1002
+ #: ../admin/social_sharing.php:1695
1003
+ msgid "How can I show share counts of my website rather than of individual pages/posts?"
1004
+ msgstr ""
1005
+
1006
+ #: ../admin/social_sharing.php:1696
1007
+ msgid "How can I disable sharing on particular page/post?"
1008
+ msgstr ""
1009
+
1010
+ #: ../admin/social_sharing.php:1697
1011
+ msgid "How can I specify minimum sharing count for sharing networks?"
1012
+ msgstr ""
1013
+
1014
+ #: ../admin/social_sharing.php:1698
1015
+ msgid "How to share specific page?"
1016
+ msgstr ""
1017
+
1018
+ #: ../admin/social_sharing.php:1699
1019
+ msgid "How to integrate Google Analytics with sharing?"
1020
+ msgstr ""
1021
+
1022
+ #: ../admin/social_sharing.php:1700
1023
+ msgid "How to customize the look of total share counts?"
1024
+ msgstr ""
1025
+
1026
+ #: ../admin/social_sharing.php:1701
1027
+ msgid "How to customize the look of individual share counts?"
1028
+ msgstr ""
1029
+
1030
+ #: ../admin/social_sharing.php:1702
1031
+ msgid "How to show Whatsapp icon only on mobile devices?"
1032
+ msgstr ""
1033
+
1034
+ #: ../admin/social_commenting.php:13
1035
+ msgid "Enable Social Commenting"
1036
+ msgstr ""
1037
+
1038
+ #: ../admin/social_commenting.php:23
1039
+ msgid "Master control to enable Social Commenting"
1040
+ msgstr ""
1041
+
1042
+ #: ../admin/social_commenting.php:34
1043
+ msgid "Social Commenting"
1044
+ msgstr ""
1045
+
1046
+ #: ../admin/social_commenting.php:35
1047
+ #: ../admin/social_commenting.php:440
1048
+ msgid "Shortcode"
1049
+ msgstr ""
1050
+
1051
+ #: ../admin/social_commenting.php:48
1052
+ msgid "Order of tabs in commenting interface"
1053
+ msgstr ""
1054
+
1055
+ #: ../admin/social_commenting.php:58
1056
+ msgid "Order of the tabs shown in social commenting interface. Defaults to wordpress,facebook,googleplus,disqus"
1057
+ msgstr ""
1058
+
1059
+ #: ../admin/social_commenting.php:66
1060
+ msgid "Comment area label"
1061
+ msgstr ""
1062
+
1063
+ #: ../admin/social_commenting.php:76
1064
+ msgid "Label for comment area"
1065
+ msgstr ""
1066
+
1067
+ #: ../admin/social_commenting.php:89
1068
+ msgid "Enable Social Commenting at"
1069
+ msgstr ""
1070
+
1071
+ #: ../admin/social_commenting.php:108
1072
+ msgid "Specify the page/post groups where you want to enable Social Commenting"
1073
+ msgstr ""
1074
+
1075
+ #: ../admin/social_commenting.php:119
1076
+ msgid "HTML ID of comment form container"
1077
+ msgstr ""
1078
+
1079
+ #: ../admin/social_commenting.php:129
1080
+ msgid "HTML ID of container element of the default comment form at front end. Leave empty for default ID - \"respond\". You need to specify it if default comment form is appearing and Social Commenting is not getting enabled at front-end of your website."
1081
+ msgstr ""
1082
+
1083
+ #: ../admin/social_commenting.php:139
1084
+ msgid "Labels"
1085
+ msgstr ""
1086
+
1087
+ #: ../admin/social_commenting.php:144
1088
+ msgid "Label for WordPress Commenting tab"
1089
+ msgstr ""
1090
+
1091
+ #: ../admin/social_commenting.php:153
1092
+ msgid "Label for Facebook Commenting tab"
1093
+ msgstr ""
1094
+
1095
+ #: ../admin/social_commenting.php:162
1096
+ msgid "Label for G+ Commenting tab"
1097
+ msgstr ""
1098
+
1099
+ #: ../admin/social_commenting.php:171
1100
+ msgid "Label for Disqus Commenting tab"
1101
+ msgstr ""
1102
+
1103
+ #: ../admin/social_commenting.php:182
1104
+ msgid "Facebook Commenting Options"
1105
+ msgstr ""
1106
+
1107
+ #: ../admin/social_commenting.php:188
1108
+ msgid "Enable Facebook Comments notification and moderation"
1109
+ msgstr ""
1110
+
1111
+ #: ../admin/social_commenting.php:196
1112
+ #: ../admin/social_commenting.php:206
1113
+ msgid "Enable Facebook Commenting"
1114
+ msgstr ""
1115
+
1116
+ #: ../admin/social_commenting.php:214
1117
+ #: ../admin/social_commenting.php:372
1118
+ msgid "Url to comment on"
1119
+ msgstr ""
1120
+
1121
+ #: ../admin/social_commenting.php:224
1122
+ msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1123
+ msgstr ""
1124
+
1125
+ #: ../admin/social_commenting.php:232
1126
+ #: ../admin/social_commenting.php:354
1127
+ msgid "Width"
1128
+ msgstr ""
1129
+
1130
+ #: ../admin/social_commenting.php:242
1131
+ msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
1132
+ msgstr ""
1133
+
1134
+ #: ../admin/social_commenting.php:250
1135
+ msgid "Color Scheme"
1136
+ msgstr ""
1137
+
1138
+ #: ../admin/social_commenting.php:254
1139
+ msgid "Light"
1140
+ msgstr ""
1141
+
1142
+ #: ../admin/social_commenting.php:255
1143
+ msgid "Dark"
1144
+ msgstr ""
1145
+
1146
+ #: ../admin/social_commenting.php:263
1147
+ msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
1148
+ msgstr ""
1149
+
1150
+ #: ../admin/social_commenting.php:271
1151
+ msgid "Number of comments"
1152
+ msgstr ""
1153
+
1154
+ #: ../admin/social_commenting.php:281
1155
+ msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
1156
+ msgstr ""
1157
+
1158
+ #: ../admin/social_commenting.php:289
1159
+ msgid "Order by"
1160
+ msgstr ""
1161
+
1162
+ #: ../admin/social_commenting.php:293
1163
+ msgid "Social"
1164
+ msgstr ""
1165
+
1166
+ #: ../admin/social_commenting.php:294
1167
+ msgid "Reverse Time"
1168
+ msgstr ""
1169
+
1170
+ #: ../admin/social_commenting.php:295
1171
+ msgid "Time"
1172
+ msgstr ""
1173
+
1174
+ #: ../admin/social_commenting.php:303
1175
+ msgid "The order to use when displaying comments."
1176
+ msgstr ""
1177
+
1178
+ #: ../admin/social_commenting.php:321
1179
+ #, php-format
1180
+ msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1181
+ msgstr ""
1182
+
1183
+ #: ../admin/social_commenting.php:330
1184
+ msgid "Google Plus Commenting Options"
1185
+ msgstr ""
1186
+
1187
+ #: ../admin/social_commenting.php:336
1188
+ #: ../admin/social_commenting.php:346
1189
+ msgid "Enable Google Plus Commenting"
1190
+ msgstr ""
1191
+
1192
+ #: ../admin/social_commenting.php:364
1193
+ msgid "Width of GooglePlus Commenting interface. Leave empty for auto adjust"
1194
+ msgstr ""
1195
+
1196
+ #: ../admin/social_commenting.php:382
1197
+ msgid "The absolute URL that comments posted will be permanently associated with. Stories on Google Plus about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1198
+ msgstr ""
1199
+
1200
+ #: ../admin/social_commenting.php:391
1201
+ msgid "Disqus Commenting Options"
1202
+ msgstr ""
1203
+
1204
+ #: ../admin/social_commenting.php:397
1205
+ #: ../admin/social_commenting.php:407
1206
+ msgid "Enable Disqus Commenting"
1207
+ msgstr ""
1208
+
1209
+ #: ../admin/social_commenting.php:415
1210
+ msgid "Disqus Shortname"
1211
+ msgstr ""
1212
+
1213
+ #: ../admin/social_commenting.php:425
1214
+ msgid "<strong>Required to use Disqus commenting.</strong> For more info on shortname, visit following link."
1215
+ msgstr ""
1216
+
1217
+ #: ../admin/social_commenting.php:442
1218
+ msgid "Social Commenting Shortcode"
1219
+ msgstr ""
1220
+
1221
+ #: ../admin/social_commenting.php:454
1222
+ msgid "How can I disable Social Commenting at individual page/post?"
1223
+ msgstr ""
1224
+
1225
+ #: ../admin/social_commenting.php:455
1226
+ msgid "How to disable default comment form from Social Commenting?"
1227
+ msgstr ""
1228
+
1229
+ #: ../admin/social_login.php:14
1230
+ msgid "Enable Social Login"
1231
+ msgstr ""
1232
+
1233
+ #: ../admin/social_login.php:24
1234
+ msgid "Master control for Social Login. It must be checked to enable Social Login functionality"
1235
+ msgstr ""
1236
+
1237
+ #: ../admin/social_login.php:35
1238
+ #: ../admin/social_login.php:43
1239
+ msgid "Basic Configuration"
1240
+ msgstr ""
1241
+
1242
+ #: ../admin/social_login.php:36
1243
+ msgid "Social Login"
1244
+ msgstr ""
1245
+
1246
+ #: ../admin/social_login.php:50
1247
+ msgid "Disable user registration via Social Login"
1248
+ msgstr ""
1249
+
1250
+ #: ../admin/social_login.php:60
1251
+ msgid "After enabling this option, new users will not be able to login through social login. Only existing users will be able to social login."
1252
+ msgstr ""
1253
+
1254
+ #: ../admin/social_login.php:69
1255
+ msgid "Redirection url"
1256
+ msgstr ""
1257
+
1258
+ #: ../admin/social_login.php:79
1259
+ msgid "User will be redirected to this page after unsuccessful registration attempt via Social Login. You can specify the url of registration form or of a page showing message regarding disabled registration through Social Login."
1260
+ msgstr ""
1261
+
1262
+ #: ../admin/social_login.php:88
1263
+ msgid "Select providers"
1264
+ msgstr ""
1265
+
1266
+ #: ../admin/social_login.php:93
1267
+ msgid "Facebook"
1268
+ msgstr ""
1269
+
1270
+ #: ../admin/social_login.php:97
1271
+ msgid "Twitter"
1272
+ msgstr ""
1273
+
1274
+ #: ../admin/social_login.php:101
1275
+ msgid "LinkedIn"
1276
+ msgstr ""
1277
+
1278
+ #: ../admin/social_login.php:105
1279
+ msgid "Google+"
1280
+ msgstr ""
1281
+
1282
+ #: ../admin/social_login.php:109
1283
+ msgid "Vkontakte"
1284
+ msgstr ""
1285
+
1286
+ #: ../admin/social_login.php:113
1287
+ msgid "Instagram"
1288
+ msgstr ""
1289
+
1290
+ #: ../admin/social_login.php:117
1291
+ msgid "Xing"
1292
+ msgstr ""
1293
+
1294
+ #: ../admin/social_login.php:125
1295
+ msgid "Select Social ID provider to enable in Social Login"
1296
+ msgstr ""
1297
+
1298
+ #: ../admin/social_login.php:133
1299
+ msgid "Facebook App ID"
1300
+ msgstr ""
1301
+
1302
+ #: ../admin/social_login.php:143
1303
+ #, php-format
1304
+ msgid "Required for Facebook Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1305
+ msgstr ""
1306
+
1307
+ #: ../admin/social_login.php:145
1308
+ msgid "Paste following url in <strong>Site URL</strong> option at the link mentioned"
1309
+ msgstr ""
1310
+
1311
+ #: ../admin/social_login.php:155
1312
+ msgid "Twitter API Key"
1313
+ msgstr ""
1314
+
1315
+ #: ../admin/social_login.php:165
1316
+ #, php-format
1317
+ msgid "Required for Twitter Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Key"
1318
+ msgstr ""
1319
+
1320
+ #: ../admin/social_login.php:167
1321
+ #: ../admin/social_login.php:189
1322
+ msgid "Paste following url in <strong>Website</strong> and <strong>Callback URL</strong> options at the link mentioned"
1323
+ msgstr ""
1324
+
1325
+ #: ../admin/social_login.php:177
1326
+ msgid "Twitter API Secret"
1327
+ msgstr ""
1328
+
1329
+ #: ../admin/social_login.php:187
1330
+ #, php-format
1331
+ msgid "Required for Twitter Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Secret"
1332
+ msgstr ""
1333
+
1334
+ #: ../admin/social_login.php:199
1335
+ msgid "LinkedIn API Key"
1336
+ msgstr ""
1337
+
1338
+ #: ../admin/social_login.php:209
1339
+ #, php-format
1340
+ msgid "Required for LinkedIn Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get LinkedIn API Key"
1341
+ msgstr ""
1342
+
1343
+ #: ../admin/social_login.php:211
1344
+ #: ../admin/social_login.php:277
1345
+ msgid "Paste following url in <strong>Website URL</strong> option at the link mentioned"
1346
+ msgstr ""
1347
+
1348
+ #: ../admin/social_login.php:221
1349
+ msgid "Google+ Client ID"
1350
+ msgstr ""
1351
+
1352
+ #: ../admin/social_login.php:231
1353
+ #, php-format
1354
+ msgid "Required for GooglePlus Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get GooglePlus Client ID"
1355
+ msgstr ""
1356
+
1357
+ #: ../admin/social_login.php:233
1358
+ msgid "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and <strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
1359
+ msgstr ""
1360
+
1361
+ #: ../admin/social_login.php:243
1362
+ msgid "Vkontakte Application ID"
1363
+ msgstr ""
1364
+
1365
+ #: ../admin/social_login.php:253
1366
+ #, php-format
1367
+ msgid "Required for Vkontakte Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Vkontakte Application ID"
1368
+ msgstr ""
1369
+
1370
+ #: ../admin/social_login.php:255
1371
+ msgid "Paste following url in <strong>Site address</strong> option at the link mentioned"
1372
+ msgstr ""
1373
+
1374
+ #: ../admin/social_login.php:265
1375
+ msgid "Instagram Client ID"
1376
+ msgstr ""
1377
+
1378
+ #: ../admin/social_login.php:275
1379
+ #, php-format
1380
+ msgid "Required for Instagram Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Instagram Client ID"
1381
+ msgstr ""
1382
+
1383
+ #: ../admin/social_login.php:287
1384
+ msgid "Xing Consumer Key"
1385
+ msgstr ""
1386
+
1387
+ #: ../admin/social_login.php:297
1388
+ #, php-format
1389
+ msgid "Required for Xing Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Xing Consumer Key"
1390
+ msgstr ""
1391
+
1392
+ #: ../admin/social_login.php:299
1393
+ #: ../admin/social_login.php:321
1394
+ msgid "Paste following url in <strong>Callback domain</strong> option at the link mentioned"
1395
+ msgstr ""
1396
+
1397
+ #: ../admin/social_login.php:309
1398
+ msgid "Xing Consumer Secret"
1399
+ msgstr ""
1400
+
1401
+ #: ../admin/social_login.php:319
1402
+ #, php-format
1403
+ msgid "Required for Xing Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Xing Consumer Secret"
1404
+ msgstr ""
1405
+
1406
+ #: ../admin/social_login.php:337
1407
+ msgid "Login options"
1408
+ msgstr ""
1409
+
1410
+ #: ../admin/social_login.php:353
1411
+ msgid "Text to display above the Social Login interface"
1412
+ msgstr ""
1413
+
1414
+ #: ../admin/social_login.php:362
1415
+ msgid "Enable at login page"
1416
+ msgstr ""
1417
+
1418
+ #: ../admin/social_login.php:372
1419
+ msgid "Social Login interface will get enabled at the login page of your website"
1420
+ msgstr ""
1421
+
1422
+ #: ../admin/social_login.php:380
1423
+ msgid "Enable at register page"
1424
+ msgstr ""
1425
+
1426
+ #: ../admin/social_login.php:390
1427
+ msgid "Social Login interface will get enabled at the registration page of your website"
1428
+ msgstr ""
1429
+
1430
+ #: ../admin/social_login.php:398
1431
+ msgid "Enable at comment form"
1432
+ msgstr ""
1433
+
1434
+ #: ../admin/social_login.php:408
1435
+ msgid "Social Login interface will get enabled at your Wordpress Comment form"
1436
+ msgstr ""
1437
+
1438
+ #: ../admin/social_login.php:422
1439
+ msgid "Enable before WooCommerce Customer Login Form"
1440
+ msgstr ""
1441
+
1442
+ #: ../admin/social_login.php:432
1443
+ msgid "Social Login Interface will get enabled before the customer login form at WooCommerce My Account page"
1444
+ msgstr ""
1445
+
1446
+ #: ../admin/social_login.php:440
1447
+ msgid "Enable after WooCommerce Customer Login Form"
1448
+ msgstr ""
1449
+
1450
+ #: ../admin/social_login.php:450
1451
+ msgid "Social Login Interface will get enabled after the customer login form at WooCommerce My Account page"
1452
+ msgstr ""
1453
+
1454
+ #: ../admin/social_login.php:458
1455
+ msgid "Enable at WooCommerce checkout page"
1456
+ msgstr ""
1457
+
1458
+ #: ../admin/social_login.php:468
1459
+ msgid "Social Login Interface will get enabled at WooCommerce checkout page"
1460
+ msgstr ""
1461
+
1462
+ #: ../admin/social_login.php:479
1463
+ msgid "Auto-approve comments made by Social Login users"
1464
+ msgstr ""
1465
+
1466
+ #: ../admin/social_login.php:489
1467
+ msgid "If this option is enabled, and WordPress comment is made by Social Login user, comment will get approved immediately without keeping in moderation."
1468
+ msgstr ""
1469
+
1470
+ #: ../admin/social_login.php:490
1471
+ msgid "Note: This is not related to Facebook comments"
1472
+ msgstr ""
1473
+
1474
+ #: ../admin/social_login.php:500
1475
+ msgid "Enable social avatar"
1476
+ msgstr ""
1477
+
1478
+ #: ../admin/social_login.php:510
1479
+ msgid "Social profile pictures of the logged in user will be displayed as profile avatar"
1480
+ msgstr ""
1481
+
1482
+ #: ../admin/social_login.php:520
1483
+ msgid "Avatar quality"
1484
+ msgstr ""
1485
+
1486
+ #: ../admin/social_login.php:523
1487
+ msgid "Average"
1488
+ msgstr ""
1489
+
1490
+ #: ../admin/social_login.php:524
1491
+ msgid "Best"
1492
+ msgstr ""
1493
+
1494
+ #: ../admin/social_login.php:531
1495
+ msgid "Choose avatar quality"
1496
+ msgstr ""
1497
+
1498
+ #: ../admin/social_login.php:540
1499
+ msgid "Show option for users to update social avatar at BuddyPress profile page"
1500
+ msgstr ""
1501
+
1502
+ #: ../admin/social_login.php:550
1503
+ msgid "If enabled, users would be able to update their social avatar from \"Profile photo\" section in BuddyPress profile at front-end"
1504
+ msgstr ""
1505
+
1506
+ #: ../admin/social_login.php:571
1507
+ msgid "If enabled and Social ID provider does not provide user's email address on login, user will be asked to provide his/her email address. Otherwise, a dummy email will be generated"
1508
+ msgstr ""
1509
+
1510
+ #: ../admin/social_login.php:580
1511
+ msgid "Send username-password after user registration"
1512
+ msgstr ""
1513
+
1514
+ #: ../admin/social_login.php:590
1515
+ msgid "If enabled, an email will be sent to user after registration through Social Login, regarding his/her login credentials (username-password to be able to login via traditional login form)"
1516
+ msgstr ""
1517
+
1518
+ #: ../admin/social_login.php:599
1519
+ msgid "Enable social account linking at BuddyPress profile page"
1520
+ msgstr ""
1521
+
1522
+ #: ../admin/social_login.php:609
1523
+ msgid "Enable this option to show social account linking interface at BuddyPress profile page"
1524
+