WordPress Social Sharing Plugin – Sassy Social Share - Version 2.0

Version Description

  • [Bugfix] Sharing title and share counts were appearing in the content of post excerpts at posts page
  • [Bugfix] Single and double quotes in post title were appearing encoded when sharing on Twitter
  • [Bugfix] Twitter sharer was not fetching correct title if there was a double quote in it.
  • [Bugfix] + sign was appearing in the subject when using Email sharing
  • [Bugfix] When total share count was 1, "Shares" was being displayed instead of "Share"
  • [Bugfix] "Shares/Share" text was not being translated
  • [Bugfix] Google +1 and GooglePlus Share official buttons were appearing vertically mis-aligned
  • [Improvement] Compatible with AMP (https://wordpress.org/plugins/amp) plugin
  • [Improvement] Improved Delecious icon
  • [Improvement] Updated Facebook SDK to version 2.5
  • [Improvement] Changed background color of Linkedin icon to match its brand guidelines
Download this release

Release Info

Developer Heateor
Plugin Icon 128x128 WordPress Social Sharing Plugin – Sassy Social Share
Version 2.0
Comparing to
See all releases

Code changes from version 1.7.2 to 2.0

admin/class-sassy-social-share-admin.php CHANGED
@@ -223,7 +223,7 @@ class Sassy_Social_Share_Admin {
223
  /**
224
  * Sanitization callback for plugin options.
225
  *
226
- * IMPROVEMENT: complexity can be reduced (this function is called on each option page validation and "if($k == 'providers'){"
227
  * condition is being checked every time)
228
  * @since 1.0.0
229
  */
@@ -292,19 +292,19 @@ class Sassy_Social_Share_Admin {
292
  public function admin_options_style() {
293
 
294
  wp_enqueue_style( 'heateor_sss_admin_svg', plugins_url( 'css/sassy-social-share-svg.css', __FILE__ ), false, $this->version );
295
- if( $this->options['horizontal_font_color_default'] != '' ) {
296
  $updated = $this->update_css( 'horizontal_sharing_replace_color', 'horizontal_font_color_default', 'sassy-social-share-default-svg-horizontal' );
297
  wp_enqueue_style( 'heateor_sss_admin_svg_horizontal', plugins_url( 'css/sassy-social-share-default-svg-horizontal.css', __FILE__ ), false, ( $updated === true ? rand() : $this->version ) );
298
  }
299
- if( $this->options['horizontal_font_color_hover'] != '' ) {
300
  $updated = $this->update_css( 'horizontal_sharing_replace_color_hover', 'horizontal_font_color_hover', 'sassy-social-share-hover-svg-horizontal' );
301
  wp_enqueue_style( 'heateor_sss_admin_svg_horizontal_hover', plugins_url( 'css/sassy-social-share-hover-svg-horizontal.css', __FILE__ ), false, ( $updated === true ? rand() : $this->version ) );
302
  }
303
- if( $this->options['vertical_font_color_default'] != '' ) {
304
  $updated = $this->update_css( 'vertical_sharing_replace_color', 'vertical_font_color_default', 'sassy-social-share-default-svg-vertical' );
305
  wp_enqueue_style( 'heateor_sss_admin_svg_vertical', plugins_url( 'css/sassy-social-share-default-svg-vertical.css', __FILE__ ), false, ( $updated === true ? rand() : $this->version ) );
306
  }
307
- if( $this->options['vertical_font_color_hover'] != '' ) {
308
  $updated = $this->update_css( 'vertical_sharing_replace_color_hover', 'vertical_font_color_hover', 'sassy-social-share-hover-svg-vertical' );
309
  wp_enqueue_style( 'heateor_sss_admin_svg_vertical_hover', plugins_url( 'css/sassy-social-share-hover-svg-vertical.css', __FILE__ ), false, ( $updated === true ? rand() : $this->version ) );
310
  }
@@ -389,7 +389,7 @@ class Sassy_Social_Share_Admin {
389
  *
390
  * @since 1.0.0
391
  */
392
- private function is_woocommerce_active(){
393
  return in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) );
394
  }
395
 
@@ -430,4 +430,105 @@ class Sassy_Social_Share_Admin {
430
 
431
  }
432
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
433
  }
223
  /**
224
  * Sanitization callback for plugin options.
225
  *
226
+ * IMPROVEMENT: complexity can be reduced (this function is called on each option page validation and "if ( $k == 'providers' ) {"
227
  * condition is being checked every time)
228
  * @since 1.0.0
229
  */
292
  public function admin_options_style() {
293
 
294
  wp_enqueue_style( 'heateor_sss_admin_svg', plugins_url( 'css/sassy-social-share-svg.css', __FILE__ ), false, $this->version );
295
+ if ( $this->options['horizontal_font_color_default'] != '' ) {
296
  $updated = $this->update_css( 'horizontal_sharing_replace_color', 'horizontal_font_color_default', 'sassy-social-share-default-svg-horizontal' );
297
  wp_enqueue_style( 'heateor_sss_admin_svg_horizontal', plugins_url( 'css/sassy-social-share-default-svg-horizontal.css', __FILE__ ), false, ( $updated === true ? rand() : $this->version ) );
298
  }
299
+ if ( $this->options['horizontal_font_color_hover'] != '' ) {
300
  $updated = $this->update_css( 'horizontal_sharing_replace_color_hover', 'horizontal_font_color_hover', 'sassy-social-share-hover-svg-horizontal' );
301
  wp_enqueue_style( 'heateor_sss_admin_svg_horizontal_hover', plugins_url( 'css/sassy-social-share-hover-svg-horizontal.css', __FILE__ ), false, ( $updated === true ? rand() : $this->version ) );
302
  }
303
+ if ( $this->options['vertical_font_color_default'] != '' ) {
304
  $updated = $this->update_css( 'vertical_sharing_replace_color', 'vertical_font_color_default', 'sassy-social-share-default-svg-vertical' );
305
  wp_enqueue_style( 'heateor_sss_admin_svg_vertical', plugins_url( 'css/sassy-social-share-default-svg-vertical.css', __FILE__ ), false, ( $updated === true ? rand() : $this->version ) );
306
  }
307
+ if ( $this->options['vertical_font_color_hover'] != '' ) {
308
  $updated = $this->update_css( 'vertical_sharing_replace_color_hover', 'vertical_font_color_hover', 'sassy-social-share-hover-svg-vertical' );
309
  wp_enqueue_style( 'heateor_sss_admin_svg_vertical_hover', plugins_url( 'css/sassy-social-share-hover-svg-vertical.css', __FILE__ ), false, ( $updated === true ? rand() : $this->version ) );
310
  }
389
  *
390
  * @since 1.0.0
391
  */
392
+ private function is_woocommerce_active() {
393
  return in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) );
394
  }
395
 
430
 
431
  }
432
 
433
+ /**
434
+ * Ask reason to deactivate the plugin
435
+ *
436
+ * @since 2.0
437
+ */
438
+ public function ask_reason_to_deactivate() {
439
+
440
+ global $pagenow;
441
+ if ( ! get_option( 'heateor_sss_feedback_submitted' ) && 'plugins.php' === $pagenow ) {
442
+ ?>
443
+ <style type="text/css">
444
+ #heateor_sss_sharing_more_providers{position:fixed;top:45%;left:47%;background:#FAFAFA;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow:none!important;height:394px}#heateor_sss_popup_bg{background:url(<?php echo plugins_url( '../images/transparent_bg.png', __FILE__ ) ?>);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#heateor_sss_sharing_more_providers .title{font-size:14px!important;height:auto!important;background:#EC1B23!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%}#heateor_sss_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#heateor_sss_sharing_more_content .form-table td{padding:4px 0;}#heateor_sss_sharing_more_providers #heateor_sss_sharing_more_content{background:#FAFAFA;border-radius:4px;color:#555;height:100%;width:100%}#heateor_sss_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#heateor_sss_sharing_more_providers .all-services{clear:both;height:421px;overflow:auto}#heateor_sss_sharing_more_content .all-services ul{margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#heateor_sss_sharing_more_content .all-services ul li{margin:0;background:0 0!important;float:left;width:33.3333%!important;text-align:left!important}#heateor_sss_sharing_more_providers .close-button img{margin:0;}#heateor_sss_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}#heateor_sss_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}#heateor_sss_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}#heateor_sss_sharing_more_providers .footer-panel{background:#EC1B23!important;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#heateor_sss_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}#heateor_sss_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#heateor_sss_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}#heateor_sss_feedback_skip{background-color: #777;color:#fff;border: none;padding: 4px 28px;border-radius: 5px;cursor: pointer;}#heateor_sss_feedback_submit{color:#fff;background-color: #EC1B23; margin-right: 20px;border: none;padding: 4px 28px;border-radius: 5px;font-weight: bold;cursor: pointer}
445
+ @media screen and (max-width:783px) {#heateor_sss_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}}
446
+ </style>
447
+ <script type="text/javascript">
448
+ if (typeof String.prototype.trim!=="function") {String.prototype.trim=function() {return this.replace(/^\s+|\s+$/g,"")}}
449
+
450
+ jQuery(function() {
451
+ jQuery(document).on( 'click', 'tr#sassy-social-share span.deactivate a', function(event) {
452
+ var deactivateUrl = jQuery(this).attr( 'href' );
453
+ event.preventDefault();
454
+
455
+ var theChampMoreSharingServicesHtml = '<h3 class="title ui-drag-handle"><?php _e( 'Please help us make the plugin better', 'sassy-social-share' ) ?></h3><button id="heateor_sss_sharing_popup_close" class="close-button separated"><img src="<?php echo plugins_url( '../images/close.png', __FILE__ ) ?>" /></button><div id="heateor_sss_sharing_more_content"><div class="all-services">';
456
+ theChampMoreSharingServicesHtml += '<div class="metabox-holder columns-2" id="post-body" style="width:100%"><div class="stuffbox" style="margin-bottom:0"><h3><label><?php echo sprintf(__('Please take a look at our <a href="%s" target="_blank">support documentation</a> before deactivating the plugin', 'sassy-social-share'), 'http:\/\/support.heateor.com');?></label></h3><h3><label><?php _e( 'I am deactivating the plugin because', 'sassy-social-share' );?></label></h3><div class="inside"><table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table"><tr><td colspan="2"><label for="heateor_sss_reason_1"><input id="heateor_sss_reason_1" name="heateor_sss_deactivate_reason" type="radio" value="1" /><?php _e("I no longer need the plugin", 'sassy-social-share' ); ?></label></td></tr><tr><td colspan="2"><label for="heateor_sss_reason_2"><input id="heateor_sss_reason_2" name="heateor_sss_deactivate_reason" type="radio" value="2" /><?php _e("I found a better plugin", 'sassy-social-share' ); ?></label></td></tr><tr><td colspan="2"><label for="heateor_sss_reason_3"><input id="heateor_sss_reason_3" name="heateor_sss_deactivate_reason" type="radio" value="3" /><?php _e("I only needed the plugin for a short period", 'sassy-social-share' ); ?></label></td></tr><tr><td colspan="2"><input id="heateor_sss_reason_4" name="heateor_sss_deactivate_reason" type="radio" value="4" /><label for="heateor_sss_reason_4"><?php _e("The plugin broke my site", 'sassy-social-share' ); ?></label></td></tr><tr><td colspan="2"><input id="heateor_sss_reason_5" name="heateor_sss_deactivate_reason" type="radio" value="5" /><label for="heateor_sss_reason_5"><?php _e("The plugin suddenly stopped working", 'sassy-social-share' ); ?></label></td></tr><tr><td colspan="2"><label for="heateor_sss_reason_6"><input id="heateor_sss_reason_6" name="heateor_sss_deactivate_reason" type="radio" value="6" /><?php _e("I couldn\'t understand how to make it work", 'sassy-social-share' ); ?></label></td></tr><tr><td colspan="2"><label for="heateor_sss_reason_7"><input id="heateor_sss_reason_7" name="heateor_sss_deactivate_reason" type="radio" value="7" /><?php _e("The plugin is great, but I need specific feature that you don\'t support", 'sassy-social-share' ); ?></label></td></tr><tr><td colspan="2"><input id="heateor_sss_reason_8" name="heateor_sss_deactivate_reason" type="radio" value="8" /><label for="heateor_sss_reason_8"><?php _e("The plugin is not working", 'sassy-social-share' ); ?></label></td></tr><tr><td colspan="2"><label for="heateor_sss_reason_9"><input id="heateor_sss_reason_9" name="heateor_sss_deactivate_reason" type="radio" value="9" /><?php _e("It\'s not what I was looking for", 'sassy-social-share' ); ?></label></td></tr><tr><td colspan="2"><label for="heateor_sss_reason_10"><input id="heateor_sss_reason_10" name="heateor_sss_deactivate_reason" type="radio" value="10" /><?php _e("The plugin didn\'t work as expected", 'sassy-social-share' ); ?></label></td></tr><tr><td colspan="2"><input id="heateor_sss_reason_11" name="heateor_sss_deactivate_reason" type="radio" value="11" /><label for="heateor_sss_reason_11"><?php _e("Other", 'sassy-social-share' ); ?></label></td></tr><tr><td colspan="2"><input type="button" id="heateor_sss_feedback_submit" value="Submit" /><input type="button" id="heateor_sss_feedback_skip" value="Skip" /></td><td class="heateor_sss_loading"></td></tr></table></div></div></div>';
457
+ var mainDiv = document.createElement( 'div' );
458
+ mainDiv.innerHTML = theChampMoreSharingServicesHtml + '</div><div class="footer-panel"><p></p></div></div>';
459
+ mainDiv.setAttribute( 'id', 'heateor_sss_sharing_more_providers' );
460
+ var bgDiv = document.createElement( 'div' );
461
+ bgDiv.setAttribute( 'id', 'heateor_sss_popup_bg' );
462
+ jQuery( 'body' ).append(mainDiv).append(bgDiv);
463
+ jQuery( 'input[name=heateor_sss_deactivate_reason]' ).click(function() {
464
+ jQuery( 'div#heateor_sss_reason_details' ).remove();
465
+ if (jQuery(this).val() == 2) {
466
+ var label = 'Plugin name and download link';
467
+ }else{
468
+ var label = 'Details (Optional)';
469
+ }
470
+ jQuery(this).parent().append( '<div id="heateor_sss_reason_details"><label>'+ label +'</label><div style="clear:both"></div><textarea id="heateor_sss_reason_details_textarea" rows="5" cols="50"></textarea></div>' );
471
+ });
472
+ jQuery( 'input#heateor_sss_feedback_skip' ).click(function() {
473
+ location.href = deactivateUrl;
474
+ });
475
+ jQuery( 'input#heateor_sss_feedback_submit' ).click(function() {
476
+ var reason = jQuery( 'input[name=heateor_sss_deactivate_reason]:checked' );
477
+ var details = typeof jQuery( '#heateor_sss_reason_details_textarea' ).val() != 'undefined' ? jQuery( '#heateor_sss_reason_details_textarea' ).val().trim() : '';
478
+ if (reason.length == 0) {
479
+ alert( '<?php _e("Please specify a vaild reason", "sassy-social-share") ?>' );
480
+ return false;
481
+ }
482
+ reason = reason.val().trim();
483
+ jQuery("#heateor_sss_feedback_submit").after( '<img style="margin-right:20px" src="<?php echo plugins_url( '../images/ajax_loader.gif', __FILE__ ) ?>" />' )
484
+ jQuery.ajax({
485
+ type: "GET",
486
+ dataType: "json",
487
+ url: '<?php echo get_admin_url() ?>admin-ajax.php',
488
+ data: {
489
+ action: "heateor_sss_send_feedback",
490
+ reason: reason,
491
+ details: details
492
+ },
493
+ success: function(e) {
494
+ location.href = deactivateUrl;
495
+ },
496
+ error: function(e) {
497
+ location.href = deactivateUrl;
498
+ }
499
+ });
500
+ });
501
+ document.getElementById( 'heateor_sss_sharing_popup_close' ).onclick = function() {
502
+ mainDiv.parentNode.removeChild(mainDiv);
503
+ bgDiv.parentNode.removeChild(bgDiv);
504
+ }
505
+ });
506
+ });
507
+ </script>
508
+ <?php
509
+ }
510
+ }
511
+
512
+ /**
513
+ * Send feedback to heateor server
514
+ *
515
+ * @since 2.0
516
+ */
517
+ public function send_feedback() {
518
+
519
+ if ( isset( $_GET['reason'] ) && isset( $_GET['details'] ) ) {
520
+ $reason = trim( esc_attr( $_GET['reason'] ) );
521
+ $details = trim( esc_attr( $_GET['details'] ) );
522
+ $querystring = array(
523
+ 'pid' => 8,
524
+ 'r' => $reason,
525
+ 'd' => $details
526
+ );
527
+ wp_remote_get( 'https://www.heateor.com/api/analytics/v1/save?' . http_build_query( $querystring ), array( 'timeout' => 15) );
528
+ add_option( 'heateor_sss_feedback_submitted', '1' );
529
+ }
530
+ die;
531
+
532
+ }
533
+
534
  }
admin/css/sassy-social-share-admin.css CHANGED
@@ -1,3 +1,3 @@
1
- @charset "utf-8";.clr,.heateor_sss_clear{clear:both}#heateor_sss_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}.heateorSssHorizontalSharingProviderContainer input,.heateorSssVerticalSharingProviderContainer input{margin-top: 0;float: left;}.heateorSssHorizontalSharingProviderContainer label,.heateorSssVerticalSharingProviderContainer label{float: left;margin:0 1px;}.heateorSssHorizontalSharingProviderContainer,.heateorSssVerticalSharingProviderContainer{font-size:11px;width:158px;float:left;margin-bottom: 4px}.heateor_sss_help_content{display:none;font-size:12px;color:#797979;line-height:15px;font-style:italic}.heateor_sss_help_content img{box-shadow:4px 4px 4px 4px #888;margin:8px 0}.heateor_sss_help_bubble{cursor:pointer;vertical-align:middle}#heateor_sss_rearrange li,#heateor_sss_vertical_rearrange li{cursor:move;float:left;display:block;margin:2px}#heateor_sss_sc_rearrange,#heateor_sss_sc_vertical_rearrange,#heateor_sss_rearrange,#heateor_sss_vertical_rearrange{margin:0}#heateor_sss_sc_rearrange li,#heateor_sss_sc_vertical_rearrange li{cursor:move;float:left;display:block;width:175px;margin:0}#heateor_sss_sc_rearrange label,#heateor_sss_sc_vertical_rearrange label{cursor:move}.heateor_sss_left_column{float:left;width:75%!important}.heateor_sss_right_column{float:left;width:23.5%;margin-left:10px}.heateor_sss_right_column a:focus{outline:0!important;border:none!important}.heateor_sss_right_column td{display:block;width:120px!important;margin:0}.heateor_sss_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}input[type=text]{width:90%}.heateorSssLoginButton{background:url(../../images/social_icons.png) no-repeat;cursor:pointer;display:block;float:left;margin-right:10px}.heateorSssGoogleButton{background-position:-32px 0;width:32px;height:32px}.heateorSssFacebookButton{background-position:0 0;width:32px;height:32px}.heateorSssWordpressButton{background-position:0 -96px;width:32px;height:32px}.heateorSssLinkedinButton{background-position:-32px -32px;width:32px;height:32px}.heateorSssTwitterButton{background-position:0 -64px;width:32px;height:32px}.heateorSssSharingButton{display:block;background:url(../../images/sharing/sharing.png) no-repeat}.heateorSssHorizontalSharingButton,.heateorSssVerticalSharingButton{display:block}.heateorSssSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.heateorSssSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.heateorSssSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.heateorSssSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.heateorSssSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.heateorSssSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.heateorSssSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.heateorSssSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.heateorSssSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.heateorSssSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.heateorSssSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.heateorSssSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.heateorSssSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.heateorSssSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.heateorSssSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.heateorSssSharingXingButton{background-position:0 -128px;width:32px;height:32px}.heateorSssSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}#heateor_sss_troubleshoot_notification{color:red}.heateorSssYummlyBackground{background-color:#E16120}.heateorSssFacebookBackground{background-color:#3C589A}.heateorSssBufferBackground{background-color:#000}.heateorSssDiggBackground{background-color:#006094}.heateorSssEmailBackground{background-color:#649A3F}.heateorSssFloatitBackground{background-color:#53BEEE}.heateorSssGoogleplusBackground{background-color:#dd4b39}.heateorSssLinkedinBackground{background-color:#2886EF}.heateorSssMoreBackground{background-color:#EE8E2D}.heateorSssPinterestBackground{background-color:#CC2329}.heateorSssPrintBackground{background-color:#FD6500}.heateorSssRedditBackground{background-color:#247CED}.heateorSssStumbleuponBackground{background-color:#EA4823}.heateorSssTumblrBackground{background-color:#29435D}.heateorSssTwitterBackground{background-color:#55acee}.heateorSssVkontakteBackground{background-color:#5E84AC}.heateorSssYahooBackground{background-color:#8F03CC}.heateorSssXingBackground{background-color:#00797D}.heateorSssDeliciousBackground{background-color:#53BEEE}.heateorSssWhatsappBackground{background-color:#55EB4C}.heateorSssLinkedinshareBackground{width:66px!important;}.heateorSssFacebookrecommendBackground{width:95px!important;}.heateorSssFacebooklikeBackground{width:50px!important;}.heateorSssTwittertweetBackground{width:57px!important;}.heateorSssGoogleplusoneBackground{width:35px!important;}.heateorSssGoogleplusshareBackground{width:57px!important;}.heateorSssPinterestpinBackground{width:44px!important;}.heateorSssBuffershareBackground{width:58px!important;}.heateorSssXingshareBackground{width:63px!important;}.heateorSssRedditbadgeBackground{width:124px!important;}.heateorSssStumbleuponbadgeBackground{width:79px!important;}.heateorSssSharingSvg{width:100%;height:100%}.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}.heateorSssLinkedinshareSvg{background:url(../../images/sharing/linkedin_share.png) left no-repeat;border-radius: 0!important}.heateorSssFacebooklikeSvg{background:url(../../images/sharing/facebook_like.png) left no-repeat;border-radius: 0!important}.heateorSssStumbleuponbadgeSvg{background:url(../../images/sharing/stumbleupon_badge.png) left no-repeat;border-radius: 0!important}.heateorSssRedditbadgeSvg{background:url(../../images/sharing/reddit_badge.png) left no-repeat;border-radius: 0!important}.heateorSssYummlyshareSvg{background:url(../../images/sharing/yummly_share.png) left no-repeat;border-radius: 0!important}.heateorSssBuffershareSvg{background:url(../../images/sharing/buffer_share.png) left no-repeat;border-radius: 0!important}.heateorSssXingshareSvg{background:url(../../images/sharing/xing_share.png) left no-repeat;border-radius: 0!important}.heateorSssPinterestpinSvg{background:url(../../images/sharing/pinterest_pin.png) left no-repeat;border-radius: 0!important}.heateorSssGoogleplusshareSvg{background:url(../../images/sharing/google_plus_share.png) left no-repeat;border-radius: 0!important}.heateorSssGoogleplusoneSvg{background:url(../../images/sharing/google_plusone.png) left no-repeat;border-radius: 0!important}.heateorSssTwittertweetSvg{background:url(../../images/sharing/twitter_tweet.png) left no-repeat;border-radius: 0!important}.heateorSssFacebookrecommendSvg{background:url(../../images/sharing/facebook_recommend.png) left no-repeat;border-radius:0!important;}
2
  .heateorSssAIMBackground{background-color: #fff}.heateorSssAmazonWishListBackground{background-color: #fff}.heateorSssAOLMailBackground{background-color: #2A2A2A}.heateorSssAppnetBackground{background-color: #5D5D5D}.heateorSssBaiduBackground{background-color: #fff}.heateorSssBalatarinBackground{background-color: #fff}.heateorSssBibSonomyBackground{background-color: #fff}.heateorSssBittyBrowserBackground{background-color: #EFEFEF}.heateorSssBlinklistBackground{background-color: #3D3C3B}.heateorSssBloggerPostBackground{background-color: #FDA352}.heateorSssBlogMarksBackground{background-color: #535353}.heateorSssBookmarksfrBackground{background-color: #E8EAD4}.heateorSssBoxnetBackground{background-color: #1A74B0}.heateorSssBuddyMarksBackground{background-color: #fff}.heateorSssCare2NewsBackground{background-color: #6EB43F}.heateorSssCiteULikeBackground{background-color: #2781CD}.heateorSssDiaryRuBackground{background-color: #E8D8C6}.heateorSssDiasporaBackground{background-color: #2E3436}.heateorSssDiHITTBackground{background-color: #FF6300}.heateorSssDiigoBackground{background-color: #4A8BCA}.heateorSssDZoneBackground{background-color: #fff}.heateorSssEvernoteBackground{background-color: #8BE056}.heateorSssFarkBackground{background-color: #555}
3
  .heateorSssFlipboardBackground{background-color: #CC0000}.heateorSssFolkdBackground{background-color: #fff}.heateorSssGoogleBookmarksBackground{background-color: #CB0909}.heateorSssGoogleGmailBackground{background-color: #E5E5E5}.heateorSssHackerNewsBackground{background-color: #F60}.heateorSssHatenaBackground{background-color: #00A6DB}.heateorSssInstapaperBackground{background-color: #EDEDED}.heateorSssJamespotBackground{background-color: #FF9E2C}.heateorSssKakaoBackground{background-color: #FCB700}.heateorSssKindleItBackground{background-color: #2A2A2A}.heateorSssKnownBackground{background-color: #FFF}.heateorSssLineBackground{background-color: #00C300}.heateorSssLiveJournalBackground{background-color: #EDEDED}.heateorSssMailRuBackground{background-color: #356FAC}.heateorSssMendeleyBackground{background-color: #A70805}.heateorSssMeneameBackground{background-color: #FF7D12}.heateorSssMixiBackground{background-color: #EDEDED}.heateorSssMySpaceBackground{background-color: #2A2A2A}.heateorSssNetlogBackground{background-color: #2A2A2A}.heateorSssNetvouzBackground{background-color: #fff}.heateorSssNewsVineBackground{background-color: #055D00}.heateorSssNUjijBackground{background-color: #D40000}.heateorSssOdnoklassnikiBackground{background-color: #F2720C}.heateorSssOknotizieBackground{background-color: #fff}.heateorSssOutlookcomBackground{background-color: #fff}.heateorSssPinboardBackground{background-color: #1341DE}.heateorSssPlurkBackground{background-color: #CF682F}.heateorSssPocketBackground{background-color: #fff}.heateorSssPrintFriendlyBackground{background-color: #61D1D5}.heateorSssProtopageBookmarksBackground{background-color: #413FFF}.heateorSssPushaBackground{background-color: #0072B8}.heateorSssQzoneBackground{background-color: #2B82D9}.heateorSssRediffMyPageBackground{background-color: #D20000}.heateorSssRenrenBackground{background-color: #005EAC}.heateorSssSegnaloBackground{background-color: #fff}.heateorSssSinaWeiboBackground{background-color: #fff}.heateorSssSiteJotBackground{background-color: #fff}.heateorSssSlashdotBackground{background-color: #004242}.heateorSssStumpediaBackground{background-color: #EDEDED}.heateorSssSvejoBackground{background-color: #FAFAFA}.heateorSssSymbalooFeedsBackground{background-color: #6DA8F7}.heateorSssTuentiBackground{background-color: #0075C9}.heateorSssTwiddlaBackground{background-color: #EDEDED}.heateorSssTypePadPostBackground{background-color: #2A2A2A}.heateorSssViadeoBackground{background-color: #2A2A2A}.heateorSssWaneloBackground{background-color: #fff}.heateorSssWebnewsBackground{background-color: #CC2512}.heateorSssWordPressBackground{background-color: #464646}.heateorSssWykopBackground{background-color: #367DA9}.heateorSssYahooMailBackground{background-color: #400090}.heateorSssYahooMessengerBackground{background-color: #400090}.heateorSssYoolinkBackground{background-color: #A2C538}.heateorSssYouMobBackground{background-color: #3B599D}.heateorSssYummlyshareBackground{width: 43px!important}.faq a{text-decoration: none;}.heateorSssCounterPreviewLeft,.heateorSssCounterVerticalPreviewLeft,.heateorSssCounterVerticalPreviewRight,.heateorSssCounterPreviewRight{float:left;text-align: center;font-family:sans-serif;width:30px;visibility: hidden;}.heateorSssCounterVerticalPreviewTop,.heateorSssCounterVerticalPreviewBottom,.heateorSssCounterPreviewTop,.heateorSssCounterPreviewBottom{text-align: center;line-height: 30px;height: 30px;visibility: hidden;clear: both}.heateorSssCounterVerticalPreviewInnerleft,.heateorSssCounterVerticalPreviewInnerright,.heateorSssCounterPreviewInnerleft,.heateorSssCounterPreviewInnerright{float: left;display: none;height: 100%;width:50%;text-align:center}.heateorSssCounterVerticalPreviewInnertop,.heateorSssCounterVerticalPreviewInnerbottom,.heateorSssCounterPreviewInnertop,.heateorSssCounterPreviewInnerbottom{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;}
1
+ @charset "utf-8";.clr,.heateor_sss_clear{clear:both}#heateor_sss_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}.heateorSssHorizontalSharingProviderContainer input,.heateorSssVerticalSharingProviderContainer input{margin-top: 0;float: left;}.heateorSssHorizontalSharingProviderContainer label,.heateorSssVerticalSharingProviderContainer label{float: left;margin:0 1px;}.heateorSssHorizontalSharingProviderContainer,.heateorSssVerticalSharingProviderContainer{font-size:11px;width:158px;float:left;margin-bottom: 4px}.heateor_sss_help_content{display:none;font-size:12px;color:#797979;line-height:15px;font-style:italic}.heateor_sss_help_content img{box-shadow:4px 4px 4px 4px #888;margin:8px 0}.heateor_sss_help_bubble{cursor:pointer;vertical-align:middle}#heateor_sss_rearrange li,#heateor_sss_vertical_rearrange li{cursor:move;float:left;display:block;margin:2px}#heateor_sss_sc_rearrange,#heateor_sss_sc_vertical_rearrange,#heateor_sss_rearrange,#heateor_sss_vertical_rearrange{margin:0}#heateor_sss_sc_rearrange li,#heateor_sss_sc_vertical_rearrange li{cursor:move;float:left;display:block;width:175px;margin:0}#heateor_sss_sc_rearrange label,#heateor_sss_sc_vertical_rearrange label{cursor:move}.heateor_sss_left_column{float:left;width:75%!important}.heateor_sss_right_column{float:left;width:23.5%;margin-left:10px}.heateor_sss_right_column a:focus{outline:0!important;border:none!important}.heateor_sss_right_column td{display:block;width:120px!important;margin:0}.heateor_sss_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}input[type=text]{width:90%}.heateorSssLoginButton{background:url(../../images/social_icons.png) no-repeat;cursor:pointer;display:block;float:left;margin-right:10px}.heateorSssGoogleButton{background-position:-32px 0;width:32px;height:32px}.heateorSssFacebookButton{background-position:0 0;width:32px;height:32px}.heateorSssWordpressButton{background-position:0 -96px;width:32px;height:32px}.heateorSssLinkedinButton{background-position:-32px -32px;width:32px;height:32px}.heateorSssTwitterButton{background-position:0 -64px;width:32px;height:32px}.heateorSssSharingButton{display:block;background:url(../../images/sharing/sharing.png) no-repeat}.heateorSssHorizontalSharingButton,.heateorSssVerticalSharingButton{display:block}.heateorSssSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.heateorSssSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.heateorSssSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.heateorSssSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.heateorSssSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.heateorSssSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.heateorSssSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.heateorSssSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.heateorSssSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.heateorSssSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.heateorSssSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.heateorSssSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.heateorSssSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.heateorSssSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.heateorSssSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.heateorSssSharingXingButton{background-position:0 -128px;width:32px;height:32px}.heateorSssSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}#heateor_sss_troubleshoot_notification{color:red}.heateorSssYummlyBackground{background-color:#E16120}.heateorSssFacebookBackground{background-color:#3C589A}.heateorSssBufferBackground{background-color:#000}.heateorSssDiggBackground{background-color:#006094}.heateorSssEmailBackground{background-color:#649A3F}.heateorSssFloatitBackground{background-color:#53BEEE}.heateorSssGoogleplusBackground{background-color:#dd4b39}.heateorSssLinkedinBackground{background-color:#0077B5}.heateorSssMoreBackground{background-color:#EE8E2D}.heateorSssPinterestBackground{background-color:#CC2329}.heateorSssPrintBackground{background-color:#FD6500}.heateorSssRedditBackground{background-color:#247CED}.heateorSssStumbleuponBackground{background-color:#EA4823}.heateorSssTumblrBackground{background-color:#29435D}.heateorSssTwitterBackground{background-color:#55acee}.heateorSssVkontakteBackground{background-color:#5E84AC}.heateorSssYahooBackground{background-color:#8F03CC}.heateorSssXingBackground{background-color:#00797D}.heateorSssDeliciousBackground{background-color:#53BEEE}.heateorSssWhatsappBackground{background-color:#55EB4C}.heateorSssLinkedinshareBackground{width:66px!important;}.heateorSssFacebookrecommendBackground{width:95px!important;}.heateorSssFacebooklikeBackground{width:50px!important;}.heateorSssTwittertweetBackground{width:57px!important;}.heateorSssGoogleplusoneBackground{width:35px!important;}.heateorSssGoogleplusshareBackground{width:57px!important;}.heateorSssPinterestpinBackground{width:44px!important;}.heateorSssBuffershareBackground{width:58px!important;}.heateorSssXingshareBackground{width:63px!important;}.heateorSssRedditbadgeBackground{width:124px!important;}.heateorSssStumbleuponbadgeBackground{width:79px!important;}.heateorSssSharingSvg{width:100%;height:100%}.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}.heateorSssLinkedinshareSvg{background:url(../../images/sharing/linkedin_share.png) left no-repeat;border-radius: 0!important}.heateorSssFacebooklikeSvg{background:url(../../images/sharing/facebook_like.png) left no-repeat;border-radius: 0!important}.heateorSssStumbleuponbadgeSvg{background:url(../../images/sharing/stumbleupon_badge.png) left no-repeat;border-radius: 0!important}.heateorSssRedditbadgeSvg{background:url(../../images/sharing/reddit_badge.png) left no-repeat;border-radius: 0!important}.heateorSssYummlyshareSvg{background:url(../../images/sharing/yummly_share.png) left no-repeat;border-radius: 0!important}.heateorSssBuffershareSvg{background:url(../../images/sharing/buffer_share.png) left no-repeat;border-radius: 0!important}.heateorSssXingshareSvg{background:url(../../images/sharing/xing_share.png) left no-repeat;border-radius: 0!important}.heateorSssPinterestpinSvg{background:url(../../images/sharing/pinterest_pin.png) left no-repeat;border-radius: 0!important}.heateorSssGoogleplusshareSvg{background:url(../../images/sharing/google_plus_share.png) left no-repeat;border-radius: 0!important}.heateorSssGoogleplusoneSvg{background:url(../../images/sharing/google_plusone.png) left no-repeat;border-radius: 0!important}.heateorSssTwittertweetSvg{background:url(../../images/sharing/twitter_tweet.png) left no-repeat;border-radius: 0!important}.heateorSssFacebookrecommendSvg{background:url(../../images/sharing/facebook_recommend.png) left no-repeat;border-radius:0!important;}
2
  .heateorSssAIMBackground{background-color: #fff}.heateorSssAmazonWishListBackground{background-color: #fff}.heateorSssAOLMailBackground{background-color: #2A2A2A}.heateorSssAppnetBackground{background-color: #5D5D5D}.heateorSssBaiduBackground{background-color: #fff}.heateorSssBalatarinBackground{background-color: #fff}.heateorSssBibSonomyBackground{background-color: #fff}.heateorSssBittyBrowserBackground{background-color: #EFEFEF}.heateorSssBlinklistBackground{background-color: #3D3C3B}.heateorSssBloggerPostBackground{background-color: #FDA352}.heateorSssBlogMarksBackground{background-color: #535353}.heateorSssBookmarksfrBackground{background-color: #E8EAD4}.heateorSssBoxnetBackground{background-color: #1A74B0}.heateorSssBuddyMarksBackground{background-color: #fff}.heateorSssCare2NewsBackground{background-color: #6EB43F}.heateorSssCiteULikeBackground{background-color: #2781CD}.heateorSssDiaryRuBackground{background-color: #E8D8C6}.heateorSssDiasporaBackground{background-color: #2E3436}.heateorSssDiHITTBackground{background-color: #FF6300}.heateorSssDiigoBackground{background-color: #4A8BCA}.heateorSssDZoneBackground{background-color: #fff}.heateorSssEvernoteBackground{background-color: #8BE056}.heateorSssFarkBackground{background-color: #555}
3
  .heateorSssFlipboardBackground{background-color: #CC0000}.heateorSssFolkdBackground{background-color: #fff}.heateorSssGoogleBookmarksBackground{background-color: #CB0909}.heateorSssGoogleGmailBackground{background-color: #E5E5E5}.heateorSssHackerNewsBackground{background-color: #F60}.heateorSssHatenaBackground{background-color: #00A6DB}.heateorSssInstapaperBackground{background-color: #EDEDED}.heateorSssJamespotBackground{background-color: #FF9E2C}.heateorSssKakaoBackground{background-color: #FCB700}.heateorSssKindleItBackground{background-color: #2A2A2A}.heateorSssKnownBackground{background-color: #FFF}.heateorSssLineBackground{background-color: #00C300}.heateorSssLiveJournalBackground{background-color: #EDEDED}.heateorSssMailRuBackground{background-color: #356FAC}.heateorSssMendeleyBackground{background-color: #A70805}.heateorSssMeneameBackground{background-color: #FF7D12}.heateorSssMixiBackground{background-color: #EDEDED}.heateorSssMySpaceBackground{background-color: #2A2A2A}.heateorSssNetlogBackground{background-color: #2A2A2A}.heateorSssNetvouzBackground{background-color: #fff}.heateorSssNewsVineBackground{background-color: #055D00}.heateorSssNUjijBackground{background-color: #D40000}.heateorSssOdnoklassnikiBackground{background-color: #F2720C}.heateorSssOknotizieBackground{background-color: #fff}.heateorSssOutlookcomBackground{background-color: #fff}.heateorSssPinboardBackground{background-color: #1341DE}.heateorSssPlurkBackground{background-color: #CF682F}.heateorSssPocketBackground{background-color: #fff}.heateorSssPrintFriendlyBackground{background-color: #61D1D5}.heateorSssProtopageBookmarksBackground{background-color: #413FFF}.heateorSssPushaBackground{background-color: #0072B8}.heateorSssQzoneBackground{background-color: #2B82D9}.heateorSssRediffMyPageBackground{background-color: #D20000}.heateorSssRenrenBackground{background-color: #005EAC}.heateorSssSegnaloBackground{background-color: #fff}.heateorSssSinaWeiboBackground{background-color: #fff}.heateorSssSiteJotBackground{background-color: #fff}.heateorSssSlashdotBackground{background-color: #004242}.heateorSssStumpediaBackground{background-color: #EDEDED}.heateorSssSvejoBackground{background-color: #FAFAFA}.heateorSssSymbalooFeedsBackground{background-color: #6DA8F7}.heateorSssTuentiBackground{background-color: #0075C9}.heateorSssTwiddlaBackground{background-color: #EDEDED}.heateorSssTypePadPostBackground{background-color: #2A2A2A}.heateorSssViadeoBackground{background-color: #2A2A2A}.heateorSssWaneloBackground{background-color: #fff}.heateorSssWebnewsBackground{background-color: #CC2512}.heateorSssWordPressBackground{background-color: #464646}.heateorSssWykopBackground{background-color: #367DA9}.heateorSssYahooMailBackground{background-color: #400090}.heateorSssYahooMessengerBackground{background-color: #400090}.heateorSssYoolinkBackground{background-color: #A2C538}.heateorSssYouMobBackground{background-color: #3B599D}.heateorSssYummlyshareBackground{width: 43px!important}.faq a{text-decoration: none;}.heateorSssCounterPreviewLeft,.heateorSssCounterVerticalPreviewLeft,.heateorSssCounterVerticalPreviewRight,.heateorSssCounterPreviewRight{float:left;text-align: center;font-family:sans-serif;width:30px;visibility: hidden;}.heateorSssCounterVerticalPreviewTop,.heateorSssCounterVerticalPreviewBottom,.heateorSssCounterPreviewTop,.heateorSssCounterPreviewBottom{text-align: center;line-height: 30px;height: 30px;visibility: hidden;clear: both}.heateorSssCounterVerticalPreviewInnerleft,.heateorSssCounterVerticalPreviewInnerright,.heateorSssCounterPreviewInnerleft,.heateorSssCounterPreviewInnerright{float: left;display: none;height: 100%;width:50%;text-align:center}.heateorSssCounterVerticalPreviewInnertop,.heateorSssCounterVerticalPreviewInnerbottom,.heateorSssCounterPreviewInnertop,.heateorSssCounterPreviewInnerbottom{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;}
admin/css/sassy-social-share-default-svg-horizontal.css CHANGED
@@ -1 +1 @@
1
- @charset "utf-8";.heateor_sss_horizontal_sharing .heateorSssYummlySvg,#heateor_sss_rearrange .heateorSssYummlySvg{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}.heateor_sss_horizontal_sharing .heateorSssBufferSvg,#heateor_sss_rearrange .heateorSssBufferSvg{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}.heateor_sss_horizontal_sharing .heateorSssFacebookSvg,#heateor_sss_rearrange .heateorSssFacebookSvg{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}.heateor_sss_horizontal_sharing .heateorSssDeliciousSvg,#heateor_sss_rearrange .heateorSssDeliciousSvg{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}.heateor_sss_horizontal_sharing .heateorSssDiggSvg,#heateor_sss_rearrange .heateorSssDiggSvg{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}.heateor_sss_horizontal_sharing .heateorSssEmailSvg,#heateor_sss_rearrange .heateorSssEmailSvg{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}.heateor_sss_horizontal_sharing .heateorSssFloatitSvg,#heateor_sss_rearrange .heateorSssFloatitSvg{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}.heateor_sss_horizontal_sharing .heateorSssGoogleplusSvg,#heateor_sss_rearrange .heateorSssGoogleplusSvg{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}.heateor_sss_horizontal_sharing .heateorSssLinkedinSvg,#heateor_sss_rearrange .heateorSssLinkedinSvg{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}.heateor_sss_horizontal_sharing .heateorSssMoreSvg,#heateor_sss_rearrange .heateorSssMoreSvg{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}.heateor_sss_horizontal_sharing .heateorSssPinterestSvg,#heateor_sss_rearrange .heateorSssPinterestSvg{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}.heateor_sss_horizontal_sharing .heateorSssPrintSvg,#heateor_sss_rearrange .heateorSssPrintSvg{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}.heateor_sss_horizontal_sharing .heateorSssRedditSvg,#heateor_sss_rearrange .heateorSssRedditSvg{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}.heateor_sss_horizontal_sharing .heateorSssStumbleuponSvg,#heateor_sss_rearrange .heateorSssStumbleuponSvg{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}.heateor_sss_horizontal_sharing .heateorSssTumblrSvg,#heateor_sss_rearrange .heateorSssTumblrSvg{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}.heateor_sss_horizontal_sharing .heateorSssTwitterSvg,#heateor_sss_rearrange .heateorSssTwitterSvg{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}.heateor_sss_horizontal_sharing .heateorSssVkontakteSvg,#heateor_sss_rearrange .heateorSssVkontakteSvg{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}.heateor_sss_horizontal_sharing .heateorSssYahooSvg,#heateor_sss_rearrange .heateorSssYahooSvg{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}.heateor_sss_horizontal_sharing .heateorSssXingSvg,#heateor_sss_rearrange .heateorSssXingSvg{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}.heateor_sss_horizontal_sharing .heateorSssWhatsappSvg,#heateor_sss_rearrange .heateorSssWhatsappSvg{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}.heateor_sss_horizontal_sharing .heateorSssAIMSvg,#heateor_sss_rearrange .heateorSssAIMSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssAmazonWishListSvg,#heateor_sss_rearrange .heateorSssAmazonWishListSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssAOLMailSvg,#heateor_sss_rearrange .heateorSssAOLMailSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssAppnetSvg,#heateor_sss_rearrange .heateorSssAppnetSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssBaiduSvg,#heateor_sss_rearrange .heateorSssBaiduSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssBalatarinSvg,#heateor_sss_rearrange .heateorSssBalatarinSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssBibSonomySvg,#heateor_sss_rearrange .heateorSssBibSonomySvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssBittyBrowserSvg,#heateor_sss_rearrange .heateorSssBittyBrowserSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssBlinklistSvg,#heateor_sss_rearrange .heateorSssBlinklistSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssBloggerPostSvg,#heateor_sss_rearrange .heateorSssBloggerPostSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssBlogMarksSvg,#heateor_sss_rearrange .heateorSssBlogMarksSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssBoxnetSvg,#heateor_sss_rearrange .heateorSssBoxnetSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssBookmarksfrSvg,#heateor_sss_rearrange .heateorSssBookmarksfrSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssBuddyMarksSvg,#heateor_sss_rearrange .heateorSssBuddyMarksSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssCare2NewsSvg,#heateor_sss_rearrange .heateorSssCare2NewsSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssCiteULikeSvg,#heateor_sss_rearrange .heateorSssCiteULikeSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssDiaryRuSvg,#heateor_sss_rearrange .heateorSssDiaryRuSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssDiasporaSvg,#heateor_sss_rearrange .heateorSssDiasporaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssDiHITTSvg,#heateor_sss_rearrange .heateorSssDiHITTSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssDiigoSvg,#heateor_sss_rearrange .heateorSssDiigoSvg{background:url('data:image/svg+xml;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}.heateor_sss_horizontal_sharing .heateorSssDZoneSvg,#heateor_sss_rearrange .heateorSssDZoneSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssEvernoteSvg,#heateor_sss_rearrange .heateorSssEvernoteSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssFarkSvg,#heateor_sss_rearrange .heateorSssFarkSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssFlipboardSvg,#heateor_sss_rearrange .heateorSssFlipboardSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssFolkdSvg,#heateor_sss_rearrange .heateorSssFolkdSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssGoogleBookmarksSvg,#heateor_sss_rearrange .heateorSssGoogleBookmarksSvg{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}.heateor_sss_horizontal_sharing .heateorSssGoogleGmailSvg,#heateor_sss_rearrange .heateorSssGoogleGmailSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssHackerNewsSvg,#heateor_sss_rearrange .heateorSssHackerNewsSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssHatenaSvg,#heateor_sss_rearrange .heateorSssHatenaSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssInstapaperSvg,#heateor_sss_rearrange .heateorSssInstapaperSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssJamespotSvg,#heateor_sss_rearrange .heateorSssJamespotSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssKakaoSvg,#heateor_sss_rearrange .heateorSssKakaoSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssKindleItSvg,#heateor_sss_rearrange .heateorSssKindleItSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssKnownSvg,#heateor_sss_rearrange .heateorSssKnownSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssLineSvg,#heateor_sss_rearrange .heateorSssLineSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssLiveJournalSvg,#heateor_sss_rearrange .heateorSssLiveJournalSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssMailRuSvg,#heateor_sss_rearrange .heateorSssMailRuSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssMendeleySvg,#heateor_sss_rearrange .heateorSssMendeleySvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssMeneameSvg,#heateor_sss_rearrange .heateorSssMeneameSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssMixiSvg,#heateor_sss_rearrange .heateorSssMixiSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssMySpaceSvg,#heateor_sss_rearrange .heateorSssMySpaceSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssNetlogSvg,#heateor_sss_rearrange .heateorSssNetlogSvg{background:url('data:image/svg+xml;charset=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}.heateor_sss_horizontal_sharing .heateorSssNetvouzSvg,#heateor_sss_rearrange .heateorSssNetvouzSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssNewsVineSvg,#heateor_sss_rearrange .heateorSssNewsVineSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssNUjijSvg,#heateor_sss_rearrange .heateorSssNUjijSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssOdnoklassnikiSvg,#heateor_sss_rearrange .heateorSssOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssOknotizieSvg,#heateor_sss_rearrange .heateorSssOknotizieSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssOutlookcomSvg,#heateor_sss_rearrange .heateorSssOutlookcomSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssPinboardSvg,#heateor_sss_rearrange .heateorSssPinboardSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssPlurkSvg,#heateor_sss_rearrange .heateorSssPlurkSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssPocketSvg,#heateor_sss_rearrange .heateorSssPocketSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssPrintFriendlySvg,#heateor_sss_rearrange .heateorSssPrintFriendlySvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssProtopageBookmarksSvg,#heateor_sss_rearrange .heateorSssProtopageBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssPushaSvg,#heateor_sss_rearrange .heateorSssPushaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssQzoneSvg,#heateor_sss_rearrange .heateorSssQzoneSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssRediffMyPageSvg,#heateor_sss_rearrange .heateorSssRediffMyPageSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssRenrenSvg,#heateor_sss_rearrange .heateorSssRenrenSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssSegnaloSvg,#heateor_sss_rearrange .heateorSssSegnaloSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssSinaWeiboSvg,#heateor_sss_rearrange .heateorSssSinaWeiboSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssSiteJotSvg,#heateor_sss_rearrange .heateorSssSiteJotSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssSlashdotSvg,#heateor_sss_rearrange .heateorSssSlashdotSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssStumpediaSvg,#heateor_sss_rearrange .heateorSssStumpediaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssSvejoSvg,#heateor_sss_rearrange .heateorSssSvejoSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssSymbalooFeedsSvg,#heateor_sss_rearrange .heateorSssSymbalooFeedsSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssTuentiSvg,#heateor_sss_rearrange .heateorSssTuentiSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssTwiddlaSvg,#heateor_sss_rearrange .heateorSssTwiddlaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssViadeoSvg,#heateor_sss_rearrange .heateorSssViadeoSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssTypePadPostSvg,#heateor_sss_rearrange .heateorSssTypePadPostSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssWaneloSvg,#heateor_sss_rearrange .heateorSssWaneloSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssWebnewsSvg,#heateor_sss_rearrange .heateorSssWebnewsSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssWordPressSvg,#heateor_sss_rearrange .heateorSssWordPressSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssWykopSvg,#heateor_sss_rearrange .heateorSssWykopSvg{background:url('data:image/svg+xml;charset=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}.heateor_sss_horizontal_sharing .heateorSssYahooMailSvg,#heateor_sss_rearrange .heateorSssYahooMailSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssYahooMessengerSvg,#heateor_sss_rearrange .heateorSssYahooMessengerSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssYoolinkSvg,#heateor_sss_rearrange .heateorSssYoolinkSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssYouMobSvg,#heateor_sss_rearrange .heateorSssYouMobSvg{background:url('data:image/svg+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}
1
+ @charset "utf-8";.heateor_sss_horizontal_sharing .heateorSssYummlySvg,#heateor_sss_rearrange .heateorSssYummlySvg{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}.heateor_sss_horizontal_sharing .heateorSssBufferSvg,#heateor_sss_rearrange .heateorSssBufferSvg{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}.heateor_sss_horizontal_sharing .heateorSssFacebookSvg,#heateor_sss_rearrange .heateorSssFacebookSvg{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}.heateor_sss_horizontal_sharing .heateorSssDeliciousSvg,#heateor_sss_rearrange .heateorSssDeliciousSvg{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.5%20-12.5%2055%2055%22%3E%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%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%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%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%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_horizontal_sharing .heateorSssDiggSvg,#heateor_sss_rearrange .heateorSssDiggSvg{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}.heateor_sss_horizontal_sharing .heateorSssEmailSvg,#heateor_sss_rearrange .heateorSssEmailSvg{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}.heateor_sss_horizontal_sharing .heateorSssFloatitSvg,#heateor_sss_rearrange .heateorSssFloatitSvg{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}.heateor_sss_horizontal_sharing .heateorSssGoogleplusSvg,#heateor_sss_rearrange .heateorSssGoogleplusSvg{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}.heateor_sss_horizontal_sharing .heateorSssLinkedinSvg,#heateor_sss_rearrange .heateorSssLinkedinSvg{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}.heateor_sss_horizontal_sharing .heateorSssMoreSvg,#heateor_sss_rearrange .heateorSssMoreSvg{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}.heateor_sss_horizontal_sharing .heateorSssPinterestSvg,#heateor_sss_rearrange .heateorSssPinterestSvg{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}.heateor_sss_horizontal_sharing .heateorSssPrintSvg,#heateor_sss_rearrange .heateorSssPrintSvg{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}.heateor_sss_horizontal_sharing .heateorSssRedditSvg,#heateor_sss_rearrange .heateorSssRedditSvg{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}.heateor_sss_horizontal_sharing .heateorSssStumbleuponSvg,#heateor_sss_rearrange .heateorSssStumbleuponSvg{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}.heateor_sss_horizontal_sharing .heateorSssTumblrSvg,#heateor_sss_rearrange .heateorSssTumblrSvg{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}.heateor_sss_horizontal_sharing .heateorSssTwitterSvg,#heateor_sss_rearrange .heateorSssTwitterSvg{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}.heateor_sss_horizontal_sharing .heateorSssVkontakteSvg,#heateor_sss_rearrange .heateorSssVkontakteSvg{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}.heateor_sss_horizontal_sharing .heateorSssYahooSvg,#heateor_sss_rearrange .heateorSssYahooSvg{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}.heateor_sss_horizontal_sharing .heateorSssXingSvg,#heateor_sss_rearrange .heateorSssXingSvg{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}.heateor_sss_horizontal_sharing .heateorSssWhatsappSvg,#heateor_sss_rearrange .heateorSssWhatsappSvg{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}.heateor_sss_horizontal_sharing .heateorSssAIMSvg,#heateor_sss_rearrange .heateorSssAIMSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssAmazonWishListSvg,#heateor_sss_rearrange .heateorSssAmazonWishListSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssAOLMailSvg,#heateor_sss_rearrange .heateorSssAOLMailSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssAppnetSvg,#heateor_sss_rearrange .heateorSssAppnetSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssBaiduSvg,#heateor_sss_rearrange .heateorSssBaiduSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssBalatarinSvg,#heateor_sss_rearrange .heateorSssBalatarinSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssBibSonomySvg,#heateor_sss_rearrange .heateorSssBibSonomySvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssBittyBrowserSvg,#heateor_sss_rearrange .heateorSssBittyBrowserSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssBlinklistSvg,#heateor_sss_rearrange .heateorSssBlinklistSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssBloggerPostSvg,#heateor_sss_rearrange .heateorSssBloggerPostSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssBlogMarksSvg,#heateor_sss_rearrange .heateorSssBlogMarksSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssBoxnetSvg,#heateor_sss_rearrange .heateorSssBoxnetSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssBookmarksfrSvg,#heateor_sss_rearrange .heateorSssBookmarksfrSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssBuddyMarksSvg,#heateor_sss_rearrange .heateorSssBuddyMarksSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssCare2NewsSvg,#heateor_sss_rearrange .heateorSssCare2NewsSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssCiteULikeSvg,#heateor_sss_rearrange .heateorSssCiteULikeSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssDiaryRuSvg,#heateor_sss_rearrange .heateorSssDiaryRuSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssDiasporaSvg,#heateor_sss_rearrange .heateorSssDiasporaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssDiHITTSvg,#heateor_sss_rearrange .heateorSssDiHITTSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssDiigoSvg,#heateor_sss_rearrange .heateorSssDiigoSvg{background:url('data:image/svg+xml;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}.heateor_sss_horizontal_sharing .heateorSssDZoneSvg,#heateor_sss_rearrange .heateorSssDZoneSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssEvernoteSvg,#heateor_sss_rearrange .heateorSssEvernoteSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssFarkSvg,#heateor_sss_rearrange .heateorSssFarkSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssFlipboardSvg,#heateor_sss_rearrange .heateorSssFlipboardSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssFolkdSvg,#heateor_sss_rearrange .heateorSssFolkdSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssGoogleBookmarksSvg,#heateor_sss_rearrange .heateorSssGoogleBookmarksSvg{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}.heateor_sss_horizontal_sharing .heateorSssGoogleGmailSvg,#heateor_sss_rearrange .heateorSssGoogleGmailSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssHackerNewsSvg,#heateor_sss_rearrange .heateorSssHackerNewsSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssHatenaSvg,#heateor_sss_rearrange .heateorSssHatenaSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssInstapaperSvg,#heateor_sss_rearrange .heateorSssInstapaperSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssJamespotSvg,#heateor_sss_rearrange .heateorSssJamespotSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssKakaoSvg,#heateor_sss_rearrange .heateorSssKakaoSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssKindleItSvg,#heateor_sss_rearrange .heateorSssKindleItSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssKnownSvg,#heateor_sss_rearrange .heateorSssKnownSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssLineSvg,#heateor_sss_rearrange .heateorSssLineSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssLiveJournalSvg,#heateor_sss_rearrange .heateorSssLiveJournalSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssMailRuSvg,#heateor_sss_rearrange .heateorSssMailRuSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssMendeleySvg,#heateor_sss_rearrange .heateorSssMendeleySvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssMeneameSvg,#heateor_sss_rearrange .heateorSssMeneameSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssMixiSvg,#heateor_sss_rearrange .heateorSssMixiSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssMySpaceSvg,#heateor_sss_rearrange .heateorSssMySpaceSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssNetlogSvg,#heateor_sss_rearrange .heateorSssNetlogSvg{background:url('data:image/svg+xml;charset=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}.heateor_sss_horizontal_sharing .heateorSssNetvouzSvg,#heateor_sss_rearrange .heateorSssNetvouzSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssNewsVineSvg,#heateor_sss_rearrange .heateorSssNewsVineSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssNUjijSvg,#heateor_sss_rearrange .heateorSssNUjijSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssOdnoklassnikiSvg,#heateor_sss_rearrange .heateorSssOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssOknotizieSvg,#heateor_sss_rearrange .heateorSssOknotizieSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssOutlookcomSvg,#heateor_sss_rearrange .heateorSssOutlookcomSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssPinboardSvg,#heateor_sss_rearrange .heateorSssPinboardSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssPlurkSvg,#heateor_sss_rearrange .heateorSssPlurkSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssPocketSvg,#heateor_sss_rearrange .heateorSssPocketSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssPrintFriendlySvg,#heateor_sss_rearrange .heateorSssPrintFriendlySvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssProtopageBookmarksSvg,#heateor_sss_rearrange .heateorSssProtopageBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssPushaSvg,#heateor_sss_rearrange .heateorSssPushaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssQzoneSvg,#heateor_sss_rearrange .heateorSssQzoneSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssRediffMyPageSvg,#heateor_sss_rearrange .heateorSssRediffMyPageSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssRenrenSvg,#heateor_sss_rearrange .heateorSssRenrenSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssSegnaloSvg,#heateor_sss_rearrange .heateorSssSegnaloSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssSinaWeiboSvg,#heateor_sss_rearrange .heateorSssSinaWeiboSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssSiteJotSvg,#heateor_sss_rearrange .heateorSssSiteJotSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssSlashdotSvg,#heateor_sss_rearrange .heateorSssSlashdotSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssStumpediaSvg,#heateor_sss_rearrange .heateorSssStumpediaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssSvejoSvg,#heateor_sss_rearrange .heateorSssSvejoSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssSymbalooFeedsSvg,#heateor_sss_rearrange .heateorSssSymbalooFeedsSvg{background:url('data:image/svg+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}.heateor_sss_horizontal_sharing .heateorSssTuentiSvg,#heateor_sss_rearrange .heateorSssTuentiSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssTwiddlaSvg,#heateor_sss_rearrange .heateorSssTwiddlaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssViadeoSvg,#heateor_sss_rearrange .heateorSssViadeoSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssTypePadPostSvg,#heateor_sss_rearrange .heateorSssTypePadPostSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssWaneloSvg,#heateor_sss_rearrange .heateorSssWaneloSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssWebnewsSvg,#heateor_sss_rearrange .heateorSssWebnewsSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssWordPressSvg,#heateor_sss_rearrange .heateorSssWordPressSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssWykopSvg,#heateor_sss_rearrange .heateorSssWykopSvg{background:url('data:image/svg+xml;charset=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}.heateor_sss_horizontal_sharing .heateorSssYahooMailSvg,#heateor_sss_rearrange .heateorSssYahooMailSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssYahooMessengerSvg,#heateor_sss_rearrange .heateorSssYahooMessengerSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_horizontal_sharing .heateorSssYoolinkSvg,#heateor_sss_rearrange .heateorSssYoolinkSvg{background:url('data:image/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}.heateor_sss_horizontal_sharing .heateorSssYouMobSvg,#heateor_sss_rearrange .heateorSssYouMobSvg{background:url('data:image/svg+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}
admin/css/sassy-social-share-default-svg-vertical.css CHANGED
@@ -1 +1 @@
1
- @charset "utf-8";.heateor_sss_vertical_sharing .heateorSssYummlySvg,#heateor_sss_vertical_rearrange .heateorSssYummlySvg{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}.heateor_sss_vertical_sharing .heateorSssBufferSvg,#heateor_sss_vertical_rearrange .heateorSssBufferSvg{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}.heateor_sss_vertical_sharing .heateorSssFacebookSvg,#heateor_sss_vertical_rearrange .heateorSssFacebookSvg{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}.heateor_sss_vertical_sharing .heateorSssDeliciousSvg,#heateor_sss_vertical_rearrange .heateorSssDeliciousSvg{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}.heateor_sss_vertical_sharing .heateorSssDiggSvg,#heateor_sss_vertical_rearrange .heateorSssDiggSvg{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}.heateor_sss_vertical_sharing .heateorSssEmailSvg,#heateor_sss_vertical_rearrange .heateorSssEmailSvg{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}.heateor_sss_vertical_sharing .heateorSssFloatitSvg,#heateor_sss_vertical_rearrange .heateorSssFloatitSvg{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}.heateor_sss_vertical_sharing .heateorSssGoogleplusSvg,#heateor_sss_vertical_rearrange .heateorSssGoogleplusSvg{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}.heateor_sss_vertical_sharing .heateorSssLinkedinSvg,#heateor_sss_vertical_rearrange .heateorSssLinkedinSvg{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}.heateor_sss_vertical_sharing .heateorSssMoreSvg,#heateor_sss_vertical_rearrange .heateorSssMoreSvg{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}.heateor_sss_vertical_sharing .heateorSssPinterestSvg,#heateor_sss_vertical_rearrange .heateorSssPinterestSvg{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}.heateor_sss_vertical_sharing .heateorSssPrintSvg,#heateor_sss_vertical_rearrange .heateorSssPrintSvg{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}.heateor_sss_vertical_sharing .heateorSssRedditSvg,#heateor_sss_vertical_rearrange .heateorSssRedditSvg{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}.heateor_sss_vertical_sharing .heateorSssStumbleuponSvg,#heateor_sss_vertical_rearrange .heateorSssStumbleuponSvg{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}.heateor_sss_vertical_sharing .heateorSssTumblrSvg,#heateor_sss_vertical_rearrange .heateorSssTumblrSvg{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}.heateor_sss_vertical_sharing .heateorSssTwitterSvg,#heateor_sss_vertical_rearrange .heateorSssTwitterSvg{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}.heateor_sss_vertical_sharing .heateorSssVkontakteSvg,#heateor_sss_vertical_rearrange .heateorSssVkontakteSvg{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}.heateor_sss_vertical_sharing .heateorSssYahooSvg,#heateor_sss_vertical_rearrange .heateorSssYahooSvg{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}.heateor_sss_vertical_sharing .heateorSssXingSvg,#heateor_sss_vertical_rearrange .heateorSssXingSvg{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}.heateor_sss_vertical_sharing .heateorSssWhatsappSvg,#heateor_sss_vertical_rearrange .heateorSssWhatsappSvg{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}.heateor_sss_vertical_sharing .heateorSssAIMSvg,#heateor_sss_vertical_rearrange .heateorSssAIMSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssAmazonWishListSvg,#heateor_sss_vertical_rearrange .heateorSssAmazonWishListSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssAOLMailSvg,#heateor_sss_vertical_rearrange .heateorSssAOLMailSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssAppnetSvg,#heateor_sss_vertical_rearrange .heateorSssAppnetSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssBaiduSvg,#heateor_sss_vertical_rearrange .heateorSssBaiduSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssBalatarinSvg,#heateor_sss_vertical_rearrange .heateorSssBalatarinSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssBibSonomySvg,#heateor_sss_vertical_rearrange .heateorSssBibSonomySvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssBittyBrowserSvg,#heateor_sss_vertical_rearrange .heateorSssBittyBrowserSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssBlinklistSvg,#heateor_sss_vertical_rearrange .heateorSssBlinklistSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssBloggerPostSvg,#heateor_sss_vertical_rearrange .heateorSssBloggerPostSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssBlogMarksSvg,#heateor_sss_vertical_rearrange .heateorSssBlogMarksSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssBoxnetSvg,#heateor_sss_vertical_rearrange .heateorSssBoxnetSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssBookmarksfrSvg,#heateor_sss_vertical_rearrange .heateorSssBookmarksfrSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssBuddyMarksSvg,#heateor_sss_vertical_rearrange .heateorSssBuddyMarksSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssCare2NewsSvg,#heateor_sss_vertical_rearrange .heateorSssCare2NewsSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssCiteULikeSvg,#heateor_sss_vertical_rearrange .heateorSssCiteULikeSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssDiaryRuSvg,#heateor_sss_vertical_rearrange .heateorSssDiaryRuSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssDiasporaSvg,#heateor_sss_vertical_rearrange .heateorSssDiasporaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssDiHITTSvg,#heateor_sss_vertical_rearrange .heateorSssDiHITTSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssDiigoSvg,#heateor_sss_vertical_rearrange .heateorSssDiigoSvg{background:url('data:image/svg+xml;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}.heateor_sss_vertical_sharing .heateorSssDZoneSvg,#heateor_sss_vertical_rearrange .heateorSssDZoneSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssEvernoteSvg,#heateor_sss_vertical_rearrange .heateorSssEvernoteSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssFarkSvg,#heateor_sss_vertical_rearrange .heateorSssFarkSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssFlipboardSvg,#heateor_sss_vertical_rearrange .heateorSssFlipboardSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssFolkdSvg,#heateor_sss_vertical_rearrange .heateorSssFolkdSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssGoogleBookmarksSvg,#heateor_sss_vertical_rearrange .heateorSssGoogleBookmarksSvg{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}.heateor_sss_vertical_sharing .heateorSssGoogleGmailSvg,#heateor_sss_vertical_rearrange .heateorSssGoogleGmailSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssHackerNewsSvg,#heateor_sss_vertical_rearrange .heateorSssHackerNewsSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssHatenaSvg,#heateor_sss_vertical_rearrange .heateorSssHatenaSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssInstapaperSvg,#heateor_sss_vertical_rearrange .heateorSssInstapaperSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssJamespotSvg,#heateor_sss_vertical_rearrange .heateorSssJamespotSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssKakaoSvg,#heateor_sss_vertical_rearrange .heateorSssKakaoSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssKindleItSvg,#heateor_sss_vertical_rearrange .heateorSssKindleItSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssKnownSvg,#heateor_sss_vertical_rearrange .heateorSssKnownSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssLineSvg,#heateor_sss_vertical_rearrange .heateorSssLineSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssLiveJournalSvg,#heateor_sss_vertical_rearrange .heateorSssLiveJournalSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssMailRuSvg,#heateor_sss_vertical_rearrange .heateorSssMailRuSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssYahooMessengerSvg,#heateor_sss_vertical_rearrange .heateorSssYahooMessengerSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssMendeleySvg,#heateor_sss_vertical_rearrange .heateorSssMendeleySvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssMeneameSvg,#heateor_sss_vertical_rearrange .heateorSssMeneameSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssMixiSvg,#heateor_sss_vertical_rearrange .heateorSssMixiSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssMySpaceSvg,#heateor_sss_vertical_rearrange .heateorSssMySpaceSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssNetlogSvg,#heateor_sss_vertical_rearrange .heateorSssNetlogSvg{background:url('data:image/svg+xml;charset=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}.heateor_sss_vertical_sharing .heateorSssNetvouzSvg,#heateor_sss_vertical_rearrange .heateorSssNetvouzSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssNewsVineSvg,#heateor_sss_vertical_rearrange .heateorSssNewsVineSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssNUjijSvg,#heateor_sss_vertical_rearrange .heateorSssNUjijSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssOdnoklassnikiSvg,#heateor_sss_vertical_rearrange .heateorSssOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssOknotizieSvg,#heateor_sss_vertical_rearrange .heateorSssOknotizieSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssOutlookcomSvg,#heateor_sss_vertical_rearrange .heateorSssOutlookcomSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssPinboardSvg,#heateor_sss_vertical_rearrange .heateorSssPinboardSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssPlurkSvg,#heateor_sss_vertical_rearrange .heateorSssPlurkSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssPocketSvg,#heateor_sss_vertical_rearrange .heateorSssPocketSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssPrintFriendlySvg,#heateor_sss_vertical_rearrange .heateorSssPrintFriendlySvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssProtopageBookmarksSvg,#heateor_sss_vertical_rearrange .heateorSssProtopageBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssPushaSvg,#heateor_sss_vertical_rearrange .heateorSssPushaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssQzoneSvg,#heateor_sss_vertical_rearrange .heateorSssQzoneSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssRediffMyPageSvg,#heateor_sss_vertical_rearrange .heateorSssRediffMyPageSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssRenrenSvg,#heateor_sss_vertical_rearrange .heateorSssRenrenSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssSegnaloSvg,#heateor_sss_vertical_rearrange .heateorSssSegnaloSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssSinaWeiboSvg,#heateor_sss_vertical_rearrange .heateorSssSinaWeiboSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssSiteJotSvg,#heateor_sss_vertical_rearrange .heateorSssSiteJotSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssSlashdotSvg,#heateor_sss_vertical_rearrange .heateorSssSlashdotSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssStumpediaSvg,#heateor_sss_vertical_rearrange .heateorSssStumpediaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssSvejoSvg,#heateor_sss_vertical_rearrange .heateorSssSvejoSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssSymbalooFeedsSvg,#heateor_sss_vertical_rearrange .heateorSssSymbalooFeedsSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssTuentiSvg,#heateor_sss_vertical_rearrange .heateorSssTuentiSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssTwiddlaSvg,#heateor_sss_vertical_rearrange .heateorSssTwiddlaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssViadeoSvg,#heateor_sss_vertical_rearrange .heateorSssViadeoSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssTypePadPostSvg,#heateor_sss_vertical_rearrange .heateorSssTypePadPostSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssWaneloSvg,#heateor_sss_vertical_rearrange .heateorSssWaneloSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssWebnewsSvg,#heateor_sss_vertical_rearrange .heateorSssWebnewsSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssWordPressSvg,#heateor_sss_vertical_rearrange .heateorSssWordPressSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssWykopSvg,#heateor_sss_vertical_rearrange .heateorSssWykopSvg{background:url('data:image/svg+xml;charset=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}.heateor_sss_vertical_sharing .heateorSssYahooMailSvg,#heateor_sss_vertical_rearrange .heateorSssYahooMailSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssYahooMessengerSvg,#heateor_sss_vertical_rearrange .heateorSssYahooMessengerSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssYoolinkSvg,#heateor_sss_vertical_rearrange .heateorSssYoolinkSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssYouMobSvg,#heateor_sss_vertical_rearrange .heateorSssYouMobSvg{background:url('data:image/svg+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}
1
+ @charset "utf-8";.heateor_sss_vertical_sharing .heateorSssYummlySvg,#heateor_sss_vertical_rearrange .heateorSssYummlySvg{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}.heateor_sss_vertical_sharing .heateorSssBufferSvg,#heateor_sss_vertical_rearrange .heateorSssBufferSvg{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}.heateor_sss_vertical_sharing .heateorSssFacebookSvg,#heateor_sss_vertical_rearrange .heateorSssFacebookSvg{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}.heateor_sss_vertical_sharing .heateorSssDeliciousSvg,#heateor_sss_vertical_rearrange .heateorSssDeliciousSvg{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.5%20-12.5%2055%2055%22%3E%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%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%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%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%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_vertical_sharing .heateorSssDiggSvg,#heateor_sss_vertical_rearrange .heateorSssDiggSvg{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}.heateor_sss_vertical_sharing .heateorSssEmailSvg,#heateor_sss_vertical_rearrange .heateorSssEmailSvg{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}.heateor_sss_vertical_sharing .heateorSssFloatitSvg,#heateor_sss_vertical_rearrange .heateorSssFloatitSvg{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}.heateor_sss_vertical_sharing .heateorSssGoogleplusSvg,#heateor_sss_vertical_rearrange .heateorSssGoogleplusSvg{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}.heateor_sss_vertical_sharing .heateorSssLinkedinSvg,#heateor_sss_vertical_rearrange .heateorSssLinkedinSvg{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}.heateor_sss_vertical_sharing .heateorSssMoreSvg,#heateor_sss_vertical_rearrange .heateorSssMoreSvg{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}.heateor_sss_vertical_sharing .heateorSssPinterestSvg,#heateor_sss_vertical_rearrange .heateorSssPinterestSvg{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}.heateor_sss_vertical_sharing .heateorSssPrintSvg,#heateor_sss_vertical_rearrange .heateorSssPrintSvg{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}.heateor_sss_vertical_sharing .heateorSssRedditSvg,#heateor_sss_vertical_rearrange .heateorSssRedditSvg{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}.heateor_sss_vertical_sharing .heateorSssStumbleuponSvg,#heateor_sss_vertical_rearrange .heateorSssStumbleuponSvg{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}.heateor_sss_vertical_sharing .heateorSssTumblrSvg,#heateor_sss_vertical_rearrange .heateorSssTumblrSvg{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}.heateor_sss_vertical_sharing .heateorSssTwitterSvg,#heateor_sss_vertical_rearrange .heateorSssTwitterSvg{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}.heateor_sss_vertical_sharing .heateorSssVkontakteSvg,#heateor_sss_vertical_rearrange .heateorSssVkontakteSvg{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}.heateor_sss_vertical_sharing .heateorSssYahooSvg,#heateor_sss_vertical_rearrange .heateorSssYahooSvg{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}.heateor_sss_vertical_sharing .heateorSssXingSvg,#heateor_sss_vertical_rearrange .heateorSssXingSvg{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}.heateor_sss_vertical_sharing .heateorSssWhatsappSvg,#heateor_sss_vertical_rearrange .heateorSssWhatsappSvg{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}.heateor_sss_vertical_sharing .heateorSssAIMSvg,#heateor_sss_vertical_rearrange .heateorSssAIMSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssAmazonWishListSvg,#heateor_sss_vertical_rearrange .heateorSssAmazonWishListSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssAOLMailSvg,#heateor_sss_vertical_rearrange .heateorSssAOLMailSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssAppnetSvg,#heateor_sss_vertical_rearrange .heateorSssAppnetSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssBaiduSvg,#heateor_sss_vertical_rearrange .heateorSssBaiduSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssBalatarinSvg,#heateor_sss_vertical_rearrange .heateorSssBalatarinSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssBibSonomySvg,#heateor_sss_vertical_rearrange .heateorSssBibSonomySvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssBittyBrowserSvg,#heateor_sss_vertical_rearrange .heateorSssBittyBrowserSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssBlinklistSvg,#heateor_sss_vertical_rearrange .heateorSssBlinklistSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssBloggerPostSvg,#heateor_sss_vertical_rearrange .heateorSssBloggerPostSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssBlogMarksSvg,#heateor_sss_vertical_rearrange .heateorSssBlogMarksSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssBoxnetSvg,#heateor_sss_vertical_rearrange .heateorSssBoxnetSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssBookmarksfrSvg,#heateor_sss_vertical_rearrange .heateorSssBookmarksfrSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssBuddyMarksSvg,#heateor_sss_vertical_rearrange .heateorSssBuddyMarksSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssCare2NewsSvg,#heateor_sss_vertical_rearrange .heateorSssCare2NewsSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssCiteULikeSvg,#heateor_sss_vertical_rearrange .heateorSssCiteULikeSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssDiaryRuSvg,#heateor_sss_vertical_rearrange .heateorSssDiaryRuSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssDiasporaSvg,#heateor_sss_vertical_rearrange .heateorSssDiasporaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssDiHITTSvg,#heateor_sss_vertical_rearrange .heateorSssDiHITTSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssDiigoSvg,#heateor_sss_vertical_rearrange .heateorSssDiigoSvg{background:url('data:image/svg+xml;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}.heateor_sss_vertical_sharing .heateorSssDZoneSvg,#heateor_sss_vertical_rearrange .heateorSssDZoneSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssEvernoteSvg,#heateor_sss_vertical_rearrange .heateorSssEvernoteSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssFarkSvg,#heateor_sss_vertical_rearrange .heateorSssFarkSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssFlipboardSvg,#heateor_sss_vertical_rearrange .heateorSssFlipboardSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssFolkdSvg,#heateor_sss_vertical_rearrange .heateorSssFolkdSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssGoogleBookmarksSvg,#heateor_sss_vertical_rearrange .heateorSssGoogleBookmarksSvg{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}.heateor_sss_vertical_sharing .heateorSssGoogleGmailSvg,#heateor_sss_vertical_rearrange .heateorSssGoogleGmailSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssHackerNewsSvg,#heateor_sss_vertical_rearrange .heateorSssHackerNewsSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssHatenaSvg,#heateor_sss_vertical_rearrange .heateorSssHatenaSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssInstapaperSvg,#heateor_sss_vertical_rearrange .heateorSssInstapaperSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssJamespotSvg,#heateor_sss_vertical_rearrange .heateorSssJamespotSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssKakaoSvg,#heateor_sss_vertical_rearrange .heateorSssKakaoSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssKindleItSvg,#heateor_sss_vertical_rearrange .heateorSssKindleItSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssKnownSvg,#heateor_sss_vertical_rearrange .heateorSssKnownSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssLineSvg,#heateor_sss_vertical_rearrange .heateorSssLineSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssLiveJournalSvg,#heateor_sss_vertical_rearrange .heateorSssLiveJournalSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssMailRuSvg,#heateor_sss_vertical_rearrange .heateorSssMailRuSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssYahooMessengerSvg,#heateor_sss_vertical_rearrange .heateorSssYahooMessengerSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssMendeleySvg,#heateor_sss_vertical_rearrange .heateorSssMendeleySvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssMeneameSvg,#heateor_sss_vertical_rearrange .heateorSssMeneameSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssMixiSvg,#heateor_sss_vertical_rearrange .heateorSssMixiSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssMySpaceSvg,#heateor_sss_vertical_rearrange .heateorSssMySpaceSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssNetlogSvg,#heateor_sss_vertical_rearrange .heateorSssNetlogSvg{background:url('data:image/svg+xml;charset=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}.heateor_sss_vertical_sharing .heateorSssNetvouzSvg,#heateor_sss_vertical_rearrange .heateorSssNetvouzSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssNewsVineSvg,#heateor_sss_vertical_rearrange .heateorSssNewsVineSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssNUjijSvg,#heateor_sss_vertical_rearrange .heateorSssNUjijSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssOdnoklassnikiSvg,#heateor_sss_vertical_rearrange .heateorSssOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssOknotizieSvg,#heateor_sss_vertical_rearrange .heateorSssOknotizieSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssOutlookcomSvg,#heateor_sss_vertical_rearrange .heateorSssOutlookcomSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssPinboardSvg,#heateor_sss_vertical_rearrange .heateorSssPinboardSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssPlurkSvg,#heateor_sss_vertical_rearrange .heateorSssPlurkSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssPocketSvg,#heateor_sss_vertical_rearrange .heateorSssPocketSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssPrintFriendlySvg,#heateor_sss_vertical_rearrange .heateorSssPrintFriendlySvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssProtopageBookmarksSvg,#heateor_sss_vertical_rearrange .heateorSssProtopageBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssPushaSvg,#heateor_sss_vertical_rearrange .heateorSssPushaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssQzoneSvg,#heateor_sss_vertical_rearrange .heateorSssQzoneSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssRediffMyPageSvg,#heateor_sss_vertical_rearrange .heateorSssRediffMyPageSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssRenrenSvg,#heateor_sss_vertical_rearrange .heateorSssRenrenSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssSegnaloSvg,#heateor_sss_vertical_rearrange .heateorSssSegnaloSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssSinaWeiboSvg,#heateor_sss_vertical_rearrange .heateorSssSinaWeiboSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssSiteJotSvg,#heateor_sss_vertical_rearrange .heateorSssSiteJotSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssSlashdotSvg,#heateor_sss_vertical_rearrange .heateorSssSlashdotSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssStumpediaSvg,#heateor_sss_vertical_rearrange .heateorSssStumpediaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssSvejoSvg,#heateor_sss_vertical_rearrange .heateorSssSvejoSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssSymbalooFeedsSvg,#heateor_sss_vertical_rearrange .heateorSssSymbalooFeedsSvg{background:url('data:image/svg+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}.heateor_sss_vertical_sharing .heateorSssTuentiSvg,#heateor_sss_vertical_rearrange .heateorSssTuentiSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssTwiddlaSvg,#heateor_sss_vertical_rearrange .heateorSssTwiddlaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssViadeoSvg,#heateor_sss_vertical_rearrange .heateorSssViadeoSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssTypePadPostSvg,#heateor_sss_vertical_rearrange .heateorSssTypePadPostSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssWaneloSvg,#heateor_sss_vertical_rearrange .heateorSssWaneloSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssWebnewsSvg,#heateor_sss_vertical_rearrange .heateorSssWebnewsSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssWordPressSvg,#heateor_sss_vertical_rearrange .heateorSssWordPressSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssWykopSvg,#heateor_sss_vertical_rearrange .heateorSssWykopSvg{background:url('data:image/svg+xml;charset=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}.heateor_sss_vertical_sharing .heateorSssYahooMailSvg,#heateor_sss_vertical_rearrange .heateorSssYahooMailSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssYahooMessengerSvg,#heateor_sss_vertical_rearrange .heateorSssYahooMessengerSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateor_sss_vertical_sharing .heateorSssYoolinkSvg,#heateor_sss_vertical_rearrange .heateorSssYoolinkSvg{background:url('data:image/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}.heateor_sss_vertical_sharing .heateorSssYouMobSvg,#heateor_sss_vertical_rearrange .heateorSssYouMobSvg{background:url('data:image/svg+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}
admin/css/sassy-social-share-hover-svg-horizontal.css CHANGED
@@ -1 +1 @@
1
- @charset "utf-8";.heateor_sss_horizontal_sharing .heateorSssYummlySvg:hover,#heateor_sss_rearrange .heateorSssYummlySvg: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}.heateor_sss_horizontal_sharing .heateorSssBufferSvg:hover,#heateor_sss_rearrange .heateorSssBufferSvg: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}.heateor_sss_horizontal_sharing .heateorSssFacebookSvg:hover,#heateor_sss_rearrange .heateorSssFacebookSvg: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}.heateor_sss_horizontal_sharing .heateorSssDeliciousSvg:hover,#heateor_sss_rearrange .heateorSssDeliciousSvg: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}.heateor_sss_horizontal_sharing .heateorSssDiggSvg:hover,#heateor_sss_rearrange .heateorSssDiggSvg: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}.heateor_sss_horizontal_sharing .heateorSssEmailSvg:hover,#heateor_sss_rearrange .heateorSssEmailSvg: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}.heateor_sss_horizontal_sharing .heateorSssFloatitSvg:hover,#heateor_sss_rearrange .heateorSssFloatitSvg: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}.heateor_sss_horizontal_sharing .heateorSssGoogleplusSvg:hover,#heateor_sss_rearrange .heateorSssGoogleplusSvg: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}.heateor_sss_horizontal_sharing .heateorSssLinkedinSvg:hover,#heateor_sss_rearrange .heateorSssLinkedinSvg: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}.heateor_sss_horizontal_sharing .heateorSssMoreSvg:hover,#heateor_sss_rearrange .heateorSssMoreSvg: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}.heateor_sss_horizontal_sharing .heateorSssPinterestSvg:hover,#heateor_sss_rearrange .heateorSssPinterestSvg: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}.heateor_sss_horizontal_sharing .heateorSssPrintSvg:hover,#heateor_sss_rearrange .heateorSssPrintSvg: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}.heateor_sss_horizontal_sharing .heateorSssRedditSvg:hover,#heateor_sss_rearrange .heateorSssRedditSvg: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}.heateor_sss_horizontal_sharing .heateorSssStumbleuponSvg:hover,#heateor_sss_rearrange .heateorSssStumbleuponSvg: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}.heateor_sss_horizontal_sharing .heateorSssTumblrSvg:hover,#heateor_sss_rearrange .heateorSssTumblrSvg: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}.heateor_sss_horizontal_sharing .heateorSssTwitterSvg:hover,#heateor_sss_rearrange .heateorSssTwitterSvg: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}.heateor_sss_horizontal_sharing .heateorSssVkontakteSvg:hover,#heateor_sss_rearrange .heateorSssVkontakteSvg: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}.heateor_sss_horizontal_sharing .heateorSssYahooSvg:hover,#heateor_sss_rearrange .heateorSssYahooSvg: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}.heateor_sss_horizontal_sharing .heateorSssXingSvg:hover,#heateor_sss_rearrange .heateorSssXingSvg: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}.heateor_sss_horizontal_sharing .heateorSssWhatsappSvg:hover,#heateor_sss_rearrange .heateorSssWhatsappSvg: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}.heateor_sss_horizontal_sharing .heateorSssAIMSvg:hover,#heateor_sss_rearrange .heateorSssAIMSvg: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}.heateor_sss_horizontal_sharing .heateorSssAmazonWishListSvg:hover,#heateor_sss_rearrange .heateorSssAmazonWishListSvg: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}.heateor_sss_horizontal_sharing .heateorSssAOLMailSvg:hover,#heateor_sss_rearrange .heateorSssAOLMailSvg: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}.heateor_sss_horizontal_sharing .heateorSssAppnetSvg:hover,#heateor_sss_rearrange .heateorSssAppnetSvg: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}.heateor_sss_horizontal_sharing .heateorSssBaiduSvg:hover,#heateor_sss_rearrange .heateorSssBaiduSvg: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}.heateor_sss_horizontal_sharing .heateorSssBalatarinSvg:hover,#heateor_sss_rearrange .heateorSssBalatarinSvg: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}.heateor_sss_horizontal_sharing .heateorSssBibSonomySvg:hover,#heateor_sss_rearrange .heateorSssBibSonomySvg: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}.heateor_sss_horizontal_sharing .heateorSssBittyBrowserSvg:hover,#heateor_sss_rearrange .heateorSssBittyBrowserSvg: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}.heateor_sss_horizontal_sharing .heateorSssBlinklistSvg:hover,#heateor_sss_rearrange .heateorSssBlinklistSvg: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}.heateor_sss_horizontal_sharing .heateorSssBloggerPostSvg:hover,#heateor_sss_rearrange .heateorSssBloggerPostSvg: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}.heateor_sss_horizontal_sharing .heateorSssBlogMarksSvg:hover,#heateor_sss_rearrange .heateorSssBlogMarksSvg: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}.heateor_sss_horizontal_sharing .heateorSssBoxnetSvg:hover,#heateor_sss_rearrange .heateorSssBoxnetSvg: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}.heateor_sss_horizontal_sharing .heateorSssBookmarksfrSvg:hover,#heateor_sss_rearrange .heateorSssBookmarksfrSvg: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}.heateor_sss_horizontal_sharing .heateorSssBuddyMarksSvg:hover,#heateor_sss_rearrange .heateorSssBuddyMarksSvg: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}.heateor_sss_horizontal_sharing .heateorSssCare2NewsSvg:hover,#heateor_sss_rearrange .heateorSssCare2NewsSvg: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}.heateor_sss_horizontal_sharing .heateorSssCiteULikeSvg:hover,#heateor_sss_rearrange .heateorSssCiteULikeSvg: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}.heateor_sss_horizontal_sharing .heateorSssDiaryRuSvg:hover,#heateor_sss_rearrange .heateorSssDiaryRuSvg: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}.heateor_sss_horizontal_sharing .heateorSssDiasporaSvg:hover,#heateor_sss_rearrange .heateorSssDiasporaSvg: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}.heateor_sss_horizontal_sharing .heateorSssDiHITTSvg:hover,#heateor_sss_rearrange .heateorSssDiHITTSvg: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}.heateor_sss_horizontal_sharing .heateorSssDiigoSvg:hover,#heateor_sss_rearrange .heateorSssDiigoSvg: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}.heateor_sss_horizontal_sharing .heateorSssDZoneSvg:hover,#heateor_sss_rearrange .heateorSssDZoneSvg: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}.heateor_sss_horizontal_sharing .heateorSssEvernoteSvg:hover,#heateor_sss_rearrange .heateorSssEvernoteSvg: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}.heateor_sss_horizontal_sharing .heateorSssFarkSvg:hover,#heateor_sss_rearrange .heateorSssFarkSvg: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}.heateor_sss_horizontal_sharing .heateorSssFlipboardSvg:hover,#heateor_sss_rearrange .heateorSssFlipboardSvg: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}.heateor_sss_horizontal_sharing .heateorSssFolkdSvg:hover,#heateor_sss_rearrange .heateorSssFolkdSvg: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}.heateor_sss_horizontal_sharing .heateorSssGoogleBookmarksSvg:hover,#heateor_sss_rearrange .heateorSssGoogleBookmarksSvg: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}.heateor_sss_horizontal_sharing .heateorSssGoogleGmailSvg:hover,#heateor_sss_rearrange .heateorSssGoogleGmailSvg: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}.heateor_sss_horizontal_sharing .heateorSssHackerNewsSvg:hover,#heateor_sss_rearrange .heateorSssHackerNewsSvg: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}.heateor_sss_horizontal_sharing .heateorSssHatenaSvg:hover,#heateor_sss_rearrange .heateorSssHatenaSvg: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}.heateor_sss_horizontal_sharing .heateorSssInstapaperSvg:hover,#heateor_sss_rearrange .heateorSssInstapaperSvg: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}.heateor_sss_horizontal_sharing .heateorSssJamespotSvg:hover,#heateor_sss_rearrange .heateorSssJamespotSvg: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}.heateor_sss_horizontal_sharing .heateorSssKakaoSvg:hover,#heateor_sss_rearrange .heateorSssKakaoSvg: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}.heateor_sss_horizontal_sharing .heateorSssKindleItSvg:hover,#heateor_sss_rearrange .heateorSssKindleItSvg: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}.heateor_sss_horizontal_sharing .heateorSssKnownSvg:hover,#heateor_sss_rearrange .heateorSssKnownSvg: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}.heateor_sss_horizontal_sharing .heateorSssLineSvg:hover,#heateor_sss_rearrange .heateorSssLineSvg: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}.heateor_sss_horizontal_sharing .heateorSssLiveJournalSvg:hover,#heateor_sss_rearrange .heateorSssLiveJournalSvg: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}.heateor_sss_horizontal_sharing .heateorSssMailRuSvg:hover,#heateor_sss_rearrange .heateorSssMailRuSvg: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}.heateor_sss_horizontal_sharing .heateorSssMendeleySvg:hover,#heateor_sss_rearrange .heateorSssMendeleySvg: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}.heateor_sss_horizontal_sharing .heateorSssMeneameSvg:hover,#heateor_sss_rearrange .heateorSssMeneameSvg: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}.heateor_sss_horizontal_sharing .heateorSssMixiSvg:hover,#heateor_sss_rearrange .heateorSssMixiSvg: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}.heateor_sss_horizontal_sharing .heateorSssMySpaceSvg:hover,#heateor_sss_rearrange .heateorSssMySpaceSvg: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}.heateor_sss_horizontal_sharing .heateorSssNetlogSvg:hover,#heateor_sss_rearrange .heateorSssNetlogSvg: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}.heateor_sss_horizontal_sharing .heateorSssNetvouzSvg:hover,#heateor_sss_rearrange .heateorSssNetvouzSvg: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}.heateor_sss_horizontal_sharing .heateorSssNewsVineSvg:hover,#heateor_sss_rearrange .heateorSssNewsVineSvg: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}.heateor_sss_horizontal_sharing .heateorSssNUjijSvg:hover,#heateor_sss_rearrange .heateorSssNUjijSvg: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}.heateor_sss_horizontal_sharing .heateorSssOdnoklassnikiSvg:hover,#heateor_sss_rearrange .heateorSssOdnoklassnikiSvg: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}.heateor_sss_horizontal_sharing .heateorSssOknotizieSvg:hover,#heateor_sss_rearrange .heateorSssOknotizieSvg: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}.heateor_sss_horizontal_sharing .heateorSssOutlookcomSvg:hover,#heateor_sss_rearrange .heateorSssOutlookcomSvg: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}.heateor_sss_horizontal_sharing .heateorSssPinboardSvg:hover,#heateor_sss_rearrange .heateorSssPinboardSvg: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}.heateor_sss_horizontal_sharing .heateorSssPlurkSvg:hover,#heateor_sss_rearrange .heateorSssPlurkSvg: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}.heateor_sss_horizontal_sharing .heateorSssPocketSvg:hover,#heateor_sss_rearrange .heateorSssPocketSvg: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}.heateor_sss_horizontal_sharing .heateorSssPrintFriendlySvg:hover,#heateor_sss_rearrange .heateorSssPrintFriendlySvg: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}.heateor_sss_horizontal_sharing .heateorSssProtopageBookmarksSvg:hover,#heateor_sss_rearrange .heateorSssProtopageBookmarksSvg: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}.heateor_sss_horizontal_sharing .heateorSssPushaSvg:hover,#heateor_sss_rearrange .heateorSssPushaSvg: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}.heateor_sss_horizontal_sharing .heateorSssQzoneSvg:hover,#heateor_sss_rearrange .heateorSssQzoneSvg: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}.heateor_sss_horizontal_sharing .heateorSssRediffMyPageSvg:hover,#heateor_sss_rearrange .heateorSssRediffMyPageSvg: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}.heateor_sss_horizontal_sharing .heateorSssRenrenSvg:hover,#heateor_sss_rearrange .heateorSssRenrenSvg: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}.heateor_sss_horizontal_sharing .heateorSssSegnaloSvg:hover,#heateor_sss_rearrange .heateorSssSegnaloSvg: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}.heateor_sss_horizontal_sharing .heateorSssSinaWeiboSvg:hover,#heateor_sss_rearrange .heateorSssSinaWeiboSvg: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}.heateor_sss_horizontal_sharing .heateorSssSiteJotSvg:hover,#heateor_sss_rearrange .heateorSssSiteJotSvg: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}.heateor_sss_horizontal_sharing .heateorSssSlashdotSvg:hover,#heateor_sss_rearrange .heateorSssSlashdotSvg: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}.heateor_sss_horizontal_sharing .heateorSssStumpediaSvg:hover,#heateor_sss_rearrange .heateorSssStumpediaSvg: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}.heateor_sss_horizontal_sharing .heateorSssSvejoSvg:hover,#heateor_sss_rearrange .heateorSssSvejoSvg: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}.heateor_sss_horizontal_sharing .heateorSssSymbalooFeedsSvg:hover,#heateor_sss_rearrange .heateorSssSymbalooFeedsSvg: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}.heateor_sss_horizontal_sharing .heateorSssTuentiSvg:hover,#heateor_sss_rearrange .heateorSssTuentiSvg: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}.heateor_sss_horizontal_sharing .heateorSssTwiddlaSvg:hover,#heateor_sss_rearrange .heateorSssTwiddlaSvg: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}.heateor_sss_horizontal_sharing .heateorSssViadeoSvg:hover,#heateor_sss_rearrange .heateorSssViadeoSvg: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}.heateor_sss_horizontal_sharing .heateorSssTypePadPostSvg:hover,#heateor_sss_rearrange .heateorSssTypePadPostSvg: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}.heateor_sss_horizontal_sharing .heateorSssWaneloSvg:hover,#heateor_sss_rearrange .heateorSssWaneloSvg: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}.heateor_sss_horizontal_sharing .heateorSssWebnewsSvg:hover,#heateor_sss_rearrange .heateorSssWebnewsSvg: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}.heateor_sss_horizontal_sharing .heateorSssWordPressSvg:hover,#heateor_sss_rearrange .heateorSssWordPressSvg: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}.heateor_sss_horizontal_sharing .heateorSssWykopSvg:hover,#heateor_sss_rearrange .heateorSssWykopSvg: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}.heateor_sss_horizontal_sharing .heateorSssYahooMailSvg:hover,#heateor_sss_rearrange .heateorSssYahooMailSvg: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}.heateor_sss_horizontal_sharing .heateorSssYahooMessengerSvg:hover,#heateor_sss_rearrange .heateorSssYahooMessengerSvg: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}.heateor_sss_horizontal_sharing .heateorSssYoolinkSvg:hover,#heateor_sss_rearrange .heateorSssYoolinkSvg: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}.heateor_sss_horizontal_sharing .heateorSssYouMobSvg:hover,#heateor_sss_rearrange .heateorSssYouMobSvg: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}
1
+ @charset "utf-8";.heateor_sss_horizontal_sharing .heateorSssYummlySvg:hover,#heateor_sss_rearrange .heateorSssYummlySvg: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}.heateor_sss_horizontal_sharing .heateorSssBufferSvg:hover,#heateor_sss_rearrange .heateorSssBufferSvg: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}.heateor_sss_horizontal_sharing .heateorSssFacebookSvg:hover,#heateor_sss_rearrange .heateorSssFacebookSvg: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}.heateor_sss_horizontal_sharing .heateorSssDeliciousSvg:hover,#heateor_sss_rearrange .heateorSssDeliciousSvg: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.5%20-12.5%2055%2055%22%3E%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%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%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%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%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_horizontal_sharing .heateorSssDiggSvg:hover,#heateor_sss_rearrange .heateorSssDiggSvg: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}.heateor_sss_horizontal_sharing .heateorSssEmailSvg:hover,#heateor_sss_rearrange .heateorSssEmailSvg: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}.heateor_sss_horizontal_sharing .heateorSssFloatitSvg:hover,#heateor_sss_rearrange .heateorSssFloatitSvg: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}.heateor_sss_horizontal_sharing .heateorSssGoogleplusSvg:hover,#heateor_sss_rearrange .heateorSssGoogleplusSvg: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}.heateor_sss_horizontal_sharing .heateorSssLinkedinSvg:hover,#heateor_sss_rearrange .heateorSssLinkedinSvg: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}.heateor_sss_horizontal_sharing .heateorSssMoreSvg:hover,#heateor_sss_rearrange .heateorSssMoreSvg: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}.heateor_sss_horizontal_sharing .heateorSssPinterestSvg:hover,#heateor_sss_rearrange .heateorSssPinterestSvg: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}.heateor_sss_horizontal_sharing .heateorSssPrintSvg:hover,#heateor_sss_rearrange .heateorSssPrintSvg: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}.heateor_sss_horizontal_sharing .heateorSssRedditSvg:hover,#heateor_sss_rearrange .heateorSssRedditSvg: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}.heateor_sss_horizontal_sharing .heateorSssStumbleuponSvg:hover,#heateor_sss_rearrange .heateorSssStumbleuponSvg: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}.heateor_sss_horizontal_sharing .heateorSssTumblrSvg:hover,#heateor_sss_rearrange .heateorSssTumblrSvg: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}.heateor_sss_horizontal_sharing .heateorSssTwitterSvg:hover,#heateor_sss_rearrange .heateorSssTwitterSvg: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}.heateor_sss_horizontal_sharing .heateorSssVkontakteSvg:hover,#heateor_sss_rearrange .heateorSssVkontakteSvg: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}.heateor_sss_horizontal_sharing .heateorSssYahooSvg:hover,#heateor_sss_rearrange .heateorSssYahooSvg: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}.heateor_sss_horizontal_sharing .heateorSssXingSvg:hover,#heateor_sss_rearrange .heateorSssXingSvg: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}.heateor_sss_horizontal_sharing .heateorSssWhatsappSvg:hover,#heateor_sss_rearrange .heateorSssWhatsappSvg: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}.heateor_sss_horizontal_sharing .heateorSssAIMSvg:hover,#heateor_sss_rearrange .heateorSssAIMSvg: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}.heateor_sss_horizontal_sharing .heateorSssAmazonWishListSvg:hover,#heateor_sss_rearrange .heateorSssAmazonWishListSvg: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}.heateor_sss_horizontal_sharing .heateorSssAOLMailSvg:hover,#heateor_sss_rearrange .heateorSssAOLMailSvg: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}.heateor_sss_horizontal_sharing .heateorSssAppnetSvg:hover,#heateor_sss_rearrange .heateorSssAppnetSvg: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}.heateor_sss_horizontal_sharing .heateorSssBaiduSvg:hover,#heateor_sss_rearrange .heateorSssBaiduSvg: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}.heateor_sss_horizontal_sharing .heateorSssBalatarinSvg:hover,#heateor_sss_rearrange .heateorSssBalatarinSvg: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}.heateor_sss_horizontal_sharing .heateorSssBibSonomySvg:hover,#heateor_sss_rearrange .heateorSssBibSonomySvg: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}.heateor_sss_horizontal_sharing .heateorSssBittyBrowserSvg:hover,#heateor_sss_rearrange .heateorSssBittyBrowserSvg: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}.heateor_sss_horizontal_sharing .heateorSssBlinklistSvg:hover,#heateor_sss_rearrange .heateorSssBlinklistSvg: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}.heateor_sss_horizontal_sharing .heateorSssBloggerPostSvg:hover,#heateor_sss_rearrange .heateorSssBloggerPostSvg: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}.heateor_sss_horizontal_sharing .heateorSssBlogMarksSvg:hover,#heateor_sss_rearrange .heateorSssBlogMarksSvg: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}.heateor_sss_horizontal_sharing .heateorSssBoxnetSvg:hover,#heateor_sss_rearrange .heateorSssBoxnetSvg: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}.heateor_sss_horizontal_sharing .heateorSssBookmarksfrSvg:hover,#heateor_sss_rearrange .heateorSssBookmarksfrSvg: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}.heateor_sss_horizontal_sharing .heateorSssBuddyMarksSvg:hover,#heateor_sss_rearrange .heateorSssBuddyMarksSvg: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}.heateor_sss_horizontal_sharing .heateorSssCare2NewsSvg:hover,#heateor_sss_rearrange .heateorSssCare2NewsSvg: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}.heateor_sss_horizontal_sharing .heateorSssCiteULikeSvg:hover,#heateor_sss_rearrange .heateorSssCiteULikeSvg: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}.heateor_sss_horizontal_sharing .heateorSssDiaryRuSvg:hover,#heateor_sss_rearrange .heateorSssDiaryRuSvg: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}.heateor_sss_horizontal_sharing .heateorSssDiasporaSvg:hover,#heateor_sss_rearrange .heateorSssDiasporaSvg: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}.heateor_sss_horizontal_sharing .heateorSssDiHITTSvg:hover,#heateor_sss_rearrange .heateorSssDiHITTSvg: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}.heateor_sss_horizontal_sharing .heateorSssDiigoSvg:hover,#heateor_sss_rearrange .heateorSssDiigoSvg: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}.heateor_sss_horizontal_sharing .heateorSssDZoneSvg:hover,#heateor_sss_rearrange .heateorSssDZoneSvg: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}.heateor_sss_horizontal_sharing .heateorSssEvernoteSvg:hover,#heateor_sss_rearrange .heateorSssEvernoteSvg: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}.heateor_sss_horizontal_sharing .heateorSssFarkSvg:hover,#heateor_sss_rearrange .heateorSssFarkSvg: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}.heateor_sss_horizontal_sharing .heateorSssFlipboardSvg:hover,#heateor_sss_rearrange .heateorSssFlipboardSvg: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}.heateor_sss_horizontal_sharing .heateorSssFolkdSvg:hover,#heateor_sss_rearrange .heateorSssFolkdSvg: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}.heateor_sss_horizontal_sharing .heateorSssGoogleBookmarksSvg:hover,#heateor_sss_rearrange .heateorSssGoogleBookmarksSvg: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}.heateor_sss_horizontal_sharing .heateorSssGoogleGmailSvg:hover,#heateor_sss_rearrange .heateorSssGoogleGmailSvg: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}.heateor_sss_horizontal_sharing .heateorSssHackerNewsSvg:hover,#heateor_sss_rearrange .heateorSssHackerNewsSvg: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}.heateor_sss_horizontal_sharing .heateorSssHatenaSvg:hover,#heateor_sss_rearrange .heateorSssHatenaSvg: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}.heateor_sss_horizontal_sharing .heateorSssInstapaperSvg:hover,#heateor_sss_rearrange .heateorSssInstapaperSvg: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}.heateor_sss_horizontal_sharing .heateorSssJamespotSvg:hover,#heateor_sss_rearrange .heateorSssJamespotSvg: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}.heateor_sss_horizontal_sharing .heateorSssKakaoSvg:hover,#heateor_sss_rearrange .heateorSssKakaoSvg: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}.heateor_sss_horizontal_sharing .heateorSssKindleItSvg:hover,#heateor_sss_rearrange .heateorSssKindleItSvg: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}.heateor_sss_horizontal_sharing .heateorSssKnownSvg:hover,#heateor_sss_rearrange .heateorSssKnownSvg: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}.heateor_sss_horizontal_sharing .heateorSssLineSvg:hover,#heateor_sss_rearrange .heateorSssLineSvg: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}.heateor_sss_horizontal_sharing .heateorSssLiveJournalSvg:hover,#heateor_sss_rearrange .heateorSssLiveJournalSvg: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}.heateor_sss_horizontal_sharing .heateorSssMailRuSvg:hover,#heateor_sss_rearrange .heateorSssMailRuSvg: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}.heateor_sss_horizontal_sharing .heateorSssMendeleySvg:hover,#heateor_sss_rearrange .heateorSssMendeleySvg: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}.heateor_sss_horizontal_sharing .heateorSssMeneameSvg:hover,#heateor_sss_rearrange .heateorSssMeneameSvg: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}.heateor_sss_horizontal_sharing .heateorSssMixiSvg:hover,#heateor_sss_rearrange .heateorSssMixiSvg: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}.heateor_sss_horizontal_sharing .heateorSssMySpaceSvg:hover,#heateor_sss_rearrange .heateorSssMySpaceSvg: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}.heateor_sss_horizontal_sharing .heateorSssNetlogSvg:hover,#heateor_sss_rearrange .heateorSssNetlogSvg: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}.heateor_sss_horizontal_sharing .heateorSssNetvouzSvg:hover,#heateor_sss_rearrange .heateorSssNetvouzSvg: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}.heateor_sss_horizontal_sharing .heateorSssNewsVineSvg:hover,#heateor_sss_rearrange .heateorSssNewsVineSvg: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}.heateor_sss_horizontal_sharing .heateorSssNUjijSvg:hover,#heateor_sss_rearrange .heateorSssNUjijSvg: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}.heateor_sss_horizontal_sharing .heateorSssOdnoklassnikiSvg:hover,#heateor_sss_rearrange .heateorSssOdnoklassnikiSvg: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}.heateor_sss_horizontal_sharing .heateorSssOknotizieSvg:hover,#heateor_sss_rearrange .heateorSssOknotizieSvg: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}.heateor_sss_horizontal_sharing .heateorSssOutlookcomSvg:hover,#heateor_sss_rearrange .heateorSssOutlookcomSvg: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}.heateor_sss_horizontal_sharing .heateorSssPinboardSvg:hover,#heateor_sss_rearrange .heateorSssPinboardSvg: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}.heateor_sss_horizontal_sharing .heateorSssPlurkSvg:hover,#heateor_sss_rearrange .heateorSssPlurkSvg: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}.heateor_sss_horizontal_sharing .heateorSssPocketSvg:hover,#heateor_sss_rearrange .heateorSssPocketSvg: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}.heateor_sss_horizontal_sharing .heateorSssPrintFriendlySvg:hover,#heateor_sss_rearrange .heateorSssPrintFriendlySvg: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}.heateor_sss_horizontal_sharing .heateorSssProtopageBookmarksSvg:hover,#heateor_sss_rearrange .heateorSssProtopageBookmarksSvg: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}.heateor_sss_horizontal_sharing .heateorSssPushaSvg:hover,#heateor_sss_rearrange .heateorSssPushaSvg: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}.heateor_sss_horizontal_sharing .heateorSssQzoneSvg:hover,#heateor_sss_rearrange .heateorSssQzoneSvg: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}.heateor_sss_horizontal_sharing .heateorSssRediffMyPageSvg:hover,#heateor_sss_rearrange .heateorSssRediffMyPageSvg: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}.heateor_sss_horizontal_sharing .heateorSssRenrenSvg:hover,#heateor_sss_rearrange .heateorSssRenrenSvg: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}.heateor_sss_horizontal_sharing .heateorSssSegnaloSvg:hover,#heateor_sss_rearrange .heateorSssSegnaloSvg: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}.heateor_sss_horizontal_sharing .heateorSssSinaWeiboSvg:hover,#heateor_sss_rearrange .heateorSssSinaWeiboSvg: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}.heateor_sss_horizontal_sharing .heateorSssSiteJotSvg:hover,#heateor_sss_rearrange .heateorSssSiteJotSvg: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}.heateor_sss_horizontal_sharing .heateorSssSlashdotSvg:hover,#heateor_sss_rearrange .heateorSssSlashdotSvg: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}.heateor_sss_horizontal_sharing .heateorSssStumpediaSvg:hover,#heateor_sss_rearrange .heateorSssStumpediaSvg: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}.heateor_sss_horizontal_sharing .heateorSssSvejoSvg:hover,#heateor_sss_rearrange .heateorSssSvejoSvg: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}.heateor_sss_horizontal_sharing .heateorSssSymbalooFeedsSvg:hover,#heateor_sss_rearrange .heateorSssSymbalooFeedsSvg: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}.heateor_sss_horizontal_sharing .heateorSssTuentiSvg:hover,#heateor_sss_rearrange .heateorSssTuentiSvg: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}.heateor_sss_horizontal_sharing .heateorSssTwiddlaSvg:hover,#heateor_sss_rearrange .heateorSssTwiddlaSvg: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}.heateor_sss_horizontal_sharing .heateorSssViadeoSvg:hover,#heateor_sss_rearrange .heateorSssViadeoSvg: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}.heateor_sss_horizontal_sharing .heateorSssTypePadPostSvg:hover,#heateor_sss_rearrange .heateorSssTypePadPostSvg: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}.heateor_sss_horizontal_sharing .heateorSssWaneloSvg:hover,#heateor_sss_rearrange .heateorSssWaneloSvg: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}.heateor_sss_horizontal_sharing .heateorSssWebnewsSvg:hover,#heateor_sss_rearrange .heateorSssWebnewsSvg: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}.heateor_sss_horizontal_sharing .heateorSssWordPressSvg:hover,#heateor_sss_rearrange .heateorSssWordPressSvg: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}.heateor_sss_horizontal_sharing .heateorSssWykopSvg:hover,#heateor_sss_rearrange .heateorSssWykopSvg: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}.heateor_sss_horizontal_sharing .heateorSssYahooMailSvg:hover,#heateor_sss_rearrange .heateorSssYahooMailSvg: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}.heateor_sss_horizontal_sharing .heateorSssYahooMessengerSvg:hover,#heateor_sss_rearrange .heateorSssYahooMessengerSvg: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}.heateor_sss_horizontal_sharing .heateorSssYoolinkSvg:hover,#heateor_sss_rearrange .heateorSssYoolinkSvg: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}.heateor_sss_horizontal_sharing .heateorSssYouMobSvg:hover,#heateor_sss_rearrange .heateorSssYouMobSvg: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}
admin/css/sassy-social-share-hover-svg-vertical.css CHANGED
@@ -1 +1 @@
1
- @charset "utf-8";.heateor_sss_vertical_sharing .heateorSssYummlySvg:hover,#heateor_sss_vertical_rearrange .heateorSssYummlySvg: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}.heateor_sss_vertical_sharing .heateorSssBufferSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBufferSvg: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}.heateor_sss_vertical_sharing .heateorSssFacebookSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFacebookSvg: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}.heateor_sss_vertical_sharing .heateorSssDeliciousSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDeliciousSvg: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}.heateor_sss_vertical_sharing .heateorSssDiggSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDiggSvg: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}.heateor_sss_vertical_sharing .heateorSssEmailSvg:hover,#heateor_sss_vertical_rearrange .heateorSssEmailSvg: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}.heateor_sss_vertical_sharing .heateorSssFloatitSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFloatitSvg: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}.heateor_sss_vertical_sharing .heateorSssGoogleplusSvg:hover,#heateor_sss_vertical_rearrange .heateorSssGoogleplusSvg: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}.heateor_sss_vertical_sharing .heateorSssLinkedinSvg:hover,#heateor_sss_vertical_rearrange .heateorSssLinkedinSvg: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}.heateor_sss_vertical_sharing .heateorSssMoreSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMoreSvg: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}.heateor_sss_vertical_sharing .heateorSssPinterestSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPinterestSvg: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}.heateor_sss_vertical_sharing .heateorSssPrintSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPrintSvg: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}.heateor_sss_vertical_sharing .heateorSssRedditSvg:hover,#heateor_sss_vertical_rearrange .heateorSssRedditSvg: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}.heateor_sss_vertical_sharing .heateorSssStumbleuponSvg:hover,#heateor_sss_vertical_rearrange .heateorSssStumbleuponSvg: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}.heateor_sss_vertical_sharing .heateorSssTumblrSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTumblrSvg: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}.heateor_sss_vertical_sharing .heateorSssTwitterSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTwitterSvg: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}.heateor_sss_vertical_sharing .heateorSssVkontakteSvg:hover,#heateor_sss_vertical_rearrange .heateorSssVkontakteSvg: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}.heateor_sss_vertical_sharing .heateorSssYahooSvg:hover,#heateor_sss_vertical_rearrange .heateorSssYahooSvg: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}.heateor_sss_vertical_sharing .heateorSssXingSvg:hover,#heateor_sss_vertical_rearrange .heateorSssXingSvg: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}.heateor_sss_vertical_sharing .heateorSssWhatsappSvg:hover,#heateor_sss_vertical_rearrange .heateorSssWhatsappSvg: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}.heateor_sss_vertical_sharing .heateorSssAIMSvg:hover,#heateor_sss_vertical_rearrange .heateorSssAIMSvg: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}.heateor_sss_vertical_sharing .heateorSssAmazonWishListSvg:hover,#heateor_sss_vertical_rearrange .heateorSssAmazonWishListSvg: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}.heateor_sss_vertical_sharing .heateorSssAOLMailSvg:hover,#heateor_sss_vertical_rearrange .heateorSssAOLMailSvg: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}.heateor_sss_vertical_sharing .heateorSssAppnetSvg:hover,#heateor_sss_vertical_rearrange .heateorSssAppnetSvg: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}.heateor_sss_vertical_sharing .heateorSssBaiduSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBaiduSvg: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}.heateor_sss_vertical_sharing .heateorSssBalatarinSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBalatarinSvg: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}.heateor_sss_vertical_sharing .heateorSssBibSonomySvg:hover,#heateor_sss_vertical_rearrange .heateorSssBibSonomySvg: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}.heateor_sss_vertical_sharing .heateorSssBittyBrowserSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBittyBrowserSvg: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}.heateor_sss_vertical_sharing .heateorSssBlinklistSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBlinklistSvg: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}.heateor_sss_vertical_sharing .heateorSssBloggerPostSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBloggerPostSvg: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}.heateor_sss_vertical_sharing .heateorSssBlogMarksSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBlogMarksSvg: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}.heateor_sss_vertical_sharing .heateorSssBoxnetSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBoxnetSvg: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}.heateor_sss_vertical_sharing .heateorSssBookmarksfrSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBookmarksfrSvg: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}.heateor_sss_vertical_sharing .heateorSssBuddyMarksSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBuddyMarksSvg: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}.heateor_sss_vertical_sharing .heateorSssCare2NewsSvg:hover,#heateor_sss_vertical_rearrange .heateorSssCare2NewsSvg: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}.heateor_sss_vertical_sharing .heateorSssCiteULikeSvg:hover,#heateor_sss_vertical_rearrange .heateorSssCiteULikeSvg: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}.heateor_sss_vertical_sharing .heateorSssDiaryRuSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDiaryRuSvg: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}.heateor_sss_vertical_sharing .heateorSssDiasporaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDiasporaSvg: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}.heateor_sss_vertical_sharing .heateorSssDiHITTSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDiHITTSvg: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}.heateor_sss_vertical_sharing .heateorSssDiigoSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDiigoSvg: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}.heateor_sss_vertical_sharing .heateorSssDZoneSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDZoneSvg: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}.heateor_sss_vertical_sharing .heateorSssEvernoteSvg:hover,#heateor_sss_vertical_rearrange .heateorSssEvernoteSvg: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}.heateor_sss_vertical_sharing .heateorSssFarkSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFarkSvg: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}.heateor_sss_vertical_sharing .heateorSssFlipboardSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFlipboardSvg: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}.heateor_sss_vertical_sharing .heateorSssFolkdSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFolkdSvg: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}.heateor_sss_vertical_sharing .heateorSssGoogleBookmarksSvg:hover,#heateor_sss_vertical_rearrange .heateorSssGoogleBookmarksSvg: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}.heateor_sss_vertical_sharing .heateorSssGoogleGmailSvg:hover,#heateor_sss_vertical_rearrange .heateorSssGoogleGmailSvg: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}.heateor_sss_vertical_sharing .heateorSssHackerNewsSvg:hover,#heateor_sss_vertical_rearrange .heateorSssHackerNewsSvg: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}.heateor_sss_vertical_sharing .heateorSssHatenaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssHatenaSvg: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}.heateor_sss_vertical_sharing .heateorSssInstapaperSvg:hover,#heateor_sss_vertical_rearrange .heateorSssInstapaperSvg: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}.heateor_sss_vertical_sharing .heateorSssJamespotSvg:hover,#heateor_sss_vertical_rearrange .heateorSssJamespotSvg: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}.heateor_sss_vertical_sharing .heateorSssKakaoSvg:hover,#heateor_sss_vertical_rearrange .heateorSssKakaoSvg: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}.heateor_sss_vertical_sharing .heateorSssKindleItSvg:hover,#heateor_sss_vertical_rearrange .heateorSssKindleItSvg: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}.heateor_sss_vertical_sharing .heateorSssKnownSvg:hover,#heateor_sss_vertical_rearrange .heateorSssKnownSvg: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}.heateor_sss_vertical_sharing .heateorSssLineSvg:hover,#heateor_sss_vertical_rearrange .heateorSssLineSvg: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}.heateor_sss_vertical_sharing .heateorSssLiveJournalSvg:hover,#heateor_sss_vertical_rearrange .heateorSssLiveJournalSvg: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}.heateor_sss_vertical_sharing .heateorSssMailRuSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMailRuSvg: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}.heateor_sss_vertical_sharing .heateorSssMendeleySvg:hover,#heateor_sss_vertical_rearrange .heateorSssMendeleySvg: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}.heateor_sss_vertical_sharing .heateorSssMeneameSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMeneameSvg: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}.heateor_sss_vertical_sharing .heateorSssMixiSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMixiSvg: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}.heateor_sss_vertical_sharing .heateorSssMySpaceSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMySpaceSvg: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}.heateor_sss_vertical_sharing .heateorSssNetlogSvg:hover,#heateor_sss_vertical_rearrange .heateorSssNetlogSvg: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}.heateor_sss_vertical_sharing .heateorSssNetvouzSvg:hover,#heateor_sss_vertical_rearrange .heateorSssNetvouzSvg: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}.heateor_sss_vertical_sharing .heateorSssNewsVineSvg:hover,#heateor_sss_vertical_rearrange .heateorSssNewsVineSvg: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}.heateor_sss_vertical_sharing .heateorSssNUjijSvg:hover,#heateor_sss_vertical_rearrange .heateorSssNUjijSvg: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}.heateor_sss_vertical_sharing .heateorSssOdnoklassnikiSvg:hover,#heateor_sss_vertical_rearrange .heateorSssOdnoklassnikiSvg: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}.heateor_sss_vertical_sharing .heateorSssOknotizieSvg:hover,#heateor_sss_vertical_rearrange .heateorSssOknotizieSvg: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}.heateor_sss_vertical_sharing .heateorSssOutlookcomSvg:hover,#heateor_sss_vertical_rearrange .heateorSssOutlookcomSvg: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}.heateor_sss_vertical_sharing .heateorSssPinboardSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPinboardSvg: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}.heateor_sss_vertical_sharing .heateorSssPlurkSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPlurkSvg: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}.heateor_sss_vertical_sharing .heateorSssPocketSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPocketSvg: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}.heateor_sss_vertical_sharing .heateorSssPrintFriendlySvg:hover,#heateor_sss_vertical_rearrange .heateorSssPrintFriendlySvg: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}.heateor_sss_vertical_sharing .heateorSssProtopageBookmarksSvg:hover,#heateor_sss_vertical_rearrange .heateorSssProtopageBookmarksSvg: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}.heateor_sss_vertical_sharing .heateorSssPushaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPushaSvg: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}.heateor_sss_vertical_sharing .heateorSssQzoneSvg:hover,#heateor_sss_vertical_rearrange .heateorSssQzoneSvg: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}.heateor_sss_vertical_sharing .heateorSssRediffMyPageSvg:hover,#heateor_sss_vertical_rearrange .heateorSssRediffMyPageSvg: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}.heateor_sss_vertical_sharing .heateorSssRenrenSvg:hover,#heateor_sss_vertical_rearrange .heateorSssRenrenSvg: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}.heateor_sss_vertical_sharing .heateorSssSegnaloSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSegnaloSvg: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}.heateor_sss_vertical_sharing .heateorSssSinaWeiboSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSinaWeiboSvg: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}.heateor_sss_vertical_sharing .heateorSssSiteJotSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSiteJotSvg: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}.heateor_sss_vertical_sharing .heateorSssSlashdotSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSlashdotSvg: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}.heateor_sss_vertical_sharing .heateorSssStumpediaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssStumpediaSvg: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}.heateor_sss_vertical_sharing .heateorSssSvejoSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSvejoSvg: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}.heateor_sss_vertical_sharing .heateorSssSymbalooFeedsSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSymbalooFeedsSvg: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}.heateor_sss_vertical_sharing .heateorSssTuentiSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTuentiSvg: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}.heateor_sss_vertical_sharing .heateorSssTwiddlaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTwiddlaSvg: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}.heateor_sss_vertical_sharing .heateorSssViadeoSvg:hover,#heateor_sss_vertical_rearrange .heateorSssViadeoSvg: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}.heateor_sss_vertical_sharing .heateorSssTypePadPostSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTypePadPostSvg: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}.heateor_sss_vertical_sharing .heateorSssWaneloSvg:hover,#heateor_sss_vertical_rearrange .heateorSssWaneloSvg: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}.heateor_sss_vertical_sharing .heateorSssWebnewsSvg:hover,#heateor_sss_vertical_rearrange .heateorSssWebnewsSvg: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}.heateor_sss_vertical_sharing .heateorSssWordPressSvg:hover,#heateor_sss_vertical_rearrange .heateorSssWordPressSvg: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}.heateor_sss_vertical_sharing .heateorSssWykopSvg:hover,#heateor_sss_vertical_rearrange .heateorSssWykopSvg: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}.heateor_sss_vertical_sharing .heateorSssYahooMailSvg:hover,#heateor_sss_vertical_rearrange .heateorSssYahooMailSvg: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}.heateor_sss_vertical_sharing .heateorSssYahooMessengerSvg:hover,#heateor_sss_vertical_rearrange .heateorSssYahooMessengerSvg: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}.heateor_sss_vertical_sharing .heateorSssYoolinkSvg:hover,#heateor_sss_vertical_rearrange .heateorSssYoolinkSvg: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}.heateor_sss_vertical_sharing .heateorSssYouMobSvg:hover,#heateor_sss_vertical_rearrange .heateorSssYouMobSvg: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}
1
+ @charset "utf-8";.heateor_sss_vertical_sharing .heateorSssYummlySvg:hover,#heateor_sss_vertical_rearrange .heateorSssYummlySvg: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}.heateor_sss_vertical_sharing .heateorSssBufferSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBufferSvg: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}.heateor_sss_vertical_sharing .heateorSssFacebookSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFacebookSvg: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}.heateor_sss_vertical_sharing .heateorSssDeliciousSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDeliciousSvg: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.5%20-12.5%2055%2055%22%3E%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%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%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%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%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_vertical_sharing .heateorSssDiggSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDiggSvg: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}.heateor_sss_vertical_sharing .heateorSssEmailSvg:hover,#heateor_sss_vertical_rearrange .heateorSssEmailSvg: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}.heateor_sss_vertical_sharing .heateorSssFloatitSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFloatitSvg: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}.heateor_sss_vertical_sharing .heateorSssGoogleplusSvg:hover,#heateor_sss_vertical_rearrange .heateorSssGoogleplusSvg: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}.heateor_sss_vertical_sharing .heateorSssLinkedinSvg:hover,#heateor_sss_vertical_rearrange .heateorSssLinkedinSvg: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}.heateor_sss_vertical_sharing .heateorSssMoreSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMoreSvg: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}.heateor_sss_vertical_sharing .heateorSssPinterestSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPinterestSvg: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}.heateor_sss_vertical_sharing .heateorSssPrintSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPrintSvg: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}.heateor_sss_vertical_sharing .heateorSssRedditSvg:hover,#heateor_sss_vertical_rearrange .heateorSssRedditSvg: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}.heateor_sss_vertical_sharing .heateorSssStumbleuponSvg:hover,#heateor_sss_vertical_rearrange .heateorSssStumbleuponSvg: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}.heateor_sss_vertical_sharing .heateorSssTumblrSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTumblrSvg: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}.heateor_sss_vertical_sharing .heateorSssTwitterSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTwitterSvg: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}.heateor_sss_vertical_sharing .heateorSssVkontakteSvg:hover,#heateor_sss_vertical_rearrange .heateorSssVkontakteSvg: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}.heateor_sss_vertical_sharing .heateorSssYahooSvg:hover,#heateor_sss_vertical_rearrange .heateorSssYahooSvg: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}.heateor_sss_vertical_sharing .heateorSssXingSvg:hover,#heateor_sss_vertical_rearrange .heateorSssXingSvg: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}.heateor_sss_vertical_sharing .heateorSssWhatsappSvg:hover,#heateor_sss_vertical_rearrange .heateorSssWhatsappSvg: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}.heateor_sss_vertical_sharing .heateorSssAIMSvg:hover,#heateor_sss_vertical_rearrange .heateorSssAIMSvg: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}.heateor_sss_vertical_sharing .heateorSssAmazonWishListSvg:hover,#heateor_sss_vertical_rearrange .heateorSssAmazonWishListSvg: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}.heateor_sss_vertical_sharing .heateorSssAOLMailSvg:hover,#heateor_sss_vertical_rearrange .heateorSssAOLMailSvg: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}.heateor_sss_vertical_sharing .heateorSssAppnetSvg:hover,#heateor_sss_vertical_rearrange .heateorSssAppnetSvg: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}.heateor_sss_vertical_sharing .heateorSssBaiduSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBaiduSvg: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}.heateor_sss_vertical_sharing .heateorSssBalatarinSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBalatarinSvg: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}.heateor_sss_vertical_sharing .heateorSssBibSonomySvg:hover,#heateor_sss_vertical_rearrange .heateorSssBibSonomySvg: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}.heateor_sss_vertical_sharing .heateorSssBittyBrowserSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBittyBrowserSvg: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}.heateor_sss_vertical_sharing .heateorSssBlinklistSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBlinklistSvg: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}.heateor_sss_vertical_sharing .heateorSssBloggerPostSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBloggerPostSvg: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}.heateor_sss_vertical_sharing .heateorSssBlogMarksSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBlogMarksSvg: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}.heateor_sss_vertical_sharing .heateorSssBoxnetSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBoxnetSvg: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}.heateor_sss_vertical_sharing .heateorSssBookmarksfrSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBookmarksfrSvg: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}.heateor_sss_vertical_sharing .heateorSssBuddyMarksSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBuddyMarksSvg: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}.heateor_sss_vertical_sharing .heateorSssCare2NewsSvg:hover,#heateor_sss_vertical_rearrange .heateorSssCare2NewsSvg: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}.heateor_sss_vertical_sharing .heateorSssCiteULikeSvg:hover,#heateor_sss_vertical_rearrange .heateorSssCiteULikeSvg: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}.heateor_sss_vertical_sharing .heateorSssDiaryRuSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDiaryRuSvg: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}.heateor_sss_vertical_sharing .heateorSssDiasporaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDiasporaSvg: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}.heateor_sss_vertical_sharing .heateorSssDiHITTSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDiHITTSvg: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}.heateor_sss_vertical_sharing .heateorSssDiigoSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDiigoSvg: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}.heateor_sss_vertical_sharing .heateorSssDZoneSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDZoneSvg: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}.heateor_sss_vertical_sharing .heateorSssEvernoteSvg:hover,#heateor_sss_vertical_rearrange .heateorSssEvernoteSvg: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}.heateor_sss_vertical_sharing .heateorSssFarkSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFarkSvg: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}.heateor_sss_vertical_sharing .heateorSssFlipboardSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFlipboardSvg: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}.heateor_sss_vertical_sharing .heateorSssFolkdSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFolkdSvg: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}.heateor_sss_vertical_sharing .heateorSssGoogleBookmarksSvg:hover,#heateor_sss_vertical_rearrange .heateorSssGoogleBookmarksSvg: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}.heateor_sss_vertical_sharing .heateorSssGoogleGmailSvg:hover,#heateor_sss_vertical_rearrange .heateorSssGoogleGmailSvg: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}.heateor_sss_vertical_sharing .heateorSssHackerNewsSvg:hover,#heateor_sss_vertical_rearrange .heateorSssHackerNewsSvg: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}.heateor_sss_vertical_sharing .heateorSssHatenaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssHatenaSvg: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}.heateor_sss_vertical_sharing .heateorSssInstapaperSvg:hover,#heateor_sss_vertical_rearrange .heateorSssInstapaperSvg: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}.heateor_sss_vertical_sharing .heateorSssJamespotSvg:hover,#heateor_sss_vertical_rearrange .heateorSssJamespotSvg: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}.heateor_sss_vertical_sharing .heateorSssKakaoSvg:hover,#heateor_sss_vertical_rearrange .heateorSssKakaoSvg: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}.heateor_sss_vertical_sharing .heateorSssKindleItSvg:hover,#heateor_sss_vertical_rearrange .heateorSssKindleItSvg: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}.heateor_sss_vertical_sharing .heateorSssKnownSvg:hover,#heateor_sss_vertical_rearrange .heateorSssKnownSvg: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}.heateor_sss_vertical_sharing .heateorSssLineSvg:hover,#heateor_sss_vertical_rearrange .heateorSssLineSvg: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}.heateor_sss_vertical_sharing .heateorSssLiveJournalSvg:hover,#heateor_sss_vertical_rearrange .heateorSssLiveJournalSvg: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}.heateor_sss_vertical_sharing .heateorSssMailRuSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMailRuSvg: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}.heateor_sss_vertical_sharing .heateorSssMendeleySvg:hover,#heateor_sss_vertical_rearrange .heateorSssMendeleySvg: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}.heateor_sss_vertical_sharing .heateorSssMeneameSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMeneameSvg: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}.heateor_sss_vertical_sharing .heateorSssMixiSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMixiSvg: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}.heateor_sss_vertical_sharing .heateorSssMySpaceSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMySpaceSvg: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}.heateor_sss_vertical_sharing .heateorSssNetlogSvg:hover,#heateor_sss_vertical_rearrange .heateorSssNetlogSvg: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}.heateor_sss_vertical_sharing .heateorSssNetvouzSvg:hover,#heateor_sss_vertical_rearrange .heateorSssNetvouzSvg: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}.heateor_sss_vertical_sharing .heateorSssNewsVineSvg:hover,#heateor_sss_vertical_rearrange .heateorSssNewsVineSvg: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}.heateor_sss_vertical_sharing .heateorSssNUjijSvg:hover,#heateor_sss_vertical_rearrange .heateorSssNUjijSvg: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}.heateor_sss_vertical_sharing .heateorSssOdnoklassnikiSvg:hover,#heateor_sss_vertical_rearrange .heateorSssOdnoklassnikiSvg: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}.heateor_sss_vertical_sharing .heateorSssOknotizieSvg:hover,#heateor_sss_vertical_rearrange .heateorSssOknotizieSvg: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}.heateor_sss_vertical_sharing .heateorSssOutlookcomSvg:hover,#heateor_sss_vertical_rearrange .heateorSssOutlookcomSvg: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}.heateor_sss_vertical_sharing .heateorSssPinboardSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPinboardSvg: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}.heateor_sss_vertical_sharing .heateorSssPlurkSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPlurkSvg: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}.heateor_sss_vertical_sharing .heateorSssPocketSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPocketSvg: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}.heateor_sss_vertical_sharing .heateorSssPrintFriendlySvg:hover,#heateor_sss_vertical_rearrange .heateorSssPrintFriendlySvg: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}.heateor_sss_vertical_sharing .heateorSssProtopageBookmarksSvg:hover,#heateor_sss_vertical_rearrange .heateorSssProtopageBookmarksSvg: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}.heateor_sss_vertical_sharing .heateorSssPushaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPushaSvg: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}.heateor_sss_vertical_sharing .heateorSssQzoneSvg:hover,#heateor_sss_vertical_rearrange .heateorSssQzoneSvg: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}.heateor_sss_vertical_sharing .heateorSssRediffMyPageSvg:hover,#heateor_sss_vertical_rearrange .heateorSssRediffMyPageSvg: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}.heateor_sss_vertical_sharing .heateorSssRenrenSvg:hover,#heateor_sss_vertical_rearrange .heateorSssRenrenSvg: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}.heateor_sss_vertical_sharing .heateorSssSegnaloSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSegnaloSvg: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}.heateor_sss_vertical_sharing .heateorSssSinaWeiboSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSinaWeiboSvg: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}.heateor_sss_vertical_sharing .heateorSssSiteJotSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSiteJotSvg: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}.heateor_sss_vertical_sharing .heateorSssSlashdotSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSlashdotSvg: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}.heateor_sss_vertical_sharing .heateorSssStumpediaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssStumpediaSvg: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}.heateor_sss_vertical_sharing .heateorSssSvejoSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSvejoSvg: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}.heateor_sss_vertical_sharing .heateorSssSymbalooFeedsSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSymbalooFeedsSvg: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}.heateor_sss_vertical_sharing .heateorSssTuentiSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTuentiSvg: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}.heateor_sss_vertical_sharing .heateorSssTwiddlaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTwiddlaSvg: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}.heateor_sss_vertical_sharing .heateorSssViadeoSvg:hover,#heateor_sss_vertical_rearrange .heateorSssViadeoSvg: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}.heateor_sss_vertical_sharing .heateorSssTypePadPostSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTypePadPostSvg: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}.heateor_sss_vertical_sharing .heateorSssWaneloSvg:hover,#heateor_sss_vertical_rearrange .heateorSssWaneloSvg: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}.heateor_sss_vertical_sharing .heateorSssWebnewsSvg:hover,#heateor_sss_vertical_rearrange .heateorSssWebnewsSvg: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}.heateor_sss_vertical_sharing .heateorSssWordPressSvg:hover,#heateor_sss_vertical_rearrange .heateorSssWordPressSvg: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}.heateor_sss_vertical_sharing .heateorSssWykopSvg:hover,#heateor_sss_vertical_rearrange .heateorSssWykopSvg: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}.heateor_sss_vertical_sharing .heateorSssYahooMailSvg:hover,#heateor_sss_vertical_rearrange .heateorSssYahooMailSvg: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}.heateor_sss_vertical_sharing .heateorSssYahooMessengerSvg:hover,#heateor_sss_vertical_rearrange .heateorSssYahooMessengerSvg: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}.heateor_sss_vertical_sharing .heateorSssYoolinkSvg:hover,#heateor_sss_vertical_rearrange .heateorSssYoolinkSvg: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}.heateor_sss_vertical_sharing .heateorSssYouMobSvg:hover,#heateor_sss_vertical_rearrange .heateorSssYouMobSvg: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}
admin/css/sassy-social-share-svg.css CHANGED
@@ -1,5 +1,5 @@
1
  @charset "utf-8";
2
- .heateorSssYummlySvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNIDEwLjUgMTAgcSA0IC0yIDIuNSAxIGwgLTEgNCBxIDAgMiA1IDAgbCAxIC02LjUgbSAtMSA2LjUgbCAtMSA0IGMgLTMgNiAtNiAtMSAwIC0xIHEgMSAtMSA1IDEiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.heateorSssBufferSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM5Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gMTUgNiBsIC0xMCA1IGwgMTAgNSBsIDEwIC01IHoiIHN0cm9rZS13aWR0aD0iMCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjxwYXRoIHN0cm9rZT0iI2ZmZiIgZD0iTSA1LjUgMTQuNSBsIDkuNSA1IGwgOS41IC01IG0gLTE5IDQgbCA5LjUgNSBsIDkuNSAtNSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) no-repeat center center}.heateorSssFacebookSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0xNCAyNSB2IC0xMyBRIDEzIDYgMjEgNy41IE0gMTAgMTQgTCAyMCAxNCIgc3Ryb2tlLXdpZHRoPSI0IiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) no-repeat center center}.heateorSssDeliciousSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHN0eWxlPSJmaWxsOiNlZWU7IiAvPg0KPHJlY3QgeD0iMTUiIHk9IjAiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgc3R5bGU9ImZpbGw6IzMxNzNEMDsiIC8+DQo8cmVjdCB4PSIwIiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojMDAwOyIgLz4NCjxyZWN0IHg9IjE1IiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojQkRCREJEOyIgLz4NCjwvc3ZnPg==) no-repeat center center}.heateorSssDiggSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQ5IDQ5Ij48cGF0aCBkPSJNIDYgMjAgaCAxMCBjIDAgLTE0IC05IC0xNCAtOSAwIG0gNSAwIHYgNyBtIC0xIDAgdiAtNyBtIDQgLTcgaCA0LjUgdiAtNSBoIDggdiA4IGggLTggdiAtMyBtIDggMCBoIDQgdiA1LjUgaCAtMyB2IDEyIGggLTQgdiAtOCBtIDAgOCBoIC02LjUgdiAtMTIgaCAtMiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48ZWxsaXBzZSBjeD0iMTEuNSIgY3k9IjI4LjUiIHJ4PSI0IiByeT0iMiIgc3R5bGU9ImZpbGw6d2hpdGU7Ij48L2VsbGlwc2U+PC9zdmc+) no-repeat center center}.heateorSssEmailSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDQzIDQzIj48cGF0aCBkPSJNIDUuNSAxMSBoIDIzIHYgMSBsIC0xMSA2IGwgLTExIC02IHYgLTEgbSAwIDIgbCAxMSA2IGwgMTEgLTYgdiAxMSBoIC0yMiB2IC0xMSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSIjZmZmIj48L3BhdGg+PC9zdmc+) no-repeat center center}.heateorSssFloatitSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBmaWxsPSJub25lIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIGZpbGw9Im5vbmUiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0gNSAxNSBoIDUgTSAxNSA1IHYgNSBNIDI1IDE1IGggLTUgTSAxNSAyNSB2IC01IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.heateorSssGoogleplusSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) no-repeat center center}.heateorSssLinkedinSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij4NCjxjaXJjbGUgY3g9IjEwIiBjeT0iOCIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPg0KPHBhdGggZD0iTSAxMCAxMSB2IDExIG0gNSAwIHYgLTExIG0gMCAzIHEgNiAtMyA3IDAgdiA4IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) no-repeat center center}.heateorSssMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) no-repeat center center}.heateorSssPinterestSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02LjUgLTUgNDIgNDIiPjxwYXRoIGQ9Ik0gNiAyMCBjIC0zIC00IC0yIC0xMCAzIC0xMy41IGMgNCAtMyAxMSAtMyAxNSAzIGMgMyA1IDIgMTMgLTYgMTUgcSAtNCAxIC02IC0zIGwgLTIgNiBsIC0xLjIgMiBsIC0wLjggLTIgbCAyLjUgLTExIGMgLTIgLTQgMSAtOCA0IC02IHEgMCA1IC0xLjQgOC41IGMgMyA4IDEwIDAgOS41IC00IGMgMCAtOSAtMTEgLTExIC0xNC41IC00IGMgMCAwIC0zIDUgMCA4IGwgLTEgMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48L3N2Zz4=) no-repeat center center}.heateorSssPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC02IDM4IDM4Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gNyAxMCBoIDIgdiAzIGggMTIgdiAtMyBoIDIgdiA3IGggLTIgdiAtMyBoIC0xMiB2IDMgaCAtMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS44IiBoZWlnaHQ9IjciIHdpZHRoPSIxMCIgeD0iMTAiIHk9IjUiIGZpbGw9Im5vbmUiPjwvcmVjdD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIgaGVpZ2h0PSI1IiB3aWR0aD0iOCIgeD0iMTEiIHk9IjE2IiBmaWxsPSIjZmZmIj48L3JlY3Q+PC9zdmc+) no-repeat center center}.heateorSssRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj48ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5IiBjeT0iMTciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMiIgY3k9IjciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSI3IiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMyIgY3k9IjE0IiByPSIyIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PHBhdGggZD0iTSAxMCAyMiBxIDUgMyAxMCAwIE0gMTUgMTIgbCAxIC02IGwgNiAxIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.heateorSssStumbleuponSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBkPSJNIDYuNiAxNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTQgYyAtMSAtNyA2IC03IDYgLTIgdiAyLjUgbSAwIDIuNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTEiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) no-repeat center center}.heateorSssTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.heateorSssTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii04IC04IDY0IDY0Ij4NCjxwYXRoIGQ9Ik0gMzggMTkgcSAyIC0xIDQgLTUgcSAtMS41IDIgLTQgMiBxIDEuNSAtMSAzLjUgLTUgcSAtMS41IDIgLTUgMiBjIC01IC01IC0xMyAtMiAtMTIgNiBxIC03IDEgLTE1IC04IHEgLTIgNCAxIDkgcSAtMSAwIC0zIC0xIHEgMCA1IDUgNyBxIC0xIC41IC0zIDAgcSAxIDQgOCA2IHEgLTUgMyAtMTEgMyBjIDE0IDggMzAgMCAzMS41IC0xNCIgc3Ryb2tlLXdpZHRoPSIwLjMiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) no-repeat center center}.heateorSssVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj4NCjxwYXRoIGQ9Ik0gMi41IDkgaCA0LjUgbCA1IDcgdiAtNyBoIDQuNSB2IDcgbCA1IC03IGggNSBsIC01IDcgbCA1IDcgaCAtNSBsIC01IC03IHYgNyBoIC00LjUgcSAtMiAwIC01IC02IHoiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) no-repeat center center}.heateorSssYahooSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDggMTAgbCA3IDcgbCA1IC01IG0gLTQuNyA1IHYgMyBoIC0wLjUgdiAtMyBtIDggLTQgdiA1IG0gMCAxIHYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48cGF0aCBkPSJNIDYgMTAgaCA2IG0gNSAyIGggNiBtIC0xMSA5LjUgaCA2IiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) no-repeat center center}.heateorSssXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj4NCjxwYXRoIGQ9Ik0gNiA5IGggNSBsIDQgNCBsIC01IDcgaCAtNSBsIDUgLTcgeiBtIDE1IC00IGggNSBsIC05IDEzIGwgNCA4IGggLTUgbCAtNCAtOCB6IiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) no-repeat center center}.heateorSssWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBpZD0iYXJjMSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiIGQ9Ik0gMTEuNTc5Nzk4NTY2NzQzMzE0IDI0LjM5NjkyNjIwNzg1OTA4NSBBIDEwIDEwIDAgMSAwIDYuODA4NDc5NTU3MTEwMDc5IDIwLjczNTc2NDM2MzUxMDQ2Ij48L3BhdGg+PHBhdGggZD0iTSA3IDE5IGwgLTEgNiBsIDYgLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSAxMCAxMCBxIC0xIDggOCAxMSBjIDUgLTEgMCAtNiAtMSAtMyBxIC00IC0zIC01IC01IGMgNCAtMiAtMSAtNSAtMSAtNCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.heateorSssAIMSvg{background:url('data:image/svg+xml;charset=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}.heateorSssAmazonWishListSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssAOLMailSvg{background:url('data:image/svg+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}.heateorSssAppnetSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBaiduSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBalatarinSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBibSonomySvg{background:url('data:image/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}.heateorSssBittyBrowserSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBlinklistSvg{background:url('data:image/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}.heateorSssBloggerPostSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBlogMarksSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBoxnetSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBookmarksfrSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBuddyMarksSvg{background:url('data:image/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}.heateorSssCare2NewsSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssCiteULikeSvg{background:url('data:image/svg+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}.heateorSssDiaryRuSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssDiasporaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssDiHITTSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssDiigoSvg{background:url('data:image/svg+xml;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
  .heateorSssDZoneSvg{background:url('data:image/svg+xml;charset=utf8,%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
  .heateorSssEvernoteSvg{background:url('data:image/svg+xml;charset=utf8,%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
 
1
  @charset "utf-8";
2
+ .heateorSssYummlySvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNIDEwLjUgMTAgcSA0IC0yIDIuNSAxIGwgLTEgNCBxIDAgMiA1IDAgbCAxIC02LjUgbSAtMSA2LjUgbCAtMSA0IGMgLTMgNiAtNiAtMSAwIC0xIHEgMSAtMSA1IDEiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.heateorSssBufferSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM5Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gMTUgNiBsIC0xMCA1IGwgMTAgNSBsIDEwIC01IHoiIHN0cm9rZS13aWR0aD0iMCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjxwYXRoIHN0cm9rZT0iI2ZmZiIgZD0iTSA1LjUgMTQuNSBsIDkuNSA1IGwgOS41IC01IG0gLTE5IDQgbCA5LjUgNSBsIDkuNSAtNSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) no-repeat center center}.heateorSssFacebookSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0xNCAyNSB2IC0xMyBRIDEzIDYgMjEgNy41IE0gMTAgMTQgTCAyMCAxNCIgc3Ryb2tlLXdpZHRoPSI0IiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) no-repeat center center}.heateorSssDeliciousSvg{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.5%20-12.5%2055%2055%22%3E%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%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%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%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%3C%2Fsvg%3E) no-repeat center center}.heateorSssDiggSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQ5IDQ5Ij48cGF0aCBkPSJNIDYgMjAgaCAxMCBjIDAgLTE0IC05IC0xNCAtOSAwIG0gNSAwIHYgNyBtIC0xIDAgdiAtNyBtIDQgLTcgaCA0LjUgdiAtNSBoIDggdiA4IGggLTggdiAtMyBtIDggMCBoIDQgdiA1LjUgaCAtMyB2IDEyIGggLTQgdiAtOCBtIDAgOCBoIC02LjUgdiAtMTIgaCAtMiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48ZWxsaXBzZSBjeD0iMTEuNSIgY3k9IjI4LjUiIHJ4PSI0IiByeT0iMiIgc3R5bGU9ImZpbGw6d2hpdGU7Ij48L2VsbGlwc2U+PC9zdmc+) no-repeat center center}.heateorSssEmailSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDQzIDQzIj48cGF0aCBkPSJNIDUuNSAxMSBoIDIzIHYgMSBsIC0xMSA2IGwgLTExIC02IHYgLTEgbSAwIDIgbCAxMSA2IGwgMTEgLTYgdiAxMSBoIC0yMiB2IC0xMSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSIjZmZmIj48L3BhdGg+PC9zdmc+) no-repeat center center}.heateorSssFloatitSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBmaWxsPSJub25lIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIGZpbGw9Im5vbmUiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0gNSAxNSBoIDUgTSAxNSA1IHYgNSBNIDI1IDE1IGggLTUgTSAxNSAyNSB2IC01IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.heateorSssGoogleplusSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) no-repeat center center}.heateorSssLinkedinSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij4NCjxjaXJjbGUgY3g9IjEwIiBjeT0iOCIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPg0KPHBhdGggZD0iTSAxMCAxMSB2IDExIG0gNSAwIHYgLTExIG0gMCAzIHEgNiAtMyA3IDAgdiA4IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) no-repeat center center}.heateorSssMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) no-repeat center center}.heateorSssPinterestSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02LjUgLTUgNDIgNDIiPjxwYXRoIGQ9Ik0gNiAyMCBjIC0zIC00IC0yIC0xMCAzIC0xMy41IGMgNCAtMyAxMSAtMyAxNSAzIGMgMyA1IDIgMTMgLTYgMTUgcSAtNCAxIC02IC0zIGwgLTIgNiBsIC0xLjIgMiBsIC0wLjggLTIgbCAyLjUgLTExIGMgLTIgLTQgMSAtOCA0IC02IHEgMCA1IC0xLjQgOC41IGMgMyA4IDEwIDAgOS41IC00IGMgMCAtOSAtMTEgLTExIC0xNC41IC00IGMgMCAwIC0zIDUgMCA4IGwgLTEgMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48L3N2Zz4=) no-repeat center center}.heateorSssPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC02IDM4IDM4Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gNyAxMCBoIDIgdiAzIGggMTIgdiAtMyBoIDIgdiA3IGggLTIgdiAtMyBoIC0xMiB2IDMgaCAtMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS44IiBoZWlnaHQ9IjciIHdpZHRoPSIxMCIgeD0iMTAiIHk9IjUiIGZpbGw9Im5vbmUiPjwvcmVjdD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIgaGVpZ2h0PSI1IiB3aWR0aD0iOCIgeD0iMTEiIHk9IjE2IiBmaWxsPSIjZmZmIj48L3JlY3Q+PC9zdmc+) no-repeat center center}.heateorSssRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj48ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5IiBjeT0iMTciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMiIgY3k9IjciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSI3IiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMyIgY3k9IjE0IiByPSIyIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PHBhdGggZD0iTSAxMCAyMiBxIDUgMyAxMCAwIE0gMTUgMTIgbCAxIC02IGwgNiAxIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.heateorSssStumbleuponSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBkPSJNIDYuNiAxNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTQgYyAtMSAtNyA2IC03IDYgLTIgdiAyLjUgbSAwIDIuNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTEiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) no-repeat center center}.heateorSssTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.heateorSssTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii04IC04IDY0IDY0Ij4NCjxwYXRoIGQ9Ik0gMzggMTkgcSAyIC0xIDQgLTUgcSAtMS41IDIgLTQgMiBxIDEuNSAtMSAzLjUgLTUgcSAtMS41IDIgLTUgMiBjIC01IC01IC0xMyAtMiAtMTIgNiBxIC03IDEgLTE1IC04IHEgLTIgNCAxIDkgcSAtMSAwIC0zIC0xIHEgMCA1IDUgNyBxIC0xIC41IC0zIDAgcSAxIDQgOCA2IHEgLTUgMyAtMTEgMyBjIDE0IDggMzAgMCAzMS41IC0xNCIgc3Ryb2tlLXdpZHRoPSIwLjMiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) no-repeat center center}.heateorSssVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj4NCjxwYXRoIGQ9Ik0gMi41IDkgaCA0LjUgbCA1IDcgdiAtNyBoIDQuNSB2IDcgbCA1IC03IGggNSBsIC01IDcgbCA1IDcgaCAtNSBsIC01IC03IHYgNyBoIC00LjUgcSAtMiAwIC01IC02IHoiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) no-repeat center center}.heateorSssYahooSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDggMTAgbCA3IDcgbCA1IC01IG0gLTQuNyA1IHYgMyBoIC0wLjUgdiAtMyBtIDggLTQgdiA1IG0gMCAxIHYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48cGF0aCBkPSJNIDYgMTAgaCA2IG0gNSAyIGggNiBtIC0xMSA5LjUgaCA2IiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) no-repeat center center}.heateorSssXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj4NCjxwYXRoIGQ9Ik0gNiA5IGggNSBsIDQgNCBsIC01IDcgaCAtNSBsIDUgLTcgeiBtIDE1IC00IGggNSBsIC05IDEzIGwgNCA4IGggLTUgbCAtNCAtOCB6IiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) no-repeat center center}.heateorSssWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBpZD0iYXJjMSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiIGQ9Ik0gMTEuNTc5Nzk4NTY2NzQzMzE0IDI0LjM5NjkyNjIwNzg1OTA4NSBBIDEwIDEwIDAgMSAwIDYuODA4NDc5NTU3MTEwMDc5IDIwLjczNTc2NDM2MzUxMDQ2Ij48L3BhdGg+PHBhdGggZD0iTSA3IDE5IGwgLTEgNiBsIDYgLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSAxMCAxMCBxIC0xIDggOCAxMSBjIDUgLTEgMCAtNiAtMSAtMyBxIC00IC0zIC01IC01IGMgNCAtMiAtMSAtNSAtMSAtNCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjwvc3ZnPg==) no-repeat center center}.heateorSssAIMSvg{background:url('data:image/svg+xml;charset=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}.heateorSssAmazonWishListSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssAOLMailSvg{background:url('data:image/svg+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}.heateorSssAppnetSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBaiduSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBalatarinSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBibSonomySvg{background:url('data:image/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}.heateorSssBittyBrowserSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBlinklistSvg{background:url('data:image/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}.heateorSssBloggerPostSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBlogMarksSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBoxnetSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBookmarksfrSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssBuddyMarksSvg{background:url('data:image/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}.heateorSssCare2NewsSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssCiteULikeSvg{background:url('data:image/svg+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}.heateorSssDiaryRuSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssDiasporaSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssDiHITTSvg{background:url('data:image/svg+xml;charset=utf8,%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}.heateorSssDiigoSvg{background:url('data:image/svg+xml;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
  .heateorSssDZoneSvg{background:url('data:image/svg+xml;charset=utf8,%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
  .heateorSssEvernoteSvg{background:url('data:image/svg+xml;charset=utf8,%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
 
admin/js/sassy-social-share-fb-sdk.js CHANGED
@@ -1 +1 @@
1
- !function(e,n,t){var o,c=e.getElementsByTagName(n)[0];e.getElementById(t)||(o=e.createElement(n),o.id=t,o.src="//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.4&appId=901329766553912",c.parentNode.insertBefore(o,c))}(document,"script","facebook-jssdk");
1
+ !function(e,n,t){var o,c=e.getElementsByTagName(n)[0];e.getElementById(t)||(o=e.createElement(n),o.id=t,o.src="//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5",c.parentNode.insertBefore(o,c))}(document,"script","facebook-jssdk");
admin/partials/sassy-social-share-about.php CHANGED
@@ -1,4 +1,4 @@
1
- <?php defined('ABSPATH') or die("Cheating........Uh!!"); ?>
2
  <div class="heateor_sss_right_column">
3
  <div class="stuffbox">
4
  <h3><label><?php _e( 'About', 'sassy-social-share' );?></label><label style="float:right"><?php _e( 'Version', 'sassy-social-share' );?> <?php echo $this->version; ?></label></h3>
@@ -14,9 +14,9 @@
14
  </div>
15
 
16
  <div class="stuffbox">
17
- <h3><label><?php _e( 'Donate', 'sassy-social-share');?></label></h3>
18
  <div class="inside">
19
- <p><?php _e( 'You can help us continue the development of this free plugin by donating', 'sassy-social-share') ?></p>
20
  <a href="https://www.heateor.com/donate/?action=Sassy+Social+Share" style="text-decoration:none" target="_blank"><input type="button" style="width:52%;background-color:#D51F1F" class="ss_demo" value="<?php _e( 'Donate Now', 'sassy-social-share' ) ?>" /></a>
21
  </div>
22
  </div>
@@ -59,11 +59,11 @@
59
  <div style="float: left;"><strong><?php _e( 'Rate 5-star', 'sassy-social-share' ); ?></strong></div>
60
  <div style="float: left; margin-left: 28px;">
61
  <a style="text-decoration: none" href="//wordpress.org/support/view/plugin-reviews/sassy-social-share" target="_blank">
62
- <img title="<?php _e( 'Rate 5-star', 'sassy-social-share' ); ?>" src="<?php echo plugins_url('../../images/star.png', __FILE__) ?>" />
63
- <img title="<?php _e( 'Rate 5-star', 'sassy-social-share' ); ?>" src="<?php echo plugins_url('../../images/star.png', __FILE__) ?>" />
64
- <img title="<?php _e( 'Rate 5-star', 'sassy-social-share' ); ?>" src="<?php echo plugins_url('../../images/star.png', __FILE__) ?>" />
65
- <img title="<?php _e( 'Rate 5-star', 'sassy-social-share' ); ?>" src="<?php echo plugins_url('../../images/star.png', __FILE__) ?>" />
66
- <img title="<?php _e( 'Rate 5-star', 'sassy-social-share' ); ?>" src="<?php echo plugins_url('../../images/star.png', __FILE__) ?>" />
67
  </a>
68
  </div>
69
  </div>
1
+ <?php defined( 'ABSPATH' ) or die("Cheating........Uh!!"); ?>
2
  <div class="heateor_sss_right_column">
3
  <div class="stuffbox">
4
  <h3><label><?php _e( 'About', 'sassy-social-share' );?></label><label style="float:right"><?php _e( 'Version', 'sassy-social-share' );?> <?php echo $this->version; ?></label></h3>
14
  </div>
15
 
16
  <div class="stuffbox">
17
+ <h3><label><?php _e( 'Donate', 'sassy-social-share' );?></label></h3>
18
  <div class="inside">
19
+ <p><?php _e( 'You can help us continue the development of this free plugin by donating', 'sassy-social-share' ) ?></p>
20
  <a href="https://www.heateor.com/donate/?action=Sassy+Social+Share" style="text-decoration:none" target="_blank"><input type="button" style="width:52%;background-color:#D51F1F" class="ss_demo" value="<?php _e( 'Donate Now', 'sassy-social-share' ) ?>" /></a>
21
  </div>
22
  </div>
59
  <div style="float: left;"><strong><?php _e( 'Rate 5-star', 'sassy-social-share' ); ?></strong></div>
60
  <div style="float: left; margin-left: 28px;">
61
  <a style="text-decoration: none" href="//wordpress.org/support/view/plugin-reviews/sassy-social-share" target="_blank">
62
+ <img title="<?php _e( 'Rate 5-star', 'sassy-social-share' ); ?>" src="<?php echo plugins_url( '../../images/star.png', __FILE__ ) ?>" />
63
+ <img title="<?php _e( 'Rate 5-star', 'sassy-social-share' ); ?>" src="<?php echo plugins_url( '../../images/star.png', __FILE__ ) ?>" />
64
+ <img title="<?php _e( 'Rate 5-star', 'sassy-social-share' ); ?>" src="<?php echo plugins_url( '../../images/star.png', __FILE__ ) ?>" />
65
+ <img title="<?php _e( 'Rate 5-star', 'sassy-social-share' ); ?>" src="<?php echo plugins_url( '../../images/star.png', __FILE__ ) ?>" />
66
+ <img title="<?php _e( 'Rate 5-star', 'sassy-social-share' ); ?>" src="<?php echo plugins_url( '../../images/star.png', __FILE__ ) ?>" />
67
  </a>
68
  </div>
69
  </div>
admin/partials/sassy-social-share-options-page.php CHANGED
@@ -5,7 +5,7 @@
5
  *
6
  * @since 1.0.0
7
  */
8
- defined('ABSPATH') or die("Cheating........Uh!!");
9
  ?>
10
 
11
  <div id="fb-root"></div>
@@ -66,7 +66,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
66
  <div id="heateor_sss_preview" style="cursor:pointer;float:left">
67
  <div class="heateorSssCounterPreviewInnertop">44</div>
68
  <div class="heateorSssCounterPreviewInnerleft">44</div>
69
- <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>
70
  <div class="heateorSssCounterPreviewInnerright">44</div>
71
  <div class="heateorSssCounterPreviewInnerbottom">44</div>
72
  </div>
@@ -79,26 +79,26 @@ defined('ABSPATH') or die("Cheating........Uh!!");
79
 
80
  heateorSssSharingHorizontalPreview();
81
 
82
- jQuery('#heateor_sss_preview').hover(function(){
83
- if(heateorSssSharingBgHover && heateorSssSharingBgHover != '#3C589A'){
84
- jQuery(this).css('backgroundColor', heateorSssSharingBgHover);
85
  }
86
- if(jQuery('#heateor_sss_font_color_hover').val().trim()){
87
- jQuery(this).find('#horizontal_svg').attr('style', jQuery(this).find('#horizontal_svg').attr('style').replace(heateorSssSharingTempColor.replace('#', '%23'), jQuery('#heateor_sss_font_color_hover').val().trim().replace('#', '%23')));
88
- jQuery(this).css('color', jQuery('#heateor_sss_font_color_hover').val().trim());
89
  }
90
- jQuery(this).css('borderStyle', 'solid');
91
- jQuery(this).css('borderWidth', heateorSssBorderWidthHover ? heateorSssBorderWidthHover : heateorSssBorderWidth ? heateorSssBorderWidth : '0');
92
- jQuery(this).css('borderColor', heateorSssBorderColorHover ? heateorSssBorderColorHover : 'transparent');
93
- },function(){
94
- jQuery(this).css('backgroundColor', heateorSssSharingBg);
95
- if(jQuery('#heateor_sss_font_color_hover').val().trim()){
96
- jQuery(this).find('#horizontal_svg').attr('style', jQuery(this).find('#horizontal_svg').attr('style').replace(jQuery('#heateor_sss_font_color_hover').val().trim().replace('#', '%23'), heateorSssSharingTempColor.replace('#', '%23')));
97
- jQuery(this).css('color', heateorSssSharingTempColor);
98
  }
99
- jQuery(this).css('borderStyle', 'solid');
100
- jQuery(this).css('borderWidth', heateorSssBorderWidth ? heateorSssBorderWidth : heateorSssBorderWidthHover ? heateorSssBorderWidthHover : '0');
101
- jQuery(this).css('borderColor', heateorSssBorderColor ? heateorSssBorderColor : 'transparent');
102
  });
103
  </script>
104
  </td>
@@ -112,7 +112,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
112
 
113
  <tr>
114
  <th>
115
- <img id="heateor_sss_icon_shape_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
116
  <label><?php _e("Shape", 'sassy-social-share' ); ?></label>
117
  </th>
118
  <td>
@@ -136,16 +136,16 @@ defined('ABSPATH') or die("Cheating........Uh!!");
136
  <tbody id="heateor_sss_size_options" <?php echo ! isset( $options['horizontal_sharing_shape'] ) || $options['horizontal_sharing_shape'] != 'rectangle' ? '' : 'style="display: none"'; ?>>
137
  <tr>
138
  <th>
139
- <img id="heateor_sss_icon_size_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
140
  <label><?php _e("Size (in pixels)", 'sassy-social-share' ); ?></label>
141
  </th>
142
  <td>
143
  <input style="width:50px" id="heateor_sss_icon_size" name="heateor_sss[horizontal_sharing_size]" type="text" value="<?php echo $sharing_size; ?>" />
144
- <input id="heateor_sss_size_plus" type="button" value="+" onmouseup="tempHorSize = document.getElementById('heateor_sss_icon_size').value;heateorSssSharingHorizontalPreview()" />
145
- <input id="heateor_sss_size_minus" type="button" value="-" onmouseup="tempHorSize = document.getElementById('heateor_sss_icon_size').value;heateorSssSharingHorizontalPreview()" />
146
  <script type="text/javascript">
147
- heateorSssIncrement(document.getElementById('heateor_sss_size_plus'), "add", document.getElementById('heateor_sss_icon_size'), 300, 0.7);
148
- heateorSssIncrement(document.getElementById('heateor_sss_size_minus'), "subtract", document.getElementById('heateor_sss_icon_size'), 300, 0.7);
149
  </script>
150
  </td>
151
  </tr>
@@ -162,16 +162,16 @@ defined('ABSPATH') or die("Cheating........Uh!!");
162
  <tbody id="heateor_sss_rectangle_options" <?php echo isset( $options['horizontal_sharing_shape'] ) && $options['horizontal_sharing_shape'] == 'rectangle' ? '' : 'style="display: none"'; ?>>
163
  <tr>
164
  <th>
165
- <img id="heateor_sss_icon_width_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
166
  <label><?php _e("Width (in pixels)", 'sassy-social-share' ); ?></label>
167
  </th>
168
  <td>
169
  <input style="width:50px" id="heateor_sss_icon_width" name="heateor_sss[horizontal_sharing_width]" type="text" value="<?php echo $sharing_width; ?>" />
170
- <input id="heateor_sss_width_plus" type="button" value="+" onmouseup="tempHorWidth = document.getElementById('heateor_sss_icon_width').value;heateorSssSharingHorizontalPreview()" />
171
- <input id="heateor_sss_width_minus" type="button" value="-" onmouseup="tempHorWidth = document.getElementById('heateor_sss_icon_width').value;heateorSssSharingHorizontalPreview()" />
172
  <script type="text/javascript">
173
- heateorSssIncrement(document.getElementById('heateor_sss_width_plus'), "add", document.getElementById('heateor_sss_icon_width'), 300, 0.7);
174
- heateorSssIncrement(document.getElementById('heateor_sss_width_minus'), "subtract", document.getElementById('heateor_sss_icon_width'), 300, 0.7);
175
  </script>
176
  </td>
177
  </tr>
@@ -186,16 +186,16 @@ defined('ABSPATH') or die("Cheating........Uh!!");
186
 
187
  <tr>
188
  <th>
189
- <img id="heateor_sss_icon_height_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
190
  <label><?php _e("Height (in pixels)", 'sassy-social-share' ); ?></label>
191
  </th>
192
  <td>
193
  <input style="width:50px" id="heateor_sss_icon_height" name="heateor_sss[horizontal_sharing_height]" type="text" value="<?php echo $sharing_height; ?>" />
194
- <input id="heateor_sss_height_plus" type="button" value="+" onmouseup="tempHorHeight = document.getElementById('heateor_sss_icon_height').value;heateorSssSharingHorizontalPreview()" />
195
- <input id="heateor_sss_height_minus" type="button" value="-" onmouseup="tempHorHeight = document.getElementById('heateor_sss_icon_height').value;heateorSssSharingHorizontalPreview()" />
196
  <script type="text/javascript">
197
- heateorSssIncrement(document.getElementById('heateor_sss_height_plus'), "add", document.getElementById('heateor_sss_icon_height'), 300, 0.7);
198
- heateorSssIncrement(document.getElementById('heateor_sss_height_minus'), "subtract", document.getElementById('heateor_sss_icon_height'), 300, 0.7);
199
  </script>
200
  </td>
201
  </tr>
@@ -212,11 +212,11 @@ defined('ABSPATH') or die("Cheating........Uh!!");
212
  <tbody id="heateor_sss_border_radius_options" <?php echo isset( $options['horizontal_sharing_shape'] ) && $options['horizontal_sharing_shape'] != 'round' ? '' : 'style="display: none"'; ?>>
213
  <tr>
214
  <th>
215
- <img id="heateor_sss_icon_border_radius_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
216
  <label><?php _e("Border radius (in pixels)", 'sassy-social-share' ); ?></label>
217
  </th>
218
  <td>
219
- <input style="width:50px" id="heateor_sss_icon_border_radius" name="heateor_sss[horizontal_border_radius]" type="text" value="<?php echo $sharing_border_radius; ?>" onkeyup="heateorSssSharingBorderRadius = this.value.trim() ? this.value.trim() + 'px' : '';heateorSssUpdateSharingPreview(this.value.trim() + 'px', 'borderRadius', '0px', 'heateor_sss_preview')" />
220
  </td>
221
  </tr>
222
 
@@ -231,12 +231,12 @@ defined('ABSPATH') or die("Cheating........Uh!!");
231
 
232
  <tr>
233
  <th>
234
- <img id="heateor_sss_font_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
235
  <label><?php _e("Logo Color", 'sassy-social-share' ); ?></label>
236
  </th>
237
  <td>
238
  <script type="text/javascript">var heateorSssSharingTempColor = '<?php echo $sharing_color ? $sharing_color : "#fff" ?>';</script>
239
- <label for="heateor_sss_font_color_default"><?php _e("Default", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_font_color_default" onkeyup="if(this.value.trim() == '' || this.value.trim().length >= 3){ jQuery('#horizontal_svg').attr('style', jQuery('#horizontal_svg').attr('style').replace(heateorSssSharingTempColor.replace('#', '%23'), this.value.trim() ? this.value.trim().replace('#', '%23') : '%23fff')); heateorSssSharingTempColor = this.value.trim() ? this.value.trim() : '#fff';jQuery('#heateor_sss_preview').css('color', heateorSssSharingTempColor.replace('%23','#')) }" name="heateor_sss[horizontal_font_color_default]" type="text" value="<?php echo $sharing_color; ?>" />
240
  <input name="heateor_sss[horizontal_sharing_replace_color]" type="hidden" value="<?php echo isset( $options['horizontal_sharing_replace_color'] ) ? $options['horizontal_sharing_replace_color'] : ''; ?>" />
241
  <label style="margin-left:10px" for="heateor_sss_font_color_hover"><?php _e("On Hover", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_font_color_hover" name="heateor_sss[horizontal_font_color_hover]" type="text" onkeyup="" value="<?php echo $sharing_color_hover; ?>" />
242
  <input name="heateor_sss[horizontal_sharing_replace_color_hover]" type="hidden" value="<?php echo isset( $options['horizontal_sharing_replace_color_hover'] ) ? $options['horizontal_sharing_replace_color_hover'] : ''; ?>" />
@@ -253,11 +253,11 @@ defined('ABSPATH') or die("Cheating........Uh!!");
253
 
254
  <tr>
255
  <th>
256
- <img id="heateor_sss_bg_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
257
  <label><?php _e("Background Color", 'sassy-social-share' ); ?></label>
258
  </th>
259
  <td>
260
- <label for="heateor_sss_bg_color_default"><?php _e("Default", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_bg_color_default" name="heateor_sss[horizontal_bg_color_default]" type="text" onkeyup="heateorSssSharingBg = this.value.trim() ? this.value.trim() : '#3C589A'; heateorSssUpdateSharingPreview(this.value.trim(), 'backgroundColor', '#3C589A', 'heateor_sss_preview')" value="<?php echo $horizontal_bg ?>" />
261
  <label style="margin-left:10px" for="heateor_sss_bg_color_hover"><?php _e("On Hover", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_bg_color_hover" name="heateor_sss[horizontal_bg_color_hover]" type="text" onkeyup="heateorSssSharingBgHover = this.value.trim() ? this.value.trim() : '#3C589A';" value="<?php echo $horizontal_bg_hover ?>" />
262
  </td>
263
  </tr>
@@ -272,15 +272,15 @@ defined('ABSPATH') or die("Cheating........Uh!!");
272
 
273
  <tr>
274
  <th>
275
- <img id="heateor_sss_border_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
276
  <label><?php _e("Border", 'sassy-social-share' ); ?></label>
277
  </th>
278
  <td>
279
  <script type="text/javascript">var heateorSssBorderWidthHover = '<?php echo $border_width_hover = isset( $options['horizontal_border_width_hover'] ) ? $options['horizontal_border_width_hover'] : ''; ?>', heateorSssBorderColorHover = '<?php echo $border_color_hover = isset( $options['horizontal_border_color_hover'] ) ? $options['horizontal_border_color_hover'] : ''; ?>'</script>
280
  <label><strong><?php _e("Default", 'sassy-social-share' ); ?></strong></label>
281
  <br/>
282
- <label for="heateor_sss_border_width_default"><?php _e("Border Width", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_border_width_default" onkeyup="heateorSssBorderWidth = this.value.trim(); jQuery('#heateor_sss_preview').css('borderStyle', 'solid'); heateorSssUpdateSharingPreview(this.value.trim(), 'borderWidth', '0px', 'heateor_sss_preview'); heateorSssSharingHorizontalPreview();" name="heateor_sss[horizontal_border_width_default]" type="text" value="<?php echo $border_width ?>" />pixel(s)
283
- <label style="margin-left:10px" for="heateor_sss_border_color_default"><?php _e("Border Color", 'sassy-social-share' ); ?></label><input style="width: 100px" onkeyup="heateorSssBorderColor = this.value.trim(); jQuery('#heateor_sss_preview').css('borderStyle', 'solid'); heateorSssUpdateSharingPreview(this.value.trim(), 'borderColor', 'transparent', 'heateor_sss_preview')" id="heateor_sss_border_color_default" name="heateor_sss[horizontal_border_color_default]" type="text" value="<?php echo $border_color ?>" />
284
  <br/><br/>
285
  <label><strong><?php _e("On Hover", 'sassy-social-share' ); ?></strong></label>
286
  <br/>
@@ -299,29 +299,29 @@ defined('ABSPATH') or die("Cheating........Uh!!");
299
 
300
  <tr>
301
  <th>
302
- <img id="heateor_sss_counter_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
303
  <label><?php _e("Counter Position", 'sassy-social-share' ); ?><br/><?php _e("(applies, if counter enabled)", 'sassy-social-share' ); ?></label>
304
  </th>
305
  <td>
306
- <input id="heateor_sss_counter_left" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'left' ? 'checked = "checked"' : '';?> value="left" />
307
  <label style="margin-right:10px" for="heateor_sss_counter_left"><?php _e("Left", 'sassy-social-share' ); ?></label>
308
- <input id="heateor_sss_counter_top" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'top' ? 'checked = "checked"' : '';?> value="top" />
309
  <label style="margin-right:10px" for="heateor_sss_counter_top"><?php _e("Top", 'sassy-social-share' ); ?></label>
310
- <input id="heateor_sss_counter_right" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'right' ? 'checked = "checked"' : '';?> value="right" />
311
  <label style="margin-right:10px" for="heateor_sss_counter_right"><?php _e("Right", 'sassy-social-share' ); ?></label>
312
- <input id="heateor_sss_counter_bottom" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'bottom' ? 'checked = "checked"' : '';?> value="bottom" />
313
  <label style="margin-right:10px" for="heateor_sss_counter_bottom"><?php _e("Bottom", 'sassy-social-share' ); ?></label><br/>
314
- <input id="heateor_sss_counter_inner_left" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'inner_left' ? 'checked = "checked"' : '';?> value="inner_left" />
315
  <label style="margin-right:10px" for="heateor_sss_counter_inner_left"><?php _e("Inner Left", 'sassy-social-share' ); ?></label>
316
- <input id="heateor_sss_counter_inner_top" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'inner_top' ? 'checked = "checked"' : '';?> value="inner_top" />
317
  <label style="margin-right:10px" for="heateor_sss_counter_inner_top"><?php _e("Inner Top", 'sassy-social-share' ); ?></label>
318
- <input id="heateor_sss_counter_inner_right" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'inner_right' ? 'checked = "checked"' : '';?> value="inner_right" />
319
  <label style="margin-right:10px" for="heateor_sss_counter_inner_right"><?php _e("Inner Right", 'sassy-social-share' ); ?></label>
320
- <input id="heateor_sss_counter_inner_bottom" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim())" type="radio" <?php echo $counter_position == 'inner_bottom' ? 'checked = "checked"' : '';?> value="inner_bottom" />
321
  <label style="margin-right:10px" for="heateor_sss_counter_inner_bottom"><?php _e("Inner Bottom", 'sassy-social-share' ); ?></label>
322
  </td>
323
  </tr>
324
- <script type="text/javascript">heateorSssCounterPreview('<?php echo $counter_position ?>');</script>
325
 
326
  <tr class="heateor_sss_help_content" id="heateor_sss_counter_help_cont">
327
  <td colspan="2">
@@ -374,7 +374,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
374
  <div id="heateor_sss_vertical_preview" style="cursor:pointer;float:left">
375
  <div class="heateorSssCounterVerticalPreviewInnertop">44</div>
376
  <div class="heateorSssCounterVerticalPreviewInnerleft">44</div>
377
- <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>
378
  <div class="heateorSssCounterVerticalPreviewInnerright">44</div>
379
  <div class="heateorSssCounterVerticalPreviewInnerbottom">44</div>
380
  </div>
@@ -387,26 +387,26 @@ defined('ABSPATH') or die("Cheating........Uh!!");
387
 
388
  heateorSssSharingVerticalPreview();
389
 
390
- jQuery('#heateor_sss_vertical_preview').hover(function(){
391
- if(heateorSssVerticalSharingBgHover && heateorSssVerticalSharingBgHover != '#3C589A'){
392
- jQuery(this).css('backgroundColor', heateorSssVerticalSharingBgHover);
393
  }
394
- if(jQuery('#heateor_sss_vertical_font_color_hover').val().trim()){
395
- jQuery(this).find('#vertical_svg').attr('style', jQuery(this).find('#vertical_svg').attr('style').replace(heateorSssVerticalSharingTempColor.replace('#', '%23'), jQuery('#heateor_sss_vertical_font_color_hover').val().trim().replace('#', '%23')));
396
- jQuery(this).css('color', jQuery('#heateor_sss_vertical_font_color_hover').val().trim());
397
  }
398
- jQuery(this).css('borderStyle', 'solid');
399
- jQuery(this).css('borderWidth', heateorSssVerticalBorderWidthHover ? heateorSssVerticalBorderWidthHover : heateorSssVerticalBorderWidth ? heateorSssVerticalBorderWidth : '0');
400
- jQuery(this).css('borderColor', heateorSssVerticalBorderColorHover ? heateorSssVerticalBorderColorHover : 'transparent');
401
- },function(){
402
- jQuery(this).css('backgroundColor', heateorSssVerticalSharingBg);
403
- if(jQuery('#heateor_sss_vertical_font_color_hover').val().trim()){
404
- jQuery(this).find('#vertical_svg').attr('style', jQuery(this).find('#vertical_svg').attr('style').replace(jQuery('#heateor_sss_vertical_font_color_hover').val().trim().replace('#', '%23'), heateorSssVerticalSharingTempColor.replace('#', '%23')));
405
- jQuery(this).css('color', heateorSssVerticalSharingTempColor);
406
  }
407
- jQuery(this).css('borderStyle', 'solid');
408
- jQuery(this).css('borderWidth', heateorSssVerticalBorderWidth ? heateorSssVerticalBorderWidth : heateorSssVerticalBorderWidthHover ? heateorSssVerticalBorderWidthHover : '0');
409
- jQuery(this).css('borderColor', heateorSssVerticalBorderColor ? heateorSssVerticalBorderColor : 'transparent');
410
  });
411
  </script>
412
  </td>
@@ -420,7 +420,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
420
 
421
  <tr>
422
  <th>
423
- <img id="heateor_sss_vertical_sharing_icon_shape_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
424
  <label><?php _e("Shape", 'sassy-social-share' ); ?></label>
425
  </th>
426
  <td>
@@ -444,16 +444,16 @@ defined('ABSPATH') or die("Cheating........Uh!!");
444
  <tbody id="heateor_sss_vertical_size_options" <?php echo ! isset( $options['vertical_sharing_shape'] ) || $options['vertical_sharing_shape'] != 'rectangle' ? '' : 'style="display: none"'; ?>>
445
  <tr>
446
  <th>
447
- <img id="heateor_sss_vertical_sharing_icon_size_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
448
  <label><?php _e("Size (in pixels)", 'sassy-social-share' ); ?></label>
449
  </th>
450
  <td>
451
  <input style="width:50px" id="heateor_sss_vertical_sharing_icon_size" name="heateor_sss[vertical_sharing_size]" type="text" value="<?php echo $vertical_sharing_size; ?>" />
452
- <input id="heateor_sss_vertical_sharing_size_plus" type="button" value="+" onmouseup="tempVerticalSize = document.getElementById('heateor_sss_vertical_sharing_icon_size').value;heateorSssSharingVerticalPreview()" />
453
- <input id="heateor_sss_vertical_sharing_size_minus" type="button" value="-" onmouseup="tempVerticalSize = document.getElementById('heateor_sss_vertical_sharing_icon_size').value;heateorSssSharingVerticalPreview()" />
454
  <script type="text/javascript">
455
- heateorSssIncrement(document.getElementById('heateor_sss_vertical_sharing_size_plus'), "add", document.getElementById('heateor_sss_vertical_sharing_icon_size'), 300, 0.7);
456
- heateorSssIncrement(document.getElementById('heateor_sss_vertical_sharing_size_minus'), "subtract", document.getElementById('heateor_sss_vertical_sharing_icon_size'), 300, 0.7);
457
  </script>
458
  </td>
459
  </tr>
@@ -470,16 +470,16 @@ defined('ABSPATH') or die("Cheating........Uh!!");
470
  <tbody id="heateor_sss_vertical_rectangle_options" <?php echo isset( $options['vertical_sharing_shape'] ) && $options['vertical_sharing_shape'] == 'rectangle' ? '' : 'style="display: none"'; ?>>
471
  <tr>
472
  <th>
473
- <img id="heateor_sss_vertical_icon_width_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
474
  <label><?php _e("Width (in pixels)", 'sassy-social-share' ); ?></label>
475
  </th>
476
  <td>
477
  <input style="width:50px" id="heateor_sss_vertical_icon_width" name="heateor_sss[vertical_sharing_width]" type="text" value="<?php echo $vertical_sharing_width; ?>" />
478
- <input id="heateor_sss_vertical_width_plus" type="button" value="+" onmouseup="tempVerticalWidth = document.getElementById('heateor_sss_vertical_icon_width').value;heateorSssSharingVerticalPreview()" />
479
- <input id="heateor_sss_vertical_width_minus" type="button" value="-" onmouseup="tempVerticalWidth = document.getElementById('heateor_sss_vertical_icon_width').value;heateorSssSharingVerticalPreview()" />
480
  <script type="text/javascript">
481
- heateorSssIncrement(document.getElementById('heateor_sss_vertical_width_plus'), "add", document.getElementById('heateor_sss_vertical_icon_width'), 300, 0.7);
482
- heateorSssIncrement(document.getElementById('heateor_sss_vertical_width_minus'), "subtract", document.getElementById('heateor_sss_vertical_icon_width'), 300, 0.7);
483
  </script>
484
  </td>
485
  </tr>
@@ -494,16 +494,16 @@ defined('ABSPATH') or die("Cheating........Uh!!");
494
 
495
  <tr>
496
  <th>
497
- <img id="heateor_sss_vertical_icon_height_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
498
  <label><?php _e("Height (in pixels)", 'sassy-social-share' ); ?></label>
499
  </th>
500
  <td>
501
  <input style="width:50px" id="heateor_sss_vertical_icon_height" name="heateor_sss[vertical_sharing_height]" type="text" value="<?php echo $vertical_sharing_height; ?>" />
502
- <input id="heateor_sss_vertical_height_plus" type="button" value="+" onmouseup="tempVerticalHeight = document.getElementById('heateor_sss_vertical_icon_height').value;heateorSssSharingVerticalPreview()" />
503
- <input id="heateor_sss_vertical_height_minus" type="button" value="-" onmouseup="tempVerticalHeight = document.getElementById('heateor_sss_vertical_icon_height').value;heateorSssSharingVerticalPreview()" />
504
  <script type="text/javascript">
505
- heateorSssIncrement(document.getElementById('heateor_sss_vertical_height_plus'), "add", document.getElementById('heateor_sss_vertical_icon_height'), 300, 0.7);
506
- heateorSssIncrement(document.getElementById('heateor_sss_vertical_height_minus'), "subtract", document.getElementById('heateor_sss_vertical_icon_height'), 300, 0.7);
507
  </script>
508
  </td>
509
  </tr>
@@ -520,11 +520,11 @@ defined('ABSPATH') or die("Cheating........Uh!!");
520
  <tbody id="heateor_sss_vertical_border_radius_options" <?php echo isset( $options['vertical_sharing_shape'] ) && $options['vertical_sharing_shape'] != 'round' ? '' : 'style="display: none"'; ?>>
521
  <tr>
522
  <th>
523
- <img id="heateor_sss_vertical_icon_border_radius_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
524
  <label><?php _e("Border radius (in pixels)", 'sassy-social-share' ); ?></label>
525
  </th>
526
  <td>
527
- <input style="width:50px" id="heateor_sss_vertical_icon_border_radius" name="heateor_sss[vertical_border_radius]" type="text" value="<?php echo $vertical_sharing_border_radius; ?>" onkeyup="heateorSssVerticalBorderRadius = this.value.trim() ? this.value.trim() + 'px' : '';heateorSssUpdateSharingPreview(this.value.trim() + 'px', 'borderRadius', '0px', 'heateor_sss_vertical_preview')" />
528
  </td>
529
  </tr>
530
 
@@ -539,12 +539,12 @@ defined('ABSPATH') or die("Cheating........Uh!!");
539
 
540
  <tr>
541
  <th>
542
- <img id="heateor_sss_vertical_font_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
543
  <label><?php _e("Logo Color", 'sassy-social-share' ); ?></label>
544
  </th>
545
  <td>
546
  <script type="text/javascript">var heateorSssVerticalSharingTempColor = '<?php echo $vertical_sharing_color ? $vertical_sharing_color : "#fff" ?>';</script>
547
- <label for="heateor_sss_vertical_font_color_default"><?php _e("Default", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_vertical_font_color_default" name="heateor_sss[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(heateorSssVerticalSharingTempColor.replace('#', '%23'), this.value.trim() ? this.value.trim().replace('#', '%23') : '%23fff')); heateorSssVerticalSharingTempColor = this.value.trim() ? this.value.trim() : '#fff';jQuery('#heateor_sss_vertical_preview').css('color', heateorSssVerticalSharingTempColor.replace('%23','#')) }" type="text" value="<?php echo $vertical_sharing_color ?>" />
548
  <input name="heateor_sss[vertical_sharing_replace_color]" type="hidden" value="<?php echo isset( $options['vertical_sharing_replace_color'] ) ? $options['vertical_sharing_replace_color'] : ''; ?>" />
549
  <label style="margin-left:10px" for="heateor_sss_vertical_font_color_hover"><?php _e("On Hover", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_vertical_font_color_hover" name="heateor_sss[vertical_font_color_hover]" type="text" value="<?php echo $vertical_sharing_color_hover; ?>" />
550
  <input name="heateor_sss[vertical_sharing_replace_color_hover]" type="hidden" value="<?php echo isset( $options['vertical_sharing_replace_color_hover'] ) ? $options['vertical_sharing_replace_color_hover'] : ''; ?>" />
@@ -561,11 +561,11 @@ defined('ABSPATH') or die("Cheating........Uh!!");
561
 
562
  <tr>
563
  <th>
564
- <img id="heateor_sss_vertical_icon_bg_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
565
  <label><?php _e("Background Color", 'sassy-social-share' ); ?></label>
566
  </th>
567
  <td>
568
- <label for="heateor_sss_vertical_icon_bg_color_default"><?php _e("Default", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_vertical_icon_bg_color_default" name="heateor_sss[vertical_bg_color_default]" type="text" onkeyup="heateorSssVerticalSharingBg = this.value.trim() ? this.value.trim() : '#3C589A'; heateorSssUpdateSharingPreview(this.value.trim(), 'backgroundColor', '#3C589A', 'heateor_sss_vertical_preview')" value="<?php echo $vertical_bg ?>" />
569
  <label style="margin-left:10px" for="heateor_sss_vertical_bg_color_hover"><?php _e("On Hover", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_vertical_bg_color_hover" name="heateor_sss[vertical_bg_color_hover]" type="text" onkeyup="heateorSssVerticalSharingBgHover = this.value.trim() ? this.value.trim() : '#3C589A';" value="<?php echo $vertical_bg_hover ?>" />
570
  </td>
571
  </tr>
@@ -580,14 +580,14 @@ defined('ABSPATH') or die("Cheating........Uh!!");
580
 
581
  <tr>
582
  <th>
583
- <img id="heateor_sss_vertical_border_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
584
  <label><?php _e("Border", 'sassy-social-share' ); ?></label>
585
  </th>
586
  <td>
587
  <label><strong><?php _e("Default", 'sassy-social-share' ); ?></strong></label>
588
  <br/>
589
- <label for="heateor_sss_vertical_border_width_default"><?php _e("Border Width", 'sassy-social-share' ); ?></label><input style="width: 100px" onkeyup="heateorSssVerticalBorderWidth = this.value.trim(); jQuery('#heateor_sss_vertical_preview').css('borderStyle', 'solid'); heateorSssUpdateSharingPreview(this.value.trim(), 'borderWidth', '0px', 'heateor_sss_vertical_preview'); heateorSssSharingVerticalPreview();" id="heateor_sss_vertical_border_width_default" name="heateor_sss[vertical_border_width_default]" type="text" value="<?php echo $vertical_border_width ?>" />pixel(s)
590
- <label style="margin-left:10px" for="heateor_sss_vertical_border_color_default"><?php _e("Border Color", 'sassy-social-share' ); ?></label><input onkeyup="heateorSssVerticalBorderColor = this.value.trim(); jQuery('#heateor_sss_vertical_preview').css('borderStyle', 'solid'); heateorSssUpdateSharingPreview(this.value.trim(), 'borderColor', 'transparent', 'heateor_sss_vertical_preview')" style="width: 100px" id="heateor_sss_vertical_border_color_default" name="heateor_sss[vertical_border_color_default]" type="text" value="<?php echo $vertical_border_color = isset( $options['vertical_border_color_default'] ) ? $options['vertical_border_color_default'] : ''; ?>" />
591
  <br/><br/>
592
  <label><strong><?php _e("On Hover", 'sassy-social-share' ); ?></strong></label>
593
  <br/>
@@ -606,29 +606,29 @@ defined('ABSPATH') or die("Cheating........Uh!!");
606
 
607
  <tr>
608
  <th>
609
- <img id="heateor_sss_vertical_counter_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
610
  <label><?php _e("Counter Position", 'sassy-social-share' ); ?><br/><?php _e("(applies, if counter enabled)", 'sassy-social-share' ); ?></label>
611
  </th>
612
  <td>
613
- <input id="heateor_sss_vertical_counter_left" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'left' ? 'checked = "checked"' : '';?> value="left" />
614
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_left"><?php _e("Left", 'sassy-social-share' ); ?></label>
615
- <input id="heateor_sss_vertical_counter_top" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'top' ? 'checked = "checked"' : '';?> value="top" />
616
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_top"><?php _e("Top", 'sassy-social-share' ); ?></label>
617
- <input id="heateor_sss_vertical_counter_right" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'right' ? 'checked = "checked"' : '';?> value="right" />
618
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_right"><?php _e("Right", 'sassy-social-share' ); ?></label>
619
- <input id="heateor_sss_vertical_counter_bottom" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'bottom' ? 'checked = "checked"' : '';?> value="bottom" />
620
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_bottom"><?php _e("Bottom", 'sassy-social-share' ); ?></label><br/>
621
- <input id="heateor_sss_vertical_counter_inner_left" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'inner_left' ? 'checked = "checked"' : '';?> value="inner_left" />
622
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_inner_left"><?php _e("Inner Left", 'sassy-social-share' ); ?></label>
623
- <input id="heateor_sss_vertical_counter_inner_top" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'inner_top' ? 'checked = "checked"' : '';?> value="inner_top" />
624
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_inner_top"><?php _e("Inner Top", 'sassy-social-share' ); ?></label>
625
- <input id="heateor_sss_vertical_counter_inner_right" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'inner_right' ? 'checked = "checked"' : '';?> value="inner_right" />
626
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_inner_right"><?php _e("Inner Right", 'sassy-social-share' ); ?></label>
627
- <input id="heateor_sss_vertical_counter_inner_bottom" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim())" type="radio" <?php echo $vertical_counter_position == 'inner_bottom' ? 'checked = "checked"' : '';?> value="inner_bottom" />
628
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_inner_bottom"><?php _e("Inner Bottom", 'sassy-social-share' ); ?></label>
629
  </td>
630
  </tr>
631
- <script type="text/javascript">heateorSssVerticalCounterPreview('<?php echo $vertical_counter_position ?>');</script>
632
 
633
  <tr class="heateor_sss_help_content" id="heateor_sss_vertical_counter_help_cont">
634
  <td colspan="2">
@@ -653,7 +653,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
653
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
654
  <tr>
655
  <th>
656
- <img id="heateor_sss_horizontal_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
657
  <label for="heateor_sss_horizontal_enable"><?php _e("Enable Standard sharing interface", 'sassy-social-share' ); ?></label>
658
  </th>
659
  <td>
@@ -665,7 +665,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
665
  <td colspan="2">
666
  <div>
667
  <?php _e( 'Master control to enable standard sharing', 'sassy-social-share' ) ?>
668
- <img width="550" src="<?php echo plugins_url('../../images/snaps/sss_horizontal_sharing.png', __FILE__); ?>" />
669
  </div>
670
  </td>
671
  </tr>
@@ -673,7 +673,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
673
  <tbody id="heateor_sss_horizontal_sharing_options" <?php echo isset( $options['hor_enable'] ) ? '' : 'style="display: none"'; ?>>
674
  <tr>
675
  <th>
676
- <img id="heateor_sss_horizontal_target_url_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
677
  <label for="heateor_sss_horizontal_target_url"><?php _e("Target Url", 'sassy-social-share' ); ?></label>
678
  </th>
679
  <td id="heateor_sss_target_url_column">
@@ -696,7 +696,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
696
 
697
  <tr>
698
  <th>
699
- <img id="heateor_sss_title_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
700
  <label for="heateor_sss_fblogin_title"><?php _e("Title", 'sassy-social-share' ); ?></label>
701
  </th>
702
  <td>
@@ -712,13 +712,13 @@ defined('ABSPATH') or die("Cheating........Uh!!");
712
  </td>
713
  </tr>
714
  <?php
715
- $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');
716
- $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');
717
  ?>
718
 
719
  <tr>
720
  <th>
721
- <img id="heateor_sss_rearrange_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
722
  <label><?php _e("Rearrange icons", 'sassy-social-share' ); ?></label>
723
  </th>
724
  </tr>
@@ -729,29 +729,29 @@ defined('ABSPATH') or die("Cheating........Uh!!");
729
  <?php
730
  $horSharingStyle = 'width:' . ( $options['horizontal_sharing_shape'] != 'rectangle' ? $options['horizontal_sharing_size'] : $options['horizontal_sharing_width'] ) . 'px;height:' . $line_height . 'px;';
731
  $horDeliciousRadius = '';
732
- if($options['horizontal_sharing_shape'] == 'round'){
733
  $horSharingStyle .= 'border-radius:999px;';
734
  $horDeliciousRadius = 'border-radius:999px;';
735
  } elseif ( isset( $options['horizontal_border_radius'] ) && $options['horizontal_border_radius'] != '' ) {
736
  $horSharingStyle .= 'border-radius:' . $options['horizontal_border_radius'] . 'px;';
737
  }
738
  ?>
739
- var heateorSssHorSharingStyle = '<?php echo $horSharingStyle ?>', heateorSssHorDeliciousRadius = '<?php echo $horDeliciousRadius ?>', heateorSssLikeButtons = ["<?php echo implode('","', $likeButtons) ?>"];
740
  </script>
741
  <style type="text/css">
742
  .heateorSssSharingBackground{
743
- <?php if($horizontal_bg){ ?>
744
  background-color: <?php echo $horizontal_bg ?>;
745
- <?php }if($border_width){ ?>
746
  border-width: <?php echo $border_width ?>px;
747
  border-style: solid;
748
  <?php } ?>
749
  border-color: <?php echo $border_color ? $border_color : 'transparent'; ?>;
750
  }
751
  .heateorSssSharingBackground:hover{
752
- <?php if($horizontal_bg_hover){ ?>
753
  background-color: <?php echo $horizontal_bg_hover ?>;
754
- <?php }if($border_width_hover){ ?>
755
  border-width: <?php echo $border_width_hover ?>px;
756
  border-style: solid;
757
  <?php } ?>
@@ -763,8 +763,8 @@ defined('ABSPATH') or die("Cheating........Uh!!");
763
  if ( isset( $options['horizontal_re_providers'] ) ) {
764
  foreach ( $options['horizontal_re_providers'] as $rearrange ) {
765
  ?>
766
- <li title="<?php echo ucfirst( str_replace( '_', ' ', $rearrange ) ) ?>" id="heateor_sss_re_horizontal_<?php echo str_replace(array(' ', '.'), '_', $rearrange) ?>" >
767
- <i style="display:block;<?php echo $horSharingStyle ?>" class="<?php echo in_array($rearrange, $likeButtons) ? '' : 'heateorSssSharingBackground' ?> heateorSss<?php echo ucfirst(str_replace(array('_', '.', ' '), '', $rearrange)) ?>Background"><div class="heateorSssSharingSvg heateorSss<?php echo ucfirst(str_replace(array('_', ' ', '.'), '', $rearrange)) ?>Svg" style="<?php echo $horDeliciousRadius ?>"></div></i>
768
  <input type="hidden" name="heateor_sss[horizontal_re_providers][]" value="<?php echo $rearrange ?>">
769
  </li>
770
  <?php
@@ -785,7 +785,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
785
 
786
  <tr>
787
  <th colspan="2">
788
- <img id="heateor_sss_providers_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
789
  <label><?php _e("Select Sharing Services", 'sassy-social-share' ); ?></label>
790
  </th>
791
  </tr>
@@ -801,23 +801,23 @@ defined('ABSPATH') or die("Cheating........Uh!!");
801
  <tr>
802
  <td colspan="2">
803
  <?php
804
- foreach($likeButtons as $likeButton){
805
  ?>
806
  <div class="heateorSssHorizontalSharingProviderContainer">
807
- <input id="heateor_sss_<?php echo $likeButton ?>" type="checkbox" <?php echo isset( $options['horizontal_re_providers'] ) && in_array($likeButton, $options['horizontal_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $likeButton ?>" />
808
- <label for="heateor_sss_<?php echo $likeButton ?>"><img src="<?php echo plugins_url('../../images/sharing/'. $likeButton .'.png', __FILE__) ?>" /></label>
809
  </div>
810
  <?php
811
  }
812
  ?>
813
  <div style="clear:both"></div>
814
  <?php
815
- foreach($sharingNetworks as $sharingNetwork){
816
  ?>
817
  <div class="heateorSssHorizontalSharingProviderContainer">
818
- <input id="heateor_sss_<?php echo $sharingNetwork ?>" type="checkbox" <?php echo isset( $options['horizontal_re_providers'] ) && in_array($sharingNetwork, $options['horizontal_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $sharingNetwork ?>" />
819
- <label for="heateor_sss_<?php echo $sharingNetwork ?>"><i style="display:block;width:18px;height:18px;" class="heateorSssSharing heateorSss<?php echo str_replace(array('_', '.', ' '), '', ucfirst($sharingNetwork)) ?>Background"><ss style="display:block;" class="heateorSssSharingSvg heateorSss<?php echo str_replace(array('_', '.', ' '), '', ucfirst($sharingNetwork)) ?>Svg"></ss></i></label>
820
- <label for="heateor_sss_<?php echo $sharingNetwork ?>"><?php echo str_replace('_', ' ', ucfirst($sharingNetwork)) ?></label>
821
  </div>
822
  <?php
823
  }
@@ -827,7 +827,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
827
 
828
  <tr>
829
  <th>
830
- <img id="heateor_sss_hor_alignment_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
831
  <label for="heateor_sss_hor_alignment"><?php _e("Horizontal alignment", 'sassy-social-share' ); ?></label>
832
  </th>
833
  <td>
@@ -849,7 +849,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
849
 
850
  <tr>
851
  <th>
852
- <img id="heateor_sss_position_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
853
  <label><?php _e("Position with respect to content", 'sassy-social-share' ); ?></label>
854
  </th>
855
  <td>
@@ -870,7 +870,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
870
 
871
  <tr>
872
  <th>
873
- <img id="heateor_sss_location_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
874
  <label><?php _e("Placement", 'sassy-social-share' ); ?></label>
875
  </th>
876
  <td>
@@ -881,7 +881,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
881
  <input id="heateor_sss_page" name="heateor_sss[page]" type="checkbox" <?php echo isset( $options['page'] ) ? 'checked = "checked"' : '';?> value="1" />
882
  <label for="heateor_sss_page"><?php _e( 'Pages', 'sassy-social-share' ) ?></label><br/>
883
  <input id="heateor_sss_excerpt" name="heateor_sss[excerpt]" type="checkbox" <?php echo isset( $options['excerpt'] ) ? 'checked = "checked"' : '';?> value="1" />
884
- <label for="heateor_sss_excerpt"><?php _e( 'Excerpts (at Homepage)', 'sassy-social-share' ) ?></label><br/>
885
  <input id="heateor_sss_category" name="heateor_sss[category]" type="checkbox" <?php echo isset( $options['category'] ) ? 'checked = "checked"' : '';?> value="1" />
886
  <label for="heateor_sss_category"><?php _e( 'Category Archives', 'sassy-social-share' ) ?></label><br/>
887
  <input id="heateor_sss_archive" name="heateor_sss[archive]" type="checkbox" <?php echo isset( $options['archive'] ) ? 'checked = "checked"' : '';?> value="1" />
@@ -889,7 +889,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
889
  <?php
890
  $post_types = get_post_types( array( 'public' => true ), 'names', 'and' );
891
  $post_types = array_diff( $post_types, array( 'post', 'page' ) );
892
- if( count( $post_types ) ) {
893
  foreach ( $post_types as $post_type ) {
894
  ?>
895
  <input id="heateor_sss_<?php echo $post_type ?>" name="heateor_sss[<?php echo $post_type ?>]" type="checkbox" <?php echo isset( $options[$post_type] ) ? 'checked = "checked"' : '';?> value="1" />
@@ -898,7 +898,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
898
  }
899
  }
900
 
901
- if($this->is_bp_active){
902
  ?>
903
  <input id="heateor_sss_bp_activity" name="heateor_sss[bp_activity]" type="checkbox" <?php echo isset( $options['bp_activity'] ) ? 'checked = "checked"' : '';?> value="1" />
904
  <label for="heateor_sss_bp_activity"><?php _e( 'BuddyPress activity', 'sassy-social-share' ) ?></label><br/>
@@ -906,7 +906,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
906
  <label for="heateor_sss_bp_group"><?php _e( 'BuddyPress group (only at top of content)', 'sassy-social-share' ) ?></label><br/>
907
  <?php
908
  }
909
- if(function_exists('is_bbpress')){
910
  ?>
911
  <input id="heateor_sss_bb_forum" name="heateor_sss[bb_forum]" type="checkbox" <?php echo isset( $options['bb_forum'] ) ? 'checked = "checked"' : '';?> value="1" />
912
  <label for="heateor_sss_bb_forum"><?php _e( 'BBPress forum', 'sassy-social-share' ) ?></label>
@@ -919,7 +919,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
919
  <br/>
920
  <?php
921
  }
922
- if($this->is_woocommerce_active()){
923
  ?>
924
  <input id="heateor_sss_woocom_shop" name="heateor_sss[woocom_shop]" type="checkbox" <?php echo isset( $options['woocom_shop'] ) ? 'checked = "checked"' : '';?> value="1" />
925
  <label for="heateor_sss_woocom_shop"><?php _e( 'After individual product at WooCommerce Shop page', 'sassy-social-share' ) ?></label>
@@ -946,7 +946,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
946
 
947
  <tr>
948
  <th>
949
- <img id="heateor_sss_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
950
  <label for="heateor_sss_counts"><?php _e("Show share counts", 'sassy-social-share' ); ?></label>
951
  </th>
952
  <td>
@@ -960,7 +960,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
960
  <td colspan="2">
961
  <div>
962
  <?php _e( 'If enabled, share counts are displayed above sharing icons.', 'sassy-social-share' ) ?>
963
- <img width="550" src="<?php echo plugins_url('../../images/snaps/sss_share_count.png', __FILE__); ?>" />
964
  </div>
965
  </td>
966
  </tr>
@@ -990,7 +990,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
990
 
991
  <tr>
992
  <th>
993
- <img id="heateor_sss_total_hor_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
994
  <label for="heateor_sss_total_hor_shares"><?php _e("Show total shares", 'sassy-social-share' ); ?></label>
995
  </th>
996
  <td>
@@ -1002,14 +1002,14 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1002
  <td colspan="2">
1003
  <div>
1004
  <?php _e( 'If enabled, total shares will be displayed with sharing icons', 'sassy-social-share' ) ?>
1005
- <img width="550" src="<?php echo plugins_url('../../images/snaps/sss_horizontal_total_shares.png', __FILE__); ?>" />
1006
  </div>
1007
  </td>
1008
  </tr>
1009
 
1010
  <tr>
1011
  <th>
1012
- <img id="heateor_sss_hmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1013
  <label for="heateor_sss_hmore"><?php _e("Enable 'More' icon", 'sassy-social-share' ); ?></label>
1014
  </th>
1015
  <td>
@@ -1041,7 +1041,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1041
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1042
  <tr>
1043
  <th>
1044
- <img id="heateor_sss_vertical_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1045
  <label for="heateor_sss_vertical_enable"><?php _e("Enable Floating sharing interface", 'sassy-social-share' ); ?></label>
1046
  </th>
1047
  <td>
@@ -1053,7 +1053,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1053
  <td colspan="2">
1054
  <div>
1055
  <?php _e( 'Master control to enable floating sharing widget', 'sassy-social-share' ) ?>
1056
- <img width="550" src="<?php echo plugins_url('../../images/snaps/sss_vertical_sharing.png', __FILE__); ?>" />
1057
  </div>
1058
  </td>
1059
  </tr>
@@ -1061,7 +1061,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1061
  <tbody id="heateor_sss_vertical_sharing_options" <?php echo isset( $options['vertical_enable'] ) ? '' : 'style="display: none"'; ?>>
1062
  <tr>
1063
  <th>
1064
- <img id="heateor_sss_vertical_target_url_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1065
  <label for="heateor_sss_vertical_target_url"><?php _e("Target Url", 'sassy-social-share' ); ?></label>
1066
  </th>
1067
  <td id="heateor_sss_vertical_target_url_column">
@@ -1084,7 +1084,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1084
 
1085
  <tr>
1086
  <th>
1087
- <img id="heateor_sss_vertical_rearrange_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1088
  <label><?php _e("Rearrange icons", 'sassy-social-share' ); ?></label>
1089
  </th>
1090
  </tr>
@@ -1095,7 +1095,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1095
  <?php
1096
  $verticalSharingStyle = 'width:' . ( $options['vertical_sharing_shape'] != 'rectangle' ? $options['vertical_sharing_size'] : $options['vertical_sharing_width'] ) . 'px;height:' . $vertical_line_height . 'px;';
1097
  $verticalDeliciousRadius = '';
1098
- if($options['vertical_sharing_shape'] == 'round'){
1099
  $verticalSharingStyle .= 'border-radius:999px;';
1100
  $verticalDeliciousRadius = 'border-radius:999px;';
1101
  } elseif ( isset( $options['vertical_border_radius'] ) && $options['vertical_border_radius'] != '' ) {
@@ -1106,18 +1106,18 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1106
  </script>
1107
  <style type="text/css">
1108
  .heateorSssVerticalSharingBackground{
1109
- <?php if($vertical_bg){ ?>
1110
  background-color: <?php echo $vertical_bg ?>;
1111
- <?php }if($vertical_border_width){ ?>
1112
  border-width: <?php echo $vertical_border_width ?>px;
1113
  border-style: solid;
1114
  <?php } ?>
1115
  border-color: <?php echo $vertical_border_color ? $vertical_border_color : 'transparent'; ?>;
1116
  }
1117
  .heateorSssVerticalSharingBackground:hover{
1118
- <?php if($vertical_bg_hover){ ?>
1119
  background-color: <?php echo $vertical_bg_hover ?>;
1120
- <?php }if($vertical_border_width_hover){ ?>
1121
  border-width: <?php echo $vertical_border_width_hover ?>px;
1122
  border-style: solid;
1123
  <?php } ?>
@@ -1130,7 +1130,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1130
  foreach ( $options['vertical_re_providers'] as $rearrange ) {
1131
  ?>
1132
  <li title="<?php echo ucfirst( str_replace( '_', ' ', $rearrange ) ) ?>" id="heateor_sss_re_vertical_<?php echo str_replace( array( ' ', '.' ), '_', $rearrange) ?>" >
1133
- <i style="display:block;<?php echo $verticalSharingStyle ?>" class="<?php echo in_array($rearrange, $likeButtons) ? '' : 'heateorSssVerticalSharingBackground' ?> heateorSss<?php echo ucfirst(str_replace( array('_', '.', ' '), '', $rearrange)) ?>Background"><div class="heateorSssSharingSvg heateorSss<?php echo ucfirst(str_replace( array('_', '.', ' '), '', $rearrange ) ) ?>Svg" style="<?php echo $verticalDeliciousRadius ?>"></div></i>
1134
  <input type="hidden" name="heateor_sss[vertical_re_providers][]" value="<?php echo $rearrange ?>">
1135
  </li>
1136
  <?php
@@ -1151,7 +1151,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1151
 
1152
  <tr>
1153
  <th colspan="2">
1154
- <img id="heateor_sss_vertical_providers_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1155
  <label><?php _e("Select Sharing Services", 'sassy-social-share' ); ?></label>
1156
  </th>
1157
  </tr>
@@ -1167,23 +1167,23 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1167
  <tr>
1168
  <td colspan="2">
1169
  <?php
1170
- foreach($likeButtons as $likeButton){
1171
  ?>
1172
  <div class="heateorSssVerticalSharingProviderContainer">
1173
- <input id="heateor_sss_vertical_<?php echo $likeButton ?>" type="checkbox" <?php echo isset( $options['vertical_re_providers'] ) && in_array($likeButton, $options['vertical_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $likeButton ?>" />
1174
- <label for="heateor_sss_vertical_<?php echo $likeButton ?>"><img src="<?php echo plugins_url('../../images/sharing/'. $likeButton .'.png', __FILE__) ?>" /></label>
1175
  </div>
1176
  <?php
1177
  }
1178
  ?>
1179
  <div style="clear:both"></div>
1180
  <?php
1181
- foreach($sharingNetworks as $sharingNetwork){
1182
  ?>
1183
  <div class="heateorSssVerticalSharingProviderContainer">
1184
- <input id="heateor_sss_vertical_sharing_<?php echo $sharingNetwork ?>" type="checkbox" <?php echo isset( $options['vertical_re_providers'] ) && in_array($sharingNetwork, $options['vertical_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $sharingNetwork ?>" />
1185
- <label for="heateor_sss_vertical_sharing_<?php echo $sharingNetwork ?>"><i style="display:block;width:18px;height:18px;" class="heateorSssSharing heateorSss<?php echo str_replace(array('_', '.', ' '), '', ucfirst($sharingNetwork)) ?>Background"><ss style="display:block;" class="heateorSssSharingSvg heateorSss<?php echo str_replace(array('_', '.', ' '), '', ucfirst($sharingNetwork)) ?>Svg"></ss></i></label>
1186
- <label for="heateor_sss_vertical_sharing_<?php echo $sharingNetwork ?>"><?php echo str_replace('_', ' ', ucfirst($sharingNetwork)) ?></label>
1187
  </div>
1188
  <?php
1189
  }
@@ -1193,7 +1193,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1193
 
1194
  <tr>
1195
  <th>
1196
- <img id="heateor_sss_vertical_bg_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1197
  <label><?php _e("Background Color", 'sassy-social-share' ); ?></label>
1198
  </th>
1199
  <td>
@@ -1211,7 +1211,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1211
 
1212
  <tr>
1213
  <th>
1214
- <img id="heateor_sss_alignment_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1215
  <label for="heateor_sss_alignment"><?php _e("Horizontal alignment", 'sassy-social-share' ); ?></label>
1216
  </th>
1217
  <td>
@@ -1230,10 +1230,10 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1230
  </td>
1231
  </tr>
1232
 
1233
- <tbody id="heateor_sss_left_offset_rows" <?php echo (isset( $options['alignment'] ) && $options['alignment'] == 'left') ? '' : 'style="display: none"' ?>>
1234
  <tr>
1235
  <th>
1236
- <img id="heateor_sss_left_offset_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1237
  <label for="heateor_sss_left_offset"><?php _e("Left offset", 'sassy-social-share' ); ?></label>
1238
  </th>
1239
  <td>
@@ -1250,10 +1250,10 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1250
  </tr>
1251
  </tbody>
1252
 
1253
- <tbody id="heateor_sss_right_offset_rows" <?php echo (isset( $options['alignment'] ) && $options['alignment'] == 'right') ? '' : 'style="display: none"' ?>>
1254
  <tr>
1255
  <th>
1256
- <img id="heateor_sss_right_offset_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1257
  <label for="heateor_sss_right_offset"><?php _e("Right offset", 'sassy-social-share' ); ?></label>
1258
  </th>
1259
  <td>
@@ -1272,7 +1272,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1272
 
1273
  <tr>
1274
  <th>
1275
- <img id="heateor_sss_top_offset_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1276
  <label for="heateor_sss_top_offset"><?php _e("Top offset", 'sassy-social-share' ); ?></label>
1277
  </th>
1278
  <td>
@@ -1290,7 +1290,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1290
 
1291
  <tr>
1292
  <th>
1293
- <img id="heateor_sss_vertical_location_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1294
  <label><?php _e("Placement", 'sassy-social-share' ); ?></label>
1295
  </th>
1296
  <td>
@@ -1301,13 +1301,13 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1301
  <input id="heateor_sss_vertical_page" name="heateor_sss[vertical_page]" type="checkbox" <?php echo isset( $options['vertical_page'] ) ? 'checked = "checked"' : '';?> value="1" />
1302
  <label for="heateor_sss_vertical_page"><?php _e( 'Pages', 'sassy-social-share' ) ?></label><br/>
1303
  <input id="heateor_sss_vertical_excerpt" name="heateor_sss[vertical_excerpt]" type="checkbox" <?php echo isset( $options['vertical_excerpt'] ) ? 'checked = "checked"' : '';?> value="1" />
1304
- <label for="heateor_sss_vertical_excerpt"><?php _e( 'Excerpts (at Homepage)', 'sassy-social-share' ) ?></label><br/>
1305
  <input id="heateor_sss_vertical_category" name="heateor_sss[vertical_category]" type="checkbox" <?php echo isset( $options['vertical_category'] ) ? 'checked = "checked"' : '';?> value="1" />
1306
  <label for="heateor_sss_vertical_category"><?php _e( 'Category Archives', 'sassy-social-share' ) ?></label><br/>
1307
  <input id="heateor_sss_vertical_archive" name="heateor_sss[vertical_archive]" type="checkbox" <?php echo isset( $options['vertical_archive'] ) ? 'checked = "checked"' : '';?> value="1" />
1308
  <label for="heateor_sss_vertical_archive"><?php _e( 'Archive Pages (Category, Tag, Author or Date based pages)', 'sassy-social-share' ) ?></label><br/>
1309
  <?php
1310
- if( count( $post_types ) ) {
1311
  foreach ( $post_types as $post_type ) {
1312
  ?>
1313
  <input id="heateor_sss_vertical_<?php echo $post_type ?>" name="heateor_sss[vertical_<?php echo $post_type ?>]" type="checkbox" <?php echo isset( $options['vertical_' . $post_type] ) ? 'checked = "checked"' : '';?> value="1" />
@@ -1316,14 +1316,14 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1316
  }
1317
  }
1318
 
1319
- if($this->is_bp_active){
1320
  ?>
1321
  <input id="heateor_sss_vertical_bp_group" name="heateor_sss[vertical_bp_group]" type="checkbox" <?php echo isset( $options['vertical_bp_group'] ) ? 'checked = "checked"' : '';?> value="1" />
1322
  <label for="heateor_sss_vertical_bp_group"><?php _e( 'BuddyPress group', 'sassy-social-share' ) ?></label><br/>
1323
  <?php
1324
  }
1325
 
1326
- if(function_exists('is_bbpress')){
1327
  ?>
1328
  <br/>
1329
  <input id="heateor_sss_vertical_bb_forum" name="heateor_sss[vertical_bb_forum]" type="checkbox" <?php echo isset( $options['vertical_bb_forum'] ) ? 'checked = "checked"' : '';?> value="1" />
@@ -1347,7 +1347,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1347
 
1348
  <tr>
1349
  <th>
1350
- <img id="heateor_sss_vertical_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1351
  <label for="heateor_sss_vertical_counts"><?php _e("Show share counts", 'sassy-social-share' ); ?></label>
1352
  </th>
1353
  <td>
@@ -1361,7 +1361,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1361
  <td colspan="2">
1362
  <div>
1363
  <?php _e( 'If enabled, share counts are displayed above sharing icons.', 'sassy-social-share' ) ?>
1364
- <img width="550" src="<?php echo plugins_url('../../images/snaps/sss_vertical_sharing_count.png', __FILE__); ?>" />
1365
  </div>
1366
  </td>
1367
  </tr>
@@ -1382,7 +1382,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1382
 
1383
  <tr>
1384
  <th>
1385
- <img id="heateor_sss_total_vertical_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1386
  <label for="heateor_sss_total_vertical_shares"><?php _e("Show total shares", 'sassy-social-share' ); ?></label>
1387
  </th>
1388
  <td>
@@ -1394,14 +1394,14 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1394
  <td colspan="2">
1395
  <div>
1396
  <?php _e( 'If enabled, total shares will be displayed with sharing icons', 'sassy-social-share' ) ?>
1397
- <img width="550" src="<?php echo plugins_url('../../images/snaps/sss_vertical_total_shares.png', __FILE__); ?>" />
1398
  </div>
1399
  </td>
1400
  </tr>
1401
 
1402
  <tr>
1403
  <th>
1404
- <img id="heateor_sss_vmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1405
  <label for="heateor_sss_vmore"><?php _e("Enable 'More' icon", 'sassy-social-share' ); ?></label>
1406
  </th>
1407
  <td>
@@ -1419,7 +1419,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1419
 
1420
  <tr>
1421
  <th>
1422
- <img id="heateor_sss_mobile_sharing_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1423
  <label for="heateor_sss_mobile_sharing"><?php _e("Vertical floating bar responsiveness", 'sassy-social-share' ); ?></label>
1424
  </th>
1425
  <td>
@@ -1437,7 +1437,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1437
 
1438
  <tr>
1439
  <th>
1440
- <img id="heateor_sss_mobile_sharing_bottom_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1441
  <label for="heateor_sss_mobile_sharing_bottom"><?php _e("Horizontal floating bar responsiveness", 'sassy-social-share' ); ?></label>
1442
  </th>
1443
  <td>
@@ -1449,7 +1449,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1449
  <td colspan="2">
1450
  <div>
1451
  <?php _e( 'Stick vertical floating interface horizontally at bottom only when screen is narrower than the width specified', 'sassy-social-share' ) ?>
1452
- <img src="<?php echo plugins_url('../../images/snaps/sss_mobile_sharing.png', __FILE__); ?>" />
1453
  </div>
1454
  </td>
1455
  </tr>
@@ -1457,7 +1457,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1457
  <tbody id="heateor_sss_bottom_sharing_options" <?php echo isset( $options['bottom_mobile_sharing'] ) ? '' : 'style="display: none"'; ?>>
1458
  <tr>
1459
  <th>
1460
- <img id="heateor_sss_mobile_sharing_position_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1461
  <label for="heateor_sss_mobile_sharing_position"><?php _e("Horizontal floating bar position", 'sassy-social-share' ); ?></label>
1462
  </th>
1463
  <td>
@@ -1510,7 +1510,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1510
 
1511
  <tr>
1512
  <th>
1513
- <img id="heateor_sss_delete_options_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1514
  <label for="heateor_sss_delete_options"><?php _e("Delete all the options on plugin deletion", 'sassy-social-share' ); ?></label>
1515
  </th>
1516
  <td>
@@ -1559,12 +1559,12 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1559
 
1560
  <tr>
1561
  <th style="width:215px">
1562
- <img id="heateor_sss_clear_share_count_cache_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1563
- <input type="button" class="button-primary" value="<?php _e( 'Clear Share Counts Cache', 'sassy-social-share') ?>" onclick="heateorSssClearShareCountCache()" />
1564
  </th>
1565
  <td>
1566
- <img src="<?php echo plugins_url('../../images/ajax_loader.gif', __FILE__) ?>" id="share_count_cache_loading" style="display:none" />
1567
- <div id="heateor_sss_share_count_cache_clear_message" style="color:green;display:none;"><?php _e('Share Counts cache cleared successfully.', 'sassy-social-share' ); ?></div>
1568
  </td>
1569
  </tr>
1570
 
@@ -1585,7 +1585,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1585
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1586
  <tr>
1587
  <th>
1588
- <img id="heateor_sss_surl_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1589
  <label for="heateor_sss_surl_enable"><?php _e("Use shortlinks already installed", 'sassy-social-share' ); ?></label>
1590
  </th>
1591
  <td>
@@ -1603,7 +1603,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1603
 
1604
  <tr>
1605
  <th>
1606
- <img id="heateor_sss_bitly_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1607
  <label for="heateor_sss_bitly_enable"><?php _e("Enable bit.ly url shortener for sharing", 'sassy-social-share' ); ?></label>
1608
  </th>
1609
  <td>
@@ -1621,7 +1621,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1621
 
1622
  <tr>
1623
  <th>
1624
- <img id="heateor_sss_bitly_login_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1625
  <label for="heateor_sss_bitly_login"><?php _e("bit.ly username", 'sassy-social-share' ); ?></label>
1626
  </th>
1627
  <td>
@@ -1632,15 +1632,15 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1632
  <tr class="heateor_sss_help_content" id="heateor_sss_bitly_login_help_cont">
1633
  <td colspan="2">
1634
  <div>
1635
- <?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', 'sassy-social-share' ), 'https://bitly.com/a/your_api_key') ?>
1636
- <img width="550" src="<?php echo plugins_url('../../images/snaps/sss_bitly_username.png', __FILE__); ?>" />
1637
  </div>
1638
  </td>
1639
  </tr>
1640
 
1641
  <tr>
1642
  <th>
1643
- <img id="heateor_sss_bitly_key_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1644
  <label for="heateor_sss_bitly_key"><?php _e("bit.ly API Key", 'sassy-social-share' ); ?></label>
1645
  </th>
1646
  <td>
@@ -1651,27 +1651,27 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1651
  <tr class="heateor_sss_help_content" id="heateor_sss_bitly_key_help_cont">
1652
  <td colspan="2">
1653
  <div>
1654
- <?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', 'sassy-social-share' ), 'https://bitly.com/a/your_api_key') ?>
1655
- <img width="550" src="<?php echo plugins_url('../../images/snaps/sss_bitly_apikey.png', __FILE__); ?>" />
1656
  </div>
1657
  </td>
1658
  </tr>
1659
 
1660
  <tr>
1661
  <th>
1662
- <img id="heateor_sss_clear_shorturl_cache_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1663
- <input type="button" class="button-primary" value="<?php _e('Clear Bitly Cache', 'sassy-social-share') ?>" onclick="heateorSssClearShorturlCache()" />
1664
  </th>
1665
  <td>
1666
- <img src="<?php echo plugins_url('../../images/ajax_loader.gif', __FILE__) ?>" id="shorturl_cache_loading" style="display:none" />
1667
- <div id="heateor_sss_cache_clear_message" style="color:green;display:none;"><?php _e('ShortUrl cache cleared successfully.', 'sassy-social-share' ); ?></div>
1668
  </td>
1669
  </tr>
1670
 
1671
  <tr class="heateor_sss_help_content" id="heateor_sss_clear_shorturl_cache_help_cont">
1672
  <td colspan="2">
1673
  <div>
1674
- <?php _e('Use this to delete short urls saved in database. Handy, if urls of your website have been changed but short urls are still being generated for old urls.', 'sassy-social-share' ) ?>
1675
  </div>
1676
  </td>
1677
  </tr>
@@ -1685,7 +1685,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1685
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1686
  <tr>
1687
  <th>
1688
- <img id="heateor_sss_sc_language_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1689
  <label for="heateor_sss_sc_language"><?php _e("Language", 'sassy-social-share' ); ?></label>
1690
  </th>
1691
  <td>
@@ -1696,7 +1696,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1696
  <tr class="heateor_sss_help_content" id="heateor_sss_sc_language_help_cont">
1697
  <td colspan="2">
1698
  <div>
1699
- <?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)', 'sassy-social-share' ), '//www.facebook.com/translations/FacebookLocales.xml') ?>
1700
  </div>
1701
  </td>
1702
  </tr>
@@ -1710,7 +1710,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1710
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1711
  <tr>
1712
  <th>
1713
- <img id="heateor_sss_twitter_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1714
  <label for="heateor_sss_twitter_username"><?php _e("Twitter username (without @)", 'sassy-social-share' ); ?></label>
1715
  </th>
1716
  <td>
@@ -1722,14 +1722,14 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1722
  <td colspan="2">
1723
  <div>
1724
  <?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.', 'sassy-social-share' ) ?>
1725
- <br/><img width="550" src="<?php echo plugins_url('../../images/snaps/sss_twitter_username.png', __FILE__); ?>" />
1726
  </div>
1727
  </td>
1728
  </tr>
1729
 
1730
  <tr>
1731
  <th>
1732
- <img id="heateor_sss_buffer_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1733
  <label for="heateor_sss_buffer_username"><?php _e("Buffer username (without @)", 'sassy-social-share' ); ?></label>
1734
  </th>
1735
  <td>
@@ -1754,7 +1754,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1754
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1755
  <tr>
1756
  <th>
1757
- <img id="heateor_sss_custom_css_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url('../../images/info.png', __FILE__) ?>" />
1758
  <label for="heateor_sss_custom_css"><?php _e("Custom CSS", 'sassy-social-share' ); ?></label>
1759
  </th>
1760
  <td>
@@ -1822,7 +1822,9 @@ defined('ABSPATH') or die("Cheating........Uh!!");
1822
  <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?', 'sassy-social-share' ) ?></a></p>
1823
  <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?', 'sassy-social-share' ) ?></a></p>
1824
  <p><a href="http://support.heateor.com/how-to-hide-arrow-after-floating-sharing-bar" target="_blank"><?php _e( 'How to hide arrow after floating sharing bar?', 'sassy-social-share' ) ?></a></p>
1825
- <p><a href="http://support.heateor.com/why-are-share-counts-not-updating" target="_blank"><?php _e( 'Why Is Share Count Not Getting Updated?', 'sassy-social-share' ) ?></a></p>
 
 
1826
  </div>
1827
  </div>
1828
 
5
  *
6
  * @since 1.0.0
7
  */
8
+ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
9
  ?>
10
 
11
  <div id="fb-root"></div>
66
  <div id="heateor_sss_preview" style="cursor:pointer;float:left">
67
  <div class="heateorSssCounterPreviewInnertop">44</div>
68
  <div class="heateorSssCounterPreviewInnerleft">44</div>
69
+ <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>
70
  <div class="heateorSssCounterPreviewInnerright">44</div>
71
  <div class="heateorSssCounterPreviewInnerbottom">44</div>
72
  </div>
79
 
80
  heateorSssSharingHorizontalPreview();
81
 
82
+ jQuery( '#heateor_sss_preview' ).hover(function() {
83
+ if (heateorSssSharingBgHover && heateorSssSharingBgHover != '#3C589A' ) {
84
+ jQuery(this).css( 'backgroundColor', heateorSssSharingBgHover);
85
  }
86
+ if (jQuery( '#heateor_sss_font_color_hover' ).val().trim() ) {
87
+ jQuery(this).find( '#horizontal_svg' ).attr( 'style', jQuery(this).find( '#horizontal_svg' ).attr( 'style' ).replace(heateorSssSharingTempColor.replace( '#', '%23' ), jQuery( '#heateor_sss_font_color_hover' ).val().trim().replace( '#', '%23' ) ));
88
+ jQuery(this).css( 'color', jQuery( '#heateor_sss_font_color_hover' ).val().trim() );
89
  }
90
+ jQuery(this).css( 'borderStyle', 'solid' );
91
+ jQuery(this).css( 'borderWidth', heateorSssBorderWidthHover ? heateorSssBorderWidthHover : heateorSssBorderWidth ? heateorSssBorderWidth : '0' );
92
+ jQuery(this).css( 'borderColor', heateorSssBorderColorHover ? heateorSssBorderColorHover : 'transparent' );
93
+ },function() {
94
+ jQuery(this).css( 'backgroundColor', heateorSssSharingBg);
95
+ if (jQuery( '#heateor_sss_font_color_hover' ).val().trim() ) {
96
+ jQuery(this).find( '#horizontal_svg' ).attr( 'style', jQuery(this).find( '#horizontal_svg' ).attr( 'style' ).replace(jQuery( '#heateor_sss_font_color_hover' ).val().trim().replace( '#', '%23' ), heateorSssSharingTempColor.replace( '#', '%23' ) ));
97
+ jQuery(this).css( 'color', heateorSssSharingTempColor);
98
  }
99
+ jQuery(this).css( 'borderStyle', 'solid' );
100
+ jQuery(this).css( 'borderWidth', heateorSssBorderWidth ? heateorSssBorderWidth : heateorSssBorderWidthHover ? heateorSssBorderWidthHover : '0' );
101
+ jQuery(this).css( 'borderColor', heateorSssBorderColor ? heateorSssBorderColor : 'transparent' );
102
  });
103
  </script>
104
  </td>
112
 
113
  <tr>
114
  <th>
115
+ <img id="heateor_sss_icon_shape_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
116
  <label><?php _e("Shape", 'sassy-social-share' ); ?></label>
117
  </th>
118
  <td>
136
  <tbody id="heateor_sss_size_options" <?php echo ! isset( $options['horizontal_sharing_shape'] ) || $options['horizontal_sharing_shape'] != 'rectangle' ? '' : 'style="display: none"'; ?>>
137
  <tr>
138
  <th>
139
+ <img id="heateor_sss_icon_size_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
140
  <label><?php _e("Size (in pixels)", 'sassy-social-share' ); ?></label>
141
  </th>
142
  <td>
143
  <input style="width:50px" id="heateor_sss_icon_size" name="heateor_sss[horizontal_sharing_size]" type="text" value="<?php echo $sharing_size; ?>" />
144
+ <input id="heateor_sss_size_plus" type="button" value="+" onmouseup="tempHorSize = document.getElementById( 'heateor_sss_icon_size' ).value;heateorSssSharingHorizontalPreview()" />
145
+ <input id="heateor_sss_size_minus" type="button" value="-" onmouseup="tempHorSize = document.getElementById( 'heateor_sss_icon_size' ).value;heateorSssSharingHorizontalPreview()" />
146
  <script type="text/javascript">
147
+ heateorSssIncrement(document.getElementById( 'heateor_sss_size_plus' ), "add", document.getElementById( 'heateor_sss_icon_size' ), 300, 0.7);
148
+ heateorSssIncrement(document.getElementById( 'heateor_sss_size_minus' ), "subtract", document.getElementById( 'heateor_sss_icon_size' ), 300, 0.7);
149
  </script>
150
  </td>
151
  </tr>
162
  <tbody id="heateor_sss_rectangle_options" <?php echo isset( $options['horizontal_sharing_shape'] ) && $options['horizontal_sharing_shape'] == 'rectangle' ? '' : 'style="display: none"'; ?>>
163
  <tr>
164
  <th>
165
+ <img id="heateor_sss_icon_width_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
166
  <label><?php _e("Width (in pixels)", 'sassy-social-share' ); ?></label>
167
  </th>
168
  <td>
169
  <input style="width:50px" id="heateor_sss_icon_width" name="heateor_sss[horizontal_sharing_width]" type="text" value="<?php echo $sharing_width; ?>" />
170
+ <input id="heateor_sss_width_plus" type="button" value="+" onmouseup="tempHorWidth = document.getElementById( 'heateor_sss_icon_width' ).value;heateorSssSharingHorizontalPreview()" />
171
+ <input id="heateor_sss_width_minus" type="button" value="-" onmouseup="tempHorWidth = document.getElementById( 'heateor_sss_icon_width' ).value;heateorSssSharingHorizontalPreview()" />
172
  <script type="text/javascript">
173
+ heateorSssIncrement(document.getElementById( 'heateor_sss_width_plus' ), "add", document.getElementById( 'heateor_sss_icon_width' ), 300, 0.7);
174
+ heateorSssIncrement(document.getElementById( 'heateor_sss_width_minus' ), "subtract", document.getElementById( 'heateor_sss_icon_width' ), 300, 0.7);
175
  </script>
176
  </td>
177
  </tr>
186
 
187
  <tr>
188
  <th>
189
+ <img id="heateor_sss_icon_height_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
190
  <label><?php _e("Height (in pixels)", 'sassy-social-share' ); ?></label>
191
  </th>
192
  <td>
193
  <input style="width:50px" id="heateor_sss_icon_height" name="heateor_sss[horizontal_sharing_height]" type="text" value="<?php echo $sharing_height; ?>" />
194
+ <input id="heateor_sss_height_plus" type="button" value="+" onmouseup="tempHorHeight = document.getElementById( 'heateor_sss_icon_height' ).value;heateorSssSharingHorizontalPreview()" />
195
+ <input id="heateor_sss_height_minus" type="button" value="-" onmouseup="tempHorHeight = document.getElementById( 'heateor_sss_icon_height' ).value;heateorSssSharingHorizontalPreview()" />
196
  <script type="text/javascript">
197
+ heateorSssIncrement(document.getElementById( 'heateor_sss_height_plus' ), "add", document.getElementById( 'heateor_sss_icon_height' ), 300, 0.7);
198
+ heateorSssIncrement(document.getElementById( 'heateor_sss_height_minus' ), "subtract", document.getElementById( 'heateor_sss_icon_height' ), 300, 0.7);
199
  </script>
200
  </td>
201
  </tr>
212
  <tbody id="heateor_sss_border_radius_options" <?php echo isset( $options['horizontal_sharing_shape'] ) && $options['horizontal_sharing_shape'] != 'round' ? '' : 'style="display: none"'; ?>>
213
  <tr>
214
  <th>
215
+ <img id="heateor_sss_icon_border_radius_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
216
  <label><?php _e("Border radius (in pixels)", 'sassy-social-share' ); ?></label>
217
  </th>
218
  <td>
219
+ <input style="width:50px" id="heateor_sss_icon_border_radius" name="heateor_sss[horizontal_border_radius]" type="text" value="<?php echo $sharing_border_radius; ?>" onkeyup="heateorSssSharingBorderRadius = this.value.trim() ? this.value.trim() + 'px' : '';heateorSssUpdateSharingPreview(this.value.trim() + 'px', 'borderRadius', '0px', 'heateor_sss_preview' )" />
220
  </td>
221
  </tr>
222
 
231
 
232
  <tr>
233
  <th>
234
+ <img id="heateor_sss_font_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
235
  <label><?php _e("Logo Color", 'sassy-social-share' ); ?></label>
236
  </th>
237
  <td>
238
  <script type="text/javascript">var heateorSssSharingTempColor = '<?php echo $sharing_color ? $sharing_color : "#fff" ?>';</script>
239
+ <label for="heateor_sss_font_color_default"><?php _e("Default", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_font_color_default" onkeyup="if (this.value.trim() == '' || this.value.trim().length >= 3) { jQuery( '#horizontal_svg' ).attr( 'style', jQuery( '#horizontal_svg' ).attr( 'style' ).replace(heateorSssSharingTempColor.replace( '#', '%23' ), this.value.trim() ? this.value.trim().replace( '#', '%23' ) : '%23fff' ) ); heateorSssSharingTempColor = this.value.trim() ? this.value.trim() : '#fff';jQuery( '#heateor_sss_preview' ).css( 'color', heateorSssSharingTempColor.replace( '%23','#' ) ) }" name="heateor_sss[horizontal_font_color_default]" type="text" value="<?php echo $sharing_color; ?>" />
240
  <input name="heateor_sss[horizontal_sharing_replace_color]" type="hidden" value="<?php echo isset( $options['horizontal_sharing_replace_color'] ) ? $options['horizontal_sharing_replace_color'] : ''; ?>" />
241
  <label style="margin-left:10px" for="heateor_sss_font_color_hover"><?php _e("On Hover", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_font_color_hover" name="heateor_sss[horizontal_font_color_hover]" type="text" onkeyup="" value="<?php echo $sharing_color_hover; ?>" />
242
  <input name="heateor_sss[horizontal_sharing_replace_color_hover]" type="hidden" value="<?php echo isset( $options['horizontal_sharing_replace_color_hover'] ) ? $options['horizontal_sharing_replace_color_hover'] : ''; ?>" />
253
 
254
  <tr>
255
  <th>
256
+ <img id="heateor_sss_bg_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
257
  <label><?php _e("Background Color", 'sassy-social-share' ); ?></label>
258
  </th>
259
  <td>
260
+ <label for="heateor_sss_bg_color_default"><?php _e("Default", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_bg_color_default" name="heateor_sss[horizontal_bg_color_default]" type="text" onkeyup="heateorSssSharingBg = this.value.trim() ? this.value.trim() : '#3C589A'; heateorSssUpdateSharingPreview(this.value.trim(), 'backgroundColor', '#3C589A', 'heateor_sss_preview' )" value="<?php echo $horizontal_bg ?>" />
261
  <label style="margin-left:10px" for="heateor_sss_bg_color_hover"><?php _e("On Hover", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_bg_color_hover" name="heateor_sss[horizontal_bg_color_hover]" type="text" onkeyup="heateorSssSharingBgHover = this.value.trim() ? this.value.trim() : '#3C589A';" value="<?php echo $horizontal_bg_hover ?>" />
262
  </td>
263
  </tr>
272
 
273
  <tr>
274
  <th>
275
+ <img id="heateor_sss_border_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
276
  <label><?php _e("Border", 'sassy-social-share' ); ?></label>
277
  </th>
278
  <td>
279
  <script type="text/javascript">var heateorSssBorderWidthHover = '<?php echo $border_width_hover = isset( $options['horizontal_border_width_hover'] ) ? $options['horizontal_border_width_hover'] : ''; ?>', heateorSssBorderColorHover = '<?php echo $border_color_hover = isset( $options['horizontal_border_color_hover'] ) ? $options['horizontal_border_color_hover'] : ''; ?>'</script>
280
  <label><strong><?php _e("Default", 'sassy-social-share' ); ?></strong></label>
281
  <br/>
282
+ <label for="heateor_sss_border_width_default"><?php _e("Border Width", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_border_width_default" onkeyup="heateorSssBorderWidth = this.value.trim(); jQuery( '#heateor_sss_preview' ).css( 'borderStyle', 'solid' ); heateorSssUpdateSharingPreview(this.value.trim(), 'borderWidth', '0px', 'heateor_sss_preview' ); heateorSssSharingHorizontalPreview();" name="heateor_sss[horizontal_border_width_default]" type="text" value="<?php echo $border_width ?>" />pixel(s)
283
+ <label style="margin-left:10px" for="heateor_sss_border_color_default"><?php _e("Border Color", 'sassy-social-share' ); ?></label><input style="width: 100px" onkeyup="heateorSssBorderColor = this.value.trim(); jQuery( '#heateor_sss_preview' ).css( 'borderStyle', 'solid' ); heateorSssUpdateSharingPreview(this.value.trim(), 'borderColor', 'transparent', 'heateor_sss_preview' )" id="heateor_sss_border_color_default" name="heateor_sss[horizontal_border_color_default]" type="text" value="<?php echo $border_color ?>" />
284
  <br/><br/>
285
  <label><strong><?php _e("On Hover", 'sassy-social-share' ); ?></strong></label>
286
  <br/>
299
 
300
  <tr>
301
  <th>
302
+ <img id="heateor_sss_counter_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
303
  <label><?php _e("Counter Position", 'sassy-social-share' ); ?><br/><?php _e("(applies, if counter enabled)", 'sassy-social-share' ); ?></label>
304
  </th>
305
  <td>
306
+ <input id="heateor_sss_counter_left" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim() )" type="radio" <?php echo $counter_position == 'left' ? 'checked = "checked"' : '';?> value="left" />
307
  <label style="margin-right:10px" for="heateor_sss_counter_left"><?php _e("Left", 'sassy-social-share' ); ?></label>
308
+ <input id="heateor_sss_counter_top" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim() )" type="radio" <?php echo $counter_position == 'top' ? 'checked = "checked"' : '';?> value="top" />
309
  <label style="margin-right:10px" for="heateor_sss_counter_top"><?php _e("Top", 'sassy-social-share' ); ?></label>
310
+ <input id="heateor_sss_counter_right" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim() )" type="radio" <?php echo $counter_position == 'right' ? 'checked = "checked"' : '';?> value="right" />
311
  <label style="margin-right:10px" for="heateor_sss_counter_right"><?php _e("Right", 'sassy-social-share' ); ?></label>
312
+ <input id="heateor_sss_counter_bottom" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim() )" type="radio" <?php echo $counter_position == 'bottom' ? 'checked = "checked"' : '';?> value="bottom" />
313
  <label style="margin-right:10px" for="heateor_sss_counter_bottom"><?php _e("Bottom", 'sassy-social-share' ); ?></label><br/>
314
+ <input id="heateor_sss_counter_inner_left" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim() )" type="radio" <?php echo $counter_position == 'inner_left' ? 'checked = "checked"' : '';?> value="inner_left" />
315
  <label style="margin-right:10px" for="heateor_sss_counter_inner_left"><?php _e("Inner Left", 'sassy-social-share' ); ?></label>
316
+ <input id="heateor_sss_counter_inner_top" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim() )" type="radio" <?php echo $counter_position == 'inner_top' ? 'checked = "checked"' : '';?> value="inner_top" />
317
  <label style="margin-right:10px" for="heateor_sss_counter_inner_top"><?php _e("Inner Top", 'sassy-social-share' ); ?></label>
318
+ <input id="heateor_sss_counter_inner_right" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim() )" type="radio" <?php echo $counter_position == 'inner_right' ? 'checked = "checked"' : '';?> value="inner_right" />
319
  <label style="margin-right:10px" for="heateor_sss_counter_inner_right"><?php _e("Inner Right", 'sassy-social-share' ); ?></label>
320
+ <input id="heateor_sss_counter_inner_bottom" name="heateor_sss[horizontal_counter_position]" onclick="heateorSssCounterPreview(this.value.trim() )" type="radio" <?php echo $counter_position == 'inner_bottom' ? 'checked = "checked"' : '';?> value="inner_bottom" />
321
  <label style="margin-right:10px" for="heateor_sss_counter_inner_bottom"><?php _e("Inner Bottom", 'sassy-social-share' ); ?></label>
322
  </td>
323
  </tr>
324
+ <script type="text/javascript">heateorSssCounterPreview( '<?php echo $counter_position ?>' );</script>
325
 
326
  <tr class="heateor_sss_help_content" id="heateor_sss_counter_help_cont">
327
  <td colspan="2">
374
  <div id="heateor_sss_vertical_preview" style="cursor:pointer;float:left">
375
  <div class="heateorSssCounterVerticalPreviewInnertop">44</div>
376
  <div class="heateorSssCounterVerticalPreviewInnerleft">44</div>
377
+ <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>
378
  <div class="heateorSssCounterVerticalPreviewInnerright">44</div>
379
  <div class="heateorSssCounterVerticalPreviewInnerbottom">44</div>
380
  </div>
387
 
388
  heateorSssSharingVerticalPreview();
389
 
390
+ jQuery( '#heateor_sss_vertical_preview' ).hover(function() {
391
+ if (heateorSssVerticalSharingBgHover && heateorSssVerticalSharingBgHover != '#3C589A' ) {
392
+ jQuery(this).css( 'backgroundColor', heateorSssVerticalSharingBgHover);
393
  }
394
+ if (jQuery( '#heateor_sss_vertical_font_color_hover' ).val().trim() ) {
395
+ jQuery(this).find( '#vertical_svg' ).attr( 'style', jQuery(this).find( '#vertical_svg' ).attr( 'style' ).replace(heateorSssVerticalSharingTempColor.replace( '#', '%23' ), jQuery( '#heateor_sss_vertical_font_color_hover' ).val().trim().replace( '#', '%23' ) ));
396
+ jQuery(this).css( 'color', jQuery( '#heateor_sss_vertical_font_color_hover' ).val().trim() );
397
  }
398
+ jQuery(this).css( 'borderStyle', 'solid' );
399
+ jQuery(this).css( 'borderWidth', heateorSssVerticalBorderWidthHover ? heateorSssVerticalBorderWidthHover : heateorSssVerticalBorderWidth ? heateorSssVerticalBorderWidth : '0' );
400
+ jQuery(this).css( 'borderColor', heateorSssVerticalBorderColorHover ? heateorSssVerticalBorderColorHover : 'transparent' );
401
+ },function() {
402
+ jQuery(this).css( 'backgroundColor', heateorSssVerticalSharingBg);
403
+ if (jQuery( '#heateor_sss_vertical_font_color_hover' ).val().trim() ) {
404
+ jQuery(this).find( '#vertical_svg' ).attr( 'style', jQuery(this).find( '#vertical_svg' ).attr( 'style' ).replace(jQuery( '#heateor_sss_vertical_font_color_hover' ).val().trim().replace( '#', '%23' ), heateorSssVerticalSharingTempColor.replace( '#', '%23' ) ));
405
+ jQuery(this).css( 'color', heateorSssVerticalSharingTempColor);
406
  }
407
+ jQuery(this).css( 'borderStyle', 'solid' );
408
+ jQuery(this).css( 'borderWidth', heateorSssVerticalBorderWidth ? heateorSssVerticalBorderWidth : heateorSssVerticalBorderWidthHover ? heateorSssVerticalBorderWidthHover : '0' );
409
+ jQuery(this).css( 'borderColor', heateorSssVerticalBorderColor ? heateorSssVerticalBorderColor : 'transparent' );
410
  });
411
  </script>
412
  </td>
420
 
421
  <tr>
422
  <th>
423
+ <img id="heateor_sss_vertical_sharing_icon_shape_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
424
  <label><?php _e("Shape", 'sassy-social-share' ); ?></label>
425
  </th>
426
  <td>
444
  <tbody id="heateor_sss_vertical_size_options" <?php echo ! isset( $options['vertical_sharing_shape'] ) || $options['vertical_sharing_shape'] != 'rectangle' ? '' : 'style="display: none"'; ?>>
445
  <tr>
446
  <th>
447
+ <img id="heateor_sss_vertical_sharing_icon_size_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
448
  <label><?php _e("Size (in pixels)", 'sassy-social-share' ); ?></label>
449
  </th>
450
  <td>
451
  <input style="width:50px" id="heateor_sss_vertical_sharing_icon_size" name="heateor_sss[vertical_sharing_size]" type="text" value="<?php echo $vertical_sharing_size; ?>" />
452
+ <input id="heateor_sss_vertical_sharing_size_plus" type="button" value="+" onmouseup="tempVerticalSize = document.getElementById( 'heateor_sss_vertical_sharing_icon_size' ).value;heateorSssSharingVerticalPreview()" />
453
+ <input id="heateor_sss_vertical_sharing_size_minus" type="button" value="-" onmouseup="tempVerticalSize = document.getElementById( 'heateor_sss_vertical_sharing_icon_size' ).value;heateorSssSharingVerticalPreview()" />
454
  <script type="text/javascript">
455
+ heateorSssIncrement(document.getElementById( 'heateor_sss_vertical_sharing_size_plus' ), "add", document.getElementById( 'heateor_sss_vertical_sharing_icon_size' ), 300, 0.7);
456
+ heateorSssIncrement(document.getElementById( 'heateor_sss_vertical_sharing_size_minus' ), "subtract", document.getElementById( 'heateor_sss_vertical_sharing_icon_size' ), 300, 0.7);
457
  </script>
458
  </td>
459
  </tr>
470
  <tbody id="heateor_sss_vertical_rectangle_options" <?php echo isset( $options['vertical_sharing_shape'] ) && $options['vertical_sharing_shape'] == 'rectangle' ? '' : 'style="display: none"'; ?>>
471
  <tr>
472
  <th>
473
+ <img id="heateor_sss_vertical_icon_width_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
474
  <label><?php _e("Width (in pixels)", 'sassy-social-share' ); ?></label>
475
  </th>
476
  <td>
477
  <input style="width:50px" id="heateor_sss_vertical_icon_width" name="heateor_sss[vertical_sharing_width]" type="text" value="<?php echo $vertical_sharing_width; ?>" />
478
+ <input id="heateor_sss_vertical_width_plus" type="button" value="+" onmouseup="tempVerticalWidth = document.getElementById( 'heateor_sss_vertical_icon_width' ).value;heateorSssSharingVerticalPreview()" />
479
+ <input id="heateor_sss_vertical_width_minus" type="button" value="-" onmouseup="tempVerticalWidth = document.getElementById( 'heateor_sss_vertical_icon_width' ).value;heateorSssSharingVerticalPreview()" />
480
  <script type="text/javascript">
481
+ heateorSssIncrement(document.getElementById( 'heateor_sss_vertical_width_plus' ), "add", document.getElementById( 'heateor_sss_vertical_icon_width' ), 300, 0.7);
482
+ heateorSssIncrement(document.getElementById( 'heateor_sss_vertical_width_minus' ), "subtract", document.getElementById( 'heateor_sss_vertical_icon_width' ), 300, 0.7);
483
  </script>
484
  </td>
485
  </tr>
494
 
495
  <tr>
496
  <th>
497
+ <img id="heateor_sss_vertical_icon_height_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
498
  <label><?php _e("Height (in pixels)", 'sassy-social-share' ); ?></label>
499
  </th>
500
  <td>
501
  <input style="width:50px" id="heateor_sss_vertical_icon_height" name="heateor_sss[vertical_sharing_height]" type="text" value="<?php echo $vertical_sharing_height; ?>" />
502
+ <input id="heateor_sss_vertical_height_plus" type="button" value="+" onmouseup="tempVerticalHeight = document.getElementById( 'heateor_sss_vertical_icon_height' ).value;heateorSssSharingVerticalPreview()" />
503
+ <input id="heateor_sss_vertical_height_minus" type="button" value="-" onmouseup="tempVerticalHeight = document.getElementById( 'heateor_sss_vertical_icon_height' ).value;heateorSssSharingVerticalPreview()" />
504
  <script type="text/javascript">
505
+ heateorSssIncrement(document.getElementById( 'heateor_sss_vertical_height_plus' ), "add", document.getElementById( 'heateor_sss_vertical_icon_height' ), 300, 0.7);
506
+ heateorSssIncrement(document.getElementById( 'heateor_sss_vertical_height_minus' ), "subtract", document.getElementById( 'heateor_sss_vertical_icon_height' ), 300, 0.7);
507
  </script>
508
  </td>
509
  </tr>
520
  <tbody id="heateor_sss_vertical_border_radius_options" <?php echo isset( $options['vertical_sharing_shape'] ) && $options['vertical_sharing_shape'] != 'round' ? '' : 'style="display: none"'; ?>>
521
  <tr>
522
  <th>
523
+ <img id="heateor_sss_vertical_icon_border_radius_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
524
  <label><?php _e("Border radius (in pixels)", 'sassy-social-share' ); ?></label>
525
  </th>
526
  <td>
527
+ <input style="width:50px" id="heateor_sss_vertical_icon_border_radius" name="heateor_sss[vertical_border_radius]" type="text" value="<?php echo $vertical_sharing_border_radius; ?>" onkeyup="heateorSssVerticalBorderRadius = this.value.trim() ? this.value.trim() + 'px' : '';heateorSssUpdateSharingPreview(this.value.trim() + 'px', 'borderRadius', '0px', 'heateor_sss_vertical_preview' )" />
528
  </td>
529
  </tr>
530
 
539
 
540
  <tr>
541
  <th>
542
+ <img id="heateor_sss_vertical_font_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
543
  <label><?php _e("Logo Color", 'sassy-social-share' ); ?></label>
544
  </th>
545
  <td>
546
  <script type="text/javascript">var heateorSssVerticalSharingTempColor = '<?php echo $vertical_sharing_color ? $vertical_sharing_color : "#fff" ?>';</script>
547
+ <label for="heateor_sss_vertical_font_color_default"><?php _e("Default", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_vertical_font_color_default" name="heateor_sss[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(heateorSssVerticalSharingTempColor.replace( '#', '%23' ), this.value.trim() ? this.value.trim().replace( '#', '%23' ) : '%23fff' ) ); heateorSssVerticalSharingTempColor = this.value.trim() ? this.value.trim() : '#fff';jQuery( '#heateor_sss_vertical_preview' ).css( 'color', heateorSssVerticalSharingTempColor.replace( '%23','#' ) ) }" type="text" value="<?php echo $vertical_sharing_color ?>" />
548
  <input name="heateor_sss[vertical_sharing_replace_color]" type="hidden" value="<?php echo isset( $options['vertical_sharing_replace_color'] ) ? $options['vertical_sharing_replace_color'] : ''; ?>" />
549
  <label style="margin-left:10px" for="heateor_sss_vertical_font_color_hover"><?php _e("On Hover", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_vertical_font_color_hover" name="heateor_sss[vertical_font_color_hover]" type="text" value="<?php echo $vertical_sharing_color_hover; ?>" />
550
  <input name="heateor_sss[vertical_sharing_replace_color_hover]" type="hidden" value="<?php echo isset( $options['vertical_sharing_replace_color_hover'] ) ? $options['vertical_sharing_replace_color_hover'] : ''; ?>" />
561
 
562
  <tr>
563
  <th>
564
+ <img id="heateor_sss_vertical_icon_bg_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
565
  <label><?php _e("Background Color", 'sassy-social-share' ); ?></label>
566
  </th>
567
  <td>
568
+ <label for="heateor_sss_vertical_icon_bg_color_default"><?php _e("Default", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_vertical_icon_bg_color_default" name="heateor_sss[vertical_bg_color_default]" type="text" onkeyup="heateorSssVerticalSharingBg = this.value.trim() ? this.value.trim() : '#3C589A'; heateorSssUpdateSharingPreview(this.value.trim(), 'backgroundColor', '#3C589A', 'heateor_sss_vertical_preview' )" value="<?php echo $vertical_bg ?>" />
569
  <label style="margin-left:10px" for="heateor_sss_vertical_bg_color_hover"><?php _e("On Hover", 'sassy-social-share' ); ?></label><input style="width: 100px" id="heateor_sss_vertical_bg_color_hover" name="heateor_sss[vertical_bg_color_hover]" type="text" onkeyup="heateorSssVerticalSharingBgHover = this.value.trim() ? this.value.trim() : '#3C589A';" value="<?php echo $vertical_bg_hover ?>" />
570
  </td>
571
  </tr>
580
 
581
  <tr>
582
  <th>
583
+ <img id="heateor_sss_vertical_border_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
584
  <label><?php _e("Border", 'sassy-social-share' ); ?></label>
585
  </th>
586
  <td>
587
  <label><strong><?php _e("Default", 'sassy-social-share' ); ?></strong></label>
588
  <br/>
589
+ <label for="heateor_sss_vertical_border_width_default"><?php _e("Border Width", 'sassy-social-share' ); ?></label><input style="width: 100px" onkeyup="heateorSssVerticalBorderWidth = this.value.trim(); jQuery( '#heateor_sss_vertical_preview' ).css( 'borderStyle', 'solid' ); heateorSssUpdateSharingPreview(this.value.trim(), 'borderWidth', '0px', 'heateor_sss_vertical_preview' ); heateorSssSharingVerticalPreview();" id="heateor_sss_vertical_border_width_default" name="heateor_sss[vertical_border_width_default]" type="text" value="<?php echo $vertical_border_width ?>" />pixel(s)
590
+ <label style="margin-left:10px" for="heateor_sss_vertical_border_color_default"><?php _e("Border Color", 'sassy-social-share' ); ?></label><input onkeyup="heateorSssVerticalBorderColor = this.value.trim(); jQuery( '#heateor_sss_vertical_preview' ).css( 'borderStyle', 'solid' ); heateorSssUpdateSharingPreview(this.value.trim(), 'borderColor', 'transparent', 'heateor_sss_vertical_preview' )" style="width: 100px" id="heateor_sss_vertical_border_color_default" name="heateor_sss[vertical_border_color_default]" type="text" value="<?php echo $vertical_border_color = isset( $options['vertical_border_color_default'] ) ? $options['vertical_border_color_default'] : ''; ?>" />
591
  <br/><br/>
592
  <label><strong><?php _e("On Hover", 'sassy-social-share' ); ?></strong></label>
593
  <br/>
606
 
607
  <tr>
608
  <th>
609
+ <img id="heateor_sss_vertical_counter_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
610
  <label><?php _e("Counter Position", 'sassy-social-share' ); ?><br/><?php _e("(applies, if counter enabled)", 'sassy-social-share' ); ?></label>
611
  </th>
612
  <td>
613
+ <input id="heateor_sss_vertical_counter_left" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim() )" type="radio" <?php echo $vertical_counter_position == 'left' ? 'checked = "checked"' : '';?> value="left" />
614
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_left"><?php _e("Left", 'sassy-social-share' ); ?></label>
615
+ <input id="heateor_sss_vertical_counter_top" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim() )" type="radio" <?php echo $vertical_counter_position == 'top' ? 'checked = "checked"' : '';?> value="top" />
616
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_top"><?php _e("Top", 'sassy-social-share' ); ?></label>
617
+ <input id="heateor_sss_vertical_counter_right" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim() )" type="radio" <?php echo $vertical_counter_position == 'right' ? 'checked = "checked"' : '';?> value="right" />
618
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_right"><?php _e("Right", 'sassy-social-share' ); ?></label>
619
+ <input id="heateor_sss_vertical_counter_bottom" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim() )" type="radio" <?php echo $vertical_counter_position == 'bottom' ? 'checked = "checked"' : '';?> value="bottom" />
620
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_bottom"><?php _e("Bottom", 'sassy-social-share' ); ?></label><br/>
621
+ <input id="heateor_sss_vertical_counter_inner_left" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim() )" type="radio" <?php echo $vertical_counter_position == 'inner_left' ? 'checked = "checked"' : '';?> value="inner_left" />
622
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_inner_left"><?php _e("Inner Left", 'sassy-social-share' ); ?></label>
623
+ <input id="heateor_sss_vertical_counter_inner_top" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim() )" type="radio" <?php echo $vertical_counter_position == 'inner_top' ? 'checked = "checked"' : '';?> value="inner_top" />
624
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_inner_top"><?php _e("Inner Top", 'sassy-social-share' ); ?></label>
625
+ <input id="heateor_sss_vertical_counter_inner_right" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim() )" type="radio" <?php echo $vertical_counter_position == 'inner_right' ? 'checked = "checked"' : '';?> value="inner_right" />
626
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_inner_right"><?php _e("Inner Right", 'sassy-social-share' ); ?></label>
627
+ <input id="heateor_sss_vertical_counter_inner_bottom" name="heateor_sss[vertical_counter_position]" onclick="heateorSssVerticalCounterPreview(this.value.trim() )" type="radio" <?php echo $vertical_counter_position == 'inner_bottom' ? 'checked = "checked"' : '';?> value="inner_bottom" />
628
  <label style="margin-right:10px" for="heateor_sss_vertical_counter_inner_bottom"><?php _e("Inner Bottom", 'sassy-social-share' ); ?></label>
629
  </td>
630
  </tr>
631
+ <script type="text/javascript">heateorSssVerticalCounterPreview( '<?php echo $vertical_counter_position ?>' );</script>
632
 
633
  <tr class="heateor_sss_help_content" id="heateor_sss_vertical_counter_help_cont">
634
  <td colspan="2">
653
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
654
  <tr>
655
  <th>
656
+ <img id="heateor_sss_horizontal_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
657
  <label for="heateor_sss_horizontal_enable"><?php _e("Enable Standard sharing interface", 'sassy-social-share' ); ?></label>
658
  </th>
659
  <td>
665
  <td colspan="2">
666
  <div>
667
  <?php _e( 'Master control to enable standard sharing', 'sassy-social-share' ) ?>
668
+ <img width="550" src="<?php echo plugins_url( '../../images/snaps/sss_horizontal_sharing.png', __FILE__ ); ?>" />
669
  </div>
670
  </td>
671
  </tr>
673
  <tbody id="heateor_sss_horizontal_sharing_options" <?php echo isset( $options['hor_enable'] ) ? '' : 'style="display: none"'; ?>>
674
  <tr>
675
  <th>
676
+ <img id="heateor_sss_horizontal_target_url_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
677
  <label for="heateor_sss_horizontal_target_url"><?php _e("Target Url", 'sassy-social-share' ); ?></label>
678
  </th>
679
  <td id="heateor_sss_target_url_column">
696
 
697
  <tr>
698
  <th>
699
+ <img id="heateor_sss_title_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
700
  <label for="heateor_sss_fblogin_title"><?php _e("Title", 'sassy-social-share' ); ?></label>
701
  </th>
702
  <td>
712
  </td>
713
  </tr>
714
  <?php
715
+ $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' );
716
+ $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' );
717
  ?>
718
 
719
  <tr>
720
  <th>
721
+ <img id="heateor_sss_rearrange_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
722
  <label><?php _e("Rearrange icons", 'sassy-social-share' ); ?></label>
723
  </th>
724
  </tr>
729
  <?php
730
  $horSharingStyle = 'width:' . ( $options['horizontal_sharing_shape'] != 'rectangle' ? $options['horizontal_sharing_size'] : $options['horizontal_sharing_width'] ) . 'px;height:' . $line_height . 'px;';
731
  $horDeliciousRadius = '';
732
+ if ( $options['horizontal_sharing_shape'] == 'round' ) {
733
  $horSharingStyle .= 'border-radius:999px;';
734
  $horDeliciousRadius = 'border-radius:999px;';
735
  } elseif ( isset( $options['horizontal_border_radius'] ) && $options['horizontal_border_radius'] != '' ) {
736
  $horSharingStyle .= 'border-radius:' . $options['horizontal_border_radius'] . 'px;';
737
  }
738
  ?>
739
+ var heateorSssHorSharingStyle = '<?php echo $horSharingStyle ?>', heateorSssHorDeliciousRadius = '<?php echo $horDeliciousRadius ?>', heateorSssLikeButtons = ["<?php echo implode( '","', $likeButtons) ?>"];
740
  </script>
741
  <style type="text/css">
742
  .heateorSssSharingBackground{
743
+ <?php if ( $horizontal_bg) { ?>
744
  background-color: <?php echo $horizontal_bg ?>;
745
+ <?php }if ( $border_width) { ?>
746
  border-width: <?php echo $border_width ?>px;
747
  border-style: solid;
748
  <?php } ?>
749
  border-color: <?php echo $border_color ? $border_color : 'transparent'; ?>;
750
  }
751
  .heateorSssSharingBackground:hover{
752
+ <?php if ( $horizontal_bg_hover) { ?>
753
  background-color: <?php echo $horizontal_bg_hover ?>;
754
+ <?php }if ( $border_width_hover) { ?>
755
  border-width: <?php echo $border_width_hover ?>px;
756
  border-style: solid;
757
  <?php } ?>
763
  if ( isset( $options['horizontal_re_providers'] ) ) {
764
  foreach ( $options['horizontal_re_providers'] as $rearrange ) {
765
  ?>
766
+ <li title="<?php echo ucfirst( str_replace( '_', ' ', $rearrange ) ) ?>" id="heateor_sss_re_horizontal_<?php echo str_replace(array( ' ', '.' ), '_', $rearrange) ?>" >
767
+ <i style="display:block;<?php echo $horSharingStyle ?>" class="<?php echo in_array( $rearrange, $likeButtons) ? '' : 'heateorSssSharingBackground' ?> heateorSss<?php echo ucfirst(str_replace(array( '_', '.', ' ' ), '', $rearrange) ) ?>Background"><div class="heateorSssSharingSvg heateorSss<?php echo ucfirst(str_replace(array( '_', ' ', '.' ), '', $rearrange) ) ?>Svg" style="<?php echo $horDeliciousRadius ?>"></div></i>
768
  <input type="hidden" name="heateor_sss[horizontal_re_providers][]" value="<?php echo $rearrange ?>">
769
  </li>
770
  <?php
785
 
786
  <tr>
787
  <th colspan="2">
788
+ <img id="heateor_sss_providers_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
789
  <label><?php _e("Select Sharing Services", 'sassy-social-share' ); ?></label>
790
  </th>
791
  </tr>
801
  <tr>
802
  <td colspan="2">
803
  <?php
804
+ foreach( $likeButtons as $likeButton) {
805
  ?>
806
  <div class="heateorSssHorizontalSharingProviderContainer">
807
+ <input id="heateor_sss_<?php echo $likeButton ?>" type="checkbox" <?php echo isset( $options['horizontal_re_providers'] ) && in_array( $likeButton, $options['horizontal_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $likeButton ?>" />
808
+ <label for="heateor_sss_<?php echo $likeButton ?>"><img src="<?php echo plugins_url( '../../images/sharing/'. $likeButton .'.png', __FILE__ ) ?>" /></label>
809
  </div>
810
  <?php
811
  }
812
  ?>
813
  <div style="clear:both"></div>
814
  <?php
815
+ foreach( $sharingNetworks as $sharingNetwork) {
816
  ?>
817
  <div class="heateorSssHorizontalSharingProviderContainer">
818
+ <input id="heateor_sss_<?php echo $sharingNetwork ?>" type="checkbox" <?php echo isset( $options['horizontal_re_providers'] ) && in_array( $sharingNetwork, $options['horizontal_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $sharingNetwork ?>" />
819
+ <label for="heateor_sss_<?php echo $sharingNetwork ?>"><i style="display:block;width:18px;height:18px;" class="heateorSssSharing heateorSss<?php echo str_replace(array( '_', '.', ' ' ), '', ucfirst( $sharingNetwork) ) ?>Background"><ss style="display:block;" class="heateorSssSharingSvg heateorSss<?php echo str_replace(array( '_', '.', ' ' ), '', ucfirst( $sharingNetwork) ) ?>Svg"></ss></i></label>
820
+ <label for="heateor_sss_<?php echo $sharingNetwork ?>"><?php echo str_replace( '_', ' ', ucfirst( $sharingNetwork) ) ?></label>
821
  </div>
822
  <?php
823
  }
827
 
828
  <tr>
829
  <th>
830
+ <img id="heateor_sss_hor_alignment_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
831
  <label for="heateor_sss_hor_alignment"><?php _e("Horizontal alignment", 'sassy-social-share' ); ?></label>
832
  </th>
833
  <td>
849
 
850
  <tr>
851
  <th>
852
+ <img id="heateor_sss_position_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
853
  <label><?php _e("Position with respect to content", 'sassy-social-share' ); ?></label>
854
  </th>
855
  <td>
870
 
871
  <tr>
872
  <th>
873
+ <img id="heateor_sss_location_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
874
  <label><?php _e("Placement", 'sassy-social-share' ); ?></label>
875
  </th>
876
  <td>
881
  <input id="heateor_sss_page" name="heateor_sss[page]" type="checkbox" <?php echo isset( $options['page'] ) ? 'checked = "checked"' : '';?> value="1" />
882
  <label for="heateor_sss_page"><?php _e( 'Pages', 'sassy-social-share' ) ?></label><br/>
883
  <input id="heateor_sss_excerpt" name="heateor_sss[excerpt]" type="checkbox" <?php echo isset( $options['excerpt'] ) ? 'checked = "checked"' : '';?> value="1" />
884
+ <label for="heateor_sss_excerpt"><?php _e( 'Excerpts and Posts page', 'sassy-social-share' ) ?></label><br/>
885
  <input id="heateor_sss_category" name="heateor_sss[category]" type="checkbox" <?php echo isset( $options['category'] ) ? 'checked = "checked"' : '';?> value="1" />
886
  <label for="heateor_sss_category"><?php _e( 'Category Archives', 'sassy-social-share' ) ?></label><br/>
887
  <input id="heateor_sss_archive" name="heateor_sss[archive]" type="checkbox" <?php echo isset( $options['archive'] ) ? 'checked = "checked"' : '';?> value="1" />
889
  <?php
890
  $post_types = get_post_types( array( 'public' => true ), 'names', 'and' );
891
  $post_types = array_diff( $post_types, array( 'post', 'page' ) );
892
+ if ( count( $post_types ) ) {
893
  foreach ( $post_types as $post_type ) {
894
  ?>
895
  <input id="heateor_sss_<?php echo $post_type ?>" name="heateor_sss[<?php echo $post_type ?>]" type="checkbox" <?php echo isset( $options[$post_type] ) ? 'checked = "checked"' : '';?> value="1" />
898
  }
899
  }
900
 
901
+ if ( $this->is_bp_active) {
902
  ?>
903
  <input id="heateor_sss_bp_activity" name="heateor_sss[bp_activity]" type="checkbox" <?php echo isset( $options['bp_activity'] ) ? 'checked = "checked"' : '';?> value="1" />
904
  <label for="heateor_sss_bp_activity"><?php _e( 'BuddyPress activity', 'sassy-social-share' ) ?></label><br/>
906
  <label for="heateor_sss_bp_group"><?php _e( 'BuddyPress group (only at top of content)', 'sassy-social-share' ) ?></label><br/>
907
  <?php
908
  }
909
+ if (function_exists( 'is_bbpress' ) ) {
910
  ?>
911
  <input id="heateor_sss_bb_forum" name="heateor_sss[bb_forum]" type="checkbox" <?php echo isset( $options['bb_forum'] ) ? 'checked = "checked"' : '';?> value="1" />
912
  <label for="heateor_sss_bb_forum"><?php _e( 'BBPress forum', 'sassy-social-share' ) ?></label>
919
  <br/>
920
  <?php
921
  }
922
+ if ( $this->is_woocommerce_active() ) {
923
  ?>
924
  <input id="heateor_sss_woocom_shop" name="heateor_sss[woocom_shop]" type="checkbox" <?php echo isset( $options['woocom_shop'] ) ? 'checked = "checked"' : '';?> value="1" />
925
  <label for="heateor_sss_woocom_shop"><?php _e( 'After individual product at WooCommerce Shop page', 'sassy-social-share' ) ?></label>
946
 
947
  <tr>
948
  <th>
949
+ <img id="heateor_sss_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
950
  <label for="heateor_sss_counts"><?php _e("Show share counts", 'sassy-social-share' ); ?></label>
951
  </th>
952
  <td>
960
  <td colspan="2">
961
  <div>
962
  <?php _e( 'If enabled, share counts are displayed above sharing icons.', 'sassy-social-share' ) ?>
963
+ <img width="550" src="<?php echo plugins_url( '../../images/snaps/sss_share_count.png', __FILE__ ); ?>" />
964
  </div>
965
  </td>
966
  </tr>
990
 
991
  <tr>
992
  <th>
993
+ <img id="heateor_sss_total_hor_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
994
  <label for="heateor_sss_total_hor_shares"><?php _e("Show total shares", 'sassy-social-share' ); ?></label>
995
  </th>
996
  <td>
1002
  <td colspan="2">
1003
  <div>
1004
  <?php _e( 'If enabled, total shares will be displayed with sharing icons', 'sassy-social-share' ) ?>
1005
+ <img width="550" src="<?php echo plugins_url( '../../images/snaps/sss_horizontal_total_shares.png', __FILE__ ); ?>" />
1006
  </div>
1007
  </td>
1008
  </tr>
1009
 
1010
  <tr>
1011
  <th>
1012
+ <img id="heateor_sss_hmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1013
  <label for="heateor_sss_hmore"><?php _e("Enable 'More' icon", 'sassy-social-share' ); ?></label>
1014
  </th>
1015
  <td>
1041
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1042
  <tr>
1043
  <th>
1044
+ <img id="heateor_sss_vertical_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1045
  <label for="heateor_sss_vertical_enable"><?php _e("Enable Floating sharing interface", 'sassy-social-share' ); ?></label>
1046
  </th>
1047
  <td>
1053
  <td colspan="2">
1054
  <div>
1055
  <?php _e( 'Master control to enable floating sharing widget', 'sassy-social-share' ) ?>
1056
+ <img width="550" src="<?php echo plugins_url( '../../images/snaps/sss_vertical_sharing.png', __FILE__ ); ?>" />
1057
  </div>
1058
  </td>
1059
  </tr>
1061
  <tbody id="heateor_sss_vertical_sharing_options" <?php echo isset( $options['vertical_enable'] ) ? '' : 'style="display: none"'; ?>>
1062
  <tr>
1063
  <th>
1064
+ <img id="heateor_sss_vertical_target_url_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1065
  <label for="heateor_sss_vertical_target_url"><?php _e("Target Url", 'sassy-social-share' ); ?></label>
1066
  </th>
1067
  <td id="heateor_sss_vertical_target_url_column">
1084
 
1085
  <tr>
1086
  <th>
1087
+ <img id="heateor_sss_vertical_rearrange_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1088
  <label><?php _e("Rearrange icons", 'sassy-social-share' ); ?></label>
1089
  </th>
1090
  </tr>
1095
  <?php
1096
  $verticalSharingStyle = 'width:' . ( $options['vertical_sharing_shape'] != 'rectangle' ? $options['vertical_sharing_size'] : $options['vertical_sharing_width'] ) . 'px;height:' . $vertical_line_height . 'px;';
1097
  $verticalDeliciousRadius = '';
1098
+ if ( $options['vertical_sharing_shape'] == 'round' ) {
1099
  $verticalSharingStyle .= 'border-radius:999px;';
1100
  $verticalDeliciousRadius = 'border-radius:999px;';
1101
  } elseif ( isset( $options['vertical_border_radius'] ) && $options['vertical_border_radius'] != '' ) {
1106
  </script>
1107
  <style type="text/css">
1108
  .heateorSssVerticalSharingBackground{
1109
+ <?php if ( $vertical_bg) { ?>
1110
  background-color: <?php echo $vertical_bg ?>;
1111
+ <?php }if ( $vertical_border_width) { ?>
1112
  border-width: <?php echo $vertical_border_width ?>px;
1113
  border-style: solid;
1114
  <?php } ?>
1115
  border-color: <?php echo $vertical_border_color ? $vertical_border_color : 'transparent'; ?>;
1116
  }
1117
  .heateorSssVerticalSharingBackground:hover{
1118
+ <?php if ( $vertical_bg_hover) { ?>
1119
  background-color: <?php echo $vertical_bg_hover ?>;
1120
+ <?php }if ( $vertical_border_width_hover) { ?>
1121
  border-width: <?php echo $vertical_border_width_hover ?>px;
1122
  border-style: solid;
1123
  <?php } ?>
1130
  foreach ( $options['vertical_re_providers'] as $rearrange ) {
1131
  ?>
1132
  <li title="<?php echo ucfirst( str_replace( '_', ' ', $rearrange ) ) ?>" id="heateor_sss_re_vertical_<?php echo str_replace( array( ' ', '.' ), '_', $rearrange) ?>" >
1133
+ <i style="display:block;<?php echo $verticalSharingStyle ?>" class="<?php echo in_array( $rearrange, $likeButtons) ? '' : 'heateorSssVerticalSharingBackground' ?> heateorSss<?php echo ucfirst(str_replace( array( '_', '.', ' ' ), '', $rearrange) ) ?>Background"><div class="heateorSssSharingSvg heateorSss<?php echo ucfirst(str_replace( array( '_', '.', ' ' ), '', $rearrange ) ) ?>Svg" style="<?php echo $verticalDeliciousRadius ?>"></div></i>
1134
  <input type="hidden" name="heateor_sss[vertical_re_providers][]" value="<?php echo $rearrange ?>">
1135
  </li>
1136
  <?php
1151
 
1152
  <tr>
1153
  <th colspan="2">
1154
+ <img id="heateor_sss_vertical_providers_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1155
  <label><?php _e("Select Sharing Services", 'sassy-social-share' ); ?></label>
1156
  </th>
1157
  </tr>
1167
  <tr>
1168
  <td colspan="2">
1169
  <?php
1170
+ foreach( $likeButtons as $likeButton) {
1171
  ?>
1172
  <div class="heateorSssVerticalSharingProviderContainer">
1173
+ <input id="heateor_sss_vertical_<?php echo $likeButton ?>" type="checkbox" <?php echo isset( $options['vertical_re_providers'] ) && in_array( $likeButton, $options['vertical_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $likeButton ?>" />
1174
+ <label for="heateor_sss_vertical_<?php echo $likeButton ?>"><img src="<?php echo plugins_url( '../../images/sharing/'. $likeButton .'.png', __FILE__ ) ?>" /></label>
1175
  </div>
1176
  <?php
1177
  }
1178
  ?>
1179
  <div style="clear:both"></div>
1180
  <?php
1181
+ foreach( $sharingNetworks as $sharingNetwork) {
1182
  ?>
1183
  <div class="heateorSssVerticalSharingProviderContainer">
1184
+ <input id="heateor_sss_vertical_sharing_<?php echo $sharingNetwork ?>" type="checkbox" <?php echo isset( $options['vertical_re_providers'] ) && in_array( $sharingNetwork, $options['vertical_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $sharingNetwork ?>" />
1185
+ <label for="heateor_sss_vertical_sharing_<?php echo $sharingNetwork ?>"><i style="display:block;width:18px;height:18px;" class="heateorSssSharing heateorSss<?php echo str_replace(array( '_', '.', ' ' ), '', ucfirst( $sharingNetwork) ) ?>Background"><ss style="display:block;" class="heateorSssSharingSvg heateorSss<?php echo str_replace(array( '_', '.', ' ' ), '', ucfirst( $sharingNetwork) ) ?>Svg"></ss></i></label>
1186
+ <label for="heateor_sss_vertical_sharing_<?php echo $sharingNetwork ?>"><?php echo str_replace( '_', ' ', ucfirst( $sharingNetwork) ) ?></label>
1187
  </div>
1188
  <?php
1189
  }
1193
 
1194
  <tr>
1195
  <th>
1196
+ <img id="heateor_sss_vertical_bg_color_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1197
  <label><?php _e("Background Color", 'sassy-social-share' ); ?></label>
1198
  </th>
1199
  <td>
1211
 
1212
  <tr>
1213
  <th>
1214
+ <img id="heateor_sss_alignment_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1215
  <label for="heateor_sss_alignment"><?php _e("Horizontal alignment", 'sassy-social-share' ); ?></label>
1216
  </th>
1217
  <td>
1230
  </td>
1231
  </tr>
1232
 
1233
+ <tbody id="heateor_sss_left_offset_rows" <?php echo ( isset( $options['alignment'] ) && $options['alignment'] == 'left' ) ? '' : 'style="display: none"' ?>>
1234
  <tr>
1235
  <th>
1236
+ <img id="heateor_sss_left_offset_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1237
  <label for="heateor_sss_left_offset"><?php _e("Left offset", 'sassy-social-share' ); ?></label>
1238
  </th>
1239
  <td>
1250
  </tr>
1251
  </tbody>
1252
 
1253
+ <tbody id="heateor_sss_right_offset_rows" <?php echo ( isset( $options['alignment'] ) && $options['alignment'] == 'right' ) ? '' : 'style="display: none"' ?>>
1254
  <tr>
1255
  <th>
1256
+ <img id="heateor_sss_right_offset_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1257
  <label for="heateor_sss_right_offset"><?php _e("Right offset", 'sassy-social-share' ); ?></label>
1258
  </th>
1259
  <td>
1272
 
1273
  <tr>
1274
  <th>
1275
+ <img id="heateor_sss_top_offset_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1276
  <label for="heateor_sss_top_offset"><?php _e("Top offset", 'sassy-social-share' ); ?></label>
1277
  </th>
1278
  <td>
1290
 
1291
  <tr>
1292
  <th>
1293
+ <img id="heateor_sss_vertical_location_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1294
  <label><?php _e("Placement", 'sassy-social-share' ); ?></label>
1295
  </th>
1296
  <td>
1301
  <input id="heateor_sss_vertical_page" name="heateor_sss[vertical_page]" type="checkbox" <?php echo isset( $options['vertical_page'] ) ? 'checked = "checked"' : '';?> value="1" />
1302
  <label for="heateor_sss_vertical_page"><?php _e( 'Pages', 'sassy-social-share' ) ?></label><br/>
1303
  <input id="heateor_sss_vertical_excerpt" name="heateor_sss[vertical_excerpt]" type="checkbox" <?php echo isset( $options['vertical_excerpt'] ) ? 'checked = "checked"' : '';?> value="1" />
1304
+ <label for="heateor_sss_vertical_excerpt"><?php _e( 'Excerpts and Posts page', 'sassy-social-share' ) ?></label><br/>
1305
  <input id="heateor_sss_vertical_category" name="heateor_sss[vertical_category]" type="checkbox" <?php echo isset( $options['vertical_category'] ) ? 'checked = "checked"' : '';?> value="1" />
1306
  <label for="heateor_sss_vertical_category"><?php _e( 'Category Archives', 'sassy-social-share' ) ?></label><br/>
1307
  <input id="heateor_sss_vertical_archive" name="heateor_sss[vertical_archive]" type="checkbox" <?php echo isset( $options['vertical_archive'] ) ? 'checked = "checked"' : '';?> value="1" />
1308
  <label for="heateor_sss_vertical_archive"><?php _e( 'Archive Pages (Category, Tag, Author or Date based pages)', 'sassy-social-share' ) ?></label><br/>
1309
  <?php
1310
+ if ( count( $post_types ) ) {
1311
  foreach ( $post_types as $post_type ) {
1312
  ?>
1313
  <input id="heateor_sss_vertical_<?php echo $post_type ?>" name="heateor_sss[vertical_<?php echo $post_type ?>]" type="checkbox" <?php echo isset( $options['vertical_' . $post_type] ) ? 'checked = "checked"' : '';?> value="1" />
1316
  }
1317
  }
1318
 
1319
+ if ( $this->is_bp_active) {
1320
  ?>
1321
  <input id="heateor_sss_vertical_bp_group" name="heateor_sss[vertical_bp_group]" type="checkbox" <?php echo isset( $options['vertical_bp_group'] ) ? 'checked = "checked"' : '';?> value="1" />
1322
  <label for="heateor_sss_vertical_bp_group"><?php _e( 'BuddyPress group', 'sassy-social-share' ) ?></label><br/>
1323
  <?php
1324
  }
1325
 
1326
+ if (function_exists( 'is_bbpress' ) ) {
1327
  ?>
1328
  <br/>
1329
  <input id="heateor_sss_vertical_bb_forum" name="heateor_sss[vertical_bb_forum]" type="checkbox" <?php echo isset( $options['vertical_bb_forum'] ) ? 'checked = "checked"' : '';?> value="1" />
1347
 
1348
  <tr>
1349
  <th>
1350
+ <img id="heateor_sss_vertical_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1351
  <label for="heateor_sss_vertical_counts"><?php _e("Show share counts", 'sassy-social-share' ); ?></label>
1352
  </th>
1353
  <td>
1361
  <td colspan="2">
1362
  <div>
1363
  <?php _e( 'If enabled, share counts are displayed above sharing icons.', 'sassy-social-share' ) ?>
1364
+ <img width="550" src="<?php echo plugins_url( '../../images/snaps/sss_vertical_sharing_count.png', __FILE__ ); ?>" />
1365
  </div>
1366
  </td>
1367
  </tr>
1382
 
1383
  <tr>
1384
  <th>
1385
+ <img id="heateor_sss_total_vertical_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1386
  <label for="heateor_sss_total_vertical_shares"><?php _e("Show total shares", 'sassy-social-share' ); ?></label>
1387
  </th>
1388
  <td>
1394
  <td colspan="2">
1395
  <div>
1396
  <?php _e( 'If enabled, total shares will be displayed with sharing icons', 'sassy-social-share' ) ?>
1397
+ <img width="550" src="<?php echo plugins_url( '../../images/snaps/sss_vertical_total_shares.png', __FILE__ ); ?>" />
1398
  </div>
1399
  </td>
1400
  </tr>
1401
 
1402
  <tr>
1403
  <th>
1404
+ <img id="heateor_sss_vmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1405
  <label for="heateor_sss_vmore"><?php _e("Enable 'More' icon", 'sassy-social-share' ); ?></label>
1406
  </th>
1407
  <td>
1419
 
1420
  <tr>
1421
  <th>
1422
+ <img id="heateor_sss_mobile_sharing_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1423
  <label for="heateor_sss_mobile_sharing"><?php _e("Vertical floating bar responsiveness", 'sassy-social-share' ); ?></label>
1424
  </th>
1425
  <td>
1437
 
1438
  <tr>
1439
  <th>
1440
+ <img id="heateor_sss_mobile_sharing_bottom_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1441
  <label for="heateor_sss_mobile_sharing_bottom"><?php _e("Horizontal floating bar responsiveness", 'sassy-social-share' ); ?></label>
1442
  </th>
1443
  <td>
1449
  <td colspan="2">
1450
  <div>
1451
  <?php _e( 'Stick vertical floating interface horizontally at bottom only when screen is narrower than the width specified', 'sassy-social-share' ) ?>
1452
+ <img src="<?php echo plugins_url( '../../images/snaps/sss_mobile_sharing.png', __FILE__ ); ?>" />
1453
  </div>
1454
  </td>
1455
  </tr>
1457
  <tbody id="heateor_sss_bottom_sharing_options" <?php echo isset( $options['bottom_mobile_sharing'] ) ? '' : 'style="display: none"'; ?>>
1458
  <tr>
1459
  <th>
1460
+ <img id="heateor_sss_mobile_sharing_position_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1461
  <label for="heateor_sss_mobile_sharing_position"><?php _e("Horizontal floating bar position", 'sassy-social-share' ); ?></label>
1462
  </th>
1463
  <td>
1510
 
1511
  <tr>
1512
  <th>
1513
+ <img id="heateor_sss_delete_options_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1514
  <label for="heateor_sss_delete_options"><?php _e("Delete all the options on plugin deletion", 'sassy-social-share' ); ?></label>
1515
  </th>
1516
  <td>
1559
 
1560
  <tr>
1561
  <th style="width:215px">
1562
+ <img id="heateor_sss_clear_share_count_cache_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1563
+ <input type="button" class="button-primary" value="<?php _e( 'Clear Share Counts Cache', 'sassy-social-share' ) ?>" onclick="heateorSssClearShareCountCache()" />
1564
  </th>
1565
  <td>
1566
+ <img src="<?php echo plugins_url( '../../images/ajax_loader.gif', __FILE__ ) ?>" id="share_count_cache_loading" style="display:none" />
1567
+ <div id="heateor_sss_share_count_cache_clear_message" style="color:green;display:none;"><?php _e( 'Share Counts cache cleared successfully.', 'sassy-social-share' ); ?></div>
1568
  </td>
1569
  </tr>
1570
 
1585
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1586
  <tr>
1587
  <th>
1588
+ <img id="heateor_sss_surl_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1589
  <label for="heateor_sss_surl_enable"><?php _e("Use shortlinks already installed", 'sassy-social-share' ); ?></label>
1590
  </th>
1591
  <td>
1603
 
1604
  <tr>
1605
  <th>
1606
+ <img id="heateor_sss_bitly_enable_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1607
  <label for="heateor_sss_bitly_enable"><?php _e("Enable bit.ly url shortener for sharing", 'sassy-social-share' ); ?></label>
1608
  </th>
1609
  <td>
1621
 
1622
  <tr>
1623
  <th>
1624
+ <img id="heateor_sss_bitly_login_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1625
  <label for="heateor_sss_bitly_login"><?php _e("bit.ly username", 'sassy-social-share' ); ?></label>
1626
  </th>
1627
  <td>
1632
  <tr class="heateor_sss_help_content" id="heateor_sss_bitly_login_help_cont">
1633
  <td colspan="2">
1634
  <div>
1635
+ <?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', 'sassy-social-share' ), 'https://bitly.com/a/your_api_key' ) ?>
1636
+ <img width="550" src="<?php echo plugins_url( '../../images/snaps/sss_bitly_username.png', __FILE__ ); ?>" />
1637
  </div>
1638
  </td>
1639
  </tr>
1640
 
1641
  <tr>
1642
  <th>
1643
+ <img id="heateor_sss_bitly_key_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1644
  <label for="heateor_sss_bitly_key"><?php _e("bit.ly API Key", 'sassy-social-share' ); ?></label>
1645
  </th>
1646
  <td>
1651
  <tr class="heateor_sss_help_content" id="heateor_sss_bitly_key_help_cont">
1652
  <td colspan="2">
1653
  <div>
1654
+ <?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', 'sassy-social-share' ), 'https://bitly.com/a/your_api_key' ) ?>
1655
+ <img width="550" src="<?php echo plugins_url( '../../images/snaps/sss_bitly_apikey.png', __FILE__ ); ?>" />
1656
  </div>
1657
  </td>
1658
  </tr>
1659
 
1660
  <tr>
1661
  <th>
1662
+ <img id="heateor_sss_clear_shorturl_cache_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1663
+ <input type="button" class="button-primary" value="<?php _e( 'Clear Bitly Cache', 'sassy-social-share' ) ?>" onclick="heateorSssClearShorturlCache()" />
1664
  </th>
1665
  <td>
1666
+ <img src="<?php echo plugins_url( '../../images/ajax_loader.gif', __FILE__ ) ?>" id="shorturl_cache_loading" style="display:none" />
1667
+ <div id="heateor_sss_cache_clear_message" style="color:green;display:none;"><?php _e( 'ShortUrl cache cleared successfully.', 'sassy-social-share' ); ?></div>
1668
  </td>
1669
  </tr>
1670
 
1671
  <tr class="heateor_sss_help_content" id="heateor_sss_clear_shorturl_cache_help_cont">
1672
  <td colspan="2">
1673
  <div>
1674
+ <?php _e( 'Use this to delete short urls saved in database. Handy, if urls of your website have been changed but short urls are still being generated for old urls.', 'sassy-social-share' ) ?>
1675
  </div>
1676
  </td>
1677
  </tr>
1685
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1686
  <tr>
1687
  <th>
1688
+ <img id="heateor_sss_sc_language_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1689
  <label for="heateor_sss_sc_language"><?php _e("Language", 'sassy-social-share' ); ?></label>
1690
  </th>
1691
  <td>
1696
  <tr class="heateor_sss_help_content" id="heateor_sss_sc_language_help_cont">
1697
  <td colspan="2">
1698
  <div>
1699
+ <?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)', 'sassy-social-share' ), '//www.facebook.com/translations/FacebookLocales.xml' ) ?>
1700
  </div>
1701
  </td>
1702
  </tr>
1710
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1711
  <tr>
1712
  <th>
1713
+ <img id="heateor_sss_twitter_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1714
  <label for="heateor_sss_twitter_username"><?php _e("Twitter username (without @)", 'sassy-social-share' ); ?></label>
1715
  </th>
1716
  <td>
1722
  <td colspan="2">
1723
  <div>
1724
  <?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.', 'sassy-social-share' ) ?>
1725
+ <br/><img width="550" src="<?php echo plugins_url( '../../images/snaps/sss_twitter_username.png', __FILE__ ); ?>" />
1726
  </div>
1727
  </td>
1728
  </tr>
1729
 
1730
  <tr>
1731
  <th>
1732
+ <img id="heateor_sss_buffer_username_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1733
  <label for="heateor_sss_buffer_username"><?php _e("Buffer username (without @)", 'sassy-social-share' ); ?></label>
1734
  </th>
1735
  <td>
1754
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1755
  <tr>
1756
  <th>
1757
+ <img id="heateor_sss_custom_css_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
1758
  <label for="heateor_sss_custom_css"><?php _e("Custom CSS", 'sassy-social-share' ); ?></label>
1759
  </th>
1760
  <td>
1822
  <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?', 'sassy-social-share' ) ?></a></p>
1823
  <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?', 'sassy-social-share' ) ?></a></p>
1824
  <p><a href="http://support.heateor.com/how-to-hide-arrow-after-floating-sharing-bar" target="_blank"><?php _e( 'How to hide arrow after floating sharing bar?', 'sassy-social-share' ) ?></a></p>
1825
+ <p><a href="http://support.heateor.com/why-are-share-counts-not-updating" target="_blank"><?php _e( 'Why is share count not getting updated?', 'sassy-social-share' ) ?></a></p>
1826
+ <p><a href="http://support.heateor.com/why-is-there-so-much-space-between-like-buttons" target="_blank"><?php _e( 'Why is there so much space between like buttons?', 'sassy-social-share' ) ?></a></p>
1827
+ <p><a href="http://support.heateor.com/why-is-floating-share-like-button-not-appearing-at-homepage" target="_blank"><?php _e( 'Why are floating sharing/like buttons not appearing at homepage?', 'sassy-social-share' ) ?></a></p>
1828
  </div>
1829
  </div>
1830
 
includes/class-sassy-social-share-sharing-networks.php CHANGED
@@ -23,7 +23,7 @@ class Sassy_Social_Share_Sharing_Networks {
23
  private $sharing_networks = array(
24
  'facebook_like' => '<li style="padding:%padding%px 0 !important" class="heateor_sss_%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>',
25
  'facebook_recommend' => '<li style="padding:%padding%px 0 !important" class="heateor_sss_%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>',
26
- 'twitter_tweet' => '<li style="padding:%padding%px 0 !important" class="heateor_sss_%network%" heateor-sss-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>',
27
  'google_plusone' => '<li style="padding:%padding%px 0 !important" class="heateor_sss_%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>',
28
  'google_plus_share' => '<li style="padding:%padding%px 0 !important" class="heateor_sss_%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>',
29
  'linkedin_share' => '<li style="padding:%padding%px 0 !important" class="heateor_sss_%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>',
@@ -38,7 +38,7 @@ class Sassy_Social_Share_Sharing_Networks {
38
  'linkedin' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.linkedin.com/shareArticle?mini=true&url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
39
  'google_plus' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://plus.google.com/share?url=%post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
40
  'print' => '<li class="%li_class%"><i %style% alt="Print" Title="Print" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'window.print()\'><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
41
- 'email' => '<li class="%li_class%"><i %style% alt="Email" Title="Email" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick="window.location.href = \'mailto:?subject=\' + decodeURIComponent(\'%post_title%\' ) + \'&body=\' + decodeURIComponent(\'%post_url%\' )"><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
42
  'yahoo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://bookmarks.yahoo.com/toolbar/SaveBM/?u=%post_url%&t=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
43
  'reddit' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://reddit.com/submit?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
44
  'digg' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://digg.com/submit?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
@@ -47,9 +47,9 @@ class Sassy_Social_Share_Sharing_Networks {
47
  'float_it' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.designfloat.com/submit.php?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
48
  'tumblr' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.tumblr.com/share?v=3&u=%post_url%&t=%post_title%&s=")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
49
  'vkontakte' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://vkontakte.ru/share.php?&url=%post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
50
- 'pinterest' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%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="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
51
  'xing' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.xing-share.com/social_plugins/share?url=%post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
52
- 'whatsapp' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background"><a href="whatsapp://send?text=%post_title% %post_url%"><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></a></i></li>',
53
  'yummly' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.yummly.com/urb/verify?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
54
  'buffer' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://buffer.com/add?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
55
  'AIM' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://lifestream.aol.com/?url=%%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
23
  private $sharing_networks = array(
24
  'facebook_like' => '<li style="padding:%padding%px 0 !important" class="heateor_sss_%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>',
25
  'facebook_recommend' => '<li style="padding:%padding%px 0 !important" class="heateor_sss_%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>',
26
+ 'twitter_tweet' => '<li style="padding:%padding%px 0 !important" class="heateor_sss_%network%" heateor-sss-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>',
27
  'google_plusone' => '<li style="padding:%padding%px 0 !important" class="heateor_sss_%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>',
28
  'google_plus_share' => '<li style="padding:%padding%px 0 !important" class="heateor_sss_%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>',
29
  'linkedin_share' => '<li style="padding:%padding%px 0 !important" class="heateor_sss_%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>',
38
  'linkedin' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.linkedin.com/shareArticle?mini=true&url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
39
  'google_plus' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://plus.google.com/share?url=%post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
40
  'print' => '<li class="%li_class%"><i %style% alt="Print" Title="Print" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'window.print()\'><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
41
+ 'email' => '<li class="%li_class%"><i %style% alt="Email" Title="Email" class="heateorSssSharing heateorSss%ucfirst_network%Background" %amp_email% onclick="window.location.href = \'mailto:?subject=\' + decodeURIComponent(\'%post_title%\' ) + \'&body=\' + decodeURIComponent(\'%post_url%\' )"><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
42
  'yahoo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://bookmarks.yahoo.com/toolbar/SaveBM/?u=%post_url%&t=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
43
  'reddit' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://reddit.com/submit?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
44
  'digg' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://digg.com/submit?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
47
  'float_it' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.designfloat.com/submit.php?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
48
  'tumblr' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.tumblr.com/share?v=3&u=%post_url%&t=%post_title%&s=")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
49
  'vkontakte' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://vkontakte.ru/share.php?&url=%post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
50
+ 'pinterest' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background"><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
51
  'xing' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.xing-share.com/social_plugins/share?url=%post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
52
+ 'whatsapp' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background"><a %amp_whatsapp% href="whatsapp://send?text=%post_title% %post_url%"><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></a></i></li>',
53
  'yummly' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.yummly.com/urb/verify?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
54
  'buffer' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://buffer.com/add?url=%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
55
  'AIM' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://lifestream.aol.com/?url=%%post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
includes/class-sassy-social-share-widgets.php CHANGED
@@ -164,9 +164,9 @@ class Sassy_Social_Share_Standard_Widget extends WP_Widget {
164
  <script type="text/javascript">
165
  function heateorSssToggleHorSharingTargetUrl(val) {
166
  if (val == 'custom' ) {
167
- jQuery('.heateorSssHorSharingTargetUrl' ).css('display', 'block' );
168
  } else {
169
- jQuery('.heateorSssHorSharingTargetUrl' ).css('display', 'none' );
170
  }
171
  }
172
  </script>
@@ -283,7 +283,7 @@ class Sassy_Social_Share_Floating_Widget extends WP_Widget {
283
  if ( isset( $instance['alignment'] ) && isset( $instance[$instance['alignment'] . '_offset'] ) ) {
284
  $ssOffset = $instance[$instance['alignment'] . '_offset'];
285
  }
286
- echo "<div class='heateor_sss_sharing_container heateor_sss_vertical_sharing" . ( isset( $this->options['hide_mobile_sharing'] ) ? ' heateor_sss_hide_sharing' : '' ) . ( isset( $this->options['bottom_mobile_sharing'] ) ? ' heateor_sss_bottom_sharing' : '' ) . "' ss-offset='" . $ssOffset . "' style='width:" . ( ( $this->options['vertical_sharing_size'] ? $this->options['vertical_sharing_size'] : 35) + 4) . "px;".(isset( $instance['alignment'] ) && $instance['alignment'] != '' && isset( $instance[$instance['alignment'].'_offset'] ) ? $instance['alignment'].': '. ( $instance[$instance['alignment'].'_offset'] == '' ? 0 : $instance[$instance['alignment'].'_offset'] ) .'px;' : '' ).(isset( $instance['top_offset'] ) ? 'top: '. ( $instance['top_offset'] == '' ? 0 : $instance['top_offset'] ) .'px;' : '' ) . (isset( $instance['vertical_bg'] ) && $instance['vertical_bg'] != '' ? 'background-color: '.$instance['vertical_bg'] . ';' : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;' ) . "' heateor-sss-data-href='". $sharing_url ."'>";
287
 
288
  $short_url = $this->public_class_object->get_short_url( $sharing_url, $post_id );
289
 
@@ -349,18 +349,18 @@ class Sassy_Social_Share_Floating_Widget extends WP_Widget {
349
  <script>
350
  function heateorSssToggleSharingOffset(alignment) {
351
  if (alignment == 'left' ) {
352
- jQuery('.heateorSssSharingLeftOffset' ).css('display', 'block' );
353
- jQuery('.heateorSssSharingRightOffset' ).css('display', 'none' );
354
  } else {
355
- jQuery('.heateorSssSharingLeftOffset' ).css('display', 'none' );
356
- jQuery('.heateorSssSharingRightOffset' ).css('display', 'block' );
357
  }
358
  }
359
  function heateorSssToggleVerticalSharingTargetUrl(val) {
360
  if (val == 'custom' ) {
361
- jQuery('.heateorSssVerticalSharingTargetUrl' ).css('display', 'block' );
362
  } else {
363
- jQuery('.heateorSssVerticalSharingTargetUrl' ).css('display', 'none' );
364
  }
365
  }
366
  </script>
164
  <script type="text/javascript">
165
  function heateorSssToggleHorSharingTargetUrl(val) {
166
  if (val == 'custom' ) {
167
+ jQuery( '.heateorSssHorSharingTargetUrl' ).css( 'display', 'block' );
168
  } else {
169
+ jQuery( '.heateorSssHorSharingTargetUrl' ).css( 'display', 'none' );
170
  }
171
  }
172
  </script>
283
  if ( isset( $instance['alignment'] ) && isset( $instance[$instance['alignment'] . '_offset'] ) ) {
284
  $ssOffset = $instance[$instance['alignment'] . '_offset'];
285
  }
286
+ echo "<div class='heateor_sss_sharing_container heateor_sss_vertical_sharing" . ( isset( $this->options['hide_mobile_sharing'] ) ? ' heateor_sss_hide_sharing' : '' ) . ( isset( $this->options['bottom_mobile_sharing'] ) ? ' heateor_sss_bottom_sharing' : '' ) . "' ss-offset='" . $ssOffset . "' style='width:" . ( ( $this->options['vertical_sharing_size'] ? $this->options['vertical_sharing_size'] : 35) + 4) . "px;".( isset( $instance['alignment'] ) && $instance['alignment'] != '' && isset( $instance[$instance['alignment'].'_offset'] ) ? $instance['alignment'].': '. ( $instance[$instance['alignment'].'_offset'] == '' ? 0 : $instance[$instance['alignment'].'_offset'] ) .'px;' : '' ).( isset( $instance['top_offset'] ) ? 'top: '. ( $instance['top_offset'] == '' ? 0 : $instance['top_offset'] ) .'px;' : '' ) . ( isset( $instance['vertical_bg'] ) && $instance['vertical_bg'] != '' ? 'background-color: '.$instance['vertical_bg'] . ';' : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;' ) . "' heateor-sss-data-href='". $sharing_url ."'>";
287
 
288
  $short_url = $this->public_class_object->get_short_url( $sharing_url, $post_id );
289
 
349
  <script>
350
  function heateorSssToggleSharingOffset(alignment) {
351
  if (alignment == 'left' ) {
352
+ jQuery( '.heateorSssSharingLeftOffset' ).css( 'display', 'block' );
353
+ jQuery( '.heateorSssSharingRightOffset' ).css( 'display', 'none' );
354
  } else {
355
+ jQuery( '.heateorSssSharingLeftOffset' ).css( 'display', 'none' );
356
+ jQuery( '.heateorSssSharingRightOffset' ).css( 'display', 'block' );
357
  }
358
  }
359
  function heateorSssToggleVerticalSharingTargetUrl(val) {
360
  if (val == 'custom' ) {
361
+ jQuery( '.heateorSssVerticalSharingTargetUrl' ).css( 'display', 'block' );
362
  } else {
363
+ jQuery( '.heateorSssVerticalSharingTargetUrl' ).css( 'display', 'none' );
364
  }
365
  }
366
  </script>
includes/class-sassy-social-share.php CHANGED
@@ -143,6 +143,10 @@ class Sassy_Social_Share {
143
  add_action( 'wp_ajax_heateor_sss_clear_shorturl_cache', array( $plugin_admin, 'clear_shorturl_cache' ) );
144
  // ajax function to clear share counts cache
145
  add_action( 'wp_ajax_heateor_sss_clear_share_count_cache', array( $plugin_admin, 'clear_share_count_cache' ) );
 
 
 
 
146
 
147
  }
148
 
@@ -161,10 +165,11 @@ class Sassy_Social_Share {
161
  add_action( 'plugins_loaded', array( $plugin_public, 'update_db_check' ) );
162
  // hook the plugin functions on 'init' event.
163
  add_action( 'init', array( $plugin_public, 'init' ) );
164
-
 
165
  // hooks to enable sharing interface
166
  add_filter( 'the_content', array( $plugin_public, 'render_sharing' ) );
167
- add_filter( 'get_the_excerpt', array( $plugin_public, 'render_sharing' ) );
168
  if ( isset( $this->options['bp_activity'] ) ) {
169
  add_action( 'bp_activity_entry_meta', array( $plugin_public, 'render_sharing' ), 999 );
170
  }
143
  add_action( 'wp_ajax_heateor_sss_clear_shorturl_cache', array( $plugin_admin, 'clear_shorturl_cache' ) );
144
  // ajax function to clear share counts cache
145
  add_action( 'wp_ajax_heateor_sss_clear_share_count_cache', array( $plugin_admin, 'clear_share_count_cache' ) );
146
+ // ask reason to deactivate the plugin
147
+ add_action( 'admin_footer', array( $plugin_admin, 'ask_reason_to_deactivate' ) );
148
+ // ajax function to send plugin feedback
149
+ add_action( 'wp_ajax_heateor_sss_send_feedback', array( $plugin_admin, 'send_feedback' ) );
150
 
151
  }
152
 
165
  add_action( 'plugins_loaded', array( $plugin_public, 'update_db_check' ) );
166
  // hook the plugin functions on 'init' event.
167
  add_action( 'init', array( $plugin_public, 'init' ) );
168
+ // remove render sharing action from Excerpts, as it gets nasty due to strip_tags()
169
+ add_filter( 'get_the_excerpt', array( $plugin_public, 'remove_render_sharing' ), 9 );
170
  // hooks to enable sharing interface
171
  add_filter( 'the_content', array( $plugin_public, 'render_sharing' ) );
172
+ add_filter( 'the_excerpt', array( $plugin_public, 'render_sharing' ) );
173
  if ( isset( $this->options['bp_activity'] ) ) {
174
  add_action( 'bp_activity_entry_meta', array( $plugin_public, 'render_sharing' ), 999 );
175
  }
languages/sassy-social-share.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Sassy Social Share\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-01-30 08:07+0530\n"
6
- "PO-Revision-Date: 2016-01-30 08:07+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: \n"
@@ -65,6 +65,67 @@ msgstr ""
65
  msgid "Dismiss this notice"
66
  msgstr ""
67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  #: ../admin/partials/sassy-social-share-options-page.php:19
69
  msgid "Theme Selection"
70
  msgstr ""
@@ -422,7 +483,7 @@ msgstr ""
422
 
423
  #: ../admin/partials/sassy-social-share-options-page.php:884
424
  #: ../admin/partials/sassy-social-share-options-page.php:1304
425
- msgid "Excerpts (at Homepage)"
426
  msgstr ""
427
 
428
  #: ../admin/partials/sassy-social-share-options-page.php:886
@@ -793,10 +854,18 @@ msgid "How to hide arrow after floating sharing bar?"
793
  msgstr ""
794
 
795
  #: ../admin/partials/sassy-social-share-options-page.php:1825
796
- msgid "Why Is Share Count Not Getting Updated?"
 
 
 
 
 
 
 
 
797
  msgstr ""
798
 
799
- #: ../admin/partials/sassy-social-share-options-page.php:1835
800
  msgid "Save Changes"
801
  msgstr ""
802
 
@@ -938,11 +1007,21 @@ msgstr ""
938
  msgid "Top Offset"
939
  msgstr ""
940
 
941
- #: ../public/class-sassy-social-share-public.php:645
 
 
 
 
 
 
 
 
 
 
942
  msgid "Invalid request"
943
  msgstr ""
944
 
945
- #: ../public/class-sassy-social-share-public.php:651
946
  msgid "Providers not selected"
947
  msgstr ""
948
 
2
  msgstr ""
3
  "Project-Id-Version: Sassy Social Share\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-03-30 03:14+0530\n"
6
+ "PO-Revision-Date: 2016-03-30 03:15+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: \n"
65
  msgid "Dismiss this notice"
66
  msgstr ""
67
 
68
+ #: ../admin/class-sassy-social-share-admin.php:455
69
+ msgid "Please help us make the plugin better"
70
+ msgstr ""
71
+
72
+ #: ../admin/class-sassy-social-share-admin.php:456
73
+ #, php-format
74
+ msgid "Please take a look at our <a href=\"%s\" target=\"_blank\">support documentation</a> before deactivating the plugin"
75
+ msgstr ""
76
+
77
+ #: ../admin/class-sassy-social-share-admin.php:456
78
+ msgid "I am deactivating the plugin because"
79
+ msgstr ""
80
+
81
+ #: ../admin/class-sassy-social-share-admin.php:456
82
+ msgid "I no longer need the plugin"
83
+ msgstr ""
84
+
85
+ #: ../admin/class-sassy-social-share-admin.php:456
86
+ msgid "I found a better plugin"
87
+ msgstr ""
88
+
89
+ #: ../admin/class-sassy-social-share-admin.php:456
90
+ msgid "I only needed the plugin for a short period"
91
+ msgstr ""
92
+
93
+ #: ../admin/class-sassy-social-share-admin.php:456
94
+ msgid "The plugin broke my site"
95
+ msgstr ""
96
+
97
+ #: ../admin/class-sassy-social-share-admin.php:456
98
+ msgid "The plugin suddenly stopped working"
99
+ msgstr ""
100
+
101
+ #: ../admin/class-sassy-social-share-admin.php:456
102
+ msgid "I couldn\\'t understand how to make it work"
103
+ msgstr ""
104
+
105
+ #: ../admin/class-sassy-social-share-admin.php:456
106
+ msgid "The plugin is great, but I need specific feature that you don\\'t support"
107
+ msgstr ""
108
+
109
+ #: ../admin/class-sassy-social-share-admin.php:456
110
+ msgid "The plugin is not working"
111
+ msgstr ""
112
+
113
+ #: ../admin/class-sassy-social-share-admin.php:456
114
+ msgid "It\\'s not what I was looking for"
115
+ msgstr ""
116
+
117
+ #: ../admin/class-sassy-social-share-admin.php:456
118
+ msgid "The plugin didn\\'t work as expected"
119
+ msgstr ""
120
+
121
+ #: ../admin/class-sassy-social-share-admin.php:456
122
+ msgid "Other"
123
+ msgstr ""
124
+
125
+ #: ../admin/class-sassy-social-share-admin.php:479
126
+ msgid "Please specify a vaild reason"
127
+ msgstr ""
128
+
129
  #: ../admin/partials/sassy-social-share-options-page.php:19
130
  msgid "Theme Selection"
131
  msgstr ""
483
 
484
  #: ../admin/partials/sassy-social-share-options-page.php:884
485
  #: ../admin/partials/sassy-social-share-options-page.php:1304
486
+ msgid "Excerpts and Posts page"
487
  msgstr ""
488
 
489
  #: ../admin/partials/sassy-social-share-options-page.php:886
854
  msgstr ""
855
 
856
  #: ../admin/partials/sassy-social-share-options-page.php:1825
857
+ msgid "Why is share count not getting updated?"
858
+ msgstr ""
859
+
860
+ #: ../admin/partials/sassy-social-share-options-page.php:1826
861
+ msgid "Why is there so much space between like buttons?"
862
+ msgstr ""
863
+
864
+ #: ../admin/partials/sassy-social-share-options-page.php:1827
865
+ msgid "Why are floating sharing/like buttons not appearing at homepage?"
866
  msgstr ""
867
 
868
+ #: ../admin/partials/sassy-social-share-options-page.php:1837
869
  msgid "Save Changes"
870
  msgstr ""
871
 
1007
  msgid "Top Offset"
1008
  msgstr ""
1009
 
1010
+ #: ../public/class-sassy-social-share-public.php:123
1011
+ #: ../public/class-sassy-social-share-public.php:993
1012
+ msgid "Shares"
1013
+ msgstr ""
1014
+
1015
+ #: ../public/class-sassy-social-share-public.php:123
1016
+ #: ../public/class-sassy-social-share-public.php:993
1017
+ msgid "Share"
1018
+ msgstr ""
1019
+
1020
+ #: ../public/class-sassy-social-share-public.php:1266
1021
  msgid "Invalid request"
1022
  msgstr ""
1023
 
1024
+ #: ../public/class-sassy-social-share-public.php:1272
1025
  msgid "Providers not selected"
1026
  msgstr ""
1027
 
public/class-sassy-social-share-public.php CHANGED
@@ -78,10 +78,18 @@ class Sassy_Social_Share_Public {
78
  */
79
  public function init() {
80
 
81
- // Javascripts for front-end of website
82
  add_action( 'wp_enqueue_scripts', array( $this, 'frontend_scripts' ) );
83
- // stylesheets for front-end of website
84
- add_action( 'wp_enqueue_scripts', array( $this, 'frontend_styles' ) );
 
 
 
 
 
 
 
 
85
 
86
  }
87
 
@@ -94,7 +102,7 @@ class Sassy_Social_Share_Public {
94
 
95
  $in_footer = isset( $this->options['footer_script'] ) ? true : false;
96
  ?>
97
- <script type="text/javascript">function heateorSssLoadEvent(e){var t=window.onload;if(typeof window.onload!="function"){window.onload=e}else{window.onload=function(){t();e()}}}</script>
98
  <?php
99
  global $post;
100
  if ( $post ) {
@@ -112,14 +120,590 @@ class Sassy_Social_Share_Public {
112
  echo ! isset( $this->options['vertical_counter_position'] ) || in_array( $this->options['vertical_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceVerticalSvgHeight = true;' : '';
113
  }
114
  ?>
115
- var heateorSssUrlCountFetched = [];
116
- function heateorSssPopup(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")}
117
  </script>
118
  <?php
119
  if ( $this->facebook_like_recommend_enabled() ) {
120
  ?>
121
  <script type="text/javascript">
122
- function heateorSssInitiateFB(){FB.init({appId:"",channelUrl:"",status:!0,cookie:!0,xfbml:!0,version:"v2.4"})}window.fbAsyncInit=function(){heateorSssInitiateFB(),<?php echo defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && $this->facebook_like_recommend_enabled() ? 1 : 0 ?>&&(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")})),<?php echo defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) ? 1 : 0 ?>&&(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 n,i="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(i)||(n=e.createElement("script"),n.id=i,n.async=!0,n.src="//connect.facebook.net/<?php echo $this->options['language'] ? $this->options['language'] : 'en_US' ?>/sdk.js",o.parentNode.insertBefore(n,o))}(document);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
  </script>
124
  <?php
125
  }
@@ -211,8 +795,8 @@ class Sassy_Social_Share_Public {
211
  } else {
212
  $post_title = $post->post_title;
213
  }
214
- $post_title = html_entity_decode( $post_title, ENT_QUOTES, 'UTF-8' );
215
- $post_title = urlencode( $post_title );
216
  $post_title = str_replace( '#', '%23', $post_title );
217
  $post_title = esc_html( $post_title );
218
 
@@ -317,10 +901,29 @@ class Sassy_Social_Share_Public {
317
  $total_share_count = 0;
318
 
319
  $share_count = array();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
  foreach ( $this->options[$sharing_type.'_re_providers'] as $provider ) {
321
  $share_count[$provider] = $share_counts == '&nbsp;' ? '' : ( isset( $share_counts[$provider] ) ? $share_counts[$provider] : '' );
322
  $isset_starting_share_count = isset( $sharing_meta[$provider . '_' . $sharing_type . '_count'] ) && $sharing_meta[$provider . '_' . $sharing_type . '_count'] != '' ? true : false;
323
- $total_share_count += intval( $share_count[$provider] ) + ($isset_starting_share_count ? $sharing_meta[$provider . '_' . $sharing_type . '_count'] : 0) ;
 
324
  $li_items .= str_replace(
325
  array(
326
  '%padding%',
@@ -338,7 +941,9 @@ class Sassy_Social_Share_Public {
338
  '%inner_style%',
339
  '%li_class%',
340
  $counter_placeholder,
341
- '%title%'
 
 
342
  ),
343
  array(
344
  ( $this->options[$sharing_type . '_sharing_shape'] == 'rectangle' ? $this->options[$sharing_type . '_sharing_height'] : $this->options[$sharing_type . '_sharing_size'] ) * 21/100,
@@ -347,16 +952,18 @@ class Sassy_Social_Share_Public {
347
  $like_button_count_container,
348
  $post_url,
349
  $post_title,
350
- urldecode( $post_title ),
351
  $twitter_username,
352
  $twitter_username ? 'via=' . $twitter_username . '&' : '',
353
  $language,
354
  $this->options['buffer_username'] != '' ? $this->options['buffer_username'] : '',
355
  $style,
356
- $inner_style . ( $share_count[$provider] || ($isset_starting_share_count && $share_counts != '&nbsp;') ? $inner_style_conditional : '' ),
357
  $li_class,
358
  str_replace( '%network%', $provider, $isset_starting_share_count ? str_replace( '>&nbsp;', ' sss_st_count="' . $sharing_meta[$provider . '_' . $sharing_type . '_count'] . '"' . ( $share_counts == '&nbsp;' ? '>&nbsp;' : ' style="visibility:visible;' . ( $inner_style_conditional ? 'display:block;' : '' ) . '">' . $this->round_off_counts( $share_count[$provider] + $sharing_meta[$provider . '_' . $sharing_type . '_count'] ) ) , $counter_placeholder_value ) : str_replace( '>&nbsp;', $share_count[$provider] ? ' style="visibility:visible;' . ( $inner_style_conditional ? 'display:block;' : '' ) . '">' . $this->round_off_counts( $share_count[$provider] ) : '>&nbsp;', $counter_placeholder_value ) ),
359
- ucfirst( str_replace( '_', ' ', $provider ) )
 
 
360
  ),
361
  $sharing_networks[$provider]
362
  );
@@ -383,7 +990,7 @@ class Sassy_Social_Share_Public {
383
  }
384
  $add_style .= ( $total_share_count && $share_counts != '&nbsp;' ? 'visibility:visible;' : '' ) . '"';
385
  $style = str_replace( ';"', $add_style, $style );
386
- $total_shares_html .= '<i ' . $style . ' title="Total Shares" alt="Total Shares" class="heateorSssSharing heateorSssTCBackground">' . ( $total_share_count ? '<div class="heateorSssTotalShareCount" style="font-size: ' . ( $icon_height * 62/100 ) . 'px">' . $this->round_off_counts( $total_share_count ) . '</div><div class="heateorSssTotalShareText" style="font-size: ' . ( $icon_height * 38/100 ) . 'px">Shares</div>' : '' ) . '</i></li>';
387
  }
388
 
389
  if ( $sharing_type == 'vertical' ) {
@@ -392,7 +999,7 @@ class Sassy_Social_Share_Public {
392
  $html .= $li_items . $total_shares_html;
393
  }
394
 
395
- $html .= '</ul><div style="clear:both"></div>';
396
  }
397
  return $html;
398
  }
@@ -409,7 +1016,7 @@ class Sassy_Social_Share_Public {
409
  $sharing_count = round( $sharing_count/1000 ) . 'K';
410
  } elseif ( $sharing_count > 9999 && $sharing_count < 100000 ) {
411
  $sharing_count = round( $sharing_count/1000 ) . 'K';
412
- } else if( $sharing_count > 99999 && $sharing_count < 1000000 ) {
413
  $sharing_count = round( $sharing_count/1000 ) . 'K';
414
  } else if ( $sharing_count > 999999 ) {
415
  $sharing_count = round( $sharing_count/1000000 ) . 'M';
@@ -448,6 +1055,20 @@ class Sassy_Social_Share_Public {
448
 
449
  }
450
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
451
  /**
452
  * Enable sharing interface at selected areas.
453
  *
@@ -476,7 +1097,7 @@ class Sassy_Social_Share_Public {
476
  $post_types = array_diff( $post_types, array( 'post', 'page' ) );
477
 
478
  // sharing interface
479
- if ( isset( $this->options['hor_enable'] ) && ! ( isset( $sharing_meta['sharing'] ) && $sharing_meta['sharing'] == 1 && ( ! is_front_page() || ( is_front_page() && 'page' == get_option('show_on_front' ) ) ) ) ) {
480
  $post_id = $post -> ID;
481
  // default post url
482
  $post_url = get_permalink( $post->ID );
@@ -512,14 +1133,14 @@ class Sassy_Social_Share_Public {
512
  $sharing_title_style = 'style="font-weight: bold;list-style: none;position: relative;left: 50%;"';
513
  }
514
 
515
- $horizontal_div = "<div style='clear: both'></div><div ". $sharing_container_style ." class='heateor_sss_sharing_container heateor_sss_horizontal_sharing' " . ( $this->get_cached_share_count( $this->share_count_transient_id ) === false ? "heateor-sss-data-href='" . $post_url . "'" : '' ) . "><div class='heateor_sss_sharing_title' " . $sharing_title_style . " >" . ucfirst( $this->options['title'] ) . "</div>" . $sharing_div . "</div><div style='clear: both'></div>";
516
  if ( $sharing_bp_activity ) {
517
  echo $horizontal_div;
518
  }
519
  // show horizontal sharing
520
- if ( ( isset( $this->options['home'] ) && is_front_page() ) || ( isset( $this->options['category'] ) && is_category() ) || ( isset( $this->options['archive'] ) && is_archive() ) || ( isset( $this->options['post'] ) && is_single() && isset( $post -> post_type ) && $post -> post_type == 'post' ) || ( isset( $this->options['page'] ) && is_page() && isset( $post -> post_type ) && $post -> post_type == 'page' ) || ( isset( $this->options['excerpt'] ) && is_front_page() && current_filter() == 'get_the_excerpt' ) || ( isset( $this->options['bb_reply'] ) && current_filter() == 'bbp_get_reply_content' ) || ( isset( $this->options['bb_forum'] ) && ( isset( $this->options['top'] ) && current_filter() == 'bbp_template_before_single_forum' || isset( $this->options['bottom'] ) && current_filter() == 'bbp_template_after_single_forum' ) ) || ( isset( $this->options['bb_topic'] ) && ( isset( $this->options['top'] ) && in_array( current_filter(), array( 'bbp_template_before_single_topic', 'bbp_template_before_lead_topic' ) ) || isset( $this->options['bottom'] ) && in_array( current_filter(), array( 'bbp_template_after_single_topic', 'bbp_template_after_lead_topic' ) ) ) ) || ( isset( $this->options['woocom_shop'] ) && current_filter() == 'woocommerce_after_shop_loop_item' ) || ( isset( $this->options['woocom_product'] ) && current_filter() == 'woocommerce_share' ) || ( isset( $this->options['woocom_thankyou'] ) && current_filter() == 'woocommerce_thankyou' ) || (current_filter() == 'bp_before_group_header' && isset( $this->options['bp_group'] ) ) ) {
521
  if ( in_array( current_filter(), array( 'bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bbp_template_after_single_topic', 'bbp_template_after_lead_topic', 'bbp_template_after_single_forum', 'woocommerce_after_shop_loop_item', 'woocommerce_share', 'woocommerce_thankyou', 'bp_before_group_header' ) ) ) {
522
- echo '<div style="clear:both"></div>' . $horizontal_div . '<div style="clear:both"></div>';
523
  } else {
524
  if ( isset( $this->options['top'] ) && isset( $this->options['bottom'] ) ) {
525
  $content = $horizontal_div . '<br/>' . $content . '<br/>' . $horizontal_div;
@@ -547,7 +1168,7 @@ class Sassy_Social_Share_Public {
547
  }
548
  }
549
  }
550
- if ( isset( $this->options['vertical_enable'] ) && ! ( isset( $sharing_meta['vertical_sharing'] ) && $sharing_meta['vertical_sharing'] == 1 && ( ! is_front_page() || ( is_front_page() && 'page' == get_option('show_on_front' ) ) ) ) ) {
551
  $post_id = $post -> ID;
552
  $post_url = get_permalink( $post->ID );
553
 
@@ -576,14 +1197,14 @@ class Sassy_Social_Share_Public {
576
  $offset = ( $this->options['alignment'] != '' && $this->options[$this->options['alignment'].'_offset'] != '' ? $this->options['alignment'] . ': ' . $this->options[$this->options['alignment'].'_offset'] . 'px;' : '' ) . ( $this->options['top_offset'] != '' ? 'top: '.$this->options['top_offset'] . 'px;' : '' );
577
  $vertical_div = "<div class='heateor_sss_sharing_container heateor_sss_vertical_sharing" . ( isset( $this->options['bottom_mobile_sharing'] ) ? ' heateor_sss_bottom_sharing' : '' ) . "' style='width:" . ( $vertical_sharing_width + 4 ) . "px;" . $offset . ( $this->options['vertical_bg'] != '' ? 'background-color: '.$this->options['vertical_bg'] : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;' ) . "' " . ( $this->get_cached_share_count( $this->share_count_transient_id ) === false ? "heateor-sss-data-href='" . $post_url . "'" : '' ) . ">" . $sharing_div . "</div>";
578
  // show vertical sharing
579
- if ( ( isset( $this->options['vertical_home'] ) && is_front_page() ) || ( isset( $this->options['vertical_category'] ) && is_category() ) || ( isset( $this->options['vertical_archive'] ) && is_archive() ) || ( isset( $this->options['vertical_post'] ) && is_single() && isset( $post -> post_type ) && $post -> post_type == 'post' ) || ( isset( $this->options['vertical_page'] ) && is_page() && isset( $post -> post_type ) && $post -> post_type == 'page' ) || ( isset( $this->options['vertical_excerpt'] ) && is_front_page() && current_filter() == 'get_the_excerpt' ) || ( isset( $this->options['vertical_bb_forum'] ) && current_filter() == 'bbp_template_before_single_forum' ) || ( isset( $this->options['vertical_bb_topic'] ) && in_array( current_filter(), array( 'bbp_template_before_single_topic', 'bbp_template_before_lead_topic' )) ) || (current_filter() == 'bp_before_group_header' && isset( $this->options['vertical_bp_group'] ) ) ) {
580
  if ( in_array( current_filter(), array( 'bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bp_before_group_header' ) ) ) {
581
  echo $vertical_div;
582
  } else {
583
  if ( is_front_page() ) {
584
  if ( current_filter() == 'the_content' ) {
585
  $var = $this->vertical_home_count;
586
- } elseif ( current_filter() == 'get_the_excerpt' ) {
587
  $var = $this->vertical_excerpt_count;
588
  }
589
  if ( $var == 0 ) {
@@ -598,7 +1219,7 @@ class Sassy_Social_Share_Public {
598
  $content = $content . $vertical_div;
599
  if ( current_filter() == 'the_content' ) {
600
  $this->vertical_home_count++;
601
- } elseif ( current_filter() == 'get_the_excerpt' ) {
602
  $this->vertical_excerpt_count++;
603
  }
604
  }
@@ -630,7 +1251,7 @@ class Sassy_Social_Share_Public {
630
  }
631
 
632
  /**
633
- * Get sharing count for providers
634
  *
635
  * @since 1.0.0
636
  */
@@ -729,12 +1350,12 @@ class Sassy_Social_Share_Public {
729
  }
730
  if ( $url == '' ) { continue; }
731
  $response = wp_remote_get( $url, array( 'timeout' => 15 ) );
732
- if( ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 200 === $response['response']['code'] ) {
733
  $body = wp_remote_retrieve_body( $response );
734
  if ( $provider == 'pinterest' ) {
735
- $body = str_replace( array( 'heateorSss(', ')' ), '', $body );
736
  }
737
- if ( ! in_array( $provider, array( 'google_plus', 'vkontakte') ) ) {
738
  $body = json_decode( $body );
739
  }
740
  switch ( $provider ) {
@@ -815,7 +1436,7 @@ class Sassy_Social_Share_Public {
815
  case 'vkontakte':
816
  if ( ! empty( $body ) ) {
817
  $response_data[$target_url]['vkontakte'] = $body;
818
- $share_count_transient['vkontakte'] = (int) str_replace(array('VK.Share.count(0, ', ');'), '', $body);
819
  } else {
820
  $response_data[$target_url]['vkontakte'] = 0;
821
  }
@@ -847,13 +1468,21 @@ class Sassy_Social_Share_Public {
847
  }
848
 
849
  /**
850
- * Stylesheets to load at front end.
851
  *
852
- * @since 1.0.0
853
  */
854
- public function frontend_styles() {
 
 
 
 
 
 
 
 
 
855
  ?>
856
- <style type="text/css">
857
  .heateor_sss_horizontal_sharing .heateorSssSharing{
858
  <?php if ( $this->options['horizontal_bg_color_default'] != '' ) { ?>
859
  background-color: <?php echo $this->options['horizontal_bg_color_default'] ?>;
@@ -867,9 +1496,9 @@ class Sassy_Social_Share_Public {
867
  $border_width = $this->options['horizontal_border_width_hover'];
868
  }
869
  ?>
870
- border-width: <?php echo $border_width ?>px;
871
- border-style: solid;
872
- border-color: <?php echo $this->options['horizontal_border_color_default'] != '' ? $this->options['horizontal_border_color_default'] : 'transparent'; ?>;
873
  }
874
  <?php if ( $this->options['horizontal_font_color_default'] == '' ) { ?>
875
  .heateor_sss_horizontal_sharing .heateorSssTCBackground{
@@ -883,7 +1512,7 @@ class Sassy_Social_Share_Public {
883
  if ( $this->options['horizontal_font_color_hover'] != '' ) { ?>
884
  color: <?php echo $this->options['horizontal_font_color_hover'] ?>;
885
  <?php } ?>
886
- border-color: <?php echo $this->options['horizontal_border_color_hover'] != '' ? $this->options['horizontal_border_color_hover'] : 'transparent'; ?>;
887
  }
888
  .heateor_sss_vertical_sharing .heateorSssSharing{
889
  <?php if ( $this->options['vertical_bg_color_default'] != '' ) { ?>
@@ -898,9 +1527,9 @@ class Sassy_Social_Share_Public {
898
  $verticalBorderWidth = $this->options['vertical_border_width_hover'];
899
  }
900
  ?>
901
- border-width: <?php echo $verticalBorderWidth ?>px;
902
- border-style: solid;
903
- border-color: <?php echo $this->options['vertical_border_color_default'] != '' ? $this->options['vertical_border_color_default'] : 'transparent'; ?>;
904
  }
905
  <?php if ( $this->options['horizontal_font_color_default'] == '' ) { ?>
906
  .heateor_sss_vertical_sharing .heateorSssTCBackground{
@@ -914,7 +1543,7 @@ class Sassy_Social_Share_Public {
914
  if ( $this->options['vertical_font_color_hover'] != '' ) { ?>
915
  color: <?php echo $this->options['vertical_font_color_hover'] ?>;
916
  <?php } ?>
917
- border-color: <?php echo $this->options['vertical_border_color_hover'] != '' ? $this->options['vertical_border_color_hover'] : 'transparent'; ?>;
918
  }
919
  <?php
920
  if ( isset( $this->options['horizontal_counts'] ) ) {
@@ -955,13 +1584,24 @@ class Sassy_Social_Share_Public {
955
  <?php
956
  }
957
  }
958
- echo isset( $this->options['hide_mobile_sharing'] ) && $this->options['vertical_screen_width'] != '' ? '@media screen and (max-width:' . $this->options['vertical_screen_width'] . 'px){.heateor_sss_vertical_sharing{display:none!important}}' : '';
959
  $bottom_sharing_postion_inverse = $this->options['bottom_sharing_alignment'] == 'left' ? 'right' : 'left';
960
- echo isset( $this->options['bottom_mobile_sharing'] ) && $this->options['horizontal_screen_width'] != '' ? '@media screen and (max-width:' . $this->options['horizontal_screen_width'] . 'px){.heateor_sss_bottom_sharing{' . ( $this->options['bottom_sharing_position'] != '' ? $this->options['bottom_sharing_alignment'] . ':' . $this->options['bottom_sharing_position'] . 'px!important;' . $bottom_sharing_postion_inverse . ':auto!important;' : '' ) . 'display:block!important;width: auto!important;bottom: -10px!important;top: auto!important;}.heateor_sss_bottom_sharing .heateor_sss_square_count{line-height: inherit;}.heateor_sss_bottom_sharing .heateorSssSharingArrow{display:none;}.heateor_sss_bottom_sharing .heateorSssTCBackground{margin-right: 1.1em !important}}' : '';
961
  echo $this->options['custom_css'];
962
- ?>
963
- </style>
964
- <?php
 
 
 
 
 
 
 
 
 
 
 
965
  wp_enqueue_style( 'heateor_sss_frontend_css', plugins_url( 'css/sassy-social-share-public.css', __FILE__ ), false, $this->version );
966
  $default_svg = false;
967
  if ( isset( $this->options['hor_enable'] ) ) {
@@ -996,6 +1636,85 @@ class Sassy_Social_Share_Public {
996
 
997
  }
998
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
999
  public function update_db_check() {
1000
 
1001
  $current_version = get_option( 'heateor_sss_version' );
78
  */
79
  public function init() {
80
 
81
+ // Javascript for front-end of website
82
  add_action( 'wp_enqueue_scripts', array( $this, 'frontend_scripts' ) );
83
+ // Javascript for AMP pages
84
+ add_action( 'amp_post_template_head', array( $this, 'frontend_scripts' ) );
85
+ // inline style for front-end of website
86
+ add_action( 'wp_enqueue_scripts', array( $this, 'frontend_inline_style' ) );
87
+ // inline style for AMP pages
88
+ add_action( 'amp_post_template_css', array( $this, 'frontend_inline_style' ) );
89
+ // stylesheet files for front-end of website
90
+ add_action( 'wp_enqueue_scripts', array( $this, 'frontend_css' ) );
91
+ // stylesheet files for AMP pages
92
+ add_action( 'amp_post_template_css', array( $this, 'frontend_amp_css' ) );
93
 
94
  }
95
 
102
 
103
  $in_footer = isset( $this->options['footer_script'] ) ? true : false;
104
  ?>
105
+ <script type="text/javascript">function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}}</script>
106
  <?php
107
  global $post;
108
  if ( $post ) {
120
  echo ! isset( $this->options['vertical_counter_position'] ) || in_array( $this->options['vertical_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceVerticalSvgHeight = true;' : '';
121
  }
122
  ?>
123
+ var heateorSssUrlCountFetched = [], heateorSssSharesText = '<?php echo htmlspecialchars(__('Shares', 'sassy-social-share'), ENT_QUOTES); ?>', heateorSssShareText = '<?php echo htmlspecialchars(__('Share', 'sassy-social-share'), ENT_QUOTES); ?>';
124
+ function heateorSssPopup(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")}
125
  </script>
126
  <?php
127
  if ( $this->facebook_like_recommend_enabled() ) {
128
  ?>
129
  <script type="text/javascript">
130
+ function heateorSssInitiateFB() {FB.init({appId:"",channelUrl:"",status:!0,cookie:!0,xfbml:!0,version:"v2.5"})}window.fbAsyncInit=function() {heateorSssInitiateFB(),<?php echo defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && $this->facebook_like_recommend_enabled() ? 1 : 0 ?>&&(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")}) ),<?php echo defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) ? 1 : 0 ?>&&(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 n,i="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(i)||(n=e.createElement("script"),n.id=i,n.async=!0,n.src="//connect.facebook.net/<?php echo $this->options['language'] ? $this->options['language'] : 'en_US' ?>/sdk.js",o.parentNode.insertBefore(n,o) )}(document);
131
+ </script>
132
+ <?php
133
+ }
134
+ if ( current_filter() == 'amp_post_template_head' ) {
135
+ // default post url
136
+ global $post;
137
+ $post_url = html_entity_decode( esc_url( $this->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
138
+ if ( $this->options['horizontal_target_url'] == 'default' ) {
139
+ $post_url = get_permalink( $post->ID );
140
+ if ( $post_url == '' ) {
141
+ $post_url = html_entity_decode( esc_url( $this->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
142
+ }
143
+ } elseif ( $this->options['horizontal_target_url'] == 'home' ) {
144
+ $post_url = site_url();
145
+ } elseif ( $this->options['horizontal_target_url'] == 'custom' ) {
146
+ $post_url = $this->options['horizontal_target_url_custom'] ? $this->options['horizontal_target_url_custom'] : get_permalink( $post->ID );
147
+ }
148
+
149
+ $sharing_url = $this->get_short_url( $post_url, $post->ID );
150
+
151
+ $post_title = $post->post_title;
152
+
153
+ $post_title = html_entity_decode( $post_title, ENT_QUOTES, 'UTF-8' );
154
+ $post_title = urlencode( $post_title );
155
+ $post_title = str_replace( array( '#', '%27', '%22' ), array( '%23', "'", '\"' ), $post_title );
156
+ $post_title = esc_html( $post_title );
157
+ ?>
158
+ <script type="text/javascript">
159
+ heateorSssLoadEvent(
160
+ function(){
161
+ var moreIcons = document.getElementsByClassName("heateorSssMoreBackground");
162
+ for(var i = 0; i < moreIcons.length; i++){
163
+ moreIcons[i].onclick = function(){
164
+ heateorSssMoreSharingPopup(null, '<?php echo $sharing_url ? $sharing_url : $post_url ?>', '<?php echo $post_title ?>')
165
+ }
166
+ }
167
+
168
+ var printIcons = document.getElementsByClassName("heateorSssPrintBackground");
169
+ for(var i = 0; i < printIcons.length; i++){
170
+ printIcons[i].onclick = function(){
171
+ window.print();
172
+ }
173
+ }
174
+
175
+ var pinterestIcons = document.getElementsByClassName("heateorSssPinterestBackground");
176
+ for(var i = 0; i < pinterestIcons.length; i++){
177
+ pinterestIcons[i].onclick = function(){
178
+ 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);
179
+ }
180
+ }
181
+ }
182
+ );
183
+
184
+ function heateorSssCapitaliseFirstLetter(e) {
185
+ return e.charAt(0).toUpperCase() + e.slice(1)
186
+ }
187
+
188
+ /**
189
+ * Search sharing services
190
+ */
191
+ function heateorSssFilterSharing(val) {
192
+ var sharingServices = document.getElementById('heateor_sss_sharing_more_content').getElementsByTagName('a');
193
+ for(var i = 0; i < sharingServices.length; i++){
194
+ if (sharingServices[i].innerText.toLowerCase().indexOf(val.toLowerCase()) != -1) {
195
+ sharingServices[i].parentNode.style.display = 'block';
196
+ //jQuery(this).parent().css('display', 'block');
197
+ } else {
198
+ sharingServices[i].parentNode.style.display = 'none';
199
+ }
200
+ }
201
+ };
202
+
203
+ function heateorSssMoreSharingPopup(elem, postUrl, postTitle){
204
+ concate = '</ul></div><div class="footer-panel"><p></p></div></div>';
205
+ var heateorSssMoreSharingServices = {
206
+ facebook: {
207
+ title: "Facebook",
208
+ locale: "en-US",
209
+ redirect_url: "http://www.facebook.com/sharer.php?u=" + postUrl + "&t=" + postTitle + "&v=3",
210
+ },
211
+ twitter: {
212
+ title: "Twitter",
213
+ locale: "en-US",
214
+ redirect_url: "http://twitter.com/intent/tweet?text=" + postTitle + " " + postUrl,
215
+ },
216
+ google: {
217
+ title: "Google plus",
218
+ locale: "en-US",
219
+ redirect_url: "https://plus.google.com/share?url=" + postUrl,
220
+ },
221
+ linkedin: {
222
+ title: "Linkedin",
223
+ locale: "en-US",
224
+ redirect_url: "http://www.linkedin.com/shareArticle?mini=true&url=" + postUrl + "&title=" + postTitle,
225
+ },
226
+ pinterest: {
227
+ title: "Pinterest",
228
+ locale: "en-US",
229
+ redirect_url: "https://pinterest.com/pin/create/button/?url=" + postUrl + "&media=${media_link}&description=" + postTitle,
230
+ 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)})());"
231
+ },
232
+ yahoo_bookmarks: {
233
+ title: "Yahoo",
234
+ locale: "en-US",
235
+ redirect_url: "http://bookmarks.yahoo.com/toolbar/savebm?u=" + postUrl + "&t=" + postTitle,
236
+ },
237
+ email: {
238
+ title: "Email",
239
+ locale: "en-US",
240
+ redirect_url: "mailto:?subject=" + postTitle + "&body=Link: " + postUrl,
241
+ },
242
+ delicious: {
243
+ title: "Delicious",
244
+ locale: "en-US",
245
+ redirect_url: "http://delicious.com/save?url=" + postUrl + "&title=" + postTitle,
246
+ },
247
+ reddit: {
248
+ title: "Reddit",
249
+ locale: "en-US",
250
+ redirect_url: "http://reddit.com/submit?url=" + postUrl + "&title=" + postTitle,
251
+ },
252
+ float_it: {
253
+ title: "Float it",
254
+ locale: "en-US",
255
+ redirect_url: "http://www.designfloat.com/submit.php?url=" + postUrl + "&title=" + postTitle,
256
+ },
257
+ google_mail: {
258
+ title: "Google Gmail",
259
+ locale: "en-US",
260
+ redirect_url: "https://mail.google.com/mail/?ui=2&view=cm&fs=1&tf=1&su=" + postTitle + "&body=Link: " + postUrl,
261
+ },
262
+ google_bookmarks: {
263
+ title: "Google Bookmarks",
264
+ locale: "en-US",
265
+ redirect_url: "http://www.google.com/bookmarks/mark?op=edit&bkmk=" + postUrl + "&title=" + postTitle,
266
+ },
267
+ digg: {
268
+ title: "Digg",
269
+ locale: "en-US",
270
+ redirect_url: "http://digg.com/submit?phase=2&url=" + postUrl + "&title=" + postTitle,
271
+ },
272
+ stumbleupon: {
273
+ title: "Stumbleupon",
274
+ locale: "en-US",
275
+ redirect_url: "http://www.stumbleupon.com/submit?url=" + postUrl + "&title=" + postTitle,
276
+ },
277
+ printfriendly: {
278
+ title: "PrintFriendly",
279
+ locale: "en-US",
280
+ redirect_url: "http://www.printfriendly.com/print?url=" + postUrl,
281
+ },
282
+ print: {
283
+ title: "Print",
284
+ locale: "en-US",
285
+ redirect_url: "http://www.printfriendly.com/print?url=" + postUrl,
286
+ },
287
+ tumblr: {
288
+ title: "Tumblr",
289
+ locale: "en-US",
290
+ redirect_url: "http://www.tumblr.com/share?v=3&u=" + postUrl + "&t=" + postTitle,
291
+ 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);"
292
+ },
293
+ vk: {
294
+ title: "Vkontakte",
295
+ locale: "ru",
296
+ redirect_url: "https://vk.com/share.php?url=" + postUrl + "&title=" + postTitle,
297
+ },
298
+ evernote: {
299
+ title: "Evernote",
300
+ locale: "en-US",
301
+ redirect_url: "https://www.evernote.com/clip.action?url=" + postUrl + "&title=" + postTitle,
302
+ 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);}})();"
303
+ },
304
+ amazon_us_wish_list: {
305
+ title: "Amazon Wish List",
306
+ locale: "en-US",
307
+ redirect_url: "http://www.amazon.com/wishlist/add?u=" + postUrl + "&t=" + postTitle,
308
+ 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();}())"
309
+ },
310
+ wordpress_blog: {
311
+ title: "WordPress",
312
+ locale: "en-US",
313
+ redirect_url: "http://www.addtoany.com/ext/wordpress/press_this?linkurl=" + postUrl + "&linkname=" + postTitle,
314
+ },
315
+ whatsapp: {
316
+ title: "Whatsapp",
317
+ locale: "en-US",
318
+ redirect_url: "whatsapp://send?text=" + postTitle + " " + postUrl,
319
+ },
320
+ diigo: {
321
+ title: "Diigo",
322
+ locale: "en-US",
323
+ redirect_url: "http://www.diigo.com/post?url=" + postUrl + "&title=" + postTitle,
324
+ },
325
+ yc_hacker_news: {
326
+ title: "Hacker News",
327
+ locale: "en-US",
328
+ redirect_url: "http://news.ycombinator.com/submitlink?u=" + postUrl + "&t=" + postTitle,
329
+ },
330
+ box_net: {
331
+ title: "Box.net",
332
+ locale: "en-US",
333
+ redirect_url: "https://www.box.net/api/1.0/import?url=" + postUrl + "&name=" + postTitle + "&import_as=link",
334
+ },
335
+ aol_mail: {
336
+ title: "AOL Mail",
337
+ locale: "en-US",
338
+ redirect_url: "http://webmail.aol.com/25045/aol/en-us/Mail/compose-message.aspx?subject=" + postTitle + "&body=" + postUrl,
339
+ },
340
+ yahoo_mail: {
341
+ title: "Yahoo Mail",
342
+ locale: "en-US",
343
+ redirect_url: "http://compose.mail.yahoo.com/?Subject=" + postTitle + "&body=Link: " + postUrl,
344
+ },
345
+ instapaper: {
346
+ title: "Instapaper",
347
+ locale: "en-US",
348
+ redirect_url: "http://www.instapaper.com/edit?url=" + postUrl + "&title=" + postTitle,
349
+ },
350
+ plurk: {
351
+ title: "Plurk",
352
+ locale: "en-US",
353
+ redirect_url: "http://www.plurk.com/m?content=" + postUrl + "&qualifier=shares",
354
+ },
355
+ wanelo: {
356
+ title: "Wanelo",
357
+ locale: "en-US",
358
+ redirect_url: "http://wanelo.com/p/post?bookmarklet=&images%5B%5D=&url=" + postUrl + "&title=" + postTitle + "&price=&shop=",
359
+ 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))"
360
+ },
361
+ aim: {
362
+ title: "AIM",
363
+ locale: "en-US",
364
+ redirect_url: "http://share.aim.com/share/?url=" + postUrl + "&title=" + postTitle,
365
+ },
366
+ stumpedia: {
367
+ title: "Stumpedia",
368
+ locale: "en-US",
369
+ redirect_url: "http://www.stumpedia.com/submit?url=" + postUrl + "&title=" + postTitle,
370
+ },
371
+ viadeo: {
372
+ title: "Viadeo",
373
+ locale: "en-US",
374
+ redirect_url: "http://www.viadeo.com/shareit/share/?url=" + postUrl + "&title=" + postTitle,
375
+ },
376
+ yahoo_messenger: {
377
+ title: "Yahoo Messenger",
378
+ locale: "en-US",
379
+ redirect_url: "ymsgr:sendim?m=" + postUrl,
380
+ },
381
+ pinboard_in: {
382
+ title: "Pinboard",
383
+ locale: "en-US",
384
+ redirect_url: "http://pinboard.in/add?url=" + postUrl + "&title=" + postTitle,
385
+ },
386
+ blogger_post: {
387
+ title: "Blogger Post",
388
+ locale: "en-US",
389
+ redirect_url: "http://www.blogger.com/blog_this.pyra?t=&u=" + postUrl + "&l&n=" + postTitle,
390
+ },
391
+ typepad_post: {
392
+ title: "TypePad Post",
393
+ locale: "en-US",
394
+ redirect_url: "http://www.typepad.com/services/quickpost/post?v=2&qp_show=ac&qp_title=" + postTitle + "&qp_href=" + postUrl + "&qp_text=" + postTitle,
395
+ },
396
+ buffer: {
397
+ title: "Buffer",
398
+ locale: "en-US",
399
+ redirect_url: "http://bufferapp.com/add?url=" + postUrl + "&text=" + postTitle,
400
+ },
401
+ flipboard: {
402
+ title: "Flipboard",
403
+ locale: "en-US",
404
+ redirect_url: "https://share.flipboard.com/flipit/load?v=1.0&url=" + postUrl + "&title=" + postTitle,
405
+ },
406
+ mail: {
407
+ title: "Email",
408
+ locale: "en-US",
409
+ redirect_url: "mailto:?subject=" + postTitle + "&body=Link: " + postUrl,
410
+ },
411
+ pocket: {
412
+ title: "Pocket",
413
+ locale: "en-US",
414
+ redirect_url: "https://readitlaterlist.com/save?url=" + postUrl + "&title=" + postTitle,
415
+ },
416
+ fark: {
417
+ title: "Fark",
418
+ locale: "en-US",
419
+ redirect_url: "http://cgi.fark.com/cgi/fark/submit.pl?new_url=" + postUrl,
420
+ },
421
+ yummly: {
422
+ title: "Yummly",
423
+ locale: "en-US",
424
+ redirect_url: "http://www.yummly.com/urb/verify?url=" + postUrl + "&title=" + postTitle,
425
+ },
426
+ app_net: {
427
+ title: "App.net",
428
+ locale: "en-US",
429
+ redirect_url: "https://account.app.net/login/",
430
+ },
431
+ baidu: {
432
+ title: "Baidu",
433
+ locale: "en-US",
434
+ redirect_url: "http://cang.baidu.com/do/add?it=" + postTitle + "&iu=" + postUrl,
435
+ },
436
+ balatarin: {
437
+ title: "Balatarin",
438
+ locale: "en-US",
439
+ redirect_url: "https://www.balatarin.com/login",
440
+ },
441
+ bibSonomy: {
442
+ title: "BibSonomy",
443
+ locale: "en-US",
444
+ redirect_url: "http://www.bibsonomy.org/login",
445
+ },
446
+ Bitty_Browser: {
447
+ title: "Bitty Browser",
448
+ locale: "en-US",
449
+ redirect_url: "http://www.bitty.com/manual/?contenttype=&contentvalue=" + postUrl,
450
+ },
451
+ Blinklist: {
452
+ title: "Blinklist",
453
+ locale: "en-US",
454
+ redirect_url: "http://blinklist.com/blink?t=" + postTitle + "&d=&u=" + postUrl,
455
+ },
456
+ BlogMarks: {
457
+ title: "BlogMarks",
458
+ locale: "en-US",
459
+ redirect_url: "http://blogmarks.net/my/new.php?mini=1&simple=1&title=" + postTitle + "&url=" + postUrl,
460
+ },
461
+ Bookmarks_fr: {
462
+ title: "Bookmarks.fr",
463
+ locale: "en-US",
464
+ redirect_url: "http://www.bookmarks.fr/Connexion/?action=add&address=" + postUrl + "&title=" + postTitle,
465
+ },
466
+ BuddyMarks: {
467
+ title: "BuddyMarks",
468
+ locale: "en-US",
469
+ redirect_url: "http://buddymarks.com/login.php?bookmark_title=" + postTitle + "&bookmark_url=" + postUrl + "&bookmark_desc=&bookmark_tags=",
470
+ },
471
+ Care2_news: {
472
+ title: "Care2 News",
473
+ locale: "en-US",
474
+ 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]=",
475
+ },
476
+ CiteULike: {
477
+ title: "Cite U Like",
478
+ locale: "en-US",
479
+ redirect_url: "http://www.citeulike.org/posturl?url=" + postUrl + "&title=" + postTitle,
480
+ },
481
+ Diary_Ru: {
482
+ title: "Diary.Ru",
483
+ locale: "en-US",
484
+ redirect_url: "http://www.diary.ru/?newpost&title=" + postTitle + "&text=" + postUrl,
485
+ },
486
+ diHITT: {
487
+ title: "diHITT",
488
+ locale: "en-US",
489
+ redirect_url: "http://www.dihitt.com/submit?url=" + postUrl + "&title=" + postTitle,
490
+ },
491
+ dzone: {
492
+ title: "DZone",
493
+ locale: "en-US",
494
+ redirect_url: "http://www.dzone.com/links/add.html?url=" + postUrl + "&title=" + postTitle,
495
+ },
496
+ Folkd: {
497
+ title: "Folkd",
498
+ locale: "en-US",
499
+ redirect_url: "http://www.folkd.com/page/social-bookmarking.html?addurl=" + postUrl,
500
+ },
501
+ Hatena: {
502
+ title: "Hatena",
503
+ locale: "en-US",
504
+ redirect_url: "http://b.hatena.ne.jp/bookmarklet?url=" + postUrl + "&btitle=" + postTitle,
505
+ },
506
+ Jamespot: {
507
+ title: "Jamespot",
508
+ locale: "en-US",
509
+ redirect_url: "//my.jamespot.com/",
510
+ },
511
+ Kakao: {
512
+ title: "Kakao",
513
+ locale: "en-US",
514
+ redirect_url: "https://story.kakao.com/share?url=" + postUrl,
515
+ },
516
+ Kindle_It: {
517
+ title: "Kindle_It",
518
+ locale: "en-US",
519
+ redirect_url: "//fivefilters.org/kindle-it/send.php?url=" + postUrl,
520
+ },
521
+ Known: {
522
+ title: "Known",
523
+ locale: "en-US",
524
+ redirect_url: "https://withknown.com/share/?url=" + postUrl + "&title=" + postTitle,
525
+ },
526
+ Line: {
527
+ title: "Line",
528
+ locale: "en-US",
529
+ redirect_url: "line://msg/text/" + postTitle + "! " + postUrl,
530
+ },
531
+ LiveJournal: {
532
+ title: "LiveJournal",
533
+ locale: "en-US",
534
+ redirect_url: "http://www.livejournal.com/update.bml?subject=" + postTitle + "&event=" + postUrl,
535
+ },
536
+ Mail_Ru: {
537
+ title: "Mail.Ru",
538
+ locale: "en-US",
539
+ redirect_url: "http://connect.mail.ru/share?share_url=" + postUrl,
540
+ },
541
+ Mendeley: {
542
+ title: "Mendeley",
543
+ locale: "en-US",
544
+ redirect_url: "https://www.mendeley.com/sign-in/",
545
+ },
546
+ Meneame: {
547
+ title: "Meneame",
548
+ locale: "en-US",
549
+ redirect_url: "https://www.meneame.net/submit.php?url=" + postUrl,
550
+ },
551
+ Mixi: {
552
+ title: "Mixi",
553
+ locale: "en-US",
554
+ redirect_url: "https://mixi.jp/share.pl?mode=login&u=" + postUrl,
555
+ },
556
+ MySpace: {
557
+ title: "Mixi",
558
+ locale: "en-US",
559
+ redirect_url: "https://myspace.com/",
560
+ },
561
+ Netlog: {
562
+ title: "Netlog",
563
+ locale: "en-US",
564
+ redirect_url: "http://www.netlog.com/go/manage/links/view=save&origin=external&url=" + postUrl + "&title=" + postTitle + "&description=",
565
+ },
566
+ Netvouz: {
567
+ title: "Netvouz",
568
+ locale: "en-US",
569
+ redirect_url: "http://www.netvouz.com/action/submitBookmark?url=" + postUrl + "&title=" + postTitle + "&popup=no&description=",
570
+ },
571
+ NewsVine: {
572
+ title: "NewsVine",
573
+ locale: "en-US",
574
+ redirect_url: "http://www.newsvine.com/_tools/seed?popoff=0&u=" + postUrl + "&h=" + postTitle,
575
+ },
576
+ NUjij: {
577
+ title: "NUjij",
578
+ locale: "en-US",
579
+ redirect_url: "http://www.nujij.nl/nieuw-bericht.2051051.lynkx?title=" + postTitle + "&url=" + postUrl + "&bericht=&topic=",
580
+ },
581
+ Odnoklassniki: {
582
+ title: "Odnoklassniki",
583
+ locale: "en-US",
584
+ redirect_url: "https://connect.ok.ru/dk?cmd=WidgetSharePreview&st.cmd=WidgetSharePreview&st.shareUrl=" + postUrl + "&st.client_id=-1",
585
+ },
586
+ Oknotizie: {
587
+ title: "Oknotizie",
588
+ locale: "en-US",
589
+ redirect_url: "//oknotizie.virgilio.it/post?url=" + postUrl + "&title=" + postTitle,
590
+ },
591
+ Outlook_com: {
592
+ title: "Outlook.com",
593
+ locale: "en-US",
594
+ redirect_url: "https://mail.live.com/default.aspx?rru=compose?subject=" + postTitle + "&body=" + postUrl + "&lc=1033&id=64855&mkt=en-us&cbcxt=mai",
595
+ },
596
+ Protopage_Bookmarks: {
597
+ title: "Protopage_Bookmarks",
598
+ locale: "en-US",
599
+ redirect_url: "http://www.protopage.com/add-button-site?url=" + postUrl + "&label=&type=page",
600
+ },
601
+ Pusha: {
602
+ title: "Pusha",
603
+ locale: "en-US",
604
+ redirect_url: "//www.pusha.se/posta?url=" + postUrl,
605
+ },
606
+ Qzone: {
607
+ title: "Qzone",
608
+ locale: "en-US",
609
+ redirect_url: "http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=" + postUrl,
610
+ },
611
+ Rediff_MyPage: {
612
+ title: "Rediff MyPage",
613
+ locale: "en-US",
614
+ redirect_url: "//share.rediff.com/bookmark/addbookmark?bookmarkurl=" + postUrl + "&title=" + postTitle,
615
+ },
616
+ Renren: {
617
+ title: "Renren",
618
+ locale: "en-US",
619
+ redirect_url: "//www.connect.renren.com/share/sharer?url=" + postUrl + "&title=" + postTitle,
620
+ },
621
+ Segnalo: {
622
+ title: "Segnalo",
623
+ locale: "en-US",
624
+ redirect_url: "http://segnalo.virgilio.it/post.html.php?url=" + postUrl + "&title=" + postTitle,
625
+ },
626
+ Sina_Weibo: {
627
+ title: "Sina Weibo",
628
+ locale: "en-US",
629
+ redirect_url: "//service.weibo.com/share/share.php?url=" + postUrl + "&title=" + postTitle,
630
+ },
631
+ SiteJot: {
632
+ title: "SiteJot",
633
+ locale: "en-US",
634
+ redirect_url: "http://www.sitejot.com/loginform.php?iSiteAdd=&iSiteDes=",
635
+ },
636
+ Slashdot: {
637
+ title: "Slashdot",
638
+ locale: "en-US",
639
+ redirect_url: "//slashdot.org/submission?url=" + postUrl,
640
+ },
641
+ Svejo: {
642
+ title: "Svejo",
643
+ locale: "en-US",
644
+ redirect_url: "https://svejo.net/story/submit_by_url?url=" + postUrl + "&title=" + postTitle + "&summary=",
645
+ },
646
+ Symbaloo_Feeds: {
647
+ title: "Symbaloo_Feeds",
648
+ locale: "en-US",
649
+ redirect_url: "//www.symbaloo.com/",
650
+ },
651
+ Tuenti: {
652
+ title: "Tuenti",
653
+ locale: "en-US",
654
+ redirect_url: "https://www.tuenti.com/share?p=b5dd6602&url=" + postUrl,
655
+ },
656
+ Twiddla: {
657
+ title: "Twiddla",
658
+ locale: "en-US",
659
+ redirect_url: "//www.twiddla.com/New.aspx?url=" + postUrl + "&title=" + postTitle,
660
+ },
661
+ Webnews: {
662
+ title: "Webnews",
663
+ locale: "en-US",
664
+ redirect_url: "//www.webnews.de/login",
665
+ },
666
+ Wykop: {
667
+ title: "Wykop",
668
+ locale: "en-US",
669
+ redirect_url: "//www.wykop.pl/dodaj?url=" + postUrl + "&title=" + postTitle,
670
+ },
671
+ Yoolink: {
672
+ title: "Yoolink",
673
+ locale: "en-US",
674
+ redirect_url: "//yoolink.to/addorshare?url_value=" + postUrl + "&title=" + postTitle,
675
+ },
676
+ YouMob: {
677
+ title: "YouMob",
678
+ locale: "en-US",
679
+ redirect_url: "//youmob.com/startmob.aspx?cookietest=true&mob=" + postUrl,
680
+ }
681
+ }
682
+ var heateorSssMoreSharingServicesHtml = '<button id="heateor_sss_sharing_popup_close" class="close-button separated"><img src="'+ heateorSssCloseIconPath +'" /></button><div id="heateor_sss_sharing_more_content"><div class="filter"><input type="text" onkeyup="heateorSssFilterSharing(this.value.trim())" placeholder="Search" class="search"></div><div class="all-services"><ul class="mini">';
683
+ for(var i in heateorSssMoreSharingServices){
684
+ var tempTitle = heateorSssCapitaliseFirstLetter(heateorSssMoreSharingServices[i].title.replace(/[_. ]/g, ""));
685
+ heateorSssMoreSharingServicesHtml += '<li><a rel="nofollow" title="'+ heateorSssMoreSharingServices[i].title +'" alt="'+ heateorSssMoreSharingServices[i].title +'" ';
686
+ if(heateorSssMoreSharingServices[i].bookmarklet_url){
687
+ heateorSssMoreSharingServicesHtml += 'href="' + heateorSssMoreSharingServices[i].bookmarklet_url + '" ';
688
+ }else{
689
+ heateorSssMoreSharingServicesHtml += 'onclick="heateorSssPopup(\'' + heateorSssMoreSharingServices[i].redirect_url + '\')" href="javascript:void(0)" ';
690
+ }
691
+ heateorSssMoreSharingServicesHtml += '"><i style="width:22px;height:22px" title="'+ heateorSssMoreSharingServices[i].title +'" class="heateorSssSharing heateorSss' + tempTitle + 'Background"><ss style="display:block;width:100%;height:100%;" class="heateorSssSharingSvg heateorSss' + tempTitle + 'Svg"></ss></i>' + heateorSssMoreSharingServices[i].title + '</a></li>';
692
+ }
693
+ heateorSssMoreSharingServicesHtml += concate;
694
+
695
+ var mainDiv = document.createElement('div');
696
+ mainDiv.innerHTML = heateorSssMoreSharingServicesHtml;
697
+ mainDiv.setAttribute('id', 'heateor_sss_sharing_more_providers');
698
+ var bgDiv = document.createElement('div');
699
+ bgDiv.setAttribute('id', 'heateor_sss_popup_bg');
700
+ document.body.appendChild(mainDiv);
701
+ document.body.appendChild(bgDiv);
702
+ document.getElementById('heateor_sss_sharing_popup_close').onclick = function(){
703
+ mainDiv.parentNode.removeChild(mainDiv);
704
+ bgDiv.parentNode.removeChild(bgDiv);
705
+ }
706
+ }
707
  </script>
708
  <?php
709
  }
795
  } else {
796
  $post_title = $post->post_title;
797
  }
798
+ $original_post_title = $post_title = html_entity_decode( $post_title, ENT_QUOTES, 'UTF-8' );
799
+ $post_title = rawurlencode( $post_title );
800
  $post_title = str_replace( '#', '%23', $post_title );
801
  $post_title = esc_html( $post_title );
802
 
901
  $total_share_count = 0;
902
 
903
  $share_count = array();
904
+ $to_be_replaced = array();
905
+ $replace_by = array();
906
+ $current_page_url = html_entity_decode( esc_url( $this->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
907
+ if ( strpos( $current_page_url, '/amp' ) !== false || strpos( $current_page_url, '?amp=1' ) !== false ) {
908
+ $to_be_replaced[] = '<i';
909
+ $to_be_replaced[] = '/i>';
910
+ $to_be_replaced[] = 'onclick=\'heateorSssPopup("';
911
+ $to_be_replaced[] = '")\'';
912
+ $to_be_replaced[] = '%amp_email%';
913
+ $to_be_replaced[] = '%amp_whatsapp%';
914
+
915
+ $replace_by[] = '<a target="_blank"';
916
+ $replace_by[] = '/a>';
917
+ $replace_by[] = 'href="';
918
+ $replace_by[] = '"';
919
+ $replace_by[] = 'href="mailto:?subject=' . urldecode( rawurlencode( $post_title ) ) . '&body=' . urlencode( $post_url ) . '"';
920
+ $replace_by[] = 'class="heateorSssSharing heateorSssAmpWhatsapp" alt="Whatsapp" Title="Whatsapp"';
921
+ }
922
  foreach ( $this->options[$sharing_type.'_re_providers'] as $provider ) {
923
  $share_count[$provider] = $share_counts == '&nbsp;' ? '' : ( isset( $share_counts[$provider] ) ? $share_counts[$provider] : '' );
924
  $isset_starting_share_count = isset( $sharing_meta[$provider . '_' . $sharing_type . '_count'] ) && $sharing_meta[$provider . '_' . $sharing_type . '_count'] != '' ? true : false;
925
+ $total_share_count += intval( $share_count[$provider] ) + ( $isset_starting_share_count ? $sharing_meta[$provider . '_' . $sharing_type . '_count'] : 0) ;
926
+ $sharing_networks[$provider] = str_replace( $to_be_replaced, $replace_by, $sharing_networks[$provider] );
927
  $li_items .= str_replace(
928
  array(
929
  '%padding%',
941
  '%inner_style%',
942
  '%li_class%',
943
  $counter_placeholder,
944
+ '%title%',
945
+ '%amp_email%',
946
+ '%amp_whatsapp%'
947
  ),
948
  array(
949
  ( $this->options[$sharing_type . '_sharing_shape'] == 'rectangle' ? $this->options[$sharing_type . '_sharing_height'] : $this->options[$sharing_type . '_sharing_size'] ) * 21/100,
952
  $like_button_count_container,
953
  $post_url,
954
  $post_title,
955
+ esc_html( str_replace( array('#', '%27', '%22'), array('%23', "'", '"'), urlencode( $original_post_title ) ) ),
956
  $twitter_username,
957
  $twitter_username ? 'via=' . $twitter_username . '&' : '',
958
  $language,
959
  $this->options['buffer_username'] != '' ? $this->options['buffer_username'] : '',
960
  $style,
961
+ $inner_style . ( $share_count[$provider] || ( $isset_starting_share_count && $share_counts != '&nbsp;' ) ? $inner_style_conditional : '' ),
962
  $li_class,
963
  str_replace( '%network%', $provider, $isset_starting_share_count ? str_replace( '>&nbsp;', ' sss_st_count="' . $sharing_meta[$provider . '_' . $sharing_type . '_count'] . '"' . ( $share_counts == '&nbsp;' ? '>&nbsp;' : ' style="visibility:visible;' . ( $inner_style_conditional ? 'display:block;' : '' ) . '">' . $this->round_off_counts( $share_count[$provider] + $sharing_meta[$provider . '_' . $sharing_type . '_count'] ) ) , $counter_placeholder_value ) : str_replace( '>&nbsp;', $share_count[$provider] ? ' style="visibility:visible;' . ( $inner_style_conditional ? 'display:block;' : '' ) . '">' . $this->round_off_counts( $share_count[$provider] ) : '>&nbsp;', $counter_placeholder_value ) ),
964
+ ucfirst( str_replace( '_', ' ', $provider ) ),
965
+ '',
966
+ ''
967
  ),
968
  $sharing_networks[$provider]
969
  );
990
  }
991
  $add_style .= ( $total_share_count && $share_counts != '&nbsp;' ? 'visibility:visible;' : '' ) . '"';
992
  $style = str_replace( ';"', $add_style, $style );
993
+ $total_shares_html .= '<i ' . $style . ' title="Total Shares" alt="Total Shares" class="heateorSssSharing heateorSssTCBackground">' . ( $total_share_count ? '<div class="heateorSssTotalShareCount" style="font-size: ' . ( $icon_height * 62/100 ) . 'px">' . $this->round_off_counts( $total_share_count ) . '</div><div class="heateorSssTotalShareText" style="font-size: ' . ( $icon_height * 38/100 ) . 'px">' . ( $total_share_count < 2 ? __( 'Share', 'sassy-social-share' ) : __( 'Shares', 'sassy-social-share' ) ) . '</div>' : '' ) . '</i></li>';
994
  }
995
 
996
  if ( $sharing_type == 'vertical' ) {
999
  $html .= $li_items . $total_shares_html;
1000
  }
1001
 
1002
+ $html .= '</ul><div class="heateorSssClear"></div>';
1003
  }
1004
  return $html;
1005
  }
1016
  $sharing_count = round( $sharing_count/1000 ) . 'K';
1017
  } elseif ( $sharing_count > 9999 && $sharing_count < 100000 ) {
1018
  $sharing_count = round( $sharing_count/1000 ) . 'K';
1019
+ } else if ( $sharing_count > 99999 && $sharing_count < 1000000 ) {
1020
  $sharing_count = round( $sharing_count/1000 ) . 'K';
1021
  } else if ( $sharing_count > 999999 ) {
1022
  $sharing_count = round( $sharing_count/1000000 ) . 'M';
1055
 
1056
  }
1057
 
1058
+ /**
1059
+ * Remove render sharing action from Excerpts, as it gets nasty due to strip_tags()
1060
+ *
1061
+ * @since 2.0
1062
+ */
1063
+ public function remove_render_sharing( $content ) {
1064
+
1065
+ if ( is_home() ) {
1066
+ remove_action( 'the_content', array( $this, 'render_sharing' ) );
1067
+ }
1068
+ return $content;
1069
+
1070
+ }
1071
+
1072
  /**
1073
  * Enable sharing interface at selected areas.
1074
  *
1097
  $post_types = array_diff( $post_types, array( 'post', 'page' ) );
1098
 
1099
  // sharing interface
1100
+ if ( isset( $this->options['hor_enable'] ) && ! ( isset( $sharing_meta['sharing'] ) && $sharing_meta['sharing'] == 1 && ( ! is_front_page() || ( is_front_page() && 'page' == get_option( 'show_on_front' ) ) ) ) ) {
1101
  $post_id = $post -> ID;
1102
  // default post url
1103
  $post_url = get_permalink( $post->ID );
1133
  $sharing_title_style = 'style="font-weight: bold;list-style: none;position: relative;left: 50%;"';
1134
  }
1135
 
1136
+ $horizontal_div = "<div class='heateorSssClear'></div><div ". $sharing_container_style ." class='heateor_sss_sharing_container heateor_sss_horizontal_sharing' " . ( $this->get_cached_share_count( $this->share_count_transient_id ) === false ? "heateor-sss-data-href='" . $post_url . "'" : '' ) . "><div class='heateor_sss_sharing_title' " . $sharing_title_style . " >" . ucfirst( $this->options['title'] ) . "</div>" . $sharing_div . "</div><div class='heateorSssClear'></div>";
1137
  if ( $sharing_bp_activity ) {
1138
  echo $horizontal_div;
1139
  }
1140
  // show horizontal sharing
1141
+ if ( ( isset( $this->options['home'] ) && is_front_page() ) || ( isset( $this->options['category'] ) && is_category() ) || ( isset( $this->options['archive'] ) && is_archive() ) || ( isset( $this->options['post'] ) && is_single() && isset( $post -> post_type ) && $post -> post_type == 'post' ) || ( isset( $this->options['page'] ) && is_page() && isset( $post -> post_type ) && $post -> post_type == 'page' ) || ( isset( $this->options['excerpt'] ) && (is_home() || current_filter() == 'the_excerpt' ) ) || ( isset( $this->options['bb_reply'] ) && current_filter() == 'bbp_get_reply_content' ) || ( isset( $this->options['bb_forum'] ) && ( isset( $this->options['top'] ) && current_filter() == 'bbp_template_before_single_forum' || isset( $this->options['bottom'] ) && current_filter() == 'bbp_template_after_single_forum' ) ) || ( isset( $this->options['bb_topic'] ) && ( isset( $this->options['top'] ) && in_array( current_filter(), array( 'bbp_template_before_single_topic', 'bbp_template_before_lead_topic' ) ) || isset( $this->options['bottom'] ) && in_array( current_filter(), array( 'bbp_template_after_single_topic', 'bbp_template_after_lead_topic' ) ) ) ) || ( isset( $this->options['woocom_shop'] ) && current_filter() == 'woocommerce_after_shop_loop_item' ) || ( isset( $this->options['woocom_product'] ) && current_filter() == 'woocommerce_share' ) || ( isset( $this->options['woocom_thankyou'] ) && current_filter() == 'woocommerce_thankyou' ) || (current_filter() == 'bp_before_group_header' && isset( $this->options['bp_group'] ) ) ) {
1142
  if ( in_array( current_filter(), array( 'bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bbp_template_after_single_topic', 'bbp_template_after_lead_topic', 'bbp_template_after_single_forum', 'woocommerce_after_shop_loop_item', 'woocommerce_share', 'woocommerce_thankyou', 'bp_before_group_header' ) ) ) {
1143
+ echo '<div class="heateorSssClear"></div>' . $horizontal_div . '<div class="heateorSssClear"></div>';
1144
  } else {
1145
  if ( isset( $this->options['top'] ) && isset( $this->options['bottom'] ) ) {
1146
  $content = $horizontal_div . '<br/>' . $content . '<br/>' . $horizontal_div;
1168
  }
1169
  }
1170
  }
1171
+ if ( isset( $this->options['vertical_enable'] ) && ! ( isset( $sharing_meta['vertical_sharing'] ) && $sharing_meta['vertical_sharing'] == 1 && ( ! is_front_page() || ( is_front_page() && 'page' == get_option( 'show_on_front' ) ) ) ) ) {
1172
  $post_id = $post -> ID;
1173
  $post_url = get_permalink( $post->ID );
1174
 
1197
  $offset = ( $this->options['alignment'] != '' && $this->options[$this->options['alignment'].'_offset'] != '' ? $this->options['alignment'] . ': ' . $this->options[$this->options['alignment'].'_offset'] . 'px;' : '' ) . ( $this->options['top_offset'] != '' ? 'top: '.$this->options['top_offset'] . 'px;' : '' );
1198
  $vertical_div = "<div class='heateor_sss_sharing_container heateor_sss_vertical_sharing" . ( isset( $this->options['bottom_mobile_sharing'] ) ? ' heateor_sss_bottom_sharing' : '' ) . "' style='width:" . ( $vertical_sharing_width + 4 ) . "px;" . $offset . ( $this->options['vertical_bg'] != '' ? 'background-color: '.$this->options['vertical_bg'] : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;' ) . "' " . ( $this->get_cached_share_count( $this->share_count_transient_id ) === false ? "heateor-sss-data-href='" . $post_url . "'" : '' ) . ">" . $sharing_div . "</div>";
1199
  // show vertical sharing
1200
+ if ( ( isset( $this->options['vertical_home'] ) && is_front_page() ) || ( isset( $this->options['vertical_category'] ) && is_category() ) || ( isset( $this->options['vertical_archive'] ) && is_archive() ) || ( isset( $this->options['vertical_post'] ) && is_single() && isset( $post -> post_type ) && $post -> post_type == 'post' ) || ( isset( $this->options['vertical_page'] ) && is_page() && isset( $post -> post_type ) && $post -> post_type == 'page' ) || ( isset( $this->options['vertical_excerpt'] ) && (is_home() || current_filter() == 'the_excerpt' ) ) || ( isset( $this->options['vertical_bb_forum'] ) && current_filter() == 'bbp_template_before_single_forum' ) || ( isset( $this->options['vertical_bb_topic'] ) && in_array( current_filter(), array( 'bbp_template_before_single_topic', 'bbp_template_before_lead_topic' ) ) ) || (current_filter() == 'bp_before_group_header' && isset( $this->options['vertical_bp_group'] ) ) ) {
1201
  if ( in_array( current_filter(), array( 'bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bp_before_group_header' ) ) ) {
1202
  echo $vertical_div;
1203
  } else {
1204
  if ( is_front_page() ) {
1205
  if ( current_filter() == 'the_content' ) {
1206
  $var = $this->vertical_home_count;
1207
+ } elseif ( is_home() || current_filter() == 'the_excerpt' ) {
1208
  $var = $this->vertical_excerpt_count;
1209
  }
1210
  if ( $var == 0 ) {
1219
  $content = $content . $vertical_div;
1220
  if ( current_filter() == 'the_content' ) {
1221
  $this->vertical_home_count++;
1222
+ } elseif ( is_home() || current_filter() == 'the_excerpt' ) {
1223
  $this->vertical_excerpt_count++;
1224
  }
1225
  }
1251
  }
1252
 
1253
  /**
1254
+ * Get sharing count for sharing networks
1255
  *
1256
  * @since 1.0.0
1257
  */
1350
  }
1351
  if ( $url == '' ) { continue; }
1352
  $response = wp_remote_get( $url, array( 'timeout' => 15 ) );
1353
+ if ( ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 200 === $response['response']['code'] ) {
1354
  $body = wp_remote_retrieve_body( $response );
1355
  if ( $provider == 'pinterest' ) {
1356
+ $body = str_replace( array( 'heateorSss( ', ' )' ), '', $body );
1357
  }
1358
+ if ( ! in_array( $provider, array( 'google_plus', 'vkontakte' ) ) ) {
1359
  $body = json_decode( $body );
1360
  }
1361
  switch ( $provider ) {
1436
  case 'vkontakte':
1437
  if ( ! empty( $body ) ) {
1438
  $response_data[$target_url]['vkontakte'] = $body;
1439
+ $share_count_transient['vkontakte'] = (int) str_replace(array( 'VK.Share.count(0, ', ' );' ), '', $body);
1440
  } else {
1441
  $response_data[$target_url]['vkontakte'] = 0;
1442
  }
1468
  }
1469
 
1470
  /**
1471
+ * Inline style to load at front end.
1472
  *
1473
+ * @since 2.0
1474
  */
1475
+ public function frontend_inline_style() {
1476
+
1477
+ if ( current_filter() == 'wp_enqueue_scripts' ) {
1478
+ $important = '';
1479
+ ?>
1480
+ <style type="text/css">
1481
+ <?php
1482
+ } else {
1483
+ $important = '!important';
1484
+ }
1485
  ?>
 
1486
  .heateor_sss_horizontal_sharing .heateorSssSharing{
1487
  <?php if ( $this->options['horizontal_bg_color_default'] != '' ) { ?>
1488
  background-color: <?php echo $this->options['horizontal_bg_color_default'] ?>;
1496
  $border_width = $this->options['horizontal_border_width_hover'];
1497
  }
1498
  ?>
1499
+ border-width: <?php echo $border_width . 'px' . $important ?>;
1500
+ border-style: solid<?php echo $important ?>;
1501
+ border-color: <?php echo $this->options['horizontal_border_color_default'] != '' ? $this->options['horizontal_border_color_default'] : 'transparent'; echo $important; ?>;
1502
  }
1503
  <?php if ( $this->options['horizontal_font_color_default'] == '' ) { ?>
1504
  .heateor_sss_horizontal_sharing .heateorSssTCBackground{
1512
  if ( $this->options['horizontal_font_color_hover'] != '' ) { ?>
1513
  color: <?php echo $this->options['horizontal_font_color_hover'] ?>;
1514
  <?php } ?>
1515
+ border-color: <?php echo $this->options['horizontal_border_color_hover'] != '' ? $this->options['horizontal_border_color_hover'] : 'transparent'; echo $important; ?>;
1516
  }
1517
  .heateor_sss_vertical_sharing .heateorSssSharing{
1518
  <?php if ( $this->options['vertical_bg_color_default'] != '' ) { ?>
1527
  $verticalBorderWidth = $this->options['vertical_border_width_hover'];
1528
  }
1529
  ?>
1530
+ border-width: <?php echo $verticalBorderWidth ?>px<?php echo $important ?>;
1531
+ border-style: solid<?php echo $important ?>;
1532
+ border-color: <?php echo $this->options['vertical_border_color_default'] != '' ? $this->options['vertical_border_color_default'] : 'transparent'; ?><?php echo $important ?>;
1533
  }
1534
  <?php if ( $this->options['horizontal_font_color_default'] == '' ) { ?>
1535
  .heateor_sss_vertical_sharing .heateorSssTCBackground{
1543
  if ( $this->options['vertical_font_color_hover'] != '' ) { ?>
1544
  color: <?php echo $this->options['vertical_font_color_hover'] ?>;
1545
  <?php } ?>
1546
+ border-color: <?php echo $this->options['vertical_border_color_hover'] != '' ? $this->options['vertical_border_color_hover'] : 'transparent'; echo $important; ?>;
1547
  }
1548
  <?php
1549
  if ( isset( $this->options['horizontal_counts'] ) ) {
1584
  <?php
1585
  }
1586
  }
1587
+ echo isset( $this->options['hide_mobile_sharing'] ) && $this->options['vertical_screen_width'] != '' ? '@media screen and (max-width:' . $this->options['vertical_screen_width'] . 'px) {.heateor_sss_vertical_sharing{display:none!important}}' : '';
1588
  $bottom_sharing_postion_inverse = $this->options['bottom_sharing_alignment'] == 'left' ? 'right' : 'left';
1589
+ echo isset( $this->options['bottom_mobile_sharing'] ) && $this->options['horizontal_screen_width'] != '' ? '@media screen and (max-width:' . $this->options['horizontal_screen_width'] . 'px) {.heateor_sss_bottom_sharing{' . ( $this->options['bottom_sharing_position'] != '' ? $this->options['bottom_sharing_alignment'] . ':' . $this->options['bottom_sharing_position'] . 'px!important;' . $bottom_sharing_postion_inverse . ':auto!important;' : '' ) . 'display:block!important;width: auto!important;bottom: -10px!important;top: auto!important;}.heateor_sss_bottom_sharing .heateor_sss_square_count{line-height: inherit;}.heateor_sss_bottom_sharing .heateorSssSharingArrow{display:none;}.heateor_sss_bottom_sharing .heateorSssTCBackground{margin-right: 1.1em !important}}' : '';
1590
  echo $this->options['custom_css'];
1591
+ if ( current_filter() == 'wp_enqueue_scripts' ) {
1592
+ ?>
1593
+ </style>
1594
+ <?php
1595
+ }
1596
+ }
1597
+
1598
+ /**
1599
+ * Stylesheets to load at front end.
1600
+ *
1601
+ * @since 1.0.0
1602
+ */
1603
+ public function frontend_css() {
1604
+
1605
  wp_enqueue_style( 'heateor_sss_frontend_css', plugins_url( 'css/sassy-social-share-public.css', __FILE__ ), false, $this->version );
1606
  $default_svg = false;
1607
  if ( isset( $this->options['hor_enable'] ) ) {
1636
 
1637
  }
1638
 
1639
+ /**
1640
+ * Stylesheets to load at front end for AMP.
1641
+ *
1642
+ * @since 2.0
1643
+ */
1644
+ public function frontend_amp_css() {
1645
+
1646
+ $horizontal_icon_height = $this->options['horizontal_sharing_shape'] != 'rectangle' ? $this->options['horizontal_sharing_size'] : $this->options['horizontal_sharing_height'];
1647
+ $vertical_icon_height = $this->options['vertical_sharing_shape'] != 'rectangle' ? $this->options['vertical_sharing_size'] : $this->options['vertical_sharing_height'];
1648
+
1649
+ // css for horizontal sharing bar
1650
+ $css = '.heateor_sss_horizontal_sharing a, .heateor_sss_horizontal_sharing i{width:' . ( $this->options['horizontal_sharing_shape'] != 'rectangle' ? $this->options['horizontal_sharing_size'] : $this->options['horizontal_sharing_width'] ) . 'px;height:' . $horizontal_icon_height . 'px;';
1651
+ if ( $this->options['horizontal_sharing_shape'] == 'round' ) {
1652
+ $css .= 'border-radius:999px;';
1653
+ } elseif ( $this->options['horizontal_border_radius'] != '' ) {
1654
+ $css .= 'border-radius:' . $this->options['horizontal_border_radius'] . 'px;';
1655
+ }
1656
+ $css .= '}';
1657
+
1658
+ // css for universal sharing popup
1659
+ $css .= '#heateor_sss_popup_bg{background:url(' . plugins_url( '../images/transparent_bg.png', __FILE__ ) . ')!important}.heateorSssAmpWhatsapp{display:inline-block!important;background-color:#55EB4C}.heateorSssWhatsappBackground{display:none!important;}.heateor_sss_square_count{display:none!important}';
1660
+
1661
+ // css for total shares
1662
+ $css .= '.heateor_sss_horizontal_sharing .heateorSssTCBackground{margin-left:9px !important;visibility:visible;border:none!important;}.heateor_sss_horizontal_sharing .heateorSssTotalShareCount{font-size:' . $horizontal_icon_height*62/100 . 'px;}.heateor_sss_horizontal_sharing .heateorSssTotalShareText{font-size:' . $horizontal_icon_height*38/100 . 'px;}';
1663
+ $css .= '.heateor_sss_vertical_sharing .heateorSssTCBackground{margin-bottom:9px !important;visibility:visible;border:none!important;}.heateor_sss_vertical_sharing .heateorSssTotalShareCount{font-size:' . $vertical_icon_height*62/100 . 'px;}.heateor_sss_vertical_sharing .heateorSssTotalShareText{font-size:' . $vertical_icon_height*38/100 . 'px;}';
1664
+
1665
+ // css for vertical sharing bar
1666
+ $css .= '.heateor_sss_vertical_sharing a, .heateor_sss_vertical_sharing i{width:' . ( $this->options['vertical_sharing_shape'] != 'rectangle' ? $this->options['vertical_sharing_size'] : $this->options['vertical_sharing_width'] ) . 'px;height:' . $vertical_icon_height . 'px;';
1667
+ if ( $this->options['vertical_sharing_shape'] == 'round' ) {
1668
+ $css .= 'border-radius:999px;';
1669
+ } elseif ( $this->options['vertical_border_radius'] != '' ) {
1670
+ $css .= 'border-radius:' . $this->options['vertical_border_radius'] . 'px;';
1671
+ }
1672
+ if ( $this->options['vertical_sharing_shape'] == 'square' ) {
1673
+ $css .= 'margin:0;';
1674
+ }
1675
+ $css .= '}';
1676
+
1677
+ $vertical_sharing_width = $this->options['vertical_sharing_shape'] == 'rectangle' ? $this->options['vertical_sharing_width'] : $this->options['vertical_sharing_size'];
1678
+ $offset = ( $this->options['alignment'] != '' && $this->options[$this->options['alignment'].'_offset'] != '' ? $this->options['alignment'] . ': ' . $this->options[$this->options['alignment'].'_offset'] . 'px;' : '' ) . ( $this->options['top_offset'] != '' ? 'top: '.$this->options['top_offset'] . 'px;' : '' );
1679
+ $css .= ".heateor_sss_vertical_sharing{width:" . ( $vertical_sharing_width + 4 ) . "px;" . $offset . ( $this->options['vertical_bg'] != '' ? 'background-color: '.$this->options['vertical_bg'] : '-webkit-box-shadow:none!important;-moz-box-shadow:none!important;box-shadow:none!important;' ) . "}";
1680
+
1681
+ $css .= '.heateor_sss_sharing_container ss{display:block;}';
1682
+
1683
+ $css .= file_get_contents( HEATEOR_SSS_PLUGIN_DIR . '/public/css/sassy-social-share-public.css' );
1684
+ $default_svg = false;
1685
+ if ( isset( $this->options['hor_enable'] ) ) {
1686
+ if ( isset( $this->options['horizontal_more'] ) ) {
1687
+ $default_svg = true;
1688
+ }
1689
+ if ( $this->options['horizontal_font_color_default'] != '' ) {
1690
+ $css .= file_get_contents( HEATEOR_SSS_PLUGIN_DIR . '/admin/css/sassy-social-share-default-svg-horizontal.css' );
1691
+ } else {
1692
+ $default_svg = true;
1693
+ }
1694
+ if ( $this->options['horizontal_font_color_hover'] != '' ) {
1695
+ $css .= file_get_contents( HEATEOR_SSS_PLUGIN_DIR . '/admin/css/sassy-social-share-hover-svg-horizontal.css' );
1696
+ }
1697
+ }
1698
+ if ( isset( $this->options['vertical_enable'] ) ) {
1699
+ if ( isset( $this->options['vertical_more'] ) ) {
1700
+ $default_svg = true;
1701
+ }
1702
+ if ( $this->options['vertical_font_color_default'] != '' ) {
1703
+ $css .= file_get_contents( HEATEOR_SSS_PLUGIN_DIR . '/admin/css/sassy-social-share-default-svg-vertical.css' );
1704
+ } else {
1705
+ $default_svg = true;
1706
+ }
1707
+ if ( $this->options['vertical_font_color_hover'] != '' ) {
1708
+ $css .= file_get_contents( HEATEOR_SSS_PLUGIN_DIR . '/admin/css/sassy-social-share-hover-svg-vertical.css' );
1709
+ }
1710
+ }
1711
+ if ( $default_svg ) {
1712
+ $css .= file_get_contents( HEATEOR_SSS_PLUGIN_DIR . '/admin/css/sassy-social-share-svg.css' );
1713
+ }
1714
+ echo $css;
1715
+
1716
+ }
1717
+
1718
  public function update_db_check() {
1719
 
1720
  $current_version = get_option( 'heateor_sss_version' );
public/css/sassy-social-share-public.css CHANGED
@@ -1,2 +1,2 @@
1
- @charset "utf-8";#heateor_sss_error{color:red;margin:7px 0}.heateor_sss_login_container{margin:2px 0}.heateor_sss_login_container img,.heateor_sss_sharing_container img{cursor:pointer;margin:2px;border:none}.heateor_sss_login_container img{display:none;float:left}#heateor_sss_loading_image{display:block!important;float:none}.heateor_sss_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}#heateor_sss_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}#heateor_sss_popup_bg{background:url(../../images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#heateor_sss_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%}#heateor_sss_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#heateor_sss_sharing_more_providers #heateor_sss_sharing_more_content{background:#FAFAFA;border-radius:4px;color:#555;height:100%;width:100%}#heateor_sss_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#heateor_sss_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#heateor_sss_sharing_more_content .all-services ul{margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#heateor_sss_sharing_more_content .all-services ul li{margin:0;background:0 0!important;float:left;width:33.3333%!important;text-align:left!important}#heateor_sss_sharing_more_providers .close-button img{margin:0;}#heateor_sss_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}#heateor_sss_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}#heateor_sss_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}#heateor_sss_sharing_more_providers .footer-panel{background:#fff;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#heateor_sss_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}#heateor_sss_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#heateor_sss_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}.heateor_sss_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}.heateor_sss_share_count,.heateor_sss_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}ul.heateor_sss_login_ul,ul.heateor_sss_sharing_ul{list-style:none!important;padding-left:0!important}.heateorSssXingButton{background-position:-64px 0;width:32px;height:32px;display:block}.heateorSssFacebookButton{background-position:0 0;width:32px;height:32px;display:none}.heateorSssLiveButton{background-position:-32px -96px;width:32px;height:32px;display:block}.heateorSssGoogleButton{background-position:-32px 0;width:32px;height:32px;display:none}.heateorSssInstagramButton{background-position:0 -32px;width:32px;height:32px;display:block!important}.heateorSssLinkedinButton{background-position:-32px -32px;width:32px;height:32px;display:none}.heateorSssTwitterButton{background-position:0 -64px;width:32px;height:32px;display:block!important}.heateorSssVkontakteButton{background-position:-32px -64px;width:32px;height:32px;display:none}ul.heateor_sss_sharing_ul{margin:1px 0!important}#heateor_sss_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.heateor_sss_sharing_ul li.heateorSssSharingRound{background:0 0!important}.heateor_sss_square_count{display:none;text-align:center;font-weight:bolder;font-family:sans-serif;font-style: normal;font-size: .8em;visibility:hidden}ul.heateor_sss_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important}.heateorSssSharing,.heateorSssSharingButton{display:block;cursor:pointer;margin:2px}ul.heateor_sss_login_ul li:before,ul.heateor_sss_sharing_ul li:before{content:none!important}.heateor_sss_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}li.heateor_sss_facebook_like .fb-like span,li.heateor_sss_facebook_recommend .fb-like span{vertical-align:top!important}li.heateor_sss_facebook_like .fb-like span iframe,li.heateor_sss_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000!important}.heateor_sss_counter_container li{height:21px}.heateorSssInstagramBackground{background-color:#624E47}.heateorSssYummlyBackground{background-color:#E16120}.heateorSssBufferBackground{background-color:#000}.heateorSssDeliciousBackground{background-color:#53BEEE}.heateorSssFacebookBackground{background-color:#3C589A}.heateorSssDiggBackground{background-color:#006094}.heateorSssEmailBackground{background-color:#649A3F}.heateorSssFloatitBackground{background-color:#53BEEE}.heateorSssGoogleBackground{background-color:#dd4b39}.heateorSssGoogleplusBackground{background-color:#dd4b39}.heateorSssLinkedinBackground{background-color:#2886EF}.heateorSssMoreBackground{background-color:#EE8E2D}.heateorSssPinterestBackground{background-color:#CC2329}.heateorSssPrintBackground{background-color:#FD6500}.heateorSssRedditBackground{background-color:#247CED}.heateorSssStumbleuponBackground{background-color:#EA4823}.heateorSssTumblrBackground{background-color:#29435D}.heateorSssTwitterBackground{background-color:#55acee}.heateorSssVkontakteBackground{background-color:#5E84AC}.heateorSssYahooBackground{background-color:#8F03CC}.heateorSssXingBackground{background-color:#00797D}.heateorSssWhatsappBackground{background-color:#55EB4C}.heateorSssTCBackground,.heateorSssTCBackground:hover{border-width: 0!important;background-color:transparent;}.heateorSssTCBackground{background-color:transparent!important;font-style:normal!important;word-wrap:normal;color:#666;line-height:1;visibility:hidden;}.heateorSssSharingSvg{width:100%;height:100%}.heateorSssSharing{float:left;border:none}.heateorSssSharingArrow{background-color:#000!important;height:16px;width:16px;cursor:pointer;margin-top:10px}.heateorSssPushIn{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDcgNiBxIDIgNiAxMCA2IHYgLTYgbCA2IDkgbCAtNiA5IHYgLTYgcSAtMTAgMiAtMTAgLTEyIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZT0iI2ZmZiIgZmlsbD0id2hpdGUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.heateorSssPullOut{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIzIDYgcSAtMiA2IC0xMCA2IHYgLTYgbCAtNiA5IGwgNiA5IHYgLTYgcSAxMCAyIDEwIC0xMiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiNmZmYiIGZpbGw9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.heateorSssCommentingTabs 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}div.heateorSssTotalShareCount{word-wrap:normal!important;font-weight: bolder;font-family: sans-serif;padding: 0;margin: 0;text-align:center}div.heateorSssTotalShareText{word-wrap:normal!important;margin: 0;padding: 0;text-align: center;}div.heateor_sss_horizontal_sharing li{width:auto}.heateorSssAIMBackground{background-color: #fff}.heateorSssAmazonWishListBackground{background-color: #fff}.heateorSssAOLMailBackground{background-color: #2A2A2A}.heateorSssAppnetBackground{background-color: #5D5D5D}.heateorSssBaiduBackground{background-color: #fff}.heateorSssBalatarinBackground{background-color: #fff}.heateorSssBibSonomyBackground{background-color: #fff}.heateorSssBittyBrowserBackground{background-color: #EFEFEF}.heateorSssBlinklistBackground{background-color: #3D3C3B}.heateorSssBloggerPostBackground{background-color: #FDA352}.heateorSssBlogMarksBackground{background-color: #535353}.heateorSssBookmarksfrBackground{background-color: #E8EAD4}.heateorSssBoxnetBackground{background-color: #1A74B0}.heateorSssBuddyMarksBackground{background-color: #fff}.heateorSssCare2NewsBackground{background-color: #6EB43F}.heateorSssCiteULikeBackground{background-color: #2781CD}.heateorSssDiaryRuBackground{background-color: #E8D8C6}.heateorSssDiasporaBackground{background-color: #2E3436}.heateorSssDiHITTBackground{background-color: #FF6300}.heateorSssDiigoBackground{background-color: #4A8BCA}.heateorSssDZoneBackground{background-color: #fff}.heateorSssEvernoteBackground{background-color: #8BE056}.heateorSssFarkBackground{background-color: #555}
2
- .heateorSssFlipboardBackground{background-color: #CC0000}.heateorSssFolkdBackground{background-color: #fff}.heateorSssGoogleBookmarksBackground{background-color: #CB0909}.heateorSssGoogleGmailBackground{background-color: #E5E5E5}.heateorSssHackerNewsBackground{background-color: #F60}.heateorSssHatenaBackground{background-color: #00A6DB}.heateorSssInstapaperBackground{background-color: #EDEDED}.heateorSssJamespotBackground{background-color: #FF9E2C}.heateorSssKakaoBackground{background-color: #FCB700}.heateorSssKindleItBackground{background-color: #2A2A2A}.heateorSssKnownBackground{background-color: #FFF}.heateorSssLineBackground{background-color: #00C300}.heateorSssLiveJournalBackground{background-color: #EDEDED}.heateorSssMailRuBackground{background-color: #356FAC}.heateorSssMendeleyBackground{background-color: #A70805}.heateorSssMeneameBackground{background-color: #FF7D12}.heateorSssMixiBackground{background-color: #EDEDED}.heateorSssMySpaceBackground{background-color: #2A2A2A}.heateorSssNetlogBackground{background-color: #2A2A2A}.heateorSssNetvouzBackground{background-color: #fff}.heateorSssNewsVineBackground{background-color: #055D00}.heateorSssNUjijBackground{background-color: #D40000}.heateorSssOdnoklassnikiBackground{background-color: #F2720C}.heateorSssOknotizieBackground{background-color: #fff}.heateorSssOutlookcomBackground{background-color: #fff}.heateorSssPinboardBackground{background-color: #1341DE}.heateorSssPlurkBackground{background-color: #CF682F}.heateorSssPocketBackground{background-color: #fff}.heateorSssPrintFriendlyBackground{background-color: #61D1D5}.heateorSssProtopageBookmarksBackground{background-color: #413FFF}.heateorSssPushaBackground{background-color: #0072B8}.heateorSssQzoneBackground{background-color: #2B82D9}.heateorSssRediffMyPageBackground{background-color: #D20000}.heateorSssRenrenBackground{background-color: #005EAC}.heateorSssSegnaloBackground{background-color: #fff}.heateorSssSinaWeiboBackground{background-color: #fff}.heateorSssSiteJotBackground{background-color: #fff}.heateorSssSlashdotBackground{background-color: #004242}.heateorSssStumpediaBackground{background-color: #EDEDED}.heateorSssSvejoBackground{background-color: #FAFAFA}.heateorSssSymbalooFeedsBackground{background-color: #6DA8F7}.heateorSssTuentiBackground{background-color: #0075C9}.heateorSssTwiddlaBackground{background-color: #EDEDED}.heateorSssTypePadPostBackground{background-color: #2A2A2A}.heateorSssViadeoBackground{background-color: #2A2A2A}.heateorSssWaneloBackground{background-color: #fff}.heateorSssWebnewsBackground{background-color: #CC2512}.heateorSssWordPressBackground{background-color: #464646}.heateorSssWykopBackground{background-color: #367DA9}.heateorSssYahooMailBackground{background-color: #400090}.heateorSssYahooMessengerBackground{background-color: #400090}.heateorSssYoolinkBackground{background-color: #A2C538}.heateorSssYouMobBackground{background-color: #3B599D}i.heateorSssWhatsappBackground a{display: inline!important}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_like{width:110px}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_recommend{width:145px}div.heateor_sss_horizontal_sharing li.heateor_sss_twitter_tweet{width:95px}div.heateor_sss_horizontal_sharing li.heateor_sss_linkedin_share{width:117px}div.heateor_sss_horizontal_sharing li.heateor_sss_google_plusone{width:74px}div.heateor_sss_horizontal_sharing li.heateor_sss_buffer_share{width:81px;}div.heateor_sss_horizontal_sharing li.heateor_sss_reddit_badge{width:130px}div.heateor_sss_horizontal_sharing li.heateor_sss_yummly_share{width:81px}div.heateor_sss_horizontal_sharing li.heateor_sss_google_plus_share{width:95px}div.heateor_sss_horizontal_sharing li.heateor_sss_pinterest_pin{width:76px}div.heateor_sss_horizontal_sharing li.heateor_sss_xing{width:98px}div.heateor_sss_horizontal_sharing .heateor_sss_stumbleupon{width:80px}i.heateorSssLineBackground a{display: inline!important;}.heateor_sss_sharing_container a{box-shadow:none!important;border:none!important}@media screen and (max-width:783px){#heateor_sss_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}#heateor_sss_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92%}}
1
+ @charset "utf-8";#heateor_sss_error{color:red;margin:7px 0}.heateor_sss_login_container{margin:2px 0}.heateor_sss_login_container img,.heateor_sss_sharing_container img{cursor:pointer;margin:2px;border:none}.heateor_sss_login_container img{display:none;float:left}#heateor_sss_loading_image{display:block!important;float:none}.heateor_sss_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}#heateor_sss_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}#heateor_sss_popup_bg{background:url(../../images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#heateor_sss_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%}#heateor_sss_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#heateor_sss_sharing_more_providers #heateor_sss_sharing_more_content{background:#FAFAFA;border-radius:4px;color:#555;height:100%;width:100%}#heateor_sss_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#heateor_sss_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#heateor_sss_sharing_more_content .all-services ul{margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#heateor_sss_sharing_more_content .all-services ul li{margin:0;background:0 0!important;float:left;width:33.3333%!important;text-align:left!important}#heateor_sss_sharing_more_providers .close-button img{margin:0;}#heateor_sss_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}#heateor_sss_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}#heateor_sss_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}#heateor_sss_sharing_more_providers .footer-panel{background:#fff;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#heateor_sss_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}#heateor_sss_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#heateor_sss_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}.heateor_sss_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}.heateor_sss_share_count,.heateor_sss_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}ul.heateor_sss_login_ul,ul.heateor_sss_sharing_ul{list-style:none!important;padding-left:0!important}.heateorSssXingButton{background-position:-64px 0;width:32px;height:32px;display:block}.heateorSssFacebookButton{background-position:0 0;width:32px;height:32px;display:none}.heateorSssLiveButton{background-position:-32px -96px;width:32px;height:32px;display:block}.heateorSssGoogleButton{background-position:-32px 0;width:32px;height:32px;display:none}.heateorSssInstagramButton{background-position:0 -32px;width:32px;height:32px;display:block!important}.heateorSssLinkedinButton{background-position:-32px -32px;width:32px;height:32px;display:none}.heateorSssTwitterButton{background-position:0 -64px;width:32px;height:32px;display:block!important}.heateorSssVkontakteButton{background-position:-32px -64px;width:32px;height:32px;display:none}ul.heateor_sss_sharing_ul{margin:1px 0!important}#heateor_sss_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.heateor_sss_sharing_ul li.heateorSssSharingRound{background:0 0!important}.heateor_sss_square_count{display:none;text-align:center;font-weight:bolder;font-family:sans-serif;font-style: normal;font-size: .8em;visibility:hidden}ul.heateor_sss_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important}.heateorSssSharing,.heateorSssSharingButton{display:block;cursor:pointer;margin:2px}ul.heateor_sss_login_ul li:before,ul.heateor_sss_sharing_ul li:before{content:none!important}.heateor_sss_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}li.heateor_sss_facebook_like .fb-like span,li.heateor_sss_facebook_recommend .fb-like span{vertical-align:top!important}li.heateor_sss_facebook_like .fb-like span iframe,li.heateor_sss_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000!important}.heateor_sss_counter_container li{height:21px}.heateorSssInstagramBackground{background-color:#624E47}.heateorSssYummlyBackground{background-color:#E16120}.heateorSssBufferBackground{background-color:#000}.heateorSssDeliciousBackground{background-color:#53BEEE}.heateorSssFacebookBackground{background-color:#3C589A}.heateorSssDiggBackground{background-color:#006094}.heateorSssEmailBackground{background-color:#649A3F}.heateorSssFloatitBackground{background-color:#53BEEE}.heateorSssGoogleBackground{background-color:#dd4b39}.heateorSssGoogleplusBackground{background-color:#dd4b39}.heateorSssLinkedinBackground{background-color:#0077B5}.heateorSssMoreBackground{background-color:#EE8E2D}.heateorSssPinterestBackground{background-color:#CC2329}.heateorSssPrintBackground{background-color:#FD6500}.heateorSssRedditBackground{background-color:#247CED}.heateorSssStumbleuponBackground{background-color:#EA4823}.heateorSssTumblrBackground{background-color:#29435D}.heateorSssTwitterBackground{background-color:#55acee}.heateorSssVkontakteBackground{background-color:#5E84AC}.heateorSssYahooBackground{background-color:#8F03CC}.heateorSssXingBackground{background-color:#00797D}.heateorSssWhatsappBackground{background-color:#55EB4C}.heateorSssTCBackground,.heateorSssTCBackground:hover{border-width: 0!important;background-color:transparent;}.heateorSssTCBackground{background-color:transparent!important;font-style:normal!important;word-wrap:normal;color:#666;line-height:1;visibility:hidden;}.heateorSssSharingSvg{width:100%;height:100%}.heateorSssSharing{float:left;border:none}.heateorSssSharingArrow{background-color:#000!important;height:16px;width:16px;cursor:pointer;margin-top:10px}.heateorSssPushIn{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDcgNiBxIDIgNiAxMCA2IHYgLTYgbCA2IDkgbCAtNiA5IHYgLTYgcSAtMTAgMiAtMTAgLTEyIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZT0iI2ZmZiIgZmlsbD0id2hpdGUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.heateorSssPullOut{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIzIDYgcSAtMiA2IC0xMCA2IHYgLTYgbCAtNiA5IGwgNiA5IHYgLTYgcSAxMCAyIDEwIC0xMiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiNmZmYiIGZpbGw9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.heateorSssCommentingTabs 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}div.heateorSssTotalShareCount{word-wrap:normal!important;font-weight: bolder;font-family: sans-serif;padding: 0;margin: 0;text-align:center}div.heateorSssTotalShareText{word-wrap:normal!important;margin: 0;padding: 0;text-align: center;}div.heateor_sss_horizontal_sharing li{width:auto}.heateorSssAIMBackground{background-color: #fff}.heateorSssAmazonWishListBackground{background-color: #fff}.heateorSssAOLMailBackground{background-color: #2A2A2A}.heateorSssAppnetBackground{background-color: #5D5D5D}.heateorSssBaiduBackground{background-color: #fff}.heateorSssBalatarinBackground{background-color: #fff}.heateorSssBibSonomyBackground{background-color: #fff}.heateorSssBittyBrowserBackground{background-color: #EFEFEF}.heateorSssBlinklistBackground{background-color: #3D3C3B}.heateorSssBloggerPostBackground{background-color: #FDA352}.heateorSssBlogMarksBackground{background-color: #535353}.heateorSssBookmarksfrBackground{background-color: #E8EAD4}.heateorSssBoxnetBackground{background-color: #1A74B0}.heateorSssBuddyMarksBackground{background-color: #fff}.heateorSssCare2NewsBackground{background-color: #6EB43F}.heateorSssCiteULikeBackground{background-color: #2781CD}.heateorSssDiaryRuBackground{background-color: #E8D8C6}.heateorSssDiasporaBackground{background-color: #2E3436}.heateorSssDiHITTBackground{background-color: #FF6300}.heateorSssDiigoBackground{background-color: #4A8BCA}.heateorSssDZoneBackground{background-color: #fff}.heateorSssEvernoteBackground{background-color: #8BE056}.heateorSssFarkBackground{background-color: #555}
2
+ .heateorSssFlipboardBackground{background-color: #CC0000}.heateorSssFolkdBackground{background-color: #fff}.heateorSssGoogleBookmarksBackground{background-color: #CB0909}.heateorSssGoogleGmailBackground{background-color: #E5E5E5}.heateorSssHackerNewsBackground{background-color: #F60}.heateorSssHatenaBackground{background-color: #00A6DB}.heateorSssInstapaperBackground{background-color: #EDEDED}.heateorSssJamespotBackground{background-color: #FF9E2C}.heateorSssKakaoBackground{background-color: #FCB700}.heateorSssKindleItBackground{background-color: #2A2A2A}.heateorSssKnownBackground{background-color: #FFF}.heateorSssLineBackground{background-color: #00C300}.heateorSssLiveJournalBackground{background-color: #EDEDED}.heateorSssMailRuBackground{background-color: #356FAC}.heateorSssMendeleyBackground{background-color: #A70805}.heateorSssMeneameBackground{background-color: #FF7D12}.heateorSssMixiBackground{background-color: #EDEDED}.heateorSssMySpaceBackground{background-color: #2A2A2A}.heateorSssNetlogBackground{background-color: #2A2A2A}.heateorSssNetvouzBackground{background-color: #fff}.heateorSssNewsVineBackground{background-color: #055D00}.heateorSssNUjijBackground{background-color: #D40000}.heateorSssOdnoklassnikiBackground{background-color: #F2720C}.heateorSssOknotizieBackground{background-color: #fff}.heateorSssOutlookcomBackground{background-color: #fff}.heateorSssPinboardBackground{background-color: #1341DE}.heateorSssPlurkBackground{background-color: #CF682F}.heateorSssPocketBackground{background-color: #fff}.heateorSssPrintFriendlyBackground{background-color: #61D1D5}.heateorSssProtopageBookmarksBackground{background-color: #413FFF}.heateorSssPushaBackground{background-color: #0072B8}.heateorSssQzoneBackground{background-color: #2B82D9}.heateorSssRediffMyPageBackground{background-color: #D20000}.heateorSssRenrenBackground{background-color: #005EAC}.heateorSssSegnaloBackground{background-color: #fff}.heateorSssSinaWeiboBackground{background-color: #fff}.heateorSssSiteJotBackground{background-color: #