Server : LiteSpeed
System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64
User : nandedex ( 1060)
PHP Version : 8.1.33
Disable Function : NONE
Directory :  /home/nandedex/www/s.nandedexpress.com/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]


Current File : /home/nandedex/www/s.nandedexpress.com/google-language-translator.zip
PK%>�[e���		js/scripts-admin.jsnu�[���jQuery(document).ready(function($){
  var floating_widget_display = $('select[name=googlelanguagetranslator_floating_widget] option:selected').val();

  if(floating_widget_display == 'yes') {
    $('.floating-widget').removeClass('hidden');
  } else {
    $('.floating-widget').addClass('hidden');
  }

  $('input[name=googlelanguagetranslator_flags]').change(function(){
    if($(this).val() == 'hide_flags'){
      $('.choose_flags').fadeOut("slow");
    } else if ($(this).val() == 'show_flags') {
      $('.choose_flags').fadeIn("slow");
    }
  });

  //FadeIn and FadeOut Floating Widget Text setting
  $('select[name=googlelanguagetranslator_floating_widget]').change(function() {
    if($(this).val()=='yes') {
      $('.floating-widget').removeClass('hidden');
    } else {
      $('.floating-widget').addClass('hidden');
    }
  });

  //FadeIn and FadeOut Google Analytics tracking settings
  $('input[name=googlelanguagetranslator_analytics]').change(function() {
    var analytics = $(this);
    if(analytics.is(':checked')) {
      $('.analytics').fadeIn("slow");
    } else {
      $('.analytics').fadeOut("slow");
    }
  });

  //Hide or show Google Analytics ID field upon browser refresh
  var analytics = $('input[name=googlelanguagetranslator_analytics]');
  if (analytics.is(':checked') )  {
    $('.analytics').css('display','');
  } else {
    $('.analytics').css('display','none');
  }

  //Prevent the translator preview from translating Dashboard text
  $('#adminmenu').addClass('notranslate');
  $('#wp-toolbar').addClass('notranslate');
  $('#setting-error-settings_updated').addClass('notranslate');
  $('.update-nag').addClass('notranslate');
  $('title').addClass('notranslate');
  $('#footer-thankyou').addClass('notranslate');
}); //jQuery

jQuery(document).ready(function($) {
  $("#sortable,#sortable-toolbar").sortable({
    opacity: 0.7,
    distance: 10,
    helper: "clone",
    forcePlaceholderSize:true,
    update: function(event,ui) {
      var newOrder = $(this).sortable('toArray').toString();
        $.post("options.php",{order: newOrder});
    $('#order').val(newOrder);
    },
  });

  $("#sortable,#sortable-toolbar").disableSelection();
});

//Color Picker
jQuery(document).ready(function($) {
  $(function() {
    $('.color-field').wpColorPicker();
  });
}); //jQueryPK%>�[�#>�U4U4
js/scripts.jsnu�[���/*-------------------------------------------------------------------------------*
 * Script for onClick trigger functionality used by flag images
 * Script modified from original GTranslate plugin created by Edvard Ananyan at http://edo.webmaster.am
 * GTranslate Free Version is licensed under GNU/GPL license
 *-------------------------------------------------------------------------------*/

function GLTFireEvent(lang_pair, lang_dest) {
    try {
        if (document.createEvent) {
            var event = document.createEvent("HTMLEvents");
            event.initEvent(lang_dest, true, true);
            lang_pair.dispatchEvent(event)
        } else {
            var event = document.createEventObject();
            lang_pair.fireEvent('on' + lang_dest, event)
        }
    } catch (e) {}
}

function GLTGetCurrentLang() {
    var keyValue = document.cookie.match('(^|;) ?googtrans=([^;]*)(;|$)');
    return keyValue ? keyValue[2].split('/')[2] : null;
}

function doGoogleLanguageTranslator(lang_pair) {
    if(window.glt_request_uri)
        return true;

    if(lang_pair.value)
        lang_pair = lang_pair.value;

    if(lang_pair == '')
        return;

    var lang = lang_pair.split('|')[1];

    if(GLTGetCurrentLang() == null && lang == lang_pair.split('|')[0])
        return;

    var teCombo = document.querySelector('select.goog-te-combo');
    var teWrapper = document.getElementById('google_language_translator');

    if(teWrapper == null || teWrapper.innerHTML.length == 0 || teCombo == null || teCombo.innerHTML.length == 0) {
        setTimeout(function(){doGoogleLanguageTranslator(lang_pair)}, 500);
    } else {
        teCombo.value = lang;
        GLTFireEvent(teCombo,'change');GLTFireEvent(teCombo,'change');
    }
}

jQuery(document).ready(function($) {
  $('#glt-translate-trigger,#glt-translate-trigger font').toolbar({
    content: '#flags',
    position: 'top',
    hideOnClick: true,
    event: 'click',
    style: 'primary'
  });

  $('#glt-translate-trigger').on('toolbarItemClick',function(event) {
    $(this).removeClass('pressed');
  });
});

/**
 * Toolbar.js
 *
 * @fileoverview  jQuery plugin that creates tooltip style toolbars.
 * @link          http://paulkinzett.github.com/toolbar/
 * @author        Paul Kinzett (http://kinzett.co.nz/)
 * @version       1.1.0
 * @requires      jQuery 1.7+
 *
 * @license jQuery Toolbar Plugin v1.1.0
 * http://paulkinzett.github.com/toolbar/
 * Copyright 2013 - 2015 Paul Kinzett (http://kinzett.co.nz/)
 * Released under the MIT license.
 * <https://raw.github.com/paulkinzett/toolbar/master/LICENSE.txt>
 */

if ( typeof Object.create !== 'function' ) {
    Object.create = function( obj ) {
        function F() {}
        F.prototype = obj;
        return new F();
    };
}

(function( $, window, document, undefined ) {

    var ToolBar = {
        init: function( options, elem ) {
            var self = this;
            self.elem = elem;
            self.$elem = $( elem );
            self.options = $.extend( {}, $.fn.toolbar.options, options );
            self.metadata = self.$elem.data();
            self.overrideOptions();
            self.toolbar = $('<div class="tool-container" />')
                .addClass('tool-'+self.options.position)
                .addClass('toolbar-'+self.options.style)
                .append('<div class="tool-items" />')
                .append('<div class="arrow" />')
                .appendTo('body')
                .css('opacity', 0)
                .hide();
            self.toolbar_arrow = self.toolbar.find('.arrow');
            self.initializeToolbar();
        },

        overrideOptions: function() {
            var self = this;

            $.each( self.options, function( $option ) {
                if (typeof(self.$elem.data('toolbar-'+$option)) != "undefined") {
                    self.options[$option] = self.$elem.data('toolbar-'+$option);
                }
            });
        },

        initializeToolbar: function() {
            var self = this;
            self.populateContent();
            self.setTrigger();
            self.toolbarWidth = self.toolbar.width();
        },

        setTrigger: function() {
            var self = this;

            if (self.options.event == 'onload') {
                $(window).load(function(event) {
                    event.preventDefault();
                    self.show();
                });
            }

            if (self.options.event == 'click') {
                self.$elem.on('click', function(event) {
                    event.preventDefault();
                    if(self.$elem.hasClass('pressed')) {
                        self.hide();
                    } else {
                        self.show();
                    }
                });

                if (self.options.hideOnClick) {
                    $('html').on("click.toolbar", function ( event ) {
                        if (event.target != self.elem &&
                            self.$elem.has(event.target).length === 0 &&
                            self.toolbar.has(event.target).length === 0 &&
                            self.toolbar.is(":visible")) {
                            self.hide();
                        }
                    });
                }
            }

            if (self.options.hover) {
                var moveTime;

                function decideTimeout () {
                    if (self.$elem.hasClass('pressed')) {
                        moveTime = setTimeout(function() {
                            self.hide();
                        }, 150);
                    } else {
                        clearTimeout(moveTime);
                    };
                };

                self.$elem.on({
                    mouseenter: function(event) {
                        if (self.$elem.hasClass('pressed')) {
                            clearTimeout(moveTime);
                        } else {
                            self.show();
                        }
                    }
                });

                self.$elem.parent().on({
                    mouseleave: function(event){ decideTimeout(); }
                });

                $('.tool-container').on({
                    mouseenter: function(event){ clearTimeout(moveTime); },
                    mouseleave: function(event){ decideTimeout(); }
                });
            }

            $(window).resize(function( event ) {
                event.stopPropagation();

                if ( self.toolbar.is(":visible") ) {
                    self.toolbarCss = self.getCoordinates(self.options.position, 20);
                    self.collisionDetection();
                    self.toolbar.css( self.toolbarCss );
                    self.toolbar_arrow.css( self.arrowCss );
                }
            });
        },

        populateContent: function() {
            var self = this;
            var location = self.toolbar.find('.tool-items');
            var content = $(self.options.content).clone( true ).find('a').addClass('tool-item');

            location.html(content);
            location.find('.tool-item').on('click', function(event) {
                if(typeof window.glt_request_uri == 'undefined')
                    event.preventDefault();
                self.$elem.trigger('toolbarItemClick', this);
            });
        },

        calculatePosition: function() {
            var self = this;
                self.arrowCss = {};
                self.toolbarCss = self.getCoordinates(self.options.position, self.options.adjustment);
                self.toolbarCss.position = 'fixed';
                self.toolbarCss.zIndex = self.options.zIndex;
                self.collisionDetection();
                self.toolbar.css(self.toolbarCss);
                self.toolbar_arrow.css(self.arrowCss);
        },

        getCoordinates: function( position, adjustment ) {
            var self = this;

            self.coordinates = self.$elem.offset();

            if (self.options.adjustment && self.options.adjustment[self.options.position]) {
                adjustment = self.options.adjustment[self.options.position] + adjustment;
            }

            switch(self.options.position) {
                case 'top':
                    return {
                        left: self.coordinates.left-(self.toolbar.width()/2)+(self.$elem.outerWidth()/2),
                        top: self.coordinates.top-self.$elem.outerHeight()-adjustment,
                        right: 'auto'
                    };

                case 'left':
                    return {
                        left: self.coordinates.left-(self.toolbar.width()/2)-(self.$elem.outerWidth()/2)-adjustment,
                        top: self.coordinates.top-(self.toolbar.height()/2)+(self.$elem.outerHeight()/2),
                        right: 'auto'
                    };

                case 'right':
                    return {
                        left: self.coordinates.left+(self.toolbar.width()/2)+(self.$elem.outerWidth()/2)+adjustment,
                        top: self.coordinates.top-(self.toolbar.height()/2)+(self.$elem.outerHeight()/2),
                        right: 'auto'
                    };

                case 'bottom':
                    return {
                        left: self.coordinates.left-(self.toolbar.width()/2)+(self.$elem.outerWidth()/2),
                        top: self.coordinates.top+self.$elem.outerHeight()+adjustment,
                        right: 'auto'
                    };
            }
        },

        collisionDetection: function() {
            var self = this;
            var edgeOffset = 20;

            if(self.options.position == 'top' || self.options.position == 'bottom') {
                self.arrowCss = {left: '50%', right: '50%'};
                if( self.toolbarCss.left < edgeOffset ) {
                    self.toolbarCss.left = edgeOffset;
                    self.arrowCss.left = self.$elem.offset().left + self.$elem.width()/2-(edgeOffset);
                }

                else if(($(window).width() - (self.toolbarCss.left + self.toolbarWidth)) < edgeOffset) {
                    self.toolbarCss.right = edgeOffset;
                    self.toolbarCss.left = 'auto';
                    self.arrowCss.left = 'auto';
                    self.arrowCss.right = ($(window).width()-self.$elem.offset().left)-(self.$elem.width()/2)-(edgeOffset)-5;
                }
            }
        },

        show: function() {
            var self = this;
            self.$elem.addClass('pressed');
            self.calculatePosition();
            self.toolbar.show().css({'opacity': 1}).addClass('animate-'+self.options.animation);
            self.$elem.trigger('toolbarShown');
        },

        hide: function() {
            var self = this;
            var animation = {'opacity': 0};
            self.$elem.removeClass('pressed');
            switch(self.options.position) {
                case 'top':
                    animation.top = '+=20';
                    break;
                case 'left':
                    animation.left = '+=20';
                    break;
                case 'right':
                    animation.left = '-=20';
                    break;
                case 'bottom':
                    animation.top = '-=20';
                    break;
            }
            self.toolbar.animate(animation, 200, function() {
                self.toolbar.hide();
            });
            self.$elem.trigger('toolbarHidden');
        },

        getToolbarElement: function () {
            return this.toolbar.find('.tool-items');
        }
    };

    $.fn.toolbar = function( options ) {
        if ($.isPlainObject( options )) {
            return this.each(function() {
                var toolbarObj = Object.create( ToolBar );
                toolbarObj.init( options, this );
                $(this).data('toolbarObj', toolbarObj);
            });
        } else if ( typeof options === 'string' && options.indexOf('_') !== 0 ) {
            var toolbarObj = $(this).data('toolbarObj');
            var method = toolbarObj[options];
            return method.apply(toolbarObj, $.makeArray(arguments).slice(1));
        }
    };

    $.fn.toolbar.options = {
        content: '#myContent',
        position: 'top',
        hideOnClick: false,
        zIndex: 120,
        hover: false,
        style: 'default',
        animation: 'standard',
        adjustment: 10
    };
}) ( jQuery, window, document );

jQuery(function($) {
  $('#flags a, a.single-language, .tool-items a').each(function() {
    $(this).attr('data-lang', $(this).attr('title'));
  });

  $(document.body).on("click", "a.flag", function() {
    lang_text = $(this).attr('data-lang');
    default_lang = window.glt_default_lang || $('#google_language_translator').attr('class').split("-").pop();
    lang_prefix = $(this).attr("class").split(" ")[2];
    lang_prefix == default_lang ? l() : n();
    function l() {
      doGoogleLanguageTranslator(default_lang + "|" + default_lang);
    }
    function n() {
      doGoogleLanguageTranslator(default_lang + "|" + lang_prefix);
    }
    $(".tool-container").hide();
  });

  if(window.glt_request_uri) {
    $('#google_language_translator select').on('change', function() {
        doGLTTranslate($(this).val());
    })
  }
});

PK%>�[-�Z0url_addon/cacert.pemnu�[���-----BEGIN CERTIFICATE-----
MIIDmzCCAoOgAwIBAgIJALjD5B2Tw5WVMA0GCSqGSIb3DQEBCwUAMGQxCzAJBgNV
BAYTAlVTMQswCQYDVQQIDAJDQTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEXMBUG
A1UECgwOR1RyYW5zbGF0ZSBJbmMxFzAVBgNVBAMMDmd0cmFuc2xhdGUuY29tMB4X
DTE5MDIyMDE2NDcwN1oXDTI5MDIxNzE2NDcwN1owZDELMAkGA1UEBhMCVVMxCzAJ
BgNVBAgMAkNBMRYwFAYDVQQHDA1TYW4gRnJhbmNpc2NvMRcwFQYDVQQKDA5HVHJh
bnNsYXRlIEluYzEXMBUGA1UEAwwOZ3RyYW5zbGF0ZS5jb20wggEiMA0GCSqGSIb3
DQEBAQUAA4IBDwAwggEKAoIBAQC3wWCPu05M9T9rpJR8rY/RYPEkyL5EmGUcirMe
EJncOQnv0cKEU722xBuLBN2RPT/+pM2nVcMKbp/aFbJ5PX8BR6ZXKaGDQMPHdASV
nM20yt1RJc+qNHDUL1vDvIlNfV+ux3by+k/dNNCXYj2BBzVbhqoJefHNtry3QnQ3
AJ5hf09PHKtLAMS6PeaVmHn6XfCsKK2iQ5hD6qN85C8x7GiltEJD0Np0zM9nTim2
ilQfpvF5JaDM0lf9vNJDseQ7JOlBM/WcQ3BtgbswFvq3kIMcIGTjqsw/dtNcUUpV
PsGwz797bq31aFug0J0a9DMYMgbErPlC0r6JkazU3hdBvcF7AgMBAAGjUDBOMB0G
A1UdDgQWBBTHGSln6Hs9Rk7iLECUbjMcB99b4jAfBgNVHSMEGDAWgBTHGSln6Hs9
Rk7iLECUbjMcB99b4jAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQBZ
RWN7otrYojEehmjd3ybFrU95R9W4uLWV/LBUlW+sARAmunmQve0hARG8nOP0Tg4m
5I0v1vxY1wVnYV6hi1+gba+ynBnNt7XkebqXC1Qq99WdQfi2M/a1clIbFZUJhWec
Wv5WqXaafW102b/z7syZkRtrtZ6YhGSMtwd071C9KQbE025wqDVM2TioL6viSpZG
YDYks7e7ogS4fUAorODAxT0FZ1GZM0HaZ/XQG33SpoG5saHHxflMqTh4dLcnh5KN
W++ZZCwEYKrLi5slHjlyciZU7EWJNLWOnqNMZUxLX2yZ/hh9idzazEzm9IoQYrGP
dAifs/vxi/FmcAllKc1Y
-----END CERTIFICATE-----PK%>�[��O��+�+url_addon/gtranslate.phpnu�[���<?php
error_reporting(0);

include 'config.php';

if(!isset($_GET['glang']) or !isset($_GET['gurl']))
    exit;

$glang = $_GET['glang'];

// pick a server based on hostname
$server_id = intval(substr(md5(preg_replace('/^www\./', '', $_SERVER['HTTP_HOST'])), 0, 5), 16) % count($servers);
$server = $servers[$server_id];

$page_url = '/'.$_GET['gurl'];

$page_url_segments = explode('/', $page_url);
foreach($page_url_segments as $i => $segment) {
    $page_url_segments[$i] = rawurlencode($segment);
}
$page_url = implode('/', $page_url_segments);

$get_params = $_GET;
if(isset($get_params['glang']))
    unset($get_params['glang']);
if(isset($get_params['gurl']))
    unset($get_params['gurl']);

if(count($get_params)) {
    $page_url .= '?' . rtrim(str_replace('=&', '&', http_build_query($get_params, '', '&', PHP_QUERY_RFC3986)), '=');
}

$main_lang = isset($data['default_language']) ? $data['default_language'] : $main_lang;

if($glang == $main_lang) {
    $page_url = preg_replace('/^[\/]+/', '/', $page_url);

    header('Location: ' . $page_url, true, 301);
    exit;
}

$page_url = $server.'.tdn.gtranslate.net' . $page_url;

$protocol = ((isset($_SERVER['HTTPS']) and ($_SERVER['HTTPS'] == 'on' or $_SERVER['HTTPS'] == 1)) or (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) and  $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')) ? 'https' : 'http';
$page_url = $protocol . '://' . $page_url;

if(!in_array(strtolower($glang), array('en','ar','bg','zh-cn','zh-tw','hr','cs','da','nl','fi','fr','de','el','hi','it','ja','ko','no','pl','pt','ro','ru','es','sv','ca','tl','iw','id','lv','lt','sr','sk','sl','uk','vi','sq','et','gl','hu','mt','th','tr','fa','af','ms','sw','ga','cy','be','is','mk','yi','hy','az','eu','ka','ht','ur','bn','bs','ceb','eo','gu','ha','hmn','ig','jw','kn','km','lo','la','mi','mr','mn','ne','pa','so','ta','te','yo','zu','my','ny','kk','mg','ml','si','st','su','tg','uz','am','co','haw','ku','ky','lb','ps','sm','gd','sn','sd','fy','xh')))
    exit;

if(!function_exists("getallheaders")) {
  //Adapted from http://www.php.net/manual/en/function.getallheaders.php#99814
  function getallheaders() {
    $result = array();
    foreach($_SERVER as $key => $value) {
      if (substr($key, 0, 5) == "HTTP_") {
        $key = str_replace(" ", "-", ucwords(strtolower(str_replace("_", " ", substr($key, 5)))));
        $result[$key] = $value;
      } else if ($key == "CONTENT_TYPE") {
        $result["Content-Type"] = $value;
      }
    }
    return $result;
  }
}

$request_headers = getallheaders();

if(isset($request_headers['X-GT-Lang']) or isset($request_headers['X-Gt-Lang']) or isset($request_headers['x-gt-lang'])) {
    echo 'Please remove DNS cname records for GTranslate!';
    exit;
}

$host = $glang . '.' . preg_replace('/^www\./', '', $_SERVER['HTTP_HOST']);
$request_headers['Host'] = $host;
if(isset($request_headers['HOST'])) unset($request_headers['HOST']);
if(isset($request_headers['host'])) unset($request_headers['host']);

if(!function_exists('zlib_decode'))
    $request_headers['Accept-Encoding'] = '';
else
    $request_headers['Accept-Encoding'] = 'gzip';

if(isset($request_headers['accept-encoding'])) unset($request_headers['accept-encoding']);

if(isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION'])) {
    $request_headers['Authorization'] = $_SERVER['REDIRECT_HTTP_AUTHORIZATION'];
    if(isset($request_headers['authorization'])) unset($request_headers['authorization']);
}
//print_r($request_headers);
//exit;

if(isset($request_headers['content-type'])) {
    $request_headers['Content-Type'] = $request_headers['content-type'];
    unset($request_headers['content-type']);
}

if(isset($request_headers['Content-Type']) and strpos($request_headers['Content-Type'], 'multipart/form-data;') !== false) {
    //$request_headers['Content-Type'] = 'multipart/form-data'; // remove boundary
    $request_headers['Content-Type'] = 'application/x-www-form-urlencoded';
    $is_multipart = true;
    $request_headers['Content-Length'] = '';

    if(isset($request_headers['content-length']))
        unset($request_headers['content-length']);
}

$headers = array();
foreach($request_headers as $key => $val) {
    // remove cloudflare CF headers: CF-IPCountry, CF-Ray, etc...
    if(preg_match('/^CF-/i', $key))
        continue;
    else
        $headers[] = $key . ': ' . $val;
}

// add real visitor IP header
if(isset($_SERVER['HTTP_CLIENT_IP']) and !empty($_SERVER['HTTP_CLIENT_IP']))
    $viewer_ip_address = $_SERVER['HTTP_CLIENT_IP'];
if(isset($_SERVER['HTTP_CF_CONNECTING_IP']) and !empty($_SERVER['HTTP_CF_CONNECTING_IP']))
    $viewer_ip_address = $_SERVER['HTTP_CF_CONNECTING_IP'];
if(isset($_SERVER['HTTP_X_SUCURI_CLIENTIP']) and !empty($_SERVER['HTTP_X_SUCURI_CLIENTIP']))
    $viewer_ip_address = $_SERVER['HTTP_X_SUCURI_CLIENTIP'];
if(!isset($viewer_ip_address))
    $viewer_ip_address = $_SERVER['REMOTE_ADDR'];

$headers[] = 'X-GT-Viewer-IP: ' . $viewer_ip_address;

// add X-Forwarded-For
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) and !empty($_SERVER['HTTP_X_FORWARDED_FOR']))
    $headers[] = 'X-GT-Forwarded-For: ' . $_SERVER['HTTP_X_FORWARDED_FOR'];

//print_r($headers);
//exit;

if(!function_exists('curl_init')) {
    if(function_exists('http_response_code'))
        http_response_code(500);

    echo 'PHP Curl library is required';
    exit;
}

// proxy request
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $page_url);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
if(defined('CURL_IPRESOLVE_V4')) curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_CAINFO, dirname(__FILE__).'/cacert.pem');

switch($_SERVER['REQUEST_METHOD']) {
    case 'POST': {
        curl_setopt($ch, CURLOPT_POST, true);
        if(isset($is_multipart)) {
            http_build_query_for_curl($_POST, $new_post);
            $new_post2 = array();
            foreach($new_post as $key => $value)
                $new_post2[] = $key.'='.urlencode($value);
            $new_post = implode('&', $new_post2);
            $headers[] = 'Content-Length: '.strlen($new_post);
            curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
            curl_setopt($ch, CURLOPT_POSTFIELDS, $new_post);

        } elseif(isset($request_headers['Content-Type']) and strpos($request_headers['Content-Type'], 'multipart/form-data') !== false) {
            http_build_query_for_curl($_POST, $new_post);

            $new_post = array('a'=>1,'b'=>2);
            curl_setopt($ch, CURLOPT_POSTFIELDS, $new_post); // todo: think about $_FILES: http://php.net/manual/en/class.curlfile.php
            //curl_setopt($ch, CURLOPT_HTTPHEADER, array());
            file_put_contents(dirname(__FILE__).'/debug.txt', print_r($new_post, true)."\n", FILE_APPEND);
        } else {
            curl_setopt($ch, CURLOPT_POSTFIELDS, file_get_contents('php://input'));
        }
    }; break;

    case 'PUT': {
        curl_setopt($ch, CURLOPT_PUT, true);
        curl_setopt($ch, CURLOPT_INFILE, fopen('php://input', 'r'));
    }; break;
}

// Debug
if($debug) {
    $fh = fopen(dirname(__FILE__).'/debug.txt', 'a');
    curl_setopt($ch, CURLOPT_VERBOSE, true);
    curl_setopt($ch, CURLOPT_STDERR, $fh);
}

$response = curl_exec($ch);
$response_info = curl_getinfo($ch);
curl_close($ch);

//print_r($response_info);

$header_size = $response_info['header_size'];
$header = substr($response, 0, $header_size);
$html = substr($response, $header_size);

if(function_exists('zlib_decode')) {
    $return_gz = false;
    $html_gunzip = @zlib_decode($html);

    if($html_gunzip !== false) {
        $html = $html_gunzip;
        unset($html_gunzip);

        if(strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') !== false) {
            $return_gz = true;
            header('Content-Encoding: gzip');
            header('Vary: Accept-Encoding');
        }
    }
}

$response_headers = explode(PHP_EOL, $header);
//print_r($response_headers);
$headers_sent = '';
foreach($response_headers as $header) {
    if(!empty(trim($header)) and !preg_match('/Content\-Length:|Transfer\-Encoding:|Content\-Encoding:|Link:/i', $header)) {

        if(preg_match('/^(Location|Refresh):/i', $header)) {
            $header = str_ireplace($host, $_SERVER['HTTP_HOST'] . '/' . $glang, $header);
            $header = str_ireplace('Location: /', 'Location: /' . $glang . '/', $header);
            $header = str_replace('/' . $glang . '/' . $glang . '/', '/' . $glang . '/', $header);
        }

        // woocommerce cookie path fix
        if(preg_match('/^Set-Cookie:/i', $header) and strpos($header, 'woocommerce') !== false) {
            $header = preg_replace('/path=\/.*\/;/', 'path=/;', $header);
        }

        $headers_sent .= $header;
        header($header, false);
    }
}
//echo $headers_sent;

// TODO: modify URLs
$html = str_ireplace($host, $_SERVER['HTTP_HOST'] . '/' . $glang, $html);
$html = str_ireplace('href="/', 'href="/' . $glang . '/', $html);
$html = preg_replace('/href=\"\/' . $glang . '\/(af|sq|am|ar|hy|az|eu|be|bn|bs|bg|ca|ceb|ny|zh-CN|zh-TW|co|hr|cs|da|nl|en|eo|et|tl|fi|fr|fy|gl|ka|de|el|gu|ht|ha|haw|iw|hi|hmn|hu|is|ig|id|ga|it|ja|jw|kn|kk|km|ko|ku|ky|lo|la|lv|lt|lb|mk|mg|ms|ml|mt|mi|mr|mn|my|ne|no|ps|fa|pl|pt|pa|ro|ru|sm|gd|sr|st|sn|sd|si|sk|sl|so|es|su|sw|sv|tg|ta|te|th|tr|uk|ur|uz|vi|cy|xh|yi|yo|zu)\//i', 'href="/$1/', $html); // fix double language code
$html = str_ireplace('href="/' . $glang . '//', 'href="//', $html);
$html = str_ireplace('action="/', 'action="/' . $glang . '/', $html);
$html = str_ireplace('action=\'/', 'action=\'/' . $glang . '/', $html);
$html = str_ireplace('action="/' . $glang . '//', 'action="//', $html);
$html = str_ireplace('action=\'/' . $glang . '//', 'action=\'//', $html);
$html = str_ireplace('action="//' . $_SERVER['HTTP_HOST'], 'action="//' . $_SERVER['HTTP_HOST'] . '/' . $glang, $html);
$html = str_ireplace('action=\'//' . $_SERVER['HTTP_HOST'], 'action=\'//' . $_SERVER['HTTP_HOST'] . '/' . $glang, $html);

// woocommerce specific changes
$html = str_ireplace(
    array('ajax_url":"\\/',              '"checkout_url":"\\/'              ),
    array('ajax_url":"\\/'.$glang.'\\/', '"checkout_url":"\\/'.$glang.'\\/' ),
    $html
);

if(isset($_GET['language_edit'])) {
    $html = str_replace('/tdn-static/', $protocol . '://tdns.gtranslate.net/tdn-static/', $html);
    $html = str_replace('/tdn-bin/', $protocol . '://' . $_SERVER['HTTP_HOST'] . '/' . $glang . '/tdn-bin/', $html);
}

if(function_exists('gzencode') and isset($return_gz) and $return_gz and zlib_get_coding_type() == false)
    echo gzencode($html);
else
    echo $html;

function http_build_query_for_curl($arrays, &$new = array(), $prefix = null) { // flatten multidimentional array for post
    if(is_object($arrays)) {
        $arrays = get_object_vars($arrays);
    }

    foreach($arrays AS $key => $value) {
        $k = isset($prefix) ? $prefix . '[' . $key . ']' : $key;
        if(is_array($value) or is_object($value)) {
            http_build_query_for_curl($value, $new, $k);
        } else {
            $new[$k] = $value;
        }
    }
}
PK%>�[��lE��url_addon/config.phpnu�[���<?php
// Specify the original language code of your website
$main_lang = 'en';

/*
List of available language codes:

en -> English
ar -> Arabic
bg -> Bulgarian
zh-CN -> Chinese (Simplified)
zh-TW -> Chinese (Traditional)
hr -> Croatian
cs -> Czech
da -> Danish
nl -> Dutch
fi -> Finnish
fr -> French
de -> German
el -> Greek
hi -> Hindi
it -> Italian
ja -> Japanese
ko -> Korean
no -> Norwegian
pl -> Polish
pt -> Portuguese
ro -> Romanian
ru -> Russian
es -> Spanish
sv -> Swedish
ca -> Catalan
tl -> Filipino
iw -> Hebrew
id -> Indonesian
lv -> Latvian
lt -> Lithuanian
sr -> Serbian
sk -> Slovak
sl -> Slovenian
uk -> Ukrainian
vi -> Vietnamese
sq -> Albanian
et -> Estonian
gl -> Galician
hu -> Hungarian
mt -> Maltese
th -> Thai
tr -> Turkish
fa -> Persian
af -> Afrikaans
ms -> Malay
sw -> Swahili
ga -> Irish
cy -> Welsh
be -> Belarusian
is -> Icelandic
mk -> Macedonian
yi -> Yiddish
hy -> Armenian
az -> Azerbaijani
eu -> Basque
ka -> Georgian
ht -> Haitian Creole
ur -> Urdu
bn -> Bengali
bs -> Bosnian
ceb -> Cebuano
eo -> Esperanto
gu -> Gujarati
ha -> Hausa
hmn -> Hmong
ig -> Igbo
jw -> Javanese
kn -> Kannada
km -> Khmer
lo -> Lao
la -> Latin
mi -> Maori
mr -> Marathi
mn -> Mongolian
ne -> Nepali
pa -> Punjabi
so -> Somali
ta -> Tamil
te -> Telugu
yo -> Yoruba
zu -> Zulu
my -> Myanmar (Burmese)
ny -> Chichewa
kk -> Kazakh
mg -> Malagasy
ml -> Malayalam
si -> Sinhala
st -> Sesotho
su -> Sudanese
tg -> Tajik
uz -> Uzbek
am -> Amharic
co -> Corsican
haw -> Hawaiian
ku -> Kurdish (Kurmanji)
ky -> Kyrgyz
lb -> Luxembourgish
ps -> Pashto
sm -> Samoan
gd -> Scottish Gaelic
sn -> Shona
sd -> Sindhi
fy -> Frisian
xh -> Xhosa
*/

$servers = array('van', 'kars', 'sis', 'dvin', 'ani', 'evn', 'vagh', 'step', 'sis', 'tigr', 'ani', 'van');

// IMPORTANT: If you turn debugging on, then sensitive information will be written into debug.txt file.
// It is your responsibility to turn the debugging off and clear the debug.txt file.
$debug = false;PK%>�[s;Z�url_addon/rewrite.txtnu�[���### BEGIN GTranslate config ###
RewriteRule ^(af|sq|am|ar|hy|az|eu|be|bn|bs|bg|ca|ceb|ny|zh-CN|zh-TW|co|hr|cs|da|nl|en|eo|et|tl|fi|fr|fy|gl|ka|de|el|gu|ht|ha|haw|iw|hi|hmn|hu|is|ig|id|ga|it|ja|jw|kn|kk|km|ko|ku|ky|lo|la|lv|lt|lb|mk|mg|ms|ml|mt|mi|mr|mn|my|ne|no|ps|fa|pl|pt|pa|ro|ru|sm|gd|sr|st|sn|sd|si|sk|sl|so|es|su|sw|sv|tg|ta|te|th|tr|uk|ur|uz|vi|cy|xh|yi|yo|zu)/(af|sq|am|ar|hy|az|eu|be|bn|bs|bg|ca|ceb|ny|zh-CN|zh-TW|co|hr|cs|da|nl|en|eo|et|tl|fi|fr|fy|gl|ka|de|el|gu|ht|ha|haw|iw|hi|hmn|hu|is|ig|id|ga|it|ja|jw|kn|kk|km|ko|ku|ky|lo|la|lv|lt|lb|mk|mg|ms|ml|mt|mi|mr|mn|my|ne|no|ps|fa|pl|pt|pa|ro|ru|sm|gd|sr|st|sn|sd|si|sk|sl|so|es|su|sw|sv|tg|ta|te|th|tr|uk|ur|uz|vi|cy|xh|yi|yo|zu)/(.*)$ /$1/$3 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(af|sq|am|ar|hy|az|eu|be|bn|bs|bg|ca|ceb|ny|zh-CN|zh-TW|co|hr|cs|da|nl|en|eo|et|tl|fi|fr|fy|gl|ka|de|el|gu|ht|ha|haw|iw|hi|hmn|hu|is|ig|id|ga|it|ja|jw|kn|kk|km|ko|ku|ky|lo|la|lv|lt|lb|mk|mg|ms|ml|mt|mi|mr|mn|my|ne|no|ps|fa|pl|pt|pa|ro|ru|sm|gd|sr|st|sn|sd|si|sk|sl|so|es|su|sw|sv|tg|ta|te|th|tr|uk|ur|uz|vi|cy|xh|yi|yo|zu)/(.*)$ GLT_PLUGIN_PATH/url_addon/gtranslate.php?glang=$1&gurl=$2 [L,QSA]
RewriteRule ^(af|sq|am|ar|hy|az|eu|be|bn|bs|bg|ca|ceb|ny|zh-CN|zh-TW|co|hr|cs|da|nl|en|eo|et|tl|fi|fr|fy|gl|ka|de|el|gu|ht|ha|haw|iw|hi|hmn|hu|is|ig|id|ga|it|ja|jw|kn|kk|km|ko|ku|ky|lo|la|lv|lt|lb|mk|mg|ms|ml|mt|mi|mr|mn|my|ne|no|ps|fa|pl|pt|pa|ro|ru|sm|gd|sr|st|sn|sd|si|sk|sl|so|es|su|sw|sv|tg|ta|te|th|tr|uk|ur|uz|vi|cy|xh|yi|yo|zu)$ /$1/ [R=301,L]
### END GTranslate config ###PK%>�[url_addon/debug.txtnu�[���PK%>�[�7R;��google-language-translator.phpnu�[���<?php
/*
Plugin Name: Google Language Translator
Plugin URI: https://gtranslate.io/?xyz=3167
Version: 6.0.20
Description: The MOST SIMPLE Google Translator plugin.  This plugin adds Google Translator to your website by using a single shortcode, [google-translator]. Settings include: layout style, hide/show specific languages, hide/show Google toolbar, and hide/show Google branding. Add the shortcode to pages, posts, and widgets.
Author: Translate AI Multilingual Solutions
Author URI: https://gtranslate.io
Text Domain: glt
*/

//ini_set('display_errors', 1);
//ini_set('display_startup_errors', 1);
//error_reporting(E_ALL);

include( plugin_dir_path( __FILE__ ) . 'widget.php');

class google_language_translator {

  public $languages_array;

  public function __construct() {

    $this->languages_array = array (
      'af' => 'Afrikaans',
      'sq' => 'Albanian',
      'am' => 'Amharic',
      'ar' => 'Arabic',
      'hy' => 'Armenian',
      'az' => 'Azerbaijani',
      'eu' => 'Basque',
      'be' => 'Belarusian',
      'bn' => 'Bengali',
      'bs' => 'Bosnian',
      'bg' => 'Bulgarian',
      'ca' => 'Catalan',
      'ceb' => 'Cebuano',
      'ny' => 'Chichewa',
      'zh-CN' => 'Chinese (Simplified)',
      'zh-TW' => 'Chinese (Traditional)',
      'co' => 'Corsican',
      'hr' => 'Croatian',
      'cs' => 'Czech',
      'da' => 'Danish',
      'nl' => 'Dutch',
      'en' => 'English',
      'eo' => 'Esperanto',
      'et' => 'Estonian',
      'tl' => 'Filipino',
      'fi' => 'Finnish',
      'fr' => 'French',
      'fy' => 'Frisian',
      'gl' => 'Galician',
      'ka' => 'Georgian',
      'de' => 'German',
      'el' => 'Greek',
      'gu' => 'Gujarati',
      'ht' => 'Haitian',
      'ha' => 'Hausa',
      'haw' => 'Hawaiian',
      'iw' => 'Hebrew',
      'hi' => 'Hindi',
      'hmn' => 'Hmong',
      'hu' => 'Hungarian',
      'is' => 'Icelandic',
      'ig' => 'Igbo',
      'id' => 'Indonesian',
      'ga' => 'Irish',
      'it' => 'Italian',
      'ja' => 'Japanese',
      'jw' => 'Javanese',
      'kn' => 'Kannada',
      'kk' => 'Kazakh',
      'km' => 'Khmer',
      'ko' => 'Korean',
      'ku' => 'Kurdish',
      'ky' => 'Kyrgyz',
      'lo' => 'Lao',
      'la' => 'Latin',
      'lv' => 'Latvian',
      'lt' => 'Lithuanian',
      'lb' => 'Luxembourgish',
      'mk' => 'Macedonian',
      'mg' => 'Malagasy',
      'ml' => 'Malayalam',
      'ms' => 'Malay',
      'mt' => 'Maltese',
      'mi' => 'Maori',
      'mr' => 'Marathi',
      'mn' => 'Mongolian',
      'my' => 'Myanmar (Burmese)',
      'ne' => 'Nepali',
      'no' => 'Norwegian',
      'ps' => 'Pashto',
      'fa' => 'Persian',
      'pl' => 'Polish',
      'pt' => 'Portuguese',
      'pa' => 'Punjabi',
      'ro' => 'Romanian',
      'ru' => 'Russian',
      'sr' => 'Serbian',
      'sn' => 'Shona',
      'st' => 'Sesotho',
      'sd' => 'Sindhi',
      'si' => 'Sinhala',
      'sk' => 'Slovak',
      'sl' => 'Slovenian',
      'sm' => 'Samoan',
      'gd' => 'Scots Gaelic',
      'so' => 'Somali',
      'es' => 'Spanish',
      'su' => 'Sundanese',
      'sw' => 'Swahili',
      'sv' => 'Swedish',
      'tg' => 'Tajik',
      'ta' => 'Tamil',
      'te' => 'Telugu',
      'th' => 'Thai',
      'tr' => 'Turkish',
      'uk' => 'Ukrainian',
      'ur' => 'Urdu',
      'uz' => 'Uzbek',
      'vi' => 'Vietnamese',
      'cy' => 'Welsh',
      'xh' => 'Xhosa',
      'yi' => 'Yiddish',
      'yo' => 'Yoruba',
      'zu' => 'Zulu',
    );

    $plugin_data = get_file_data(__FILE__, array('Version' => 'Version'), false);
    define('PLUGIN_VER', $plugin_data['Version']);

    register_activation_hook( __FILE__, array(&$this,'glt_activate'));
    register_deactivation_hook( __FILE__, array(&$this,'glt_deactivate'));

    add_action( 'admin_menu', array( &$this, 'add_my_admin_menus'));
    add_action('admin_init',array(&$this, 'initialize_settings'));
    add_action('wp_head',array(&$this, 'load_css'));
    add_action('wp_footer',array(&$this, 'footer_script'));
    add_shortcode( 'google-translator',array(&$this, 'google_translator_shortcode'));
    add_shortcode( 'glt', array(&$this, 'google_translator_menu_language'));
    add_filter('widget_text','do_shortcode');
    add_filter('walker_nav_menu_start_el', array(&$this,'menu_shortcodes') , 10 , 2);
    add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), array(&$this, 'glt_settings_link') );

    if (!is_admin()) {
      add_action('wp_enqueue_scripts',array(&$this, 'flags'));
    }

    // make sure main_lang is set correctly in config.php file
    global $glt_url_structure, $glt_seo_active;
    if($glt_seo_active == '1' and $glt_url_structure == 'sub_directory') {
        include dirname(__FILE__) . '/url_addon/config.php';

        $default_language = get_option('googlelanguagetranslator_language');
        if($main_lang != $default_language) { // update main_lang in config.php
            $config_file = dirname(__FILE__) . '/url_addon/config.php';
            if(is_readable($config_file) and is_writable($config_file)) {
                $config = file_get_contents($config_file);
                if(strpos($config, 'main_lang') !== false) {
                    $config = preg_replace('/\$main_lang = \'[a-z-]{2,5}\'/i', '$main_lang = \''.$default_language.'\'', $config);
                    if(is_string($config) and strlen($config) > 10)
                        file_put_contents($config_file, $config);
                }
            }
        }
    }
  }

  public function glt_activate() {
    add_option('googlelanguagetranslator_active', 1);
    add_option('googlelanguagetranslator_language','en');
    add_option('googlelanguagetranslator_flags', 1);
    add_option('language_display_settings',array ('en' => 1));
    add_option('googlelanguagetranslator_translatebox','yes');
    add_option('googlelanguagetranslator_display','Vertical');
    add_option('googlelanguagetranslator_toolbar','Yes');
    add_option('googlelanguagetranslator_showbranding','Yes');
    add_option('googlelanguagetranslator_flags_alignment','flags_left');
    add_option('googlelanguagetranslator_analytics', 0);
    add_option('googlelanguagetranslator_analytics_id','');
    add_option('googlelanguagetranslator_css','');
    add_option('googlelanguagetranslator_multilanguage',0);
    add_option('googlelanguagetranslator_floating_widget','yes');
    add_option('googlelanguagetranslator_flag_size','18');
    add_option('googlelanguagetranslator_flags_order','');
    add_option('googlelanguagetranslator_english_flag_choice','');
    add_option('googlelanguagetranslator_spanish_flag_choice','');
    add_option('googlelanguagetranslator_portuguese_flag_choice','');
    add_option('googlelanguagetranslator_floating_widget_text', 'Translate &raquo;');
    add_option('googlelanguagetranslator_floating_widget_text_allow_translation', 0);
    delete_option('googlelanguagetranslator_manage_translations',0);
    delete_option('flag_display_settings');
  }

  public function glt_deactivate() {
    delete_option('flag_display_settings');
    delete_option('googlelanguagetranslator_language_option');
  }

  public function glt_settings_link ( $links ) {
    $settings_link = array(
      '<a href="' . admin_url( 'options-general.php?page=google_language_translator' ) . '">Settings</a>',
    );
   return array_merge( $links, $settings_link );
  }

  public function add_my_admin_menus(){
    $p = add_options_page('Google Language Translator', 'Google Language Translator', 'manage_options', 'google_language_translator', array(&$this, 'page_layout_cb'));

    add_action( 'load-' . $p, array(&$this, 'load_admin_js' ));
  }

  public function load_admin_js(){
    add_action( 'admin_enqueue_scripts', array(&$this, 'enqueue_admin_js' ));
    add_action('admin_footer',array(&$this, 'footer_script'));
  }

  public function enqueue_admin_js(){
    wp_enqueue_script( 'jquery-ui-core');
    wp_enqueue_script( 'jquery-ui-sortable');
    wp_enqueue_style( 'wp-color-picker' );
    wp_enqueue_script( 'scripts-admin', plugins_url('js/scripts-admin.js',__FILE__), array('jquery', 'wp-color-picker'), PLUGIN_VER, true);
    wp_enqueue_script( 'scripts', plugins_url('js/scripts.js',__FILE__), array('jquery', 'wp-color-picker'), PLUGIN_VER, true);
    wp_enqueue_script( 'scripts-google', '//translate.google.com/translate_a/element.js?cb=GoogleLanguageTranslatorInit', array('jquery'), null, true);

    wp_enqueue_style( 'style.css', plugins_url('css/style.css', __FILE__),'', PLUGIN_VER,'');

    if (get_option ('googlelanguagetranslator_floating_widget') == 'yes') {
      wp_enqueue_style( 'glt-toolbar-styles', plugins_url('css/toolbar.css', __FILE__),'', PLUGIN_VER,'' );
    }
  }

  public function flags() {
    wp_enqueue_script( 'scripts', plugins_url('js/scripts.js',__FILE__), array('jquery'), PLUGIN_VER, true);
    wp_enqueue_script( 'scripts-google', '//translate.google.com/translate_a/element.js?cb=GoogleLanguageTranslatorInit', array('jquery'), null, true);
    wp_enqueue_style( 'google-language-translator', plugins_url('css/style.css', __FILE__), '', PLUGIN_VER, '');

    if (get_option ('googlelanguagetranslator_floating_widget') == 'yes') {
      wp_enqueue_style( 'glt-toolbar-styles', plugins_url('css/toolbar.css', __FILE__), '', PLUGIN_VER, '');
    }
  }

  public function load_css() {
    include( plugin_dir_path( __FILE__ ) . '/css/style.php');
  }

  public function google_translator_shortcode() {

    if (get_option('googlelanguagetranslator_display')=='Vertical' || get_option('googlelanguagetranslator_display')=='SIMPLE'){
        return $this->googlelanguagetranslator_vertical();
    }
    elseif(get_option('googlelanguagetranslator_display')=='Horizontal'){
        return $this->googlelanguagetranslator_horizontal();
    }
  }

  public function googlelanguagetranslator_included_languages() {
    $get_language_choices = get_option ('language_display_settings');

    foreach ($get_language_choices as $key=>$value):
      if ($value == 1):
        $items[] = $key;
      endif;
    endforeach;

    $comma_separated = implode(",",array_values($items));
    $lang = ", includedLanguages:'".$comma_separated."'";
    return $lang;
  }

  public function analytics() {
    if ( get_option('googlelanguagetranslator_analytics') == 1 ) {
      $analytics_id = get_option('googlelanguagetranslator_analytics_id');
      $analytics = "gaTrack: true, gaId: '".$analytics_id."'";

          if (!empty ($analytics_id) ):
        return ', '.$analytics;
          endif;
    }
  }

  public function menu_shortcodes( $item_output,$item ) {
    if ( !empty($item->description)) {
      $output = do_shortcode($item->description);

      if ( $output != $item->description )
        $item_output = $output;
      }
    return $item_output;
  }

  public function google_translator_menu_language($atts, $content = '') {
    extract(shortcode_atts(array(
      "language" => 'Spanish',
      "label" => 'Spanish',
      "image" => 'no',
      "text" => 'yes',
      "image_size" => '24',
      "label" => html_entity_decode('Espa&ntilde;ol')
    ), $atts));

    $glt_url_structure = get_option('googlelanguagetranslator_url_structure');
    $glt_seo_active = get_option('googlelanguagetranslator_seo_active');
    $default_language = get_option('googlelanguagetranslator_language');
    $english_flag_choice = get_option('googlelanguagetranslator_english_flag_choice');
    $spanish_flag_choice = get_option('googlelanguagetranslator_spanish_flag_choice');
    $portuguese_flag_choice = get_option('googlelanguagetranslator_portuguese_flag_choice');
    $language_code = array_search($language,$this->languages_array);
    $language_name = $language;
    $language_name_flag = $language_name;

    if ( $language_name == 'English' && $english_flag_choice == 'canadian_flag') {
      $language_name_flag = 'canada';
    }
    if ( $language_name == "English" && $english_flag_choice == 'us_flag') {
          $language_name_flag = 'united-states';
    }
    if ( $language_name == 'Spanish' && $spanish_flag_choice == 'mexican_flag') {
      $language_name_flag = 'mexico';
    }
    if ( $language_name == 'Portuguese' && $portuguese_flag_choice == 'brazilian_flag') {
      $language_name_flag = 'brazil';
    }

    $href = '#';
    if($glt_seo_active == '1') {
        $current_url = network_home_url(add_query_arg(null, null));
        switch($glt_url_structure) {
            case 'sub_directory':
                $href = ($language_code == $default_language) ? $current_url : '/' . $language_code . $_SERVER['REQUEST_URI'];
                break;
            case 'sub_domain':
                $domain = str_replace('www.', '', $_SERVER['HTTP_HOST']);
                $href = ($language_code == $default_language) ? $current_url : str_ireplace('://' . $_SERVER['HTTP_HOST'], '://' . $language_code . '.' . $domain, $current_url);
                break;
            default:
                break;
        }
    }

    return "<a href='".esc_url($href)."' class='nturl notranslate ".esc_attr($language_code)." ".esc_attr($language_name_flag)." single-language flag' title='".esc_attr($language)."'>".($image=='yes' ? "<span class='flag size".esc_attr($image_size)."'></span>" : '') .($text=='yes' ? htmlspecialchars($label) : '')."</a>";
  }

  public function footer_script() {
    global $vertical;
    global $horizontal;
    global $shortcode_started;
    $layout = get_option('googlelanguagetranslator_display');
    $default_language = get_option('googlelanguagetranslator_language');
    $language_choices = $this->googlelanguagetranslator_included_languages();
    $new_languages_array_string = get_option('googlelanguagetranslator_flags_order');
    $new_languages_array = explode(",",$new_languages_array_string);
    $new_languages_array_codes = array_values($new_languages_array);
    $new_languages_array_count = count($new_languages_array);
    $english_flag_choice = get_option('googlelanguagetranslator_english_flag_choice');
    $spanish_flag_choice = get_option('googlelanguagetranslator_spanish_flag_choice');
    $portuguese_flag_choice = get_option('googlelanguagetranslator_portuguese_flag_choice');
    $show_flags = get_option('googlelanguagetranslator_flags');
    $flag_width = get_option('googlelanguagetranslator_flag_size');
    $get_language_choices = get_option('language_display_settings');
    $floating_widget = get_option ('googlelanguagetranslator_floating_widget');
    $floating_widget_text = get_option ('googlelanguagetranslator_floating_widget_text');
    $floating_widget_text_translation_allowed = get_option ('googlelanguagetranslator_floating_widget_text_allow_translation');
    $is_active = get_option ( 'googlelanguagetranslator_active' );
    $is_multilanguage = get_option('googlelanguagetranslator_multilanguage');
    $glt_url_structure = get_option('googlelanguagetranslator_url_structure');
    $glt_seo_active = get_option('googlelanguagetranslator_seo_active');
    $str = '';

    if( $is_active == 1) {
      if ($floating_widget=='yes') {
        $str.='<div id="glt-translate-trigger"><span'.($floating_widget_text_translation_allowed != 1 ? ' class="notranslate"' : ' class="translate"').'>'.(empty($floating_widget_text) ? 'Translate &raquo;' : $floating_widget_text).'</span></div>';
        $str.='<div id="glt-toolbar"></div>';
      } //endif $floating_widget

      if ((($layout=='SIMPLE' && !isset($vertical)) || ($layout=='Vertical' && !isset($vertical)) || (isset($vertical) && $show_flags==0)) || (($layout=='Horizontal' && !isset($horizontal)) || (isset($horizontal) && $show_flags==0))):

      $str.='<div id="flags" style="display:none" class="size'.$flag_width.'">';
      $str.='<ul id="sortable" class="ui-sortable">';
        if (empty($new_languages_array_string)) {
          foreach ($this->languages_array as $key=>$value) {
            $language_code = $key;
            $language_name = $value;
            $language_name_flag = $language_name;
            if (!empty($get_language_choices[$language_code]) && $get_language_choices[$language_code]==1) {
              if ( $language_name == 'English' && $english_flag_choice == 'canadian_flag') {
                $language_name_flag = 'canada';
              }
              if ( $language_name == "English" && $english_flag_choice == 'us_flag') {
                $language_name_flag = 'united-states';
              }
              if ( $language_name == 'Spanish' && $spanish_flag_choice == 'mexican_flag') {
                $language_name_flag = 'mexico';
              }
              if ( $language_name == 'Portuguese' && $portuguese_flag_choice == 'brazilian_flag') {
                $language_name_flag = 'brazil';
              }

              $href = '#';
              if($glt_seo_active == '1') {
                $current_url = network_home_url(add_query_arg(null, null));
                switch($glt_url_structure) {
                    case 'sub_directory':
                        $href = ($language_code == $default_language) ? $current_url : '/' . $language_code . $_SERVER['REQUEST_URI'];
                        break;
                    case 'sub_domain':
                        $domain = str_replace('www.', '', $_SERVER['HTTP_HOST']);
                        $href = ($language_code == $default_language) ? $current_url : str_ireplace('://' . $_SERVER['HTTP_HOST'], '://' . $language_code . '.' . $domain, $current_url);
                        break;
                    default:
                        break;
                }
              }

              $str .= '<li id="'.$language_name.'"><a href="'.esc_url($href).'" title="'.$language_name.'" class="nturl notranslate '.$language_code.' flag '.$language_name_flag.'"></a></li>';
            } //empty
          }//foreach
        } else {
          if ($new_languages_array_count != count($get_language_choices)):
            foreach ($get_language_choices as $key => $value) {
              $language_code = $key;
              $language_name = $this->languages_array[$key];
              $language_name_flag = $language_name;

              if ( $language_name == 'English' && $english_flag_choice == 'canadian_flag') {
                $language_name_flag = 'canada';
              }
              if ( $language_name == "English" && $english_flag_choice == 'us_flag') {
                $language_name_flag = 'united-states';
              }
              if ( $language_name == 'Spanish' && $spanish_flag_choice == 'mexican_flag') {
                $language_name_flag = 'mexico';
              }
              if ( $language_name == 'Portuguese' && $portuguese_flag_choice == 'brazilian_flag') {
                $language_name_flag = 'brazil';
              }

              $href = '#';
              if($glt_seo_active == '1') {
                $current_url = network_home_url(add_query_arg(null, null));
                switch($glt_url_structure) {
                    case 'sub_directory':
                        $href = ($language_code == $default_language) ? $current_url : '/' . $language_code . $_SERVER['REQUEST_URI'];
                        break;
                    case 'sub_domain':
                        $domain = str_replace('www.', '', $_SERVER['HTTP_HOST']);
                        $href = ($language_code == $default_language) ? $current_url : str_ireplace('://' . $_SERVER['HTTP_HOST'], '://' . $language_code . '.' . $domain, $current_url);
                        break;
                    default:
                        break;
                }
              }

              $str.='<li id="'.$language_name.'"><a href="'.esc_url($href).'" title="'.$language_name.'" class="nturl notranslate '.$language_code.' flag '.$language_name_flag.'"></a></li>';
            } //foreach
          else:
            foreach ($new_languages_array_codes as $value) {
              $language_name = $value;
              $language_code = array_search ($language_name, $this->languages_array);
              $language_name_flag = $language_name;

            if ( $language_name == 'English' && $english_flag_choice == 'canadian_flag') {
              $language_name_flag = 'canada';
            }
            if ( $language_name == "English" && $english_flag_choice == 'us_flag') {
              $language_name_flag = 'united-states';
            }
            if ( $language_name == 'Spanish' && $spanish_flag_choice == 'mexican_flag') {
              $language_name_flag = 'mexico';
            }
            if ( $language_name == 'Portuguese' && $portuguese_flag_choice == 'brazilian_flag') {
              $language_name_flag = 'brazil';
            }

            $href = '#';
            if($glt_seo_active == '1') {
                $current_url = network_home_url(add_query_arg(null, null));
                switch($glt_url_structure) {
                    case 'sub_directory':
                        $href = ($language_code == $default_language) ? $current_url : '/' . $language_code . $_SERVER['REQUEST_URI'];
                        break;
                    case 'sub_domain':
                        $domain = str_replace('www.', '', $_SERVER['HTTP_HOST']);
                        $href = ($language_code == $default_language) ? $current_url : str_ireplace('://' . $_SERVER['HTTP_HOST'], '://' . $language_code . '.' . $domain, $current_url);
                        break;
                    default:
                        break;
                }
            }

            $str.='<li id="'.$language_name.'"><a href="'.esc_url($href).'" title="'.$language_name.'" class="nturl notranslate '.$language_code.' flag '.$language_name_flag.'"></a></li>';
          }//foreach
        endif;
      }//endif
      $str.='</ul>';
      $str.='</div>';

      endif; //layout
    }

    $language_choices = $this->googlelanguagetranslator_included_languages();
    $layout = get_option('googlelanguagetranslator_display');
    $is_multilanguage = get_option('googlelanguagetranslator_multilanguage');
    $horizontal_layout = ', layout: google.translate.TranslateElement.InlineLayout.HORIZONTAL';
    $simple_layout = ', layout: google.translate.TranslateElement.InlineLayout.SIMPLE';
    $auto_display = ', autoDisplay: false';
    $default_language = get_option('googlelanguagetranslator_language');

    if($floating_widget == 'yes')
        $simple_layout = '';

    if ($is_multilanguage == 1):
      $multilanguagePage = ', multilanguagePage:true';
      if($glt_seo_active != '1')
          $str.="<div id='glt-footer'>".(!isset($vertical) && !isset($horizontal) ? '<div id="google_language_translator" class="default-language-'.$default_language.'"></div>' : '')."</div><script>function GoogleLanguageTranslatorInit() { new google.translate.TranslateElement({pageLanguage: '".$default_language."'".$language_choices . ($layout=='Horizontal' ? $horizontal_layout : ($layout=='SIMPLE' ? $simple_layout : '')) . $auto_display . $multilanguagePage . $this->analytics()."}, 'google_language_translator');}</script>";
      echo $str;
    else:
      if($glt_seo_active != '1')
          $str.="<div id='glt-footer'>".(!isset($vertical) && !isset($horizontal) ? '<div id="google_language_translator" class="default-language-'.$default_language.'"></div>' : '')."</div><script>function GoogleLanguageTranslatorInit() { new google.translate.TranslateElement({pageLanguage: '".$default_language."'".$language_choices . ($layout=='Horizontal' ? $horizontal_layout : ($layout=='SIMPLE' ? $simple_layout : '')) . $auto_display . $this->analytics()."}, 'google_language_translator');}</script>";
      echo $str;
    endif; //is_multilanguage
  }

  public function googlelanguagetranslator_vertical() {
    global $started;
    global $vertical;
    $vertical = 1;
    $started = false;
    $new_languages_array_string = get_option('googlelanguagetranslator_flags_order');
    $new_languages_array = explode(",",$new_languages_array_string);
    $new_languages_array_codes = array_values($new_languages_array);
    $new_languages_array_count = count($new_languages_array);
    $get_language_choices = get_option ('language_display_settings');
    $show_flags = get_option('googlelanguagetranslator_flags');
    $flag_width = get_option('googlelanguagetranslator_flag_size');
    $default_language_code = get_option('googlelanguagetranslator_language');
    $english_flag_choice = get_option('googlelanguagetranslator_english_flag_choice');
    $spanish_flag_choice = get_option('googlelanguagetranslator_spanish_flag_choice');
    $portuguese_flag_choice = get_option('googlelanguagetranslator_portuguese_flag_choice');
    $is_active = get_option ( 'googlelanguagetranslator_active' );
    $language_choices = $this->googlelanguagetranslator_included_languages();
    $floating_widget = get_option ('googlelanguagetranslator_floating_widget');
    $glt_url_structure = get_option('googlelanguagetranslator_url_structure');
    $glt_seo_active = get_option('googlelanguagetranslator_seo_active');

    $default_language = $default_language_code;
    $str = '';

    if ($is_active==1):
      if ($show_flags==1):
      $str.='<div id="flags" class="size'.$flag_width.'">';
      $str.='<ul id="sortable" class="ui-sortable" style="float:left">';

      if (empty($new_languages_array_string)):
        foreach ($this->languages_array as $key=>$value) {
          $language_code = $key;
          $language_name = $value;
          $language_name_flag = $language_name;

          if (!empty($get_language_choices[$language_code]) && $get_language_choices[$language_code]==1) {
            if ( $language_name == 'English' && $english_flag_choice == 'canadian_flag') {
              $language_name_flag = 'canada';
            }
            if ( $language_name == "English" && $english_flag_choice == 'us_flag') {
              $language_name_flag = 'united-states';
            }
            if ( $language_name == 'Spanish' && $spanish_flag_choice == 'mexican_flag') {
              $language_name_flag = 'mexico';
            }
            if ( $language_name == 'Portuguese' && $portuguese_flag_choice == 'brazilian_flag') {
              $language_name_flag = 'brazil';
            }

            $href = '#';
            if($glt_seo_active == '1') {
                $current_url = network_home_url(add_query_arg(null, null));
                switch($glt_url_structure) {
                    case 'sub_directory':
                        $href = ($language_code == $default_language) ? $current_url : '/' . $language_code . $_SERVER['REQUEST_URI'];
                        break;
                    case 'sub_domain':
                        $domain = str_replace('www.', '', $_SERVER['HTTP_HOST']);
                        $href = ($language_code == $default_language) ? $current_url : str_ireplace('://' . $_SERVER['HTTP_HOST'], '://' . $language_code . '.' . $domain, $current_url);
                        break;
                    default:
                        break;
                }
            }

            $str.="<li id='".$language_name."'><a href='".esc_url($href)."' title='".$language_name."' class='nturl notranslate ".$language_code." flag ".$language_name_flag."'></a></li>";
          } //endif
        }//foreach
      else:
        if ($new_languages_array_count != count($get_language_choices)):
            foreach ($get_language_choices as $key => $value) {
              $language_code = $key;
              $language_name = $this->languages_array[$key];
              $language_name_flag = $language_name;

              if ( $language_name == 'English' && $english_flag_choice == 'canadian_flag') {
                $language_name_flag = 'canada';
              }
              if ( $language_name == "English" && $english_flag_choice == 'us_flag') {
                $language_name_flag = 'united-states';
              }
              if ( $language_name == 'Spanish' && $spanish_flag_choice == 'mexican_flag') {
                $language_name_flag = 'mexico';
              }
              if ( $language_name == 'Portuguese' && $portuguese_flag_choice == 'brazilian_flag') {
                $language_name_flag = 'brazil';
              }

              $href = '#';
              if($glt_seo_active == '1') {
                  $current_url = network_home_url(add_query_arg(null, null));
                  switch($glt_url_structure) {
                    case 'sub_directory':
                        $href = ($language_code == $default_language) ? $current_url : '/' . $language_code . $_SERVER['REQUEST_URI'];
                        break;
                    case 'sub_domain':
                        $domain = str_replace('www.', '', $_SERVER['HTTP_HOST']);
                        $href = ($language_code == $default_language) ? $current_url : str_ireplace('://' . $_SERVER['HTTP_HOST'], '://' . $language_code . '.' . $domain, $current_url);
                        break;
                    default:
                        break;
                  }
              }

              $str.='<li id="'.$language_name.'"><a href="'.esc_url($href).'" title="'.$language_name.'" class="nturl notranslate '.$language_code.' flag '.$language_name_flag.'"></a></li>';
            } //foreach
          else:
            foreach ($new_languages_array_codes as $value) {
              $language_name = $value;
              $language_code = array_search ($language_name, $this->languages_array);
              $language_name_flag = $language_name;

              if ( $language_name == 'English' && $english_flag_choice == 'canadian_flag') {
                $language_name_flag = 'canada';
              }
              if ( $language_name == "English" && $english_flag_choice == 'us_flag') {
                $language_name_flag = 'united-states';
              }
              if ( $language_name == 'Spanish' && $spanish_flag_choice == 'mexican_flag') {
                $language_name_flag = 'mexico';
              }
              if ( $language_name == 'Portuguese' && $portuguese_flag_choice == 'brazilian_flag') {
                $language_name_flag = 'brazil';
              }

              $href = '#';
              if($glt_seo_active == '1') {
                  $current_url = network_home_url(add_query_arg(null, null));
                  switch($glt_url_structure) {
                    case 'sub_directory':
                        $href = ($language_code == $default_language) ? $current_url : '/' . $language_code . $_SERVER['REQUEST_URI'];
                        break;
                    case 'sub_domain':
                        $domain = str_replace('www.', '', $_SERVER['HTTP_HOST']);
                        $href = ($language_code == $default_language) ? $current_url : str_ireplace('://' . $_SERVER['HTTP_HOST'], '://' . $language_code . '.' . $domain, $current_url);
                        break;
                    default:
                        break;
                  }
              }

              $str.='<li id="'.$language_name.'"><a href="'.esc_url($href).'" title="'.$language_name.'" class="nturl notranslate '.$language_code.' flag '.$language_name_flag.'"></a></li>';
            }//foreach
          endif;
      endif;

      $str.='</ul>';
      $str.='</div>';

      endif; //show_flags

      if($glt_seo_active == '1') {
          $str .= '<div id="google_language_translator" class="default-language-'.$default_language_code.'">';
          $str .= '<select aria-label="Website Language Selector" class="notranslate"><option value="">Select Language</option>';

          $get_language_choices = get_option ('language_display_settings');
          foreach($get_language_choices as $key => $value) {
              if($value == 1)
                  $str .= '<option value="'.$default_language.'|'.$key.'">'.$this->languages_array[$key].'</option>';
          }
          $str .= '</select></div>';

          $str .= '<script>';
          if($glt_url_structure == 'sub_directory') {
              $str .= "function doGLTTranslate(lang_pair) {if(lang_pair.value)lang_pair=lang_pair.value;if(lang_pair=='')return;var lang=lang_pair.split('|')[1];if(typeof _gaq!='undefined'){_gaq.push(['_trackEvent', 'GTranslate', lang, location.pathname+location.search]);}else {if(typeof ga!='undefined')ga('send', 'event', 'GTranslate', lang, location.pathname+location.search);}var plang=location.pathname.split('/')[1];if(plang.length !=2 && plang != 'zh-CN' && plang != 'zh-TW' && plang != 'hmn' && plang != 'haw' && plang != 'ceb')plang='$default_language';if(lang == '$default_language')location.href=location.protocol+'//'+location.host+glt_request_uri;else location.href=location.protocol+'//'+location.host+'/'+lang+glt_request_uri;}";
          } elseif($glt_url_structure == 'sub_domain') {
              $str .= "function doGLTTranslate(lang_pair) {if(lang_pair.value)lang_pair=lang_pair.value;if(lang_pair=='')return;var lang=lang_pair.split('|')[1];if(typeof _gaq!='undefined'){_gaq.push(['_trackEvent', 'GTranslate', lang, location.hostname+location.pathname+location.search]);}else {if(typeof ga!='undefined')ga('send', 'event', 'GTranslate', lang, location.hostname+location.pathname+location.search);}var plang=location.hostname.split('.')[0];if(plang.length !=2 && plang.toLowerCase() != 'zh-cn' && plang.toLowerCase() != 'zh-tw' && plang != 'hmn' && plang != 'haw' && plang != 'ceb')plang='$default_language';location.href=location.protocol+'//'+(lang == '$default_language' ? '' : lang+'.')+location.hostname.replace('www.', '').replace(RegExp('^' + plang + '[.]'), '')+glt_request_uri;}";
          }
          $str .= '</script>';

      } else
          $str.='<div id="google_language_translator" class="default-language-'.$default_language_code.'"></div>';

      return $str;

    endif;
  } // End glt_vertical

  public function googlelanguagetranslator_horizontal() {
    global $started;
    global $horizontal;
    $horizontal = 1;
    $started = false;
    $new_languages_array_string = get_option('googlelanguagetranslator_flags_order');
    $new_languages_array = explode(",",$new_languages_array_string);
    $new_languages_array_codes = array_values($new_languages_array);
    $new_languages_array_count = count($new_languages_array);
    $get_language_choices = get_option ('language_display_settings');
    $show_flags = get_option('googlelanguagetranslator_flags');
    $flag_width = get_option('googlelanguagetranslator_flag_size');
    $default_language_code = get_option('googlelanguagetranslator_language');
    $english_flag_choice = get_option('googlelanguagetranslator_english_flag_choice');
    $spanish_flag_choice = get_option('googlelanguagetranslator_spanish_flag_choice');
    $portuguese_flag_choice = get_option('googlelanguagetranslator_portuguese_flag_choice');
    $is_active = get_option ( 'googlelanguagetranslator_active' );
    $language_choices = $this->googlelanguagetranslator_included_languages();
    $floating_widget = get_option ('googlelanguagetranslator_floating_widget');
    $glt_url_structure = get_option('googlelanguagetranslator_url_structure');
    $glt_seo_active = get_option('googlelanguagetranslator_seo_active');

    $default_language = $default_language_code;
    $str = '';

    if ($is_active==1):
      if ($show_flags==1):
      $str.='<div id="flags" class="size'.$flag_width.'">';
      $str.='<ul id="sortable" class="ui-sortable" style="float:left">';

      if (empty($new_languages_array_string)):
        foreach ($this->languages_array as $key=>$value) {
          $language_code = $key;
          $language_name = $value;
          $language_name_flag = $language_name;

          if (!empty($get_language_choices[$language_code]) && $get_language_choices[$language_code]==1) {
            if ( $language_name == 'English' && $english_flag_choice == 'canadian_flag') {
              $language_name_flag = 'canada';
            }
            if ( $language_name == "English" && $english_flag_choice == 'us_flag') {
              $language_name_flag = 'united-states';
            }
            if ( $language_name == 'Spanish' && $spanish_flag_choice == 'mexican_flag') {
              $language_name_flag = 'mexico';
            }
            if ( $language_name == 'Portuguese' && $portuguese_flag_choice == 'brazilian_flag') {
              $language_name_flag = 'brazil';
            }

            $href = '#';
            if($glt_seo_active == '1') {
                $current_url = network_home_url(add_query_arg(null, null));
                switch($glt_url_structure) {
                    case 'sub_directory':
                        $href = ($language_code == $default_language) ? $current_url : '/' . $language_code . $_SERVER['REQUEST_URI'];
                        break;
                    case 'sub_domain':
                        $domain = str_replace('www.', '', $_SERVER['HTTP_HOST']);
                        $href = ($language_code == $default_language) ? $current_url : str_ireplace('://' . $_SERVER['HTTP_HOST'], '://' . $language_code . '.' . $domain, $current_url);
                        break;
                    default:
                        break;
                }
            }

            $str.="<li id='".$language_name."'><a href='".esc_url($href)."' title='".$language_name."' class='nturl notranslate ".$language_code." flag ".$language_name_flag."'></a></li>";
          } //endif
        }//foreach
      else:
        if ($new_languages_array_count != count($get_language_choices)):
            foreach ($get_language_choices as $key => $value) {
              $language_code = $key;
              $language_name = $this->languages_array[$key];
              $language_name_flag = $language_name;

              if ( $language_name == 'English' && $english_flag_choice == 'canadian_flag') {
                $language_name_flag = 'canada';
              }
              if ( $language_name == "English" && $english_flag_choice == 'us_flag') {
                $language_name_flag = 'united-states';
              }
              if ( $language_name == 'Spanish' && $spanish_flag_choice == 'mexican_flag') {
                $language_name_flag = 'mexico';
              }
              if ( $language_name == 'Portuguese' && $portuguese_flag_choice == 'brazilian_flag') {
                $language_name_flag = 'brazil';
              }

              $href = '#';
              if($glt_seo_active == '1') {
                  $current_url = network_home_url(add_query_arg(null, null));
                  switch($glt_url_structure) {
                    case 'sub_directory':
                        $href = ($language_code == $default_language) ? $current_url : '/' . $language_code . $_SERVER['REQUEST_URI'];
                        break;
                    case 'sub_domain':
                        $domain = str_replace('www.', '', $_SERVER['HTTP_HOST']);
                        $href = ($language_code == $default_language) ? $current_url : str_ireplace('://' . $_SERVER['HTTP_HOST'], '://' . $language_code . '.' . $domain, $current_url);
                        break;
                    default:
                        break;
                  }
              }

              $str.='<li id="'.$language_name.'"><a href="'.esc_url($href).'" title="'.$language_name.'" class="nturl notranslate '.$language_code.' flag '.$language_name_flag.'"></a></li>';
            } //foreach
          else:
            foreach ($new_languages_array_codes as $value) {
              $language_name = $value;
              $language_code = array_search ($language_name, $this->languages_array);
              $language_name_flag = $language_name;

              if ( $language_name == 'English' && $english_flag_choice == 'canadian_flag') {
                $language_name_flag = 'canada';
              }
              if ( $language_name == "English" && $english_flag_choice == 'us_flag') {
                $language_name_flag = 'united-states';
              }
              if ( $language_name == 'Spanish' && $spanish_flag_choice == 'mexican_flag') {
                $language_name_flag = 'mexico';
              }
              if ( $language_name == 'Portuguese' && $portuguese_flag_choice == 'brazilian_flag') {
                $language_name_flag = 'brazil';
              }

              $href = '#';
              if($glt_seo_active == '1') {
                  $current_url = network_home_url(add_query_arg(null, null));
                  switch($glt_url_structure) {
                    case 'sub_directory':
                        $href = ($language_code == $default_language) ? $current_url : '/' . $language_code . $_SERVER['REQUEST_URI'];
                        break;
                    case 'sub_domain':
                        $domain = str_replace('www.', '', $_SERVER['HTTP_HOST']);
                        $href = ($language_code == $default_language) ? $current_url : str_ireplace('://' . $_SERVER['HTTP_HOST'], '://' . $language_code . '.' . $domain, $current_url);
                        break;
                    default:
                        break;
                  }
              }

              $str.='<li id="'.$language_name.'"><a href="'.esc_url($href).'" title="'.$language_name.'" class="nturl notranslate '.$language_code.' flag '.$language_name_flag.'"></a></li>';
            }//foreach
          endif;
      endif;
      $str.='</ul>';
      $str.='</div>';

      endif; //show_flags

      if($glt_seo_active == '1') {
          $str .= '<div id="google_language_translator" class="default-language-'.$default_language_code.'">';
          $str .= '<select aria-label="Website Language Selector" class="notranslate"><option value="">Select Language</option>';

          $get_language_choices = get_option ('language_display_settings');
          foreach($get_language_choices as $key => $value) {
              if($value == 1)
                  $str .= '<option value="'.$default_language.'|'.$key.'">'.$this->languages_array[$key].'</option>';
          }
          $str .= '</select></div>';

          $str .= '<script>';
          if($glt_url_structure == 'sub_directory') {
              $str .= "function doGLTTranslate(lang_pair) {if(lang_pair.value)lang_pair=lang_pair.value;if(lang_pair=='')return;var lang=lang_pair.split('|')[1];if(typeof _gaq!='undefined'){_gaq.push(['_trackEvent', 'GTranslate', lang, location.pathname+location.search]);}else {if(typeof ga!='undefined')ga('send', 'event', 'GTranslate', lang, location.pathname+location.search);}var plang=location.pathname.split('/')[1];if(plang.length !=2 && plang != 'zh-CN' && plang != 'zh-TW' && plang != 'hmn' && plang != 'haw' && plang != 'ceb')plang='$default_language';if(lang == '$default_language')location.href=location.protocol+'//'+location.host+glt_request_uri;else location.href=location.protocol+'//'+location.host+'/'+lang+glt_request_uri;}";
          } elseif($glt_url_structure == 'sub_domain') {
              $str .= "function doGLTTranslate(lang_pair) {if(lang_pair.value)lang_pair=lang_pair.value;if(lang_pair=='')return;var lang=lang_pair.split('|')[1];if(typeof _gaq!='undefined'){_gaq.push(['_trackEvent', 'GTranslate', lang, location.hostname+location.pathname+location.search]);}else {if(typeof ga!='undefined')ga('send', 'event', 'GTranslate', lang, location.hostname+location.pathname+location.search);}var plang=location.hostname.split('.')[0];if(plang.length !=2 && plang.toLowerCase() != 'zh-cn' && plang.toLowerCase() != 'zh-tw' && plang != 'hmn' && plang != 'haw' && plang != 'ceb')plang='$default_language';location.href=location.protocol+'//'+(lang == '$default_language' ? '' : lang+'.')+location.hostname.replace('www.', '').replace(RegExp('^' + plang + '[.]'), '')+glt_request_uri;}";
          }
          $str .= '</script>';
      } else
          $str.='<div id="google_language_translator" class="default-language-'.$default_language_code.'"></div>';

      return $str;

    endif;
  } // End glt_horizontal

  public function initialize_settings() {
    add_settings_section('glt_settings','Settings','','google_language_translator');

    $settings_name_array = array (
        'googlelanguagetranslator_active',
        'googlelanguagetranslator_language',
        'language_display_settings',
        'googlelanguagetranslator_flags',
        'googlelanguagetranslator_translatebox',
        'googlelanguagetranslator_display',
        'glt_language_switcher_width',
        'glt_language_switcher_text_color',
        'glt_language_switcher_bg_color',
        'googlelanguagetranslator_toolbar',
        'googlelanguagetranslator_showbranding',
        'googlelanguagetranslator_flags_alignment',
        'googlelanguagetranslator_analytics',
        'googlelanguagetranslator_analytics_id',
        'googlelanguagetranslator_css',
        'googlelanguagetranslator_multilanguage',
        'googlelanguagetranslator_floating_widget',
        'googlelanguagetranslator_flag_size',
        'googlelanguagetranslator_flags_order',
        'googlelanguagetranslator_english_flag_choice',
        'googlelanguagetranslator_spanish_flag_choice',
        'googlelanguagetranslator_portuguese_flag_choice',
        'googlelanguagetranslator_floating_widget_text',
        'glt_floating_widget_text_color',
        'googlelanguagetranslator_floating_widget_text_allow_translation',
        'glt_floating_widget_position',
        'glt_floating_widget_bg_color',
        'googlelanguagetranslator_seo_active',
        'googlelanguagetranslator_url_structure',
        'googlelanguagetranslator_url_translation_active',
        'googlelanguagetranslator_hreflang_tags_active',
    );

    foreach ($settings_name_array as $setting) {
      add_settings_field( $setting,'',$setting.'_cb','google_language_translator','glt_settings');

      if ($setting == 'googlelanguagetranslator_floating_widget_text')
          register_setting( 'google_language_translator', $setting, array('sanitize_callback' => 'wp_kses_post'));
      else
          register_setting( 'google_language_translator',$setting);
    }
  }

  public function googlelanguagetranslator_active_cb() {
    $option_name = 'googlelanguagetranslator_active' ;
    $new_value = 1;
      if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
      }

      $options = get_option (''.$option_name.'');

      $html = '<input type="checkbox" name="googlelanguagetranslator_active" id="googlelanguagetranslator_active" value="1" '.checked(1,$options,false).'/> &nbsp; Check this box to activate';
      echo $html;
    }

  public function googlelanguagetranslator_language_cb() {

    $option_name = 'googlelanguagetranslator_language';
    $new_value = 'en';

      if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
      }

      $options = get_option (''.$option_name.''); ?>

      <select name="googlelanguagetranslator_language" id="googlelanguagetranslator_language">

      <?php

        foreach ($this->languages_array as $key => $value) {
          $language_code = $key;
          $language_name = $value; ?>
            <option value="<?php echo $language_code; ?>" <?php if($options==''.$language_code.''){echo "selected";}?>><?php echo $language_name; ?></option>
          <?php } ?>
      </select>
    <?php
    }

    public function language_display_settings_cb() {
      $default_language_code = get_option('googlelanguagetranslator_language');
      $option_name = 'language_display_settings';
      $new_value = array(''.$default_language_code.'' => 1);

      if ( get_option( $option_name ) == false ) {
        // The option does not exist, so we update it.
        update_option( $option_name, $new_value );
      }

      $get_language_choices = get_option (''.$option_name.''); ?>

      <script>jQuery(document).ready(function($) { $('.select-all-languages').on('click',function(e) { e.preventDefault(); $('.languages').find('input:checkbox').prop('checked', true); }); $('.clear-all-languages').on('click',function(e) { e.preventDefault();
$('.languages').find('input:checkbox').prop('checked', false); }); }); </script>

      <?php

      foreach ($this->languages_array as $key => $value) {
        $language_code = $key;
        $language_name = $value;
        $language_code_array[] = $key;

        if (!isset($get_language_choices[''.$language_code.''])) {
          $get_language_choices[''.$language_code.''] = 0;
        }

        $items[] = $get_language_choices[''.$language_code.''];
        $language_codes = $language_code_array;
        $item_count = count($items);

        if ($item_count == 1 || $item_count == 27 || $item_count == 53 || $item_count == 79) { ?>
          <div class="languages" style="width:25%; float:left">
        <?php } ?>
          <div><input type="checkbox" name="language_display_settings[<?php echo $language_code; ?>]" value="1"<?php checked( 1,$get_language_choices[''.$language_code.'']); ?>/><?php echo $language_name; ?></div>
        <?php
        if ($item_count == 26 || $item_count == 52 || $item_count == 78 || $item_count == 104) { ?>
          </div>
        <?php }
      } ?>
     <div class="clear"></div>
    <?php
    }

    public function googlelanguagetranslator_flags_cb() {

      $option_name = 'googlelanguagetranslator_flags' ;
      $new_value = 1;

      if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
      }

      $options = get_option (''.$option_name.'');

      $html = '<input type="checkbox" name="googlelanguagetranslator_flags" id="googlelanguagetranslator_flags" value="1" '.checked(1,$options,false).'/> &nbsp; Check to show flags';

      echo $html;
    }

    public function googlelanguagetranslator_floating_widget_cb() {

    $option_name = 'googlelanguagetranslator_floating_widget' ;
    $new_value = 'yes';

      if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
      }

      $options = get_option (''.$option_name.''); ?>

          <select name="googlelanguagetranslator_floating_widget" id="googlelanguagetranslator_floating_widget" style="width:170px">
              <option value="yes" <?php if($options=='yes'){echo "selected";}?>>Yes, show widget</option>
              <option value="no" <?php if($options=='no'){echo "selected";}?>>No, hide widget</option>
          </select>
  <?php }

  public function googlelanguagetranslator_floating_widget_text_cb() {

    $option_name = 'googlelanguagetranslator_floating_widget_text' ;
    $new_value = 'Translate &raquo;';

    if ( get_option( $option_name ) === false ) {
      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
    }

    $options = get_option (''.$option_name.''); ?>

    <input type="text" name="googlelanguagetranslator_floating_widget_text" id="googlelanguagetranslator_floating_widget_text" value="<?php echo esc_attr($options); ?>" style="width:170px"/>

  <?php }

  public function googlelanguagetranslator_floating_widget_text_allow_translation_cb() {
    $option_name = 'googlelanguagetranslator_floating_widget_text_allow_translation' ;
    $new_value = 0;

    if ( get_option( $option_name ) === false ) {
      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
    }

    $options = get_option (''.$option_name.'');

    $html = '<input type="checkbox" name="googlelanguagetranslator_floating_widget_text_allow_translation" id="googlelanguagetranslator_floating_widget_text_allow_translation" value="1" '.checked(1,$options,false).'/> &nbsp; Check to allow';
    echo $html;
  }

  public function glt_floating_widget_position_cb() {
      $option_name = 'glt_floating_widget_position';
      $new_value = '';

      if (get_option($option_name) === false):
        update_option($option_name, $new_value);
      endif;

      $options = get_option(''.$option_name.''); ?>

      <select name="glt_floating_widget_position" id="glt_floating_widget_position" style="width:170px">
        <option value="bottom_left" <?php if($options=='bottom_left'){echo "selected";}?>>Bottom left</option>
        <option value="bottom_center" <?php if($options=='bottom_center'){echo "selected";}?>>Bottom center</option>
        <option value="bottom_right" <?php if($options=='bottom_right'){echo "selected";}?>>Bottom right</option>
        <option value="top_left" <?php if($options=='top_left'){echo "selected";}?>>Top left</option>
        <option value="top_center" <?php if($options=='top_center'){echo "selected";}?>>Top center</option>
        <option value="top_right" <?php if($options=='top_right'){echo "selected";}?>>Top right</option>
      </select>
  <?php
  }

  public function glt_floating_widget_text_color_cb() {
    $option_name = 'glt_floating_widget_text_color';
    $new_value = '#ffffff';

    if (get_option($option_name) === false):
      update_option($option_name, $new_value);
    endif;

    $options = get_option(''.$option_name.''); ?>

    <input type="text" name="glt_floating_widget_text_color" id="glt_floating_widget_text_color" class="color-field" value="<?php echo $options; ?>"/>
  <?php
  }

  public function glt_floating_widget_bg_color_cb() {
    $option_name = 'glt_floating_widget_bg_color';
    $new_value = '#f89406';

    if (get_option($option_name) === false):
      update_option($option_name, $new_value);
    endif;

    $options = get_option(''.$option_name.''); ?>

    <input type="text" name="glt_floating_widget_bg_color" id="glt_floating_widget_bg_color" class="color-field" value="<?php echo $options; ?>"/>
  <?php
  }

  public function glt_language_switcher_width_cb() {

  $option_name = 'glt_language_switcher_width' ;
  $new_value = '';

  if ( get_option( $option_name ) === false ) {
    update_option( $option_name, $new_value );
  }

  $options = get_option (''.$option_name.''); ?>

  <select name="glt_language_switcher_width" id="glt_language_switcher_width" style="width:110px;">
    <option value="100%" <?php if($options=='100%'){echo "selected";}?>>100%</option>
    <option value="">-------</option>
    <option value="150px" <?php if($options=='150px'){echo "selected";}?>>150px</option>
    <option value="160px" <?php if($options=='160px'){echo "selected";}?>>160px</option>
    <option value="170px" <?php if($options=='170px'){echo "selected";}?>>170px</option>
    <option value="180px" <?php if($options=='180px'){echo "selected";}?>>180px</option>
    <option value="190px" <?php if($options=='190px'){echo "selected";}?>>190px</option>
    <option value="200px" <?php if($options=='200px'){echo "selected";}?>>200px</option>
    <option value="210px" <?php if($options=='210px'){echo "selected";}?>>210px</option>
    <option value="220px" <?php if($options=='220px'){echo "selected";}?>>220px</option>
    <option value="230px" <?php if($options=='230px'){echo "selected";}?>>230px</option>
    <option value="240px" <?php if($options=='240px'){echo "selected";}?>>240px</option>
    <option value="250px" <?php if($options=='250px'){echo "selected";}?>>250px</option>
    <option value="260px" <?php if($options=='260px'){echo "selected";}?>>260px</option>
    <option value="270px" <?php if($options=='270px'){echo "selected";}?>>270px</option>
    <option value="280px" <?php if($options=='280px'){echo "selected";}?>>280px</option>
    <option value="290px" <?php if($options=='290px'){echo "selected";}?>>290px</option>
    <option value="300px" <?php if($options=='300px'){echo "selected";}?>>300px</option>
  </select>
  <?php }

  public function glt_language_switcher_text_color_cb() {
    $option_name = 'glt_language_switcher_text_color';
    $new_value = '#32373c';

    if (get_option($option_name) === false):
      update_option($option_name, $new_value);
    endif;

    $options = get_option(''.$option_name.''); ?>

    <input type="text" name="glt_language_switcher_text_color" id="glt_language_switcher_text_color" class="color-field" value="<?php echo $options; ?>"/>
  <?php
  }

  public function glt_language_switcher_bg_color_cb() {
    $option_name = 'glt_language_switcher_bg_color';
    $new_value = '';

    if (get_option($option_name) === false):
      update_option($option_name, $new_value);
    endif;

    $options = get_option(''.$option_name.''); ?>

    <input type="text" name="glt_language_switcher_bg_color" id="glt_language_switcher_bg_color" class="color-field" value="<?php echo $options; ?>"/>
  <?php
  }

  public function googlelanguagetranslator_translatebox_cb() {

    $option_name = 'googlelanguagetranslator_translatebox' ;
    $new_value = 'yes';

      if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
      }

      $options = get_option (''.$option_name.''); ?>

          <select name="googlelanguagetranslator_translatebox" id="googlelanguagetranslator_translatebox" style="width:190px">
            <option value="yes" <?php if($options=='yes'){echo "selected";}?>>Show language switcher</option>
        <option value="no" <?php if($options=='no'){echo "selected";}?>>Hide language switcher</option>
          </select>
  <?php }

  public function googlelanguagetranslator_display_cb() {

    $option_name = 'googlelanguagetranslator_display' ;
    $new_value = 'Vertical';

      if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
      }

      $options = get_option (''.$option_name.''); ?>

          <select name="googlelanguagetranslator_display" id="googlelanguagetranslator_display" style="width:170px;">
             <option value="Vertical" <?php if(get_option('googlelanguagetranslator_display')=='Vertical'){echo "selected";}?>>Vertical</option>
             <option value="Horizontal" <?php if(get_option('googlelanguagetranslator_display')=='Horizontal'){echo "selected";}?>>Horizontal</option>
             <?php
               $browser_lang = !empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? strtok(strip_tags($_SERVER['HTTP_ACCEPT_LANGUAGE']), ',') : '';
           if (!empty($get_http_accept_language)):
             $get_http_accept_language = explode(",",$browser_lang);
           else:
             $get_http_accept_language = explode(",",$browser_lang);
           endif;
               $bestlang = $get_http_accept_language[0];
               $bestlang_prefix = substr($get_http_accept_language[0],0,2);

               if ($bestlang_prefix == 'en'): ?>
           <option value="SIMPLE" <?php if (get_option('googlelanguagetranslator_display')=='SIMPLE'){echo "selected";}?>>SIMPLE</option>
             <?php endif; ?>
          </select>
  <?php }

  public function googlelanguagetranslator_toolbar_cb() {

    $option_name = 'googlelanguagetranslator_toolbar' ;
    $new_value = 'Yes';

      if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
      }

      $options = get_option (''.$option_name.''); ?>

          <select name="googlelanguagetranslator_toolbar" id="googlelanguagetranslator_toolbar" style="width:170px;">
             <option value="Yes" <?php if(get_option('googlelanguagetranslator_toolbar')=='Yes'){echo "selected";}?>>Yes</option>
             <option value="No" <?php if(get_option('googlelanguagetranslator_toolbar')=='No'){echo "selected";}?>>No</option>
          </select>
  <?php }

  public function googlelanguagetranslator_showbranding_cb() {

    $option_name = 'googlelanguagetranslator_showbranding' ;
    $new_value = 'Yes';

      if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
      }

      $options = get_option (''.$option_name.''); ?>

          <select name="googlelanguagetranslator_showbranding" id="googlelanguagetranslator_showbranding" style="width:170px;">
             <option value="Yes" <?php if(get_option('googlelanguagetranslator_showbranding')=='Yes'){echo "selected";}?>>Yes</option>
             <option value="No" <?php if(get_option('googlelanguagetranslator_showbranding')=='No'){echo "selected";}?>>No</option>
          </select>
  <?php }

  public function googlelanguagetranslator_flags_alignment_cb() {

    $option_name = 'googlelanguagetranslator_flags_alignment' ;
    $new_value = 'flags_left';

      if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, 'flags_left' );
      }

      $options = get_option (''.$option_name.''); ?>

      <input type="radio" name="googlelanguagetranslator_flags_alignment" id="flags_left" value="flags_left" <?php if($options=='flags_left'){echo "checked";}?>/> <label for="flags_left">Align Left</label><br/>
      <input type="radio" name="googlelanguagetranslator_flags_alignment" id="flags_right" value="flags_right" <?php if($options=='flags_right'){echo "checked";}?>/> <label for="flags_right">Align Right</label>
  <?php }

  public function googlelanguagetranslator_analytics_cb() {

    $option_name = 'googlelanguagetranslator_analytics' ;
    $new_value = 0;

      if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
      }

      $options = get_option (''.$option_name.'');

    $html = '<input type="checkbox" name="googlelanguagetranslator_analytics" id="googlelanguagetranslator_analytics" value="1" '.checked(1,$options,false).'/> &nbsp; Activate Google Analytics tracking?';
    echo $html;
  }

  public function googlelanguagetranslator_analytics_id_cb() {

    $option_name = 'googlelanguagetranslator_analytics_id' ;
    $new_value = '';

      if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
      }

      $options = get_option (''.$option_name.'');

    $html = '<input type="text" name="googlelanguagetranslator_analytics_id" id="googlelanguagetranslator_analytics_id" value="'.$options.'" />';
    echo $html;
  }

  public function googlelanguagetranslator_flag_size_cb() {

    $option_name = 'googlelanguagetranslator_flag_size' ;
    $new_value = '18';

      if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
      }

      $options = get_option (''.$option_name.''); ?>

          <select name="googlelanguagetranslator_flag_size" id="googlelanguagetranslator_flag_size" style="width:110px;">
             <option value="16" <?php if($options=='16'){echo "selected";}?>>16px</option>
             <option value="18" <?php if($options=='18'){echo "selected";}?>>18px</option>
             <option value="20" <?php if($options=='20'){echo "selected";}?>>20px</option>
             <option value="22" <?php if($options=='22'){echo "selected";}?>>22px</option>
             <option value="24" <?php if($options=='24'){echo "selected";}?>>24px</option>
          </select>
  <?php }

  public function googlelanguagetranslator_flags_order_cb() {
    $option_name = 'googlelanguagetranslator_flags_order';
    $new_value = '';

    if ( get_option ( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
    }

    $options = get_option ( ''.$option_name.'' ); ?>

    <input type="hidden" id="order" name="googlelanguagetranslator_flags_order" value="<?php print_r(get_option('googlelanguagetranslator_flags_order')); ?>" />
   <?php
  }

  public function googlelanguagetranslator_english_flag_choice_cb() {
    $option_name = 'googlelanguagetranslator_english_flag_choice';
    $new_value = 'us_flag';

    if ( get_option ( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
    }

    $options = get_option ( ''.$option_name.'' ); ?>

    <select name="googlelanguagetranslator_english_flag_choice" id="googlelanguagetranslator_english_flag_choice">
      <option value="us_flag" <?php if($options=='us_flag'){echo "selected";}?>>U.S. Flag</option>
      <option value="uk_flag" <?php if ($options=='uk_flag'){echo "selected";}?>>U.K Flag</option>
      <option value="canadian_flag" <?php if ($options=='canadian_flag'){echo "selected";}?>>Canadian Flag</option>
    </select>
   <?php
  }

  public function googlelanguagetranslator_spanish_flag_choice_cb() {
    $option_name = 'googlelanguagetranslator_spanish_flag_choice';
    $new_value = 'spanish_flag';

    if ( get_option ( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
    }

    $options = get_option ( ''.$option_name.'' ); ?>

    <select name="googlelanguagetranslator_spanish_flag_choice" id="googlelanguagetranslator_spanish_flag_choice">
      <option value="spanish_flag" <?php if($options=='spanish_flag'){echo "selected";}?>>Spanish Flag</option>
      <option value="mexican_flag" <?php if ($options=='mexican_flag'){echo "selected";}?>>Mexican Flag</option>
    </select>
   <?php
  }

  public function googlelanguagetranslator_portuguese_flag_choice_cb() {
    $option_name = 'googlelanguagetranslator_portuguese_flag_choice';
    $new_value = 'portuguese_flag';

    if ( get_option ( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
    }

    $options = get_option ( ''.$option_name.'' ); ?>

    <select name="googlelanguagetranslator_portuguese_flag_choice" id="googlelanguagetranslator_spanish_flag_choice">
      <option value="portuguese_flag" <?php if($options=='portuguese_flag'){echo "selected";}?>>Portuguese Flag</option>
      <option value="brazilian_flag" <?php if ($options=='brazilian_flag'){echo "selected";}?>>Brazilian Flag</option>
    </select>
   <?php
  }

  public function googlelanguagetranslator_seo_active_cb() {
    $option_name = 'googlelanguagetranslator_seo_active' ;
    $new_value = 0;
    if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
    }

    $options = get_option (''.$option_name.'');

    $html = '<input type="checkbox" name="googlelanguagetranslator_seo_active" id="googlelanguagetranslator_seo_active" value="1" '.checked(1,$options,false).'/>';
    echo $html;
  }

  public function googlelanguagetranslator_url_structure_choice_cb() {
      $option_name = 'googlelanguagetranslator_url_structure' ;

      if ( get_option( $option_name ) === false ) {
          // The option does not exist, so we update it.
          update_option( $option_name, 'sub_domain' );
      }

      $options = get_option (''.$option_name.''); ?>

      <input type="radio" name="googlelanguagetranslator_url_structure" id="sub_domain" value="sub_domain" <?php if($options=='sub_domain'){echo "checked";}?>/> <label for="sub_domain">Sub-domain (http://<b>es</b>.example.com/)</label><br/><br/>
      <input type="radio" name="googlelanguagetranslator_url_structure" id="sub_directory" value="sub_directory" <?php if($options=='sub_directory'){echo "checked";}?>/> <label for="sub_directory">Sub-directory (http://example.com/<b>de</b>/)</label>
  <?php }

  public function googlelanguagetranslator_url_translation_active_cb() {
    $option_name = 'googlelanguagetranslator_url_translation_active' ;
    $new_value = 0;
    if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
    }

    $options = get_option (''.$option_name.'');

    $html = '<input type="checkbox" name="googlelanguagetranslator_url_translation_active" id="googlelanguagetranslator_url_translation_active" value="1" '.checked(1,$options,false).'/>';
    echo $html;
  }

  public function googlelanguagetranslator_hreflang_tags_active_cb() {
    $option_name = 'googlelanguagetranslator_hreflang_tags_active' ;
    $new_value = 0;
    if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
    }

    $options = get_option (''.$option_name.'');

    $html = '<input type="checkbox" name="googlelanguagetranslator_hreflang_tags_active" id="googlelanguagetranslator_hreflang_tags_active" value="1" '.checked(1,$options,false).'/>';
    echo $html;
  }

  public function googlelanguagetranslator_css_cb() {

    $option_name = 'googlelanguagetranslator_css' ;
    $new_value = '';

      if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
      }

      $options = get_option (''.$option_name.'');

      $html = '<textarea style="width:100%;" rows="5" name="googlelanguagetranslator_css" id="googlelanguagetranslator_css">'.$options.'</textarea>';
    echo $html;
  }

  public function googlelanguagetranslator_multilanguage_cb() {

    $option_name = 'googlelanguagetranslator_multilanguage' ;
    $new_value = 0;

      if ( get_option( $option_name ) === false ) {

      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
      }

      $options = get_option (''.$option_name.'');

      $html = '<input type="checkbox" name="googlelanguagetranslator_multilanguage" id="googlelanguagetranslator_multilanguage" value="1" '.checked(1,$options,false).'/> &nbsp; Turn on multilanguage mode?';
      echo $html;
  }

  public function googlelanguagetranslator_exclude_translation_cb() {

    $option_name = 'googlelanguagetranslator_exclude_translation';
    $new_value = '';

    if (get_option($option_name) === false ) {
      // The option does not exist, so we update it.
      update_option( $option_name, $new_value );
    }

    $options = get_option (''.$option_name.'');

    $html = '<input type="text" name="'.$option_name.'" id="'.$option_name.'" value="'.$options.'" />';

    echo $html;
  }

  public function page_layout_cb() {
    include( plugin_dir_path( __FILE__ ) . '/css/style.php'); add_thickbox(); ?>
      <div id="glt-settings" class="wrap">
        <div id="icon-options-general" class="icon32"></div>
      <h2><span class="notranslate">Google Language Translator</span></h2>
            <form action="<?php echo admin_url( '/options.php'); ?>" method="post">
              <div class="metabox-holder has-right-sidebar" style="float:left; width:65%">
                <div class="postbox glt-main-settings" style="width: 100%">
                  <h3 class="notranslate">Main Settings</h3>
                    <?php settings_fields('google_language_translator'); ?>
                      <table style="border-collapse:separate" width="100%" border="0" cellspacing="8" cellpadding="0" class="form-table">
                        <tr>
                          <td style="width:60%" class="notranslate">Plugin Status:</td>
                          <td class="notranslate"><?php $this->googlelanguagetranslator_active_cb(); ?></td>
                        </tr>

                        <tr class="notranslate">
                          <td>Choose the original language of your website</td>
                          <td><?php $this->googlelanguagetranslator_language_cb(); ?></td>
                        </tr>

                        <tr class="notranslate">
                          <td colspan="2">What languages will be active? (<a class="select-all-languages" href="#">Select All</a> | <a class="clear-all-languages" href="#">Clear</a>)</td>
                        </tr>

                        <tr class="notranslate languages">
                          <td colspan="2"><?php $this->language_display_settings_cb(); ?></td>
                        </tr>
                      </table>
                </div> <!-- .postbox -->

              <div class="postbox glt-seo-settings">
                <h3>SEO Settings (paid) <strong style="color:red">NEW!</strong></h3>
                  <div class="inside">
                    <table style="border-collapse:separate" width="100%" border="0" cellspacing="8" cellpadding="0" class="form-table">
                      <tr class="notranslate">
                    <td class="advanced">Enable search engine indexing: &nbsp;<a href="#TB_inline?width=200&height=150&inlineId=search-engine-indexing-description" title="What is search engine indexing?" class="thickbox">Learn more</a><div id="search-engine-indexing-description" style="display:none"><p>When turned on search engines will crawl your translated pages and index them, so that your website's translated pages can appear in search engines results pages. This will increase your international traffic. Search engine indexing is an essential feature for multilingual SEO.<br><br><i>Please Note:</i> You must have <a href="https://gtranslate.io/?xyz=3167#pricing" target="_blank">GTranslate paid plan</a> to be able to use this option.</p></div></td>
                    <td class="advanced"><?php $this->googlelanguagetranslator_seo_active_cb(); ?></td>
                      </tr>

                      <tr class="notranslate">
                    <td class="advanced">URL Structure:</td>
                    <td class="advanced"><?php $this->googlelanguagetranslator_url_structure_choice_cb(); ?></td>
                      </tr>

                      <tr class="notranslate">
                    <td class="advanced">URL Translation: &nbsp;<a href="#TB_inline?width=200&height=150&inlineId=url-translation-description" title="What is URL translation?" class="thickbox">Learn more</a><div id="url-translation-description" style="display:none"><p>When turned on your URL slugs will be translated which will create additional keywords in other languages and increase your ranking on search engine results pages. For example http://example.com/<b>about-us</b> will become http://de.example.com/<b>uber-uns</b> for German version.<br><br><i>Please Note:</i> This feature will work only if you have GTranslate plan with URL translation option included.</p></div></td>
                    <td class="advanced"><?php $this->googlelanguagetranslator_url_translation_active_cb(); ?></td>
                      </tr>

                      <tr class="notranslate">
                    <td class="advanced">Add hreflang meta tags: &nbsp;<a href="#TB_inline?width=200&height=150&inlineId=hreflang-tags-description" title="What are hreflang tags?" class="thickbox">Learn more</a><div id="hreflang-tags-description" style="display:none"><p>Hreflang tags are a technical solution for sites that have similar content in multiple languages. The owner of a multilingual site wants search engines to send people to the content in their own language. Say a user is Dutch and the page that ranks is English, but there's also a Dutch version. You would want Google to show the Dutch page in the search results for that Dutch user. This is the kind of problem hreflang was designed to solve.</p></div></td>
                    <td class="advanced"><?php $this->googlelanguagetranslator_hreflang_tags_active_cb(); ?></td>
                      </tr>
                    </table>
                  </div> <!-- .inside -->
                </div> <!-- .postbox -->

                <div class="postbox glt-layout-settings" style="width: 100%">
                  <h3 class="notranslate">Language Switcher Settings</h3>
                  <table style="border-collapse:separate" width="100%" border="0" cellspacing="8" cellpadding="0" class="form-table">

                  <tr class="notranslate">
                    <td class="choose_flags_intro">Language switcher width:</td>
                    <td class="choose_flags_intro"><?php $this->glt_language_switcher_width_cb(); ?></td>
                  </tr>

                  <tr class="notranslate">
                    <td class="choose_flags_intro">Language switcher text color:</td>
                    <td class="choose_flags_intro"><?php $this->glt_language_switcher_text_color_cb(); ?></td>
                  </tr>

                  <tr class="notranslate">
                    <td class="choose_flags_intro">Language switcher background color:</td>
                    <td class="choose_flags_intro"><?php $this->glt_language_switcher_bg_color_cb(); ?></td>
                  </tr>

                  <tr class="notranslate">
                    <td class="choose_flags_intro">Show flag images?<br/>(Display up to 104 flags above the language switcher)</td>
                    <td class="choose_flags_intro"><?php $this->googlelanguagetranslator_flags_cb(); ?></td>
                  </tr>

                    <tr class="notranslate">
                      <td>Show or hide the langauge switcher?</td>
                      <td><?php $this->googlelanguagetranslator_translatebox_cb(); ?></td>
                    </tr>

                    <tr class="notranslate">
                      <td>Layout option:</td>
                      <td><?php $this->googlelanguagetranslator_display_cb(); ?></td>
                    </tr>

                    <tr class="notranslate">
                      <td>Show Google Toolbar?</td>
                      <td><?php $this->googlelanguagetranslator_toolbar_cb(); ?></td>
                    </tr>

                    <tr class="notranslate">
                      <td>Show Google Branding? &nbsp;<a href="https://developers.google.com/translate/v2/attribution" target="_blank">Learn more</a></td>
              <td><?php $this->googlelanguagetranslator_showbranding_cb(); ?></td>
                    </tr>

                    <tr class="alignment notranslate">
                      <td class="flagdisplay">Align the translator left or right?</td>
                      <td class="flagdisplay"><?php $this->googlelanguagetranslator_flags_alignment_cb(); ?></td>
                    </tr>
                  </table>
                </div> <!-- .postbox -->

                <div class="postbox glt-floating-widget-settings" style="width: 100%">
                  <h3 class="notranslate">Floating Widget Settings</h3>
                  <table style="border-collapse:separate" width="100%" border="0" cellspacing="8" cellpadding="0" class="form-table">
                    <tr class="floating_widget_show notranslate">
                      <td>Show floating translation widget?</td>
                      <td><?php $this->googlelanguagetranslator_floating_widget_cb(); ?></td>
                    </tr>

                    <tr class="floating-widget floating-widget-custom-text notranslate hidden">
                      <td>Custom text for the floating widget:</td>
                      <td><?php $this->googlelanguagetranslator_floating_widget_text_cb(); ?></td>
                    </tr>

                    <tr class="floating-widget floating-widget-text-translate notranslate hidden">
                      <td>Allow floating widget text to translate?:</td>
                      <td><?php $this->googlelanguagetranslator_floating_widget_text_allow_translation_cb(); ?></td>
                    </tr>

                    <tr class="floating-widget floating-widget-position notranslate hidden">
                      <td>Floating Widget Position:</td>
                      <td><?php $this->glt_floating_widget_position_cb(); ?></td>
                    </tr>

                    <tr class="floating-widget floating-widget-text-color notranslate hidden">
                      <td>Floating Widget Text Color:</td>
                      <td><?php $this->glt_floating_widget_text_color_cb(); ?></td>
                    </tr>

                    <tr class="floating-widget floating-widget-color notranslate hidden">
                      <td>Floating Widget Background Color</td>
                      <td><?php $this->glt_floating_widget_bg_color_cb(); ?></td>
                    </tr>
                  </table>
                </div> <!-- .postbox -->

                <div class="postbox glt-behavior-settings" style="width: 100%;display:none;">
                  <h3 class="notranslate">Behavior Settings</h3>
                    <table style="border-collapse:separate" width="100%" border="0" cellspacing="8" cellpadding="0" class="form-table">
                      <tr class="multilanguage notranslate">
                      <td>Multilanguage Page option? &nbsp;<a href="#TB_inline?width=200&height=150&inlineId=multilanguage-page-description" title="What is the Multi-Language Page Option?" class="thickbox">Learn more</a><div id="multilanguage-page-description" style="display:none"><p>If you activate this setting, Google will translate all text into a single language when requested by your user, even if text is written in multiple languages. In most cases, this setting is not recommended, although for certain websites it might be necessary.</p></div></td>
                      <td><?php $this->googlelanguagetranslator_multilanguage_cb(); ?></td>
                    </tr>

                    <tr class="notranslate">
                      <td>Google Analytics:</td>
                      <td><?php $this->googlelanguagetranslator_analytics_cb(); ?></td>
                    </tr>

                    <tr class="analytics notranslate">
                      <td>Google Analytics ID (Ex. 'UA-11117410-2')</td>
                      <td><?php $this->googlelanguagetranslator_analytics_id_cb(); ?></td>
                    </tr>
                  </table>
                </div> <!-- .postbox -->

                <div class="postbox glt-usage-settings" style="width: 100%">
                  <h3 class="notranslate">Usage</h3>
                  <table style="border-collapse:separate" width="100%" border="0" cellspacing="8" cellpadding="0" class="form-table">
                    <tr class="notranslate">
                      <td>For usage in pages/posts/sidebar:</td>
                      <td><code>[google-translator]</code></td>
                    </tr>

                    <tr class="notranslate">
                      <td style="width:40%">For usage in header/footer/page templates:</td>
                      <td style="width:60%"><code>&lt;?php echo do_shortcode('[google-translator]'); ?&gt;</code></td>
                    </tr>

                    <tr class="notranslate">
                      <td colspan="2">Single language usage in menus/pages/posts</td>
                    </tr>

                    <tr class="notranslate">
                      <td colspan="2"><code>[glt language="Spanish" label="Espa&ntilde;ol" image="yes" text="yes" image_size="24"]</code></td>
                    </tr>

                    <tr class="notranslate">
                      <td colspan="2">
                        <a href="#TB_inline?width=200&height=450&inlineId=single-language-shortcode-description" title="How to place a single language in your Wordpress menu" class="thickbox">How to place a single language in your Wordpress menu</a>
            <div id="single-language-shortcode-description" style="display:none">
              <p>For menu usage, you need to create a new menu, or use an existing menu, by navigating to "Appearance > Menus".</p>
              <p>First you will need to enable "descriptions" for your menu items, which can be found in a tab labeled "Screen Options" in the upper-right area of the page.</p>
              <p>Once descriptions are enabled, follow these steps:<br/>
                            <ol>
                  <li>Create a new menu item using "Link" as the menu item type.</li>
                  <li>Use <code style="border:none">#</code> for the URL</li>
                  <li>Enter a navigation label of your choice. This label does not appear on your website - it is meant only to help you identify the menu item.</li>
                  <li>Place the following shortcode into the "description" field, and modify it to display the language and navigation label of your choice:</li>
                            </ol>
                          <p><code>[glt language="Spanish" label="Espa&ntilde;ol"]</code></p>
                        </div> <!-- .single-language-shortcode-description -->
                      </td>
                    </tr>
                  </table>
        </div> <!-- .postbox -->

        <?php
          if (isset($_POST['submit'])) {
            if (empty($_POST['submit']) && !check_admin_referer( 'glt-save-settings', 'glt-save-settings-nonce' )) {
              wp_die();
            }
          }
          wp_nonce_field('glt-save-settings, glt-save-settings-nonce', false);
              submit_button();
        ?>

        <p><a target="_blank" href="https://wordpress.org/support/plugin/google-language-translator/reviews/?filter=5"><?php _e('Love Google Language Translator? Give us 5 stars on WordPress.org :)', 'glt'); ?></a></p>

        </div> <!-- .metbox-holder -->

        <div class="metabox-holder" style="float:right; clear:right; width:33%">
          <div class="postbox glt-preview-settings">
            <h3 class="notranslate">Preview</h3>
                      <table style="width:100%">
                <tr>
                          <td style="box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; padding:15px 15px; margin:0px"><span class="notranslate"> Drag &amp; drop flags to change their position.<br/><br/>(Note: flag order resets when flags are added/removed)</span><br/><br/><?php echo do_shortcode('[google-translator]'); ?><p class="hello"><span class="notranslate">Translated text:</span> &nbsp; <span>Hello</span></p>
                          </td>
                        </tr>
                      </table>
          </div> <!-- .postbox -->
            </div> <!-- .metabox-holder -->

                <div class="metabox-holder box-right notranslate" style="float: right; width: 33%; clear:right">
                  <div class="postbox glt-flag-settings">
                    <h3>Flag Settings</h3>
                      <div class="inside">
                        <table style="border-collapse:separate" width="100%" border="0" cellspacing="8" cellpadding="0" class="form-table">
                          <tr class="notranslate">
                        <td class="advanced">Select flag size:</td>
                        <td class="advanced"><?php $this->googlelanguagetranslator_flag_size_cb(); ?></td>
                          </tr>

                          <tr class="notranslate">
                        <td class="advanced">Flag for English:</td>
                        <td class="advanced"><?php $this->googlelanguagetranslator_english_flag_choice_cb(); ?></td>
                          </tr>

                          <tr class="notranslate">
                        <td class="advanced">Flag for Spanish:</td>
                        <td class="advanced"><?php $this->googlelanguagetranslator_spanish_flag_choice_cb(); ?></td>
                          </tr>

                          <tr class="notranslate">
                        <td class="advanced">Flag for Portuguese:</td>
                        <td class="advanced"><?php $this->googlelanguagetranslator_portuguese_flag_choice_cb(); ?></td>
                          </tr>
                        </table>
                      </div> <!-- .inside -->
                    </div> <!-- .postbox -->
                  </div> <!-- .metabox-holder -->

            <div class="metabox-holder box-right notranslate" style="float: right; width: 33%;">
              <div class="postbox glt-gtranslate-ad">
                <h3>Enable SEO features with GTranslate</h3>
                  <div class="inside">
                    <a class="wp-studio-logo" href="https://gtranslate.io/?xyz=3167#pricing" target="_blank"><img style="width:177px;" src="<?php echo plugins_url( 'images/gt_logo.svg' , __FILE__ ); ?>"></a><br />
                      <ul id="features" style="margin-left:15px">
                        <li style="list-style:square outside"><?php _e('Search engine indexing', 'glt'); ?></li>
                        <li style="list-style:square outside"><?php _e('Search engine friendly (SEF) URLs', 'glt'); ?></li>
                        <li style="list-style:square outside"><?php _e('Human level neural translations', 'glt'); ?></li>
                        <li style="list-style:square outside"><?php _e('Edit translations manually', 'glt'); ?></li>
                        <li style="list-style:square outside"><a href="https://gtranslate.io/website-translation-quote" title="Website Translation Price Calculator" target="_blank"><?php _e('Automatic translation post-editing service and professional translations', 'glt'); ?></a></li>
                        <li style="list-style:square outside"><?php _e('Meta data translation (keywords, page description, etc...)', 'glt'); ?></li>
                        <li style="list-style:square outside"><?php _e('URL/slug translation', 'glt'); ?></li>
                        <li style="list-style:square outside"><?php _e('Language hosting (custom domain like example.fr, example.es)', 'glt'); ?></li>
                        <li style="list-style:square outside"><?php _e('Seamless updates', 'glt'); ?></li>
                        <li style="list-style:square outside"><?php _e('Increased international traffic and AdSense revenue', 'glt'); ?></li>
                        <li style="list-style:square outside"><?php _e('Works in China', 'glt'); ?></li>
                        <li style="list-style:square outside"><?php _e('Priority Live Chat support', 'glt'); ?></li>
                      </ul>

                      <p><?php _e('Prices starting from <b>$9.99/month</b>!', 'glt'); ?></p>

                      <a href="https://gtranslate.io/?xyz=3167#pricing" target="_blank" class="button-primary"><?php _e('Try Now (15 days free)', 'glt'); ?></a> <a href="https://gtranslate.io/?xyz=3167#faq" target="_blank" class="button-primary"><?php _e('FAQ', 'glt'); ?></a> <a href="https://gtranslate.io/?xyz=3167#contact" target="_blank" class="button-primary"><?php _e('Live Chat', 'glt'); ?></a>
                  </div> <!-- .inside -->
              </div> <!-- .postbox -->
            </div> <!-- .metabox-holder -->


              <div class="metabox-holder box-right notranslate" style="float: right; width: 33%;">
                    <div class="postbox glt-css-settings">
                      <h3>Add CSS Styles</h3>
            <div class="inside">
              <p>You can apply any necessary CSS styles below:</p>
              <?php $this->googlelanguagetranslator_css_cb(); ?>
                        </div> <!-- .inside -->
                    </div> <!-- .postbox -->
                  </div> <!-- .metabox-holder -->
              <?php $this->googlelanguagetranslator_flags_order_cb(); ?>
        </form>
      </div> <!-- .wrap -->

      <?php
      $default_language = get_option('googlelanguagetranslator_language');
      $glt_url_structure = get_option('googlelanguagetranslator_url_structure');
      $glt_seo_active = get_option('googlelanguagetranslator_seo_active');

      $pro_version = $enterprise_version = null;
      if($glt_seo_active == '1' and $glt_url_structure == 'sub_domain')
         $pro_version = '1';
      if($glt_seo_active == '1' and $glt_url_structure == 'sub_directory')
         $enterprise_version = '1';
      ?>
      <script>window.intercomSettings = {app_id: "r70azrgx", 'platform': 'wordpress-glt', 'translate_from': '<?php echo $default_language; ?>', 'is_sub_directory': <?php echo (empty($pro_version) ? '0' : '1'); ?>, 'is_sub_domain': <?php echo (empty($enterprise_version) ? '0' : '1'); ?>};(function(){var w=window;var ic=w.Intercom;if(typeof ic==="function"){ic('reattach_activator');ic('update',intercomSettings);}else{var d=document;var i=function(){i.c(arguments)};i.q=[];i.c=function(args){i.q.push(args)};w.Intercom=i;function l(){var s=d.createElement('script');s.type='text/javascript';s.async=true;s.src='https://widget.intercom.io/widget/r70azrgx';var x=d.getElementsByTagName('script')[0];x.parentNode.insertBefore(s,x);}if(w.attachEvent){w.attachEvent('onload',l);}else{w.addEventListener('load',l,false);}}})()</script>
<?php
  }
}

class GLT_Notices {
    protected $prefix = 'glt';
    public $notice_spam = 0;
    public $notice_spam_max = 3;

    // Basic actions to run
    public function __construct() {
        // Runs the admin notice ignore function incase a dismiss button has been clicked
        add_action('admin_init', array($this, 'admin_notice_ignore'));
        // Runs the admin notice temp ignore function incase a temp dismiss link has been clicked
        add_action('admin_init', array($this, 'admin_notice_temp_ignore'));

        // Adding notices
        add_action('admin_notices', array($this, 'glt_admin_notices'));
    }

    // Checks to ensure notices aren't disabled and the user has the correct permissions.
    public function glt_admin_notice() {

        $gt_settings = get_option($this->prefix . '_admin_notice');
        if (!isset($gt_settings['disable_admin_notices']) || (isset($gt_settings['disable_admin_notices']) && $gt_settings['disable_admin_notices'] == 0)) {
            if (current_user_can('manage_options')) {
                return true;
            }
        }
        return false;
    }

    // Primary notice function that can be called from an outside function sending necessary variables
    public function admin_notice($admin_notices) {

        // Check options
        if (!$this->glt_admin_notice()) {
            return false;
        }

        foreach ($admin_notices as $slug => $admin_notice) {
            // Call for spam protection

            if ($this->anti_notice_spam()) {
                return false;
            }

            // Check for proper page to display on
            if (isset( $admin_notices[$slug]['pages']) and is_array( $admin_notices[$slug]['pages'])) {

                if (!$this->admin_notice_pages($admin_notices[$slug]['pages'])) {
                    return false;
                }

            }

            // Check for required fields
            if (!$this->required_fields($admin_notices[$slug])) {

                // Get the current date then set start date to either passed value or current date value and add interval
                $current_date = current_time("n/j/Y");
                $start = (isset($admin_notices[$slug]['start']) ? $admin_notices[$slug]['start'] : $current_date);
                $start = date("n/j/Y", strtotime($start));
                $end = ( isset( $admin_notices[ $slug ]['end'] ) ? $admin_notices[ $slug ]['end'] : $start );
                $end = date( "n/j/Y", strtotime( $end ) );
                $date_array = explode('/', $start);
                $interval = (isset($admin_notices[$slug]['int']) ? $admin_notices[$slug]['int'] : 0);
                $date_array[1] += $interval;
                $start = date("n/j/Y", mktime(0, 0, 0, $date_array[0], $date_array[1], $date_array[2]));
                // This is the main notices storage option
                $admin_notices_option = get_option($this->prefix . '_admin_notice', array());
                // Check if the message is already stored and if so just grab the key otherwise store the message and its associated date information
                if (!array_key_exists( $slug, $admin_notices_option)) {
                    $admin_notices_option[$slug]['start'] = $start;
                    $admin_notices_option[$slug]['int'] = $interval;
                    update_option($this->prefix . '_admin_notice', $admin_notices_option);
                }

                // Sanity check to ensure we have accurate information
                // New date information will not overwrite old date information
                $admin_display_check = (isset($admin_notices_option[$slug]['dismissed']) ? $admin_notices_option[$slug]['dismissed'] : 0);
                $admin_display_start = (isset($admin_notices_option[$slug]['start']) ? $admin_notices_option[$slug]['start'] : $start);
                $admin_display_interval = (isset($admin_notices_option[$slug]['int']) ? $admin_notices_option[$slug]['int'] : $interval);
                $admin_display_msg = (isset($admin_notices[$slug]['msg']) ? $admin_notices[$slug]['msg'] : '');
                $admin_display_title = (isset($admin_notices[$slug]['title']) ? $admin_notices[$slug]['title'] : '');
                $admin_display_link = (isset($admin_notices[$slug]['link']) ? $admin_notices[$slug]['link'] : '');
                $admin_display_dismissible= (isset($admin_notices[$slug]['dismissible']) ? $admin_notices[$slug]['dismissible'] : true);
                $output_css = false;

                // Ensure the notice hasn't been hidden and that the current date is after the start date
                if ($admin_display_check == 0 and strtotime($admin_display_start) <= strtotime($current_date)) {
                    // Get remaining query string
                    $query_str = esc_url(add_query_arg($this->prefix . '_admin_notice_ignore', $slug));

                    // Admin notice display output
                    echo '<div class="update-nag glt-admin-notice">';
                    echo '<div class="glt-notice-logo"></div>';
                    echo ' <p class="glt-notice-title">';
                    echo $admin_display_title;
                    echo ' </p>';
                    echo ' <p class="glt-notice-body">';
                    echo $admin_display_msg;
                    echo ' </p>';
                    echo '<ul class="glt-notice-body glt-red">
                          ' . $admin_display_link . '
                        </ul>';
                    if($admin_display_dismissible)
                        echo '<a href="' . $query_str . '" class="dashicons dashicons-dismiss"></a>';
                    echo '</div>';

                    $this->notice_spam += 1;
                    $output_css = true;
                }

                if ($output_css) {
                    wp_enqueue_style($this->prefix . '-admin-notices', plugins_url(plugin_basename(dirname(__FILE__))) . '/css/glt-notices.css', array());
                }
            }

        }
    }

    // Spam protection check
    public function anti_notice_spam() {
        if ($this->notice_spam >= $this->notice_spam_max) {
            return true;
        }
        return false;
    }

    // Ignore function that gets ran at admin init to ensure any messages that were dismissed get marked
    public function admin_notice_ignore() {
        // verify nonce
        if(!isset($_GET['_wpnonce']) or !wp_verify_nonce($_GET['_wpnonce']))
            return;

        // If user clicks to ignore the notice, update the option to not show it again
        if (isset($_GET[$this->prefix . '_admin_notice_ignore'])) {
            $admin_notices_option = get_option($this->prefix . '_admin_notice', array());

            $key = $_GET[$this->prefix . '_admin_notice_ignore'];
            if(!preg_match('/^[a-z_0-9]+$/i', $key))
                return;

            $admin_notices_option[$key]['dismissed'] = 1;
            update_option($this->prefix . '_admin_notice', $admin_notices_option);
            $query_str = remove_query_arg(array($this->prefix . '_admin_notice_ignore', '_wpnonce'));
            wp_redirect($query_str);
            exit;
        }
    }

    // Temp Ignore function that gets ran at admin init to ensure any messages that were temp dismissed get their start date changed
    public function admin_notice_temp_ignore() {
        // verify nonce
        if(!isset($_GET['_wpnonce']) or !wp_verify_nonce($_GET['_wpnonce']))
            return;

        // If user clicks to temp ignore the notice, update the option to change the start date - default interval of 14 days
        if (isset($_GET[$this->prefix . '_admin_notice_temp_ignore'])) {
            $admin_notices_option = get_option($this->prefix . '_admin_notice', array());
            $current_date = current_time("n/j/Y");
            $date_array   = explode('/', $current_date);
            $interval     = (isset($_GET['gt_int']) ? intval($_GET['gt_int']) : 14);
            $date_array[1] += $interval;
            $new_start = date("n/j/Y", mktime(0, 0, 0, $date_array[0], $date_array[1], $date_array[2]));

            $key = $_GET[$this->prefix . '_admin_notice_temp_ignore'];
            if(!preg_match('/^[a-z_0-9]+$/i', $key))
                return;

            $admin_notices_option[$key]['start'] = $new_start;
            $admin_notices_option[$key]['dismissed'] = 0;
            update_option($this->prefix . '_admin_notice', $admin_notices_option);
            $query_str = remove_query_arg(array($this->prefix . '_admin_notice_temp_ignore', 'gt_int', '_wpnonce'));
            wp_redirect( $query_str );
            exit;
        }
    }

    public function admin_notice_pages($pages) {
        foreach ($pages as $key => $page) {
            if (is_array($page)) {
                if (isset($_GET['page']) and $_GET['page'] == $page[0] and isset($_GET['tab']) and $_GET['tab'] == $page[1]) {
                    return true;
                }
            } else {
                if ($page == 'all') {
                    return true;
                }
                if (get_current_screen()->id === $page) {
                    return true;
                }

                if (isset($_GET['page']) and $_GET['page'] == $page) {
                    return true;
                }
            }
        }

        return false;
    }

    // Required fields check
    public function required_fields( $fields ) {
        if (!isset( $fields['msg']) or (isset($fields['msg']) and empty($fields['msg']))) {
            return true;
        }
        if (!isset( $fields['title']) or (isset($fields['title']) and empty($fields['title']))) {
            return true;
        }
        return false;
    }

    // Special parameters function that is to be used in any extension of this class
    public function special_parameters($admin_notices) {
        // Intentionally left blank
    }

    public function glt_admin_notices() {

        $deactivate_plugins= array('WP Translator' => 'wptranslator/WPTranslator.php', 'TranslatePress' => 'translatepress-multilingual/index.php', 'Google Website Translator' => 'google-website-translator/google-website-translator.php', 'Weglot' => 'weglot/weglot.php', 'TransPosh' => 'transposh-translation-filter-for-wordpress/transposh.php', 'Advanced Google Translate' => 'advanced-google-translate/advanced-google-translate.php', 'My WP Translate' => 'my-wp-translate/my-wp-translate.php', 'WPML Multilingual CMS' => 'sitepress-multilingual-cms/sitepress.php');
        foreach($deactivate_plugins as $name => $plugin_file) {
            if(is_plugin_active($plugin_file)) {
                $deactivate_link = wp_nonce_url('plugins.php?action=deactivate&amp;plugin='.urlencode($plugin_file ).'&amp;plugin_status=all&amp;paged=1&amp;s=', 'deactivate-plugin_' . $plugin_file);
                $notices['deactivate_plugin_'.strtolower(str_replace(' ', '', $name))] = array(
                    'title' => sprintf(__('Please deactivate %s plugin', 'glt'), $name),
                    'msg' => sprintf(__('%s plugin causes conflicts with Google Language Translator.', 'glt'), $name),
                    'link' => '<li><span class="dashicons dashicons-dismiss"></span><a href="'.$deactivate_link.'">' . sprintf(__('Deactivate %s plugin', 'glt'), $name) . '</a></li>',
                    'dismissible' => false,
                    'int' => 0
                );
            }
        }

        // check if translation debug is on and add a notice
        include dirname(__FILE__) . '/url_addon/config.php';
        if($debug) {
            $edit_file_link = admin_url('plugin-editor.php?file=google-language-translator%2Furl_addon%2Fconfig.php&plugin=google-language-translator%2Fgoogle-language-translator.php');
            $view_debug_link = admin_url('plugin-editor.php?file=google-language-translator%2Furl_addon%2Fdebug.txt&plugin=google-language-translator%2Fgoogle-language-translator.php');
            $notices['glt_debug_notice'] = array(
                'title' => __('Translation debug mode is ON.', 'glt'),
                'msg' => __('Please note that sensitive information can be written into google-language-translator/url_addon/debug.txt file, which can be accessed publicly. It is your responsibility to deny public access to it and clean debug information after you are done.', 'glt'),
                'link' => '<li><span class="dashicons dashicons-edit"></span><a href="'.$edit_file_link.'">' . __('Edit config.php', 'glt') . '</a></li>' .
                          '<li><span class="dashicons dashicons-visibility"></span><a href="'.$view_debug_link.'">' . __('View debug.txt', 'glt') . '</a></li>',
                'dismissible' => false,
                'int' => 0
            );
        }

        $glt_announcement_ignore = esc_url(wp_nonce_url(add_query_arg(array($this->prefix . '_admin_notice_ignore' => 'glt_announcement'))));
        $glt_announcement_temp = esc_url(wp_nonce_url(add_query_arg(array($this->prefix . '_admin_notice_temp_ignore' => 'glt_announcement', 'gt_int' => 2))));

        $notices['glt_announcement'] = array(
            'title' => __('Announcement - Google Language Translator', 'glt'),
            'msg' => __("<p><b>Google Language Translator</b> plugin is now a part of <b>GTranslate</b> family!</p> <p>GTranslate is a leader in website translation technology. You can continue using this plugin and enjoy <b>new SEO features</b> and free <b>Live chat support</b> brought to you by GTranslate.</p>", 'glt'),
            'link' => '<li><span class="dashicons dashicons-megaphone"></span><a href="https://gtranslate.io/blog/google-language-translator-becomes-part-of-gtranslate-family" target="_blank">' . __('Read More', 'glt') . '</a></li>' .
                      '<li><span class="dashicons dashicons-external"></span><a href="https://gtranslate.io/?xyz=3167" target="_blank">' . __('Visit GTranslate', 'glt') . '</a></li>' .
                      '<li><span class="dashicons dashicons-admin-settings"></span><a href="' . admin_url('options-general.php?page=google_language_translator') . '">' . __('Open Settings Page', 'glt') . '</a></li>' .
                      '<li><span class="dashicons dashicons-calendar-alt"></span><a href="' . $glt_announcement_temp . '">' . __('Remind me later', 'glt') . '</a></li>' .
                      '<li><span class="dashicons dashicons-dismiss"></span><a href="' . $glt_announcement_ignore . '">' . __('Dismiss', 'glt') . '</a></li>',
            'later_link' => $glt_announcement_temp,
            'int' => 0
        );

        $two_week_review_ignore = esc_url(wp_nonce_url(add_query_arg(array($this->prefix . '_admin_notice_ignore' => 'two_week_review'))));
        $two_week_review_temp = esc_url(wp_nonce_url(add_query_arg(array($this->prefix . '_admin_notice_temp_ignore' => 'two_week_review', 'gt_int' => 6))));

        $notices['two_week_review'] = array(
            'title' => __('Please Leave a Review', 'glt'),
            'msg' => __("We hope you have enjoyed using Google Language Translator! Would you mind taking a few minutes to write a review on WordPress.org? <br>Just writing a simple <b>'thank you'</b> will make us happy!", 'glt'),
            'link' => '<li><span class="dashicons dashicons-external"></span><a href="https://wordpress.org/support/plugin/google-language-translator/reviews/?filter=5" target="_blank">' . __('Sure! I would love to!', 'glt') . '</a></li>' .
                      '<li><span class="dashicons dashicons-smiley"></span><a href="' . $two_week_review_ignore . '">' . __('I have already left a review', 'glt') . '</a></li>' .
                      '<li><span class="dashicons dashicons-calendar-alt"></span><a href="' . $two_week_review_temp . '">' . __('Maybe later', 'glt') . '</a></li>' .
                      '<li><span class="dashicons dashicons-dismiss"></span><a href="' . $two_week_review_ignore . '">' . __('Never show again', 'glt') . '</a></li>',
            'later_link' => $two_week_review_temp,
            'int' => 5
        );

        $upgrade_tips_ignore = esc_url(wp_nonce_url(add_query_arg(array($this->prefix . '_admin_notice_ignore' => 'upgrade_tips'))));
        $upgrade_tips_temp = esc_url(wp_nonce_url(add_query_arg(array($this->prefix . '_admin_notice_temp_ignore' => 'upgrade_tips', 'gt_int' => 7))));

        if(get_option('googlelanguagetranslator_seo_active') != '1') {
            $notices['upgrade_tips'][] = array(
                'title' => __('Did you know?', 'glt'),
                'msg' => __('You can have <b>neural machine translations</b> which are human level with GTranslate paid version.', 'glt'),
                'link' => '<li><span class="dashicons dashicons-external"></span><a href="https://gtranslate.io/?xyz=3167#pricing" target="_blank">' . __('Learn more', 'glt') . '</a></li>' .
                          '<li><span class="dashicons dashicons-calendar-alt"></span><a href="' . $upgrade_tips_temp . '">' . __('Maybe later', 'glt') . '</a></li>' .
                          '<li><span class="dashicons dashicons-dismiss"></span><a href="' . $upgrade_tips_ignore . '">' . __('Never show again', 'glt') . '</a></li>',
                'later_link' => $upgrade_tips_temp,
                'int' => 2
            );

            $notices['upgrade_tips'][] = array(
                'title' => __('Did you know?', 'glt'),
                'msg' => __('You can <b>increase</b> your international <b>traffic</b> with GTranslate paid version.', 'glt'),
                'link' => '<li><span class="dashicons dashicons-external"></span><a href="https://gtranslate.io/?xyz=3167#pricing" target="_blank">' . __('Learn more', 'glt') . '</a></li>' .
                          '<li><span class="dashicons dashicons-calendar-alt"></span><a href="' . $upgrade_tips_temp . '">' . __('Maybe later', 'glt') . '</a></li>' .
                          '<li><span class="dashicons dashicons-dismiss"></span><a href="' . $upgrade_tips_ignore . '">' . __('Never show again', 'glt') . '</a></li>',
                'later_link' => $upgrade_tips_temp,
                'int' => 2
            );

            $notices['upgrade_tips'][] = array(
                'title' => __('Did you know?', 'glt'),
                'msg' => __('You can have your <b>translated pages indexed</b> in search engines with GTranslate paid version.', 'glt'),
                'link' => '<li><span class="dashicons dashicons-external"></span><a href="https://gtranslate.io/?xyz=3167#pricing" target="_blank">' . __('Learn more', 'glt') . '</a></li>' .
                          '<li><span class="dashicons dashicons-calendar-alt"></span><a href="' . $upgrade_tips_temp . '">' . __('Maybe later', 'glt') . '</a></li>' .
                          '<li><span class="dashicons dashicons-dismiss"></span><a href="' . $upgrade_tips_ignore . '">' . __('Never show again', 'glt') . '</a></li>',
                'later_link' => $upgrade_tips_temp,
                'int' => 2
            );

            $notices['upgrade_tips'][] = array(
                'title' => __('Did you know?', 'glt'),
                'msg' => __('You can <b>increase</b> your <b>AdSense revenue</b> with GTranslate paid version.', 'glt'),
                'link' => '<li><span class="dashicons dashicons-external"></span><a href="https://gtranslate.io/?xyz=3167#pricing" target="_blank">' . __('Learn more', 'glt') . '</a></li>' .
                          '<li><span class="dashicons dashicons-calendar-alt"></span><a href="' . $upgrade_tips_temp . '">' . __('Maybe later', 'glt') . '</a></li>' .
                          '<li><span class="dashicons dashicons-dismiss"></span><a href="' . $upgrade_tips_ignore . '">' . __('Never show again', 'glt') . '</a></li>',
                'later_link' => $upgrade_tips_temp,
                'int' => 2
            );

            $notices['upgrade_tips'][] = array(
                'title' => __('Did you know?', 'glt'),
                'msg' => __('You can <b>edit translations</b> with GTranslate paid version.', 'glt'),
                'link' => '<li><span class="dashicons dashicons-external"></span><a href="https://gtranslate.io/?xyz=3167#pricing" target="_blank">' . __('Learn more', 'glt') . '</a></li>' .
                          '<li><span class="dashicons dashicons-calendar-alt"></span><a href="' . $upgrade_tips_temp . '">' . __('Maybe later', 'glt') . '</a></li>' .
                          '<li><span class="dashicons dashicons-dismiss"></span><a href="' . $upgrade_tips_ignore . '">' . __('Never show again', 'glt') . '</a></li>',
                'later_link' => $upgrade_tips_temp,
                'int' => 2
            );

            shuffle($notices['upgrade_tips']);
            $notices['upgrade_tips'] = $notices['upgrade_tips'][0];
        }

        $this->admin_notice($notices);
    }
}

if(is_admin()) {
    global $pagenow;

    if(!defined('DOING_AJAX') or !DOING_AJAX)
        new GLT_Notices();
}

global $glt_url_structure, $glt_seo_active;

$glt_url_structure = get_option('googlelanguagetranslator_url_structure');
$glt_seo_active = get_option('googlelanguagetranslator_seo_active');

if($glt_seo_active == '1' and $glt_url_structure == 'sub_directory') { // gtranslate redirect rules with PHP (for environments with no .htaccess support (pantheon, flywheel, etc.), usually .htaccess rules override this)

    @list($request_uri, $query_params) = explode('?', $_SERVER['REQUEST_URI']);

    if(preg_match('/^\/(af|sq|am|ar|hy|az|eu|be|bn|bs|bg|ca|ceb|ny|zh-CN|zh-TW|co|hr|cs|da|nl|en|eo|et|tl|fi|fr|fy|gl|ka|de|el|gu|ht|ha|haw|iw|hi|hmn|hu|is|ig|id|ga|it|ja|jw|kn|kk|km|ko|ku|ky|lo|la|lv|lt|lb|mk|mg|ms|ml|mt|mi|mr|mn|my|ne|no|ps|fa|pl|pt|pa|ro|ru|sm|gd|sr|st|sn|sd|si|sk|sl|so|es|su|sw|sv|tg|ta|te|th|tr|uk|ur|uz|vi|cy|xh|yi|yo|zu)\/(af|sq|am|ar|hy|az|eu|be|bn|bs|bg|ca|ceb|ny|zh-CN|zh-TW|co|hr|cs|da|nl|en|eo|et|tl|fi|fr|fy|gl|ka|de|el|gu|ht|ha|haw|iw|hi|hmn|hu|is|ig|id|ga|it|ja|jw|kn|kk|km|ko|ku|ky|lo|la|lv|lt|lb|mk|mg|ms|ml|mt|mi|mr|mn|my|ne|no|ps|fa|pl|pt|pa|ro|ru|sm|gd|sr|st|sn|sd|si|sk|sl|so|es|su|sw|sv|tg|ta|te|th|tr|uk|ur|uz|vi|cy|xh|yi|yo|zu)\/(.*)$/', $request_uri, $matches)) {
        header('Location: ' . '/' . $matches[1] . '/' . $matches[3] . (empty($query_params) ? '' : '?'.$query_params), true, 301);
        exit;
    } // #1 redirect double language codes /es/en/...

    if(preg_match('/^\/(af|sq|am|ar|hy|az|eu|be|bn|bs|bg|ca|ceb|ny|zh-CN|zh-TW|co|hr|cs|da|nl|en|eo|et|tl|fi|fr|fy|gl|ka|de|el|gu|ht|ha|haw|iw|hi|hmn|hu|is|ig|id|ga|it|ja|jw|kn|kk|km|ko|ku|ky|lo|la|lv|lt|lb|mk|mg|ms|ml|mt|mi|mr|mn|my|ne|no|ps|fa|pl|pt|pa|ro|ru|sm|gd|sr|st|sn|sd|si|sk|sl|so|es|su|sw|sv|tg|ta|te|th|tr|uk|ur|uz|vi|cy|xh|yi|yo|zu)$/', $request_uri)) {
        header('Location: ' . $request_uri . '/' . (empty($query_params) ? '' : '?'.$query_params), true, 301);
        exit;
    } // #2 add trailing slash

    $get_language_choices = get_option ('language_display_settings');
    $items = array();
    foreach($get_language_choices as $key => $value) {
        if($value == 1)
            $items[] = $key;
    }
    $allowed_languages = implode('|', $items); // ex: en|ru|it|de

    if(preg_match('/^\/('.$allowed_languages.')\/(.*)/', $request_uri, $matches)) {
        $_GET['glang'] = $matches[1];
        $_GET['gurl'] = rawurldecode($matches[2]);

        require_once dirname(__FILE__) . '/url_addon/gtranslate.php';
        exit;
    } // #3 proxy translation
}

if($glt_seo_active == '1' and ($glt_url_structure == 'sub_directory' or $glt_url_structure == 'sub_domain')) {
    add_action('wp_head', 'glt_request_uri_var');
    if(isset($_GET['page']) and $_GET['page'] == 'google_language_translator')
        add_action('admin_head', 'glt_request_uri_var');

    function glt_request_uri_var() {
        global $glt_url_structure;

        echo '<script>';
        echo "var glt_request_uri = '".addslashes($_SERVER['REQUEST_URI'])."';";
        echo "var glt_url_structure = '".addslashes($glt_url_structure)."';";
        echo "var glt_default_lang = '".addslashes(get_option('googlelanguagetranslator_language'))."';";
        echo '</script>';
    }

    if(get_option('googlelanguagetranslator_url_translation_active') == '1') {
        add_action('wp_head', 'glt_url_translation_meta', 1);
        function glt_url_translation_meta() {
            echo '<meta name="uri-translation" content="on" />';
        }
    }

    if(get_option('googlelanguagetranslator_hreflang_tags_active') == '1') {
        add_action('wp_head', 'glt_add_hreflang_tags', 1);

        function glt_add_hreflang_tags() {
            global $glt_url_structure;

            $default_language = get_option('googlelanguagetranslator_language');
            $enabled_languages = array();
            $get_language_choices = get_option ('language_display_settings');
            foreach($get_language_choices as $key => $value) {
                if($value == 1)
                    $enabled_languages[] = $key;
            }

            //$current_url = wp_get_canonical_url();
            $current_url = network_home_url(add_query_arg(null, null));

            if($current_url !== false) {
                // adding default language
                if($default_language === 'iw')
                    echo '<link rel="alternate" hreflang="he" href="'.esc_url($current_url).'" />'."\n";
                elseif($default_language === 'jw')
                    echo '<link rel="alternate" hreflang="jv" href="'.esc_url($current_url).'" />'."\n";
                else
                    echo '<link rel="alternate" hreflang="'.$default_language.'" href="'.esc_url($current_url).'" />'."\n";

                // adding enabled languages
                foreach($enabled_languages as $lang) {
                    $href = '';
                    $domain = str_replace('www.', '', $_SERVER['HTTP_HOST']);

                    if($glt_url_structure == 'sub_domain')
                        $href = str_ireplace('://' . $_SERVER['HTTP_HOST'], '://' . $lang . '.' . $domain, $current_url);
                    elseif($glt_url_structure == 'sub_directory')
                        $href = str_ireplace('://' . $_SERVER['HTTP_HOST'], '://' . $_SERVER['HTTP_HOST'] . '/' . $lang, $current_url);

                    if(!empty($href) and $lang != $default_language) {
                        if($lang === 'iw')
                            echo '<link rel="alternate" hreflang="he" href="'.esc_url($href).'" />'."\n";
                        elseif($lang === 'jw')
                            echo '<link rel="alternate" hreflang="jv" href="'.esc_url($href).'" />'."\n";
                        else
                            echo '<link rel="alternate" hreflang="'.$lang.'" href="'.esc_url($href).'" />'."\n";
                    }
                }
            }
        }
    }
}


// translate WP REST API posts and categories data in JSON response
if($glt_seo_active == '1') {
    function glt_rest_post($response, $post, $request) {
        if(isset($response->data['content']) and is_array($response->data['content']))
            $response->data['content']['gt_translate_keys'] = array(array('key' => 'rendered', 'format' => 'html'));

        if(isset($response->data['excerpt']) and is_array($response->data['excerpt']))
            $response->data['excerpt']['gt_translate_keys'] = array(array('key' => 'rendered', 'format' => 'html'));

        if(isset($response->data['title']) and is_array($response->data['title']))
            $response->data['title']['gt_translate_keys'] = array(array('key' => 'rendered', 'format' => 'text'));

        if(isset($response->data['link']))
            $response->data['gt_translate_keys'] = array(array('key' => 'link', 'format' => 'url'));

        // more fields can be added here

        return $response;
    }

    function glt_rest_category($response, $category, $request) {
        if(isset($response->data['description']))
            $response->data['gt_translate_keys'][] = array('key' => 'description', 'format' => 'html');

        if(isset($response->data['name']))
            $response->data['gt_translate_keys'][] = array('key' => 'name', 'format' => 'text');

        if(isset($response->data['link']))
            $response->data['gt_translate_keys'][] = array('key' => 'link', 'format' => 'url');

        // more fields can be added here

        return $response;
    }

    add_filter('rest_prepare_post', 'glt_rest_post', 10, 3);
    add_filter('rest_prepare_category', 'glt_rest_category', 10, 3);
}

// convert wp_localize_script format into JSON + JS parser
if($glt_seo_active == '1') {
    function glt_filter_l10n_scripts() {
        global $wp_scripts;

        $translate_handles = array(
            'agile-store-locator-script',
            'wmc-wizard',
            'wc-address-i18n',
            'wc-checkout',
            'wc-country-select',
            'wc-add-to-cart',
            'wc-password-strength-meter',
            'googlecode_regular',
            'googlecode_property',
            'googlecode_contact',
            'mapfunctions',
            'myhome-min',

        );

        //echo '<!--' . print_r($wp_scripts, true). '-->';
        //return;

        foreach($wp_scripts->registered as $handle => $script) {
            if(isset($script->extra['data']) and in_array($handle, $translate_handles)) {
                $l10n = $script->extra['data'];
                preg_match_all('/var (.+) = ({(.*)});/', $l10n, $matches);
                //echo '<!--' . print_r($matches, true). '-->';

                if(isset($matches[1]) and isset($matches[2])) {
                    $vars = $matches[1];
                    $scripts = $matches[2];
                } else
                    continue;

                foreach($vars as $i => $var_name) {
                    $attribute_ids = $wp_scripts->get_data($handle, 'attribute-ids');
                    $attribute_ids[] = $var_name . '-glt-l10n-'.$i;
                    $jsons = $wp_scripts->get_data($handle, 'jsons');
                    $jsons[] = $scripts[$i];
                    $jss = $wp_scripts->get_data($handle, 'jss');
                    $jss[] = "var $var_name = JSON.parse(document.getElementById('$var_name-glt-l10n-$i').innerHTML);";

                    $wp_scripts->add_data($handle, 'attribute-ids', $attribute_ids);
                    $wp_scripts->add_data($handle, 'jsons', $jsons);
                    $wp_scripts->add_data($handle, 'jss', $jss);
                }

                unset($wp_scripts->registered[$handle]->extra['data']);
            }
        }

        //echo '<!--' . print_r($wp_scripts, true). '-->';

    }

    function glt_add_script_attributes($tag, $handle) {
        global $wp_scripts;

        glt_filter_l10n_scripts();

        if(isset($wp_scripts->registered[$handle]->extra['attribute-ids'])) {
            $attribute_ids = $wp_scripts->get_data($handle, 'attribute-ids');
            $jsons = $wp_scripts->get_data($handle, 'jsons');
            $jss = $wp_scripts->get_data($handle, 'jss');

            $return = '';
            foreach($attribute_ids as $i => $attribute_id) {
                $json = $jsons[$i];
                $js = $jss[$i];

                $return .= "<script id='$attribute_id' type='application/json'>$json</script>\n<script type='text/javascript'>$js</script>\n";
            }

            return $return . $tag;
        }

        return $tag;
    }

    // filter for woocommerce script params
    function glt_filter_woocommerce_scripts_data($data, $handle) {
        switch($handle) {
            case 'wc-address-i18n': {
                $data['gt_translate_keys'] = array(
                    array('key' => 'locale', 'format' => 'json'),
                    'i18n_required_text',
                    'i18n_optional_text',
                );

                $locale = json_decode($data['locale']);

                if(isset($locale->default->address_1))
                    $locale->default->address_1->gt_translate_keys = array('label', 'placeholder');
                if(isset($locale->default->address_2))
                    $locale->default->address_2->gt_translate_keys = array('label', 'placeholder');
                if(isset($locale->default->city))
                    $locale->default->city->gt_translate_keys = array('label', 'placeholder');
                if(isset($locale->default->postcode))
                    $locale->default->postcode->gt_translate_keys = array('label', 'placeholder');
                if(isset($locale->default->state))
                    $locale->default->state->gt_translate_keys = array('label', 'placeholder');

                if(isset($locale->default->shipping->address_1))
                    $locale->default->shipping->address_1->gt_translate_keys = array('label', 'placeholder');
                if(isset($locale->default->shipping->address_2))
                    $locale->default->shipping->address_2->gt_translate_keys = array('label', 'placeholder');
                if(isset($locale->default->shipping->city))
                    $locale->default->shipping->city->gt_translate_keys = array('label', 'placeholder');
                if(isset($locale->default->shipping->postcode))
                    $locale->default->shipping->postcode->gt_translate_keys = array('label', 'placeholder');
                if(isset($locale->default->shipping->state))
                    $locale->default->shipping->state->gt_translate_keys = array('label', 'placeholder');

                if(isset($locale->default->billing->address_1))
                    $locale->default->billing->address_1->gt_translate_keys = array('label', 'placeholder');
                if(isset($locale->default->billing->address_2))
                    $locale->default->billing->address_2->gt_translate_keys = array('label', 'placeholder');
                if(isset($locale->default->billing->city))
                    $locale->default->billing->city->gt_translate_keys = array('label', 'placeholder');
                if(isset($locale->default->billing->postcode))
                    $locale->default->billing->postcode->gt_translate_keys = array('label', 'placeholder');
                if(isset($locale->default->billing->state))
                    $locale->default->billing->state->gt_translate_keys = array('label', 'placeholder');

                $data['locale'] = json_encode($locale);
            } break;

            case 'wc-checkout': {
                $data['gt_translate_keys'] = array('i18n_checkout_error');
            } break;

            case 'wc-country-select': {
                $data['gt_translate_keys'] = array('i18n_ajax_error', 'i18n_input_too_long_1', 'i18n_input_too_long_n', 'i18n_input_too_short_1', 'i18n_input_too_short_n', 'i18n_load_more', 'i18n_no_matches', 'i18n_searching', 'i18n_select_state_text', 'i18n_selection_too_long_1', 'i18n_selection_too_long_n');
            } break;

            case 'wc-add-to-cart': {
                $data['gt_translate_keys'] = array('i18n_view_cart', array('key' => 'cart_url', 'format' => 'url'));
            } break;

            case 'wc-password-strength-meter': {
                $data['gt_translate_keys'] = array('i18n_password_error', 'i18n_password_hint', '');
            } break;

            default: break;
        }

        return $data;
    }

    function glt_woocommerce_geolocate_ip($false) {
        if(isset($_SERVER['HTTP_X_GT_VIEWER_IP']))
            $_SERVER['HTTP_X_REAL_IP'] = $_SERVER['HTTP_X_GT_VIEWER_IP'];
        elseif(isset($_SERVER['HTTP_X_GT_CLIENTIP']))
            $_SERVER['HTTP_X_REAL_IP'] = $_SERVER['HTTP_X_GT_CLIENTIP'];

        return $false;
    }

    //add_action('wp_print_scripts', 'glt_filter_l10n_scripts', 1);
    //add_action('wp_print_header_scripts', 'glt_filter_l10n_scripts', 1);
    //add_action('wp_print_footer_scripts', 'glt_filter_l10n_scripts', 1);

    add_filter('script_loader_tag', 'glt_add_script_attributes', 100, 2);

    add_filter('woocommerce_get_script_data', 'glt_filter_woocommerce_scripts_data', 10, 2 );

    add_filter('woocommerce_geolocate_ip', 'glt_woocommerce_geolocate_ip', 10, 4);
}

$google_language_translator = new google_language_translator();

function glt_update_option($old_value, $value, $option_name) {
    if(get_option('googlelanguagetranslator_seo_active') == '1' and get_option('googlelanguagetranslator_url_structure') == 'sub_directory') { // check if rewrite rules are in place
        $htaccess_file = get_home_path() . '.htaccess';
        // todo: use insert_with_markers functions instead
        if(is_writeable($htaccess_file)) {
            $htaccess = file_get_contents($htaccess_file);
            if(strpos($htaccess, 'gtranslate.php') === false) { // no config rules
                $rewrite_rules = file_get_contents(dirname(__FILE__) . '/url_addon/rewrite.txt');
                $rewrite_rules = str_replace('GLT_PLUGIN_PATH', str_replace(str_replace(array('https:', 'http:'), array(':', ':'), home_url()), '', str_replace(array('https:', 'http:'), array(':', ':'), plugins_url())) . '/google-language-translator', $rewrite_rules);

                $htaccess = $rewrite_rules . "\r\n\r\n" . $htaccess;
                if(!empty($htaccess)) { // going to update .htaccess
                    file_put_contents($htaccess_file, $htaccess);

                    add_settings_error(
                        'glt_settings_notices',
                        esc_attr( 'settings_updated' ),
                        '<p style="color:red;">' . __('.htaccess file updated', 'glt') . '</p>',
                        'updated'
                    );
                }
            }
        } else {
            $rewrite_rules = file_get_contents(dirname(__FILE__) . '/url_addon/rewrite.txt');
            $rewrite_rules = str_replace('GLT_PLUGIN_PATH', str_replace(home_url(), '', plugins_url()) . '/google-language-translator', $rewrite_rules);

            add_settings_error(
                'glt_settings_notices',
                esc_attr( 'settings_updated' ),
                '<p style="color:red;">' . __('Please add the following rules to the top of your .htaccess file', 'glt') . '</p><pre style="background-color:#eaeaea;">' . $rewrite_rules . '</pre>',
                'error'
            );
        }

        // update main_lang in config.php
        $config_file = dirname(__FILE__) . '/url_addon/config.php';
        if(is_readable($config_file) and is_writable($config_file)) {
            $config = file_get_contents($config_file);
            if(strpos($config, 'main_lang') !== false) {
                $config = preg_replace('/\$main_lang = \'[a-z-]{2,5}\'/i', '$main_lang = \''.get_option('googlelanguagetranslator_language').'\'', $config);
                if(is_string($config) and strlen($config) > 10)
                    file_put_contents($config_file, $config);
            }
        } else {
            add_settings_error(
                'glt_settings_notices',
                esc_attr( 'settings_updated' ),
                '<p style="color:red;">' . __('Cannot update google-language-translator/url_addon/config.php file. Make sure to update it manually and set correct $main_lang.', 'glt') . '</p>',
                'error'
            );
        }

    } else { // todo: remove rewrite rules
        // do nothing
    }
}

add_action('update_option_googlelanguagetranslator_seo_active', 'glt_update_option', 10, 3);
add_action('update_option_googlelanguagetranslator_url_structure', 'glt_update_option', 10, 3);
add_action('update_option_googlelanguagetranslator_language', 'glt_update_option', 10, 3);

// exclude javascript minification by cache plugins for free version
if($glt_seo_active != '1') {
    function cache_exclude_js_glt($excluded_js) {
        if(is_array($excluded_js) or empty($excluded_js))
            $excluded_js[] = 'translate.google.com/translate_a/element.js';

        return $excluded_js;
    }

    // LiteSpeed Cache
    add_filter('litespeed_optimize_js_excludes', 'cache_exclude_js_glt');

    // WP Rocket
    add_filter('rocket_exclude_js', 'cache_exclude_js_glt');
    add_filter('rocket_minify_excluded_external_js', 'cache_exclude_js_glt');
}PK%>�[��7�css/glt-notices.cssnu�[���.glt-admin-notice {
    background: #fff;
    border-color: #ED494D;
    border-top: 4px;
    display: block;
    min-height: 68px;
    padding: 10px 40px 10px 145px;
    position: relative;
}
.glt-admin-notice a {
    color: #ED494D;
    text-decoration:none;
}
.glt-notice-logo {
    clear: both;
    content: "";
    display: block;
    background-image: url(../images/gt_logo.svg);
    background-size: 125px auto;
    background-repeat: no-repeat;
    background-position: 0 45%;
    width: 125px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
}
.glt-admin-notice > .dashicons {
    color: #424242;
    position: absolute;
    right: 20px;
    top: 40%;
}
.glt-notice-title {
    font-size: 24px;
    margin: 0;
}
.glt-notice-body {
    font-weight: normal;
    margin: 5px 0;
}
.glt-notice-body:after {
    clear: both;
    content: "";
    display: block;
}
.glt-notice-body li {
    float: left;
    margin-right: 20px;
}
.glt-notice-body .dashicons {
    font-size: 17px;
}
.glt-red {
    color: #ED494D;
}PK%>�[
r�jddcss/toolbar.cssnu�[���#glt-toolbar { 
	display:none; 
}

#glt-translate-trigger {
    position:fixed;
    bottom:0px;
    top:auto;
    right: 20px;
    z-index:200002;
    padding:6px 20px 3px;
    font-size:16px;
    font-family:Arial;
    font-weight:700;
    color:#fff;
    text-shadow:0px -1px 0px rgba(0,0,0,0.25);
    text-decoration:none;
    text-align:center;
    box-shadow:0px 0px 9px rgba(0,0,0,0.3);
    -webkit-box-shadow:0px 0px 9px rgba(0,0,0,0.3);
    -moz-box-shadow:0px 0px 9px rgba(0,0,0,0.3);
    box-sizing:content-box !important;
    -webkit-box-sizing:content-box !important;
    -moz-box-sizing:content-box !important;
    background:linear-gradient(center top, #fbb450, #f89406);
    background: -webkit-gradient(linear, center top, center bottom, from(#fbb450), to(#f89406));
    background: -webkit-linear-gradient(#fbb450, #f89406);
    background: -moz-linear-gradient(#fbb450, #f89406);
    background: -o-linear-gradient(#fbb450, #f89406);
    background: -ms-linear-gradient(#fbb450, #f89406);
    background: linear-gradient(#fbb450, #f89406);
    background: -o-linear-gradientcenter(center top, #fbb450, #f89406); 
}

.tool-container {
	background-color: #d0cbcb;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(14%, #d0cbcb), color-stop(100%, #e9e5e5));
	background: -moz-linear-gradient(top, #d0cbcb 14%, #e9e5e5 100%);
	background: -ms-linear-gradient(top, #d0cbcb 14%,#e9e5e5 100%);
	background: linear-gradient(to bottom, #d0cbcb 14%,#e9e5e5 100%);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIxNCUiIHN0b3AtY29sb3I9IiNkMGNiY2IiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZTllNWU1IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d0cbcb', endColorstr='#e9e5e5',GradientType=0 );
	background-size: 100% 100%;
	border-radius: 3px;
	box-shadow: 0px 0px 15px #000;
	position: absolute;
}

.tool-container.tool-top, .tool-container.tool-bottom {
	border-bottom: 1px solid #beb8b8 ; /* #B1A9A9 */
}

.tool-items {
	height: 100%;	
}

.tool-top .tool-item, .tool-bottom .tool-item {
	float: left;
	/*border-right: 1px solid #e2dfdf;
	border-left: 1px solid #9f9898;*/
}

.tool-left .tool-item, .tool-right .tool-item {
	height: 34px;
	border-top: 1px solid #e2dfdf;
	border-bottom: 1px solid #9f9898;
}


.tool-item {
	height: 100%;
	display: block;				
	width: 34px;
	text-align: center;
}

.tool-item:first-child {
	border-left: none;
}

.tool-left .tool-item:first-child, .tool-right .tool-item:first-child {
	border-top: 1px solid transparent;
}

.tool-item:last-child {
	border-right: none;
	border-bottom: none;
}

.tool-item.selected, .tool-item:hover  {
	background: #a79f9f;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a79f9f), color-stop(93%, #e2dfdf));
	background: -moz-linear-gradient(top, #a79f9f 0%, #e2dfdf 93%);
	background: -ms-linear-gradient(top, #a79f9f 0%, #e2dfdf 93%);
	background: linear-gradient(to bottom, #a79f9f 0%, #e2dfdf 93%);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2E3OWY5ZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjkzJSIgc3RvcC1jb2xvcj0iI2UyZGZkZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a79f9f', endColorstr='#e2dfdf',GradientType=0 );
}

.tool-top .tool-item:last-child:hover, .tool-bottom .tool-item:last-child:hover {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.tool-top  .tool-item:first-child:hover, .tool-bottom  .tool-item:first-child:hover {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.tool-left .tool-item:last-child:hover, .tool-right .tool-item:last-child:hover {
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}

.tool-left .tool-item:first-child:hover, .tool-right .tool-item:first-child:hover {
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}

.tool-container .arrow {
	width:0;
	height:0;
	position: absolute;	
	border-width:7px;
	border-style:solid;
}

.tool-container.tool-top .arrow {
	border-color: #e9e5e5 transparent transparent; 
	left: 50%;  
	bottom: -14px;
	margin-left: -7px;
}

.tool-container.tool-bottom .arrow {
	border-color: transparent transparent #e9e5e5; 
	left: 50%;  
	top: -14px;
	margin-left: -7px;
}

.tool-container.tool-left .arrow {
	border-color: transparent transparent transparent #E9E5E5;
	top: 50%;
	right: -14px;
	margin-top: -7px;
}

.tool-container.tool-right .arrow {
	border-color: transparent #E9E5E5 transparent transparent;
	top: 50%;
	left: -14px;
	margin-top: -7px;
}

.demo-link {
	color: #89CDE4;
	text-decoration: underline;
	cursor: pointer;
	margin-left: 30px;
}

.demo-link:hover {
	text-decoration: none;
	cursor: pointer;
}
PK%>�[ϰH���
css/style.phpnu�[���<?php
$glt_css = get_option('googlelanguagetranslator_css');
$language_switcher_width = get_option('glt_language_switcher_width');
$language_switcher_text_color = get_option('glt_language_switcher_text_color');
$language_switcher_bg_color = get_option('glt_language_switcher_bg_color');
$glt_display = get_option('googlelanguagetranslator_display');
$floating_widget_position = get_option ('glt_floating_widget_position');
$floating_widget_text_color = get_option ('glt_floating_widget_text_color');
$floating_widget_bg_color = get_option('glt_floating_widget_bg_color');

echo '<style>';
echo $glt_css;

if(get_option('googlelanguagetranslator_flags') == 1) {
    if($glt_display == 'Vertical') {
        echo 'p.hello{font-size:12px;color:darkgray;}';
        echo '#google_language_translator,#flags{text-align:left;}';
    } elseif($glt_display == 'Horizontal') {
        if(get_option('googlelanguagetranslator_flags_alignment') == 'flags_right') {
            echo '#google_language_translator{text-align:left!important;}';
            echo 'select.goog-te-combo{float:right;}';
            echo '.goog-te-gadget{padding-top:13px;}';
            echo '.goog-te-gadget .goog-te-combo{margin-top:-7px!important;}';
        }

        echo '.goog-te-gadget{margin-top:2px!important;}';
        echo 'p.hello{font-size:12px;color:#666;}';
        echo 'div.skiptranslate.goog-te-gadget{display:inline!important;}';
    } elseif($glt_display == 'SIMPLE' and get_option('googlelanguagetranslator_flags_alignment') == 'flags_right') {
        echo '.goog-te-gadget{float:right;clear:right;}';
        echo 'div.skiptranslate.goog-te-gadget{display:inline!important;}';
    }

    if(get_option('googlelanguagetranslator_flags_alignment') == 'flags_right') {
        echo '#google_language_translator,#language{clear:both;width:160px;text-align:right;}';
        echo '#language{float:right;}';
        echo '#flags{text-align:right;width:165px;float:right;clear:right;}';
        echo '#flags ul{float:right!important;}';
        echo 'p.hello{text-align:right;float:right;clear:both;}';
        echo '.glt-clear{height:0px;clear:both;margin:0px;padding:0px;}';
    }

    if(get_option('googlelanguagetranslator_flags_alignment') == 'flags_left') {
        echo '#google_language_translator{clear:both;}';
        echo '#flags{width:165px;}';
        echo '#flags a{display:inline-block;margin-right:2px;}';
    } elseif(get_option('googlelanguagetranslator_flags_alignment') == 'flags_right') {
        echo '#flags{width:165px;}';
        echo '#flags a{display:inline-block;margin-left:2px;}';
    }
}

if(get_option('googlelanguagetranslator_active') == 1) {
    if(get_option('googlelanguagetranslator_showbranding') == 'Yes') {
        echo '#google_language_translator{width:auto!important;}';
        echo 'div.skiptranslate.goog-te-gadget{display:inline!important;}';
    } elseif(get_option('googlelanguagetranslator_showbranding') == 'No' and $glt_display != 'SIMPLE') {
        echo '#google_language_translator a{display:none!important;}';
        echo 'div.skiptranslate.goog-te-gadget{display:inline!important;}';
        echo '.goog-te-gadget{color:transparent!important;}';
        echo '.goog-te-gadget{font-size:0px!important;}';
        echo '.goog-branding{display:none;}';
    }

    echo '.goog-tooltip{display: none!important;}';
    echo '.goog-tooltip:hover{display: none!important;}';
    echo '.goog-text-highlight{background-color:transparent!important;border:none!important;box-shadow:none!important;}';

    if(get_option('googlelanguagetranslator_translatebox') == 'no')
        echo '#google_language_translator{display:none;}';
}

if(!empty($language_switcher_text_color))
  echo '#google_language_translator select.goog-te-combo{color:'.$language_switcher_text_color.';}';

if(get_option('googlelanguagetranslator_flags') == 0 and get_option('googlelanguagetranslator_active') == 1)
    echo '#flags{display:none;}';

if(get_option('googlelanguagetranslator_active') == 1) {
    if(get_option('googlelanguagetranslator_toolbar') == 'Yes'){
        echo '#google_language_translator{color:transparent;}';
    } elseif(get_option('googlelanguagetranslator_toolbar') == 'No') {
        echo 'div.skiptranslate{display:none!important;}';
    }
    echo 'body{top:0px!important;}';
    echo '#goog-gt-{display:none!important;}';
    echo 'font font{background-color:transparent!important;box-shadow:none!important;position:initial!important;}';
}

if($floating_widget_position == 'bottom_left') {
    echo '#glt-translate-trigger{left:20px;right:auto;}';
} elseif($floating_widget_position == 'top_right') {
    echo '#glt-translate-trigger{bottom:auto;top:0;}';
    echo '.tool-container.tool-top{top:50px!important;bottom:auto!important;}';
    echo '.tool-container.tool-top .arrow{border-color:transparent transparent #d0cbcb; top:-14px;}';
} elseif ($floating_widget_position == 'top_left') {
    echo '#glt-translate-trigger{bottom:auto;top:0;left:20px;right:auto;}';
    echo '.tool-container.tool-top{top:50px!important;bottom:auto!important;}';
    echo '.tool-container.tool-top .arrow{border-color:transparent transparent #d0cbcb;top:-14px;}';
} elseif ($floating_widget_position == 'top_center') {
    echo '#glt-translate-trigger{bottom:auto;top:0;left:50%;margin-left:-63px;right:auto;}';
    echo '.tool-container.tool-top{top:50px!important;bottom:auto!important;}';
    echo '.tool-container.tool-top .arrow{border-color:transparent transparent #d0cbcb;top:-14px;}';
} elseif ($floating_widget_position == 'bottom_center') {
    echo '#glt-translate-trigger{left:50%; margin-left:-63px; right:auto;}';
}

if(!empty($floating_widget_text_color))
    echo '#glt-translate-trigger > span{color:'.$floating_widget_text_color.';}';

if(!empty($floating_widget_bg_color))
    echo '#glt-translate-trigger{background:'.$floating_widget_bg_color.';}';

if(!empty($language_switcher_width) and isset($language_switcher_width) and $glt_display != 'Horizontal')
    echo '.goog-te-gadget .goog-te-combo{width:'.$language_switcher_width.';}';

if(!empty($language_switcher_bg_color) and isset($language_switcher_bg_color))
    echo '#google_language_translator .goog-te-gadget .goog-te-combo{background:'.$language_switcher_bg_color.';border:0!important;}';

echo '</style>';PK%>�[�@c���
css/style.cssnu�[���#glt-settings.wrap {
  max-width:1300px;
}

#glt-settings.wrap:after {
  content:'';
  display:block;
  clear:both;
}

#glt-footer,
#glt-footer #google_language_translator {
    display:none !important;
}

#glt-translate-trigger,
#glt-translate-trigger span {
  cursor:pointer;
}

#glt-settings .glt-main-settings h3:before {
  content:'\f108';
}

#glt-settings .glt-layout-settings h3:before {
  content:'\f116';
}

#glt-settings .glt-floating-widget-settings h3:before {
  content:'\f134';
}

#glt-settings .glt-behavior-settings h3:before {
  content:'\f185';
}

#glt-settings .glt-usage-settings h3:before {
  content:'\f106';
}

#glt-settings .glt-preview-settings h3:before {
  content:'\f115';
}

#glt-settings .glt-flag-settings h3:before {
  content:'\f227';
}

#glt-settings .glt-seo-settings h3:before {
  content:'\f11e';
}

#glt-settings .glt-gtranslate-ad h3:before {
  content:'\f326';
}

#glt-settings .glt-css-settings h3:before {
  content:'\f119';
}

#glt-settings .glt-seo-settings {background-color: #FFC293;}

#glt-settings .glt-main-settings h3:before,
#glt-settings .glt-layout-settings h3:before,
#glt-settings .glt-behavior-settings h3:before,
#glt-settings .glt-floating-widget-settings h3:before,
#glt-settings .glt-usage-settings h3:before,
#glt-settings .glt-preview-settings h3:before,
#glt-settings .glt-flag-settings h3:before,
#glt-settings .glt-seo-settings h3:before,
#glt-settings .glt-gtranslate-ad h3:before,
#glt-settings .glt-css-settings h3:before {
  margin-right: 5px;
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
  font-family: dashicons;
  text-decoration: inherit;
  font-weight: 400;
  font-style: normal;
  vertical-align: top;
  text-align: center;
  -webkit-transition: color .1s ease-in 0;
  transition: color .1s ease-in 0;
  -webkit-font-smoothing: antialiased;
}

#glt-settings .button,
#glt-settings .button-primary {
  text-shadow: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  box-shadow: none;
  transition: .25s opacity ease-in-out;
  -webkit-transition: .25s opacity ease-in-out;
  -moz-transition: .25s opacity ease-in-out;
}

#glt-settings .button {
  background: #95a5a6;
  border:1px solid #95a5a6;
  color:#fff;
}

#glt-settings .button-primary {
  background:#ea4335;
  border:1px solid #ea4335;
}

#glt-settings .button:hover {
  opacity:0.8;
}

#glt-settings .button-primary:hover {
  opacity:0.8;
  background:#ea4335;
  border:1px solid #ea4335;
}

.tool-container {
    bottom:50px !important;
    top:auto !important;
    z-index:99999999 !important;
}

.tool-container .tool-items a {
    margin:4px;
}

.box-right {
    clear:right;
}

a.wp-studio-logo:focus,
a.wp-helpdesk-logo:focus {
  box-shadow:none !important;
  -webkit-box-shadow:none !important;
  -moz-box-shadow:none !important;
}

.goog-te-gadget-simple {
  margin:4px 0;
}

#google_language_translator select.goog-te-combo {
  width:143px;
  background:#fff;
  box-shadow:none !important;
  -moz-box-shadow:none !important;
  -webkit-box-shadow:none !important;
  padding:3px !important;
  height:auto !important;
  border:1px solid lightgray !important;
  border-radius:0px !important;
  -webkit-border-radius:0px;
  -moz-border-radius:0px !important;
  -o-border-radius:0px !important;
}

#google_language_translator select.goog-te-combo:focus {
  outline:none !important;
}

#flags {
  overflow:hidden;
}

#flags ul {
  margin:0;
  padding:0;
}

#flags li {
  float:left !important;
  margin-bottom:0 !important;
  padding:0 !important;
  border:none !important;
  list-style:none !important;
  content:none !important;
}

#flags li:before {
  content:none !important;
  border:none !important;
  background:none !important;
}

#flags a,
.tool-container .tool-items a {
  display:inline-block;
  cursor:pointer;
}

a.nturl.single-language {
    border:0;
}

a.single-language span.flag {
    display:inline-block;
    vertical-align:middle;
    margin-right:5px;
}

#flags.size24 a,
.tool-container .tool-items a,
a.single-language span.size24 {
    width: 24px !important;
    height: 18px !important;
    box-sizing:content-box;
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    -o-box-sizing:content-box;
    -ms-box-sizing:content-box;
}

#flags.size22 a,
a.single-language span.size22 {
    width: 22px !important;
    height: 17px !important;
    box-sizing:content-box;
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    -o-box-sizing:content-box;
    -ms-box-sizing:content-box;
}

#flags.size20 a,
a.single-language span.size20 {
    width: 20px !important;
    height: 14px !important;
    box-sizing:content-box;
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    -o-box-sizing:content-box;
    -ms-box-sizing:content-box;
}

#flags.size18 a,
a.single-language span.size18 {
    width: 18px !important;
    height: 14px !important;
    box-sizing:content-box;
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    -o-box-sizing:content-box;
    -ms-box-sizing:content-box;
}

#flags.size16 a,
#language span.size16,
a.single-language span.size16 {
    width: 16px !important;
    height: 12px !important;
    box-sizing:content-box;
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    -o-box-sizing:content-box;
    -ms-box-sizing:content-box;
}

.tool-container .tool-items a {
  display:inline-block;
  margin:3px 5px 3px;
  width:24px !important;
  height:18px !important;
}

.goog-te-gadget {
  color:#444;
  font-size:11px;
  font-family:"Arial",sans,sans-serif;
}

.goog-te-gadget img {
  vertical-align:middle;
}

select.goog-te-combo:focus {
  box-shadow:none !important;
  -moz-box-shadow:none !important;
  -webkit-box-shadow:none !important;
}

.metabox-holder {
  width:65%;
  float:left;
}

.metabox-holder h2 {
  margin-bottom:18px;
}

.submit {
  padding:0px;
}

.form-table th {
  width:50%;
}

td.advanced {
  padding-top:0px;
  padding-bottom:0px;
}

p.hello {
  font-size:12px;
  color:darkgray;
}

.flag{
    padding:1px 0;
}

a.nturl {
  cursor:pointer;
}

.flag img,
.alt_flag img{
    border:0px !important;
    margin-top:2px !important;
    padding:0px !important;
}

.attribution {
    width:152px;
    line-height:1em;
    margin-top:4px;
}

span.goog-branding {
    font-size: 11px;
    font-family: arial;
    color: rgb(102, 102, 102);
    white-space: nowrap;
    padding-top: 4px;
    text-align: left;
    width: 150px;
    margin-top: 2px;
    left:170px;
    z-index: 9999;
    float: right;
}

.goog-logo-link,
.goog-logo-link:link,
.goog-logo-link:visited,
.goog-logo-link:hover,
.goog-logo-link:active {
    font-size: 12px;
    font-weight: bold;
    color: rgb(68, 68, 68);
    text-decoration: none;
    line-height:0.8em;
}

span.goog-branding img {
    float: left;
    margin:0px;
    width: 37px;

}

span.vertical-translator {
    position:auto;
    float:none !important;
    font-size: 11px;
    font-family: arial;
    color: rgb(102, 102, 102);
    white-space: nowrap;
    vertical-align: middle;
    padding-top: 4px;
    text-align: left;
    width: 150px;
    margin-top: 2px;
    right: -50px;
    z-index: 9999;
}

.tool-container .tool-items .flag img {
    width:24px !important;
    height:24px !important;
    margin-top:1px !important;
}

.tool-items .flag {
    padding:0px !important;
}

.tool-container {
    line-height:1;
}

#footer-instance {
    display:none !important;
}

code {
    border:1px solid lightgray;
}

/* Individual flag backgrounds (22px) */

#flags.size22 a[title="Afrikaans"],
.tool-container .tool-items a[title="Afrikaans"],
a.single-language[title="Afrikaans"] span.size22 {
    background: url('../images/flags22.png') -1px -3px no-repeat;
}
#flags.size22 a[title="Albanian"],
.tool-container .tool-items a[title="Albanian"],
a.single-language[title="Albanian"] span.size22 {
    background: url('../images/flags22.png') -30px -3px no-repeat;
}
#flags.size22 a[title="Amharic"],
.tool-container .tool-items a[title="Amharic"],
a.single-language[title="Amharic"] span.size22 {
    background: url('../images/flags22.png') -1px -467px no-repeat;
}
#flags.size22 a[title="Arabic"],
.tool-container .tool-items a[title="Arabic"],
a.single-language[title="Arabic"] span.size22 {
    background: url('../images/flags22.png') -59px -3px no-repeat;
}
#flags.size22 a[title="Armenian"],
.tool-container .tool-items a[title="Armenian"],
a.single-language[title="Armenian"] span.size22 {
    background: url('../images/flags22.png') -88px -3px no-repeat;
}
#flags.size22 a[title="Azerbaijani"],
.tool-container .tool-items a[title="Azerbaijani"],
a.single-language[title="Azerbaijani"] span.size22 {
    background: url('../images/flags22.png') -117px -3px no-repeat;
}
#flags.size22 a[title="Basque"],
.tool-container .tool-items a[title="Basque"],
a.single-language[title="Basque"] span.size22 {
    background: url('../images/flags22.png') -146px -3px no-repeat;
}
#flags.size22 a[title="Belarusian"],
.tool-container .tool-items a[title="Belarusian"],
a.single-language[title="Belarusian"] span.size22 {
    background: url('../images/flags22.png') -1px -32px no-repeat;
}
#flags.size22 a[title="Bengali"],
.tool-container .tool-items a[title="Bengali"],
a.single-language[title="Bengali"] span.size22 {
    background: url('../images/flags22.png') -30px -32px no-repeat;
}
#flags.size22 a[title="Bosnian"],
.tool-container .tool-items a[title="Bosnian"],
a.single-language[title="Bosnian"] span.size22 {
    background: url('../images/flags22.png') -59px -32px no-repeat;
}
#flags.size22 a[title="Bulgarian"],
.tool-container .tool-items a[title="Bulgarian"],
a.single-language[title="Bulgarian"] span.size22 {
    background: url('../images/flags22.png') -88px -32px no-repeat;
}
#flags.size22 a[title="Catalan"],
.tool-container .tool-items a[title="Catalan"],
a.single-language[title="Catalan"] span.size22 {
    background: url('../images/flags22.png') -117px -32px no-repeat;
}
#flags.size22 a[title="Cebuano"],
.tool-container .tool-items a[title="Cebuano"],
a.single-language[title="Cebuano"] span.size22 {
    background: url('../images/flags22.png') -146px -32px no-repeat;
}
#flags.size22 a[title="Chichewa"],
.tool-container .tool-items a[title="Chichewa"],
a.single-language[title="Chichewa"] span.size22 {
    background: url('../images/flags22.png') -88px -409px no-repeat;
}
#flags.size22 a[title="Chinese (Simplified)"],
.tool-container .tool-items a[title="Chinese (Simplified)"],
a.single-language[title="Chinese (Simplified)"] span.size22 {
    background: url('../images/flags22.png') -1px -61px no-repeat;
}
#flags.size22 a[title="Chinese (Traditional)"],
.tool-container .tool-items a[title="Chinese (Traditional)"],
a.single-language[title="Chinese (Traditional)"] span.size22 {
    background: url('../images/flags22.png') -30px -61px no-repeat;
}
#flags.size22 a[title="Corsican"],
.tool-container .tool-items a[title="Corsican"],
a.single-language[title="Corsican"] span.size22 {
    background: url('../images/flags22.png') -117px -90px no-repeat;
}
#flags.size22 a[title="Croatian"],
.tool-container .tool-items a[title="Croatian"],
a.single-language[title="Croatian"] span.size22 {
    background: url('../images/flags22.png') -59px -61px no-repeat;
}
#flags.size22 a[title="Czech"],
.tool-container .tool-items a[title="Czech"],
a.single-language[title="Afrikaans"] span.size22 {
    background: url('../images/flags22.png') -88px -61px no-repeat;
}
#flags.size22 a[title="Danish"],
.tool-container .tool-items a[title="Danish"],
a.single-language[title="Danish"] span.size22 {
    background: url('../images/flags22.png') -117px -61px no-repeat;
}
#flags.size22 a[title="Dutch"],
.tool-container .tool-items a[title="Dutch"],
a.single-language[title="Dutch"] span.size22 {
    background: url('../images/flags22.png') -146px -61px no-repeat;
}
#flags.size22 a[title="English"],
.tool-container .tool-items a[title="English"],
a.single-language[title="English"] span.size22 {
    background: url('../images/flags22.png') -88px -351px no-repeat;
}
#flags.size22 a.united-states[title="English"],
a.single-language.united-states[title="English"] span.size22 {
    background: url('../images/flags22.png') -117px -351px no-repeat;
}
#flags.size22 a.canada[title="English"],
a.single-language.canada[title="English"] span.size22 {
    background: url('../images/flags22.png') -88px -438px no-repeat;
}
#flags.size22 a[title="Esperanto"],
.tool-container .tool-items a[title="Esperanto"],
a.single-language[title="Esperanto"] span.size22 {
    background: url('../images/flags22.png') -1px -90px no-repeat;
}
#flags.size22 a[title="Estonian"],
.tool-container .tool-items a[title="Estonian"],
a.single-language[title="Estonian"] span.size22 {
    background: url('../images/flags22.png') -30px -90px no-repeat;
}
#flags.size22 a[title="Filipino"],
.tool-container .tool-items a[title="Filipino"],
a.single-language[title="Filipino"] span.size22 {
    background: url('../images/flags22.png') -59px -90px no-repeat;
}
#flags.size22 a[title="Finnish"],
.tool-container .tool-items a[title="Finnish"],
a.single-language[title="Finnish"] span.size22 {
    background: url('../images/flags22.png') -88px -90px no-repeat;
}
#flags.size22 a[title="French"],
.tool-container .tool-items a[title="French"],
a.single-language[title="French"] span.size22 {
    background: url('../images/flags22.png') -117px -90px no-repeat;
}
#flags.size22 a[title="Frisian"],
.tool-container .tool-items a[title="Frisian"],
a.single-language[title="Frisian"] span.size22 {
    background: url('../images/flags22.png') -146px -61px no-repeat;
}
#flags.size22 a[title="Galician"],
.tool-container .tool-items a[title="Galician"],
a.single-language[title="Galician"] span.size22 {
    background: url('../images/flags22.png') -146px -90px no-repeat;
}
#flags.size22 a[title="Georgian"],
.tool-container .tool-items a[title="Georgian"],
a.single-language[title="Georgian"] span.size22 {
    background: url('../images/flags22.png') -1px -119px no-repeat;
}
#flags.size22 a[title="German"],
.tool-container .tool-items a[title="German"],
a.single-language[title="German"] span.size22 {
    background: url('../images/flags22.png') -30px -119px no-repeat;
}
#flags.size22 a[title="Greek"],
.tool-container .tool-items a[title="Greek"],
a.single-language[title="Greek"] span.size22 {
    background: url('../images/flags22.png') -59px -119px no-repeat;
}
#flags.size22 a[title="Gujarati"],
.tool-container .tool-items a[title="Gujarati"],
a.single-language[title="Gujarati"] span.size22 {
    background: url('../images/flags22.png') -88px -119px no-repeat;
}
#flags.size22 a[title="Haitian"],
.tool-container .tool-items a[title="Haitian"],
a.single-language[title="Haitian"] span.size22 {
    background: url('../images/flags22.png') -117px -119px no-repeat;
}
#flags.size22 a[title="Hausa"],
.tool-container .tool-items a[title="Hausa"],
a.single-language[title="Hausa"] span.size22 {
    background: url('../images/flags22.png') -146px -119px no-repeat;
}
#flags.size22 a[title="Hawaiian"],
.tool-container .tool-items a[title="Hawaiian"],
a.single-language[title="Hawaiian"] span.size22 {
    background: url('../images/flags22.png') -88px -467px no-repeat;
}
#flags.size22 a[title="Hebrew"],
.tool-container .tool-items a[title="Hebrew"] {
    background: url('../images/flags22.png') -1px -148px no-repeat;
}
#flags.size22 a[title="Hindi"],
.tool-container .tool-items a[title="Hindi"],
a.single-language[title="Hindi"] span.size22 {
    background: url('../images/flags22.png') -30px -148px no-repeat;
}
#flags.size22 a[title="Hmong"],
.tool-container .tool-items a[title="Hmong"],
a.single-language[title="Hmong"] span.size22 {
    background: url('../images/flags22.png') -59px -148px no-repeat;
}
#flags.size22 a[title="Hungarian"],
.tool-container .tool-items a[title="Hungarian"],
a.single-language[title="Hungarian"] span.size22 {
    background: url('../images/flags22.png') -88px -148px no-repeat;
}
#flags.size22 a[title="Icelandic"],
.tool-container .tool-items a[title="Icelandic"],
a.single-language[title="Icelandic"] span.size22 {
    background: url('../images/flags22.png') -117px -148px no-repeat;
}
#flags.size22 a[title="Igbo"],
.tool-container .tool-items a[title="Igbo"],
a.single-language[title="Igbo"] span.size22 {
    background: url('../images/flags22.png') -146px -148px no-repeat;
}
#flags.size22 a[title="Indonesian"],
.tool-container .tool-items a[title="Indonesian"],
a.single-language[title="Indonesian"] span.size22 {
    background: url('../images/flags22.png') -1px -177px no-repeat;
}
#flags.size22 a[title="Irish"],
.tool-container .tool-items a[title="Irish"],
a.single-language[title="Irish"] span.size22 {
    background: url('../images/flags22.png') -30px -177px no-repeat;
}
#flags.size22 a[title="Italian"],
.tool-container .tool-items a[title="Italian"],
a.single-language[title="Italian"] span.size22 {
    background: url('../images/flags22.png') -59px -177px no-repeat;
}
#flags.size22 a[title="Japanese"],
.tool-container .tool-items a[title="Japanese"],
a.single-language[title="Japanese"] span.size22 {
    background: url('../images/flags22.png') -88px -177px no-repeat;
}
#flags.size22 a[title="Javanese"],
.tool-container .tool-items a[title="Javanese"],
a.single-language[title="Javanese"] span.size22 {
    background: url('../images/flags22.png') -117px -177px no-repeat;
}
#flags.size22 a[title="Kannada"],
.tool-container .tool-items a[title="Kannada"],
a.single-language[title="Kannada"] span.size22 {
    background: url('../images/flags22.png') -146px -177px no-repeat;
}
#flags.size22 a[title="Kazakh"],
.tool-container .tool-items a[title="Kazakh"],
a.single-language[title="Kazakh"] span.size22 {
    background: url('../images/flags22.png') -1px -409px no-repeat;
}
#flags.size22 a[title="Khmer"],
.tool-container .tool-items a[title="Khmer"],
a.single-language[title="Khmer"] span.size22 {
    background: url('../images/flags22.png') -1px -206px no-repeat;
}
#flags.size22 a[title="Korean"],
.tool-container .tool-items a[title="Korean"],
a.single-language[title="Korean"] span.size22 {
    background: url('../images/flags22.png') -30px -206px no-repeat;
}
#flags.size22 a[title="Kurdish"],
.tool-container .tool-items a[title="Kurdish"],
a.single-language[title="Kurdish"] span.size22 {
    background: url('../images/flags22.png') -117px -467px no-repeat;
}
#flags.size22 a[title="Kyrgyz"],
.tool-container .tool-items a[title="Kyrgyz"],
a.single-language[title="Kyrgyz"] span.size22 {
    background: url('../images/flags22.png') -146px -467px no-repeat;
}
#flags.size22 a[title="Lao"],
.tool-container .tool-items a[title="Lao"],
a.single-language[title="Lao"] span.size22 {
    background: url('../images/flags22.png') -59px -206px no-repeat;
}
#flags.size22 a[title="Latin"],
.tool-container .tool-items a[title="Latin"],
a.single-language[title="Latin"] span.size22 {
    background: url('../images/flags22.png') -88px -206px no-repeat;
}
#flags.size22 a[title="Latvian"],
.tool-container .tool-items a[title="Latvian"],
a.single-language[title="Latvian"] span.size22 {
    background: url('../images/flags22.png') -117px -206px no-repeat;
}
#flags.size22 a[title="Lithuanian"],
.tool-container .tool-items a[title="Lithuanian"],
a.single-language[title="Lithuanian"] span.size22 {
    background: url('../images/flags22.png') -146px -206px no-repeat;
}
#flags.size22 a[title="Luxembourgish"],
.tool-container .tool-items a[title="Luxembourgish"],
a.single-language[title="Luxembourgish"] span.size22 {
    background: url('../images/flags22.png') -1px -496px no-repeat;
}
#flags.size22 a[title="Macedonian"],
.tool-container .tool-items a[title="Macedonian"],
a.single-language[title="Macedonian"] span.size22 {
    background: url('../images/flags22.png') -1px -235px no-repeat;
}
#flags.size22 a[title="Malagasy"],
.tool-container .tool-items a[title="Malagasy"],
a.single-language[title="Malagasy"] span.size22 {
    background: url('../images/flags22.png') -59px -409px no-repeat;
}
#flags.size22 a[title="Malay"],
.tool-container .tool-items a[title="Malay"],
a.single-language[title="Malay"] span.size22 {
    background: url('../images/flags22.png') -30px -235px no-repeat;
}
#flags.size22 a[title="Malayalam"],
.tool-container .tool-items a[title="Malayalam"],
a.single-language[title="Malayalam"] span.size22 {
    background: url('../images/flags22.png') -117px -409px no-repeat;
}
#flags.size22 a[title="Maltese"],
.tool-container .tool-items a[title="Maltese"],
a.single-language[title="Maltese"] span.size22 {
    background: url('../images/flags22.png') -59px -235px no-repeat;
}
#flags.size22 a[title="Maori"],
.tool-container .tool-items a[title="Maori"],
a.single-language[title="Maori"] span.size22 {
    background: url('../images/flags22.png') -88px -235px no-repeat;
}
#flags.size22 a[title="Marathi"],
.tool-container .tool-items a[title="Marathi"],
a.single-language[title="Marathi"] span.size22 {
    background: url('../images/flags22.png') -117px -235px no-repeat;
}
#flags.size22 a[title="Mongolian"],
.tool-container .tool-items a[title="Mongolian"],
a.single-language[title="Mongolian"] span.size22 {
    background: url('../images/flags22.png') -146px -235px no-repeat;
}
#flags.size22 a[title="Myanmar (Burmese)"],
.tool-container .tool-items a[title="Myanmar (Burmese)"],
a.single-language[title="Myanmar (Buremese)"] span.size22 {
    background: url('../images/flags22.png') -146px -409px no-repeat;
}
#flags.size22 a[title="Nepali"],
.tool-container .tool-items a[title="Nepali"],
a.single-language[title="Nepali"] span.size22 {
    background: url('../images/flags22.png') -1px -264px no-repeat;
}
#flags.size22 a[title="Norwegian"],
.tool-container .tool-items a[title="Norwegian"],
a.single-language[title="Norwegian"] span.size22 {
    background: url('../images/flags22.png') -30px -264px no-repeat;
}
#flags.size22 a[title="Pashto"],
.tool-container .tool-items a[title="Pashto"],
a.single-language[title="Pashto"] span.size22 {
    background: url('../images/flags22.png') -30px -496px no-repeat;
}
#flags.size22 a[title="Persian"],
.tool-container .tool-items a[title="Persian"],
a.single-language[title="Persian"] span.size22 {
    background: url('../images/flags22.png') -59px -264px no-repeat;
}
#flags.size22 a[title="Polish"],
.tool-container .tool-items a[title="Polish"],
a.single-language[title="Polish"] span.size22 {
    background: url('../images/flags22.png') -88px -264px no-repeat;
}
#flags.size22 a[title="Portuguese"],
.tool-container .tool-items a[title="Portuguese"],
a.single-language[title="Portuguese"] span.size22 {
    background: url('../images/flags22.png') -117px -264px no-repeat;
}
#flags.size22 a.brazil[title="Portuguese"],
a.single-language.brazil[title="Portuguese"] span.size22 {
    background: url('../images/flags22.png') -146px -438px no-repeat;
}
#flags.size22 a[title="Punjabi"],
.tool-container .tool-items a[title="Punjabi"],
a.single-language[title="Punjabi"] span.size22 {
    background: url('../images/flags22.png') -146px -264px no-repeat;
}
#flags.size22 a[title="Romanian"],
.tool-container .tool-items a[title="Romanian"],
a.single-language[title="Romanian"] span.size22 {
    background: url('../images/flags22.png') -1px -293px no-repeat;
}
#flags.size22 a[title="Russian"],
.tool-container .tool-items a[title="Russian"],
a.single-language[title="Russian"] span.size22 {
    background: url('../images/flags22.png') -30px -293px no-repeat;
}
#flags.size22 a[title="Samoan"],
.tool-container .tool-items a[title="Samoan"],
a.single-language[title="Samoan"] span.size22 {
    background: url('../images/flags22.png') -30px -467px no-repeat;
}
#flags.size22 a[title="Scots Gaelic"],
.tool-container .tool-items a[title="Scots Gaelic"],
a.single-language[title="Scots Gaelic"] span.size22 {
    background: url('../images/flags22.png') -59px -467px no-repeat;
}
#flags.size22 a[title="Serbian"],
.tool-container .tool-items a[title="Serbian"],
a.single-language[title="Serbian"] span.size22 {
    background: url('../images/flags22.png') -59px -293px no-repeat;
}
#flags.size22 a[title="Sesotho"],
.tool-container .tool-items a[title="Sesotho"],
a.single-language[title="Sesotho"] span.size22 {
    background: url('../images/flags22.png') -30px -409px no-repeat;
}
#flags.size22 a[title="Shona"],
.tool-container .tool-items a[title="Shona"],
a.single-language[title="Shona"] span.size22 {
    background: url('../images/flags22.png') -59px -496px no-repeat;
}
#flags.size22 a[title="Sindhi"],
.tool-container .tool-items a[title="Sindhi"],
a.single-language[title="Sindhi"] span.size22 {
    background: url('../images/flags22.png') -146px -351px no-repeat;
}
#flags.size22 a[title="Sinhala"],
.tool-container .tool-items a[title="Sinhala"],
a.single-language[title="Sinhala"] span.size22 {
    background: url('../images/flags22.png') -1px -438px no-repeat;
}
#flags.size22 a[title="Slovak"],
.tool-container .tool-items a[title="Slovak"],
a.single-language[title="Slovak"] span.size22 {
    background: url('../images/flags22.png') -88px -293px no-repeat;
}
#flags.size22 a[title="Slovenian"],
.tool-container .tool-items a[title="Slovenian"],
a.single-language[title="Slovenian"] span.size22 {
    background: url('../images/flags22.png') -117px -293px no-repeat;
}
#flags.size22 a[title="Somali"],
.tool-container .tool-items a[title="Somali"],
a.single-language[title="Somali"] span.size22 {
    background: url('../images/flags22.png') -146px -293px no-repeat;
}
#flags.size22 a[title="Spanish"],
.tool-container .tool-items a[title="Spanish"],
a.single-language[title="Spanish"] span.size22 {
    background: url('../images/flags22.png') -1px -322px no-repeat;
}
#flags.size22 a.mexico[title="Spanish"],
a.single-language.mexico[title="Spanish"] span.size22 {
    background: url('../images/flags22.png') -117px -438px no-repeat;
}
#flags.size22 a[title="Sundanese"],
.tool-container .tool-items a[title="Sundanese"],
a.single-language[title="Sundanse"] span.size22 {
    background: url('../images/flags22.png') -146px -380px no-repeat;
}
#flags.size22 a[title="Swahili"],
.tool-container .tool-items a[title="Swahili"],
a.single-language[title="Swahili"] span.size22 {
    background: url('../images/flags22.png') -30px -322px no-repeat;
}
#flags.size22 a[title="Swedish"],
.tool-container .tool-items a[title="Swedish"],
a.single-language[title="Swedish"] span.size22 {
    background: url('../images/flags22.png') -59px -322px no-repeat;
}
#flags.size22 a[title="Tajik"],
.tool-container .tool-items a[title="Tajik"],
a.single-language[title="Tajik"] span.size22 {
    background: url('../images/flags22.png') -30px -438px no-repeat;
}
#flags.size22 a[title="Tamil"],
.tool-container .tool-items a[title="Tamil"],
a.single-language[title="Tamil"] span.size22 {
    background: url('../images/flags22.png') -88px -322px no-repeat;
}
#flags.size22 a[title="Telugu"],
.tool-container .tool-items a[title="Telugu"],
a.single-language[title="Telugu"] span.size22 {
    background: url('../images/flags22.png') -117px -322px no-repeat;
}
#flags.size22 a[title="Thai"],
.tool-container .tool-items a[title="Thai"],
a.single-language[title="Thai"] span.size22 {
    background: url('../images/flags22.png') -146px -322px no-repeat;
}
#flags.size22 a[title="Turkish"],
.tool-container .tool-items a[title="Turkish"],
a.single-language[title="Turkish"] span.size22 {
    background: url('../images/flags22.png') -30px -351px no-repeat;
}
#flags.size22 a[title="Ukrainian"],
.tool-container .tool-items a[title="Ukrainian"],
a.single-language[title="Ukrainian"] span.size22 {
    background: url('../images/flags22.png') -59px -351px no-repeat;
}
#flags.size22 a[title="Uzbek"],
.tool-container .tool-items a[title="Uzbek"],
a.single-language[title="Uzbek"] span.size22 {
    background: url('../images/flags22.png') -59px -438px no-repeat;
}
#flags.size22 a[title="Urdu"],
.tool-container .tool-items a[title="Urdu"],
a.single-language[title="Urdu"] span.size22 {
    background: url('../images/flags22.png') -146px -351px no-repeat;
}
#flags.size22 a[title="Vietnamese"],
.tool-container .tool-items a[title="Vietnamese"],
a.single-language[title="Vietnamese"] span.size22 {
    background: url('../images/flags22.png') -1px -380px no-repeat;
}
#flags.size22 a[title="Welsh"],
.tool-container .tool-items a[title="Welsh"],
a.single-language[title="Welsh"] span.size22 {
    background: url('../images/flags22.png') -30px -380px no-repeat;
}
#flags.size22 a[title="Xhosa"],
.tool-container .tool-items a[title="Xhosa"],
a.single-language[title="Xhosa"] span.size22 {
    background: url('../images/flags22.png') -1px -3px no-repeat;
}
#flags.size22 a[title="Yiddish"],
.tool-container .tool-items a[title="Yiddish"],
a.single-language[title="Yiddish"] span.size22 {
    background: url('../images/flags22.png') -59px -380px no-repeat;
}
#flags.size22 a[title="Yoruba"],
.tool-container .tool-items a[title="Yoruba"],
a.single-language[title="Yoruba"] span.size22 {
    background: url('../images/flags22.png') -88px -380px no-repeat;
}
#flags.size22 a[title="Zulu"],
.tool-container .tool-items a[title="Zulu"],
a.single-language[title="Zulu"] span.size22 {
    background: url('../images/flags22.png') -117px -380px no-repeat;
}
/* Individual flag backgrounds (20px) */

#flags.size20 a[title="Afrikaans"],
.tool-container .tool-items a[title="Afrikaans"],
a.single-language[title="Afrikaans"] span.size20 {
    background: url('../images/flags20.png') -2px -4px no-repeat;
}
#flags.size20 a[title="Albanian"],
.tool-container .tool-items a[title="Albanian"],
a.single-language[title="Albanian"] span.size20 {
    background: url('../images/flags20.png') -31px -4px no-repeat;
}
#flags.size20 a[title="Amharic"],
.tool-container .tool-items a[title="Amharic"],
a.single-language[title="Amharic"] span.size20 {
    background: url('../images/flags20.png') -2px -468px no-repeat;
}
#flags.size20 a[title="Arabic"],
.tool-container .tool-items a[title="Arabic"],
a.single-language[title="Arabic"] span.size20 {
    background: url('../images/flags20.png') -60px -4px no-repeat;
}
#flags.size20 a[title="Armenian"],
.tool-container .tool-items a[title="Armenian"],
a.single-language[title="Armenian"] span.size20 {
    background: url('../images/flags20.png') -89px -4px no-repeat;
}
#flags.size20 a[title="Azerbaijani"],
.tool-container .tool-items a[title="Azerbaijani"],
a.single-language[title="Azerbaijani"] span.size20 {
    background: url('../images/flags20.png') -118px -4px no-repeat;
}
#flags.size20 a[title="Basque"],
.tool-container .tool-items a[title="Basque"],
a.single-language[title="Basque"] span.size20 {
    background: url('../images/flags20.png') -147px -4px no-repeat;
}
#flags.size20 a[title="Belarusian"],
.tool-container .tool-items a[title="Belarusian"],
a.single-language[title="Belarusian"] span.size20 {
    background: url('../images/flags20.png') -2px -33px no-repeat;
}
#flags.size20 a[title="Bengali"],
.tool-container .tool-items a[title="Bengali"],
a.single-language[title="Bengali"] span.size20 {
    background: url('../images/flags20.png') -31px -33px no-repeat;
}
#flags.size20 a[title="Bosnian"],
.tool-container .tool-items a[title="Bosnian"],
a.single-language[title="Bosnian"] span.size20 {
    background: url('../images/flags20.png') -60px -33px no-repeat;
}
#flags.size20 a[title="Bulgarian"],
.tool-container .tool-items a[title="Bulgarian"],
a.single-language[title="Bulgarian"] span.size20 {
    background: url('../images/flags20.png') -89px -33px no-repeat;
}
#flags.size20 a[title="Catalan"],
.tool-container .tool-items a[title="Catalan"],
a.single-language[title="Catalan"] span.size20 {
    background: url('../images/flags20.png') -118px -33px no-repeat;
}
#flags.size20 a[title="Cebuano"],
.tool-container .tool-items a[title="Cebuano"],
a.single-language[title="Cebuano"] span.size20 {
    background: url('../images/flags20.png') -147px -33px no-repeat;
}
#flags.size20 a[title="Chichewa"],
.tool-container .tool-items a[title="Chichewa"],
a.single-language[title="Chichewa"] span.size20 {
    background: url('../images/flags20.png') -89px -410px no-repeat;
}
#flags.size20 a[title="Chinese (Simplified)"],
.tool-container .tool-items a[title="Chinese (Simplified)"],
a.single-language[title="Chinese (Simplified)"] span.size20 {
    background: url('../images/flags20.png') -2px -62px no-repeat;
}
#flags.size20 a[title="Chinese (Traditional)"],
.tool-container .tool-items a[title="Chinese (Traditional)"],
a.single-language[title="Chinese (Traditional)"] span.size20 {
    background: url('../images/flags20.png') -31px -62px no-repeat;
}
#flags.size20 a[title="Corsican"],
.tool-container .tool-items a[title="Corsican"],
a.single-language[title="Corsican"] span.size20 {
    background: url('../images/flags20.png') -118px -91px no-repeat;
}
#flags.size20 a[title="Croatian"],
.tool-container .tool-items a[title="Croatian"],
a.single-language[title="Croatian"] span.size20 {
    background: url('../images/flags20.png') -60px -62px no-repeat;
}
#flags.size20 a[title="Czech"],
.tool-container .tool-items a[title="Czech"],
a.single-language[title="Czech"] span.size20 {
    background: url('../images/flags20.png') -89px -62px no-repeat;
}
#flags.size20 a[title="Danish"],
.tool-container .tool-items a[title="Danish"],
a.single-language[title="Danish"] span.size20 {
    background: url('../images/flags20.png') -118px -62px no-repeat;
}
#flags.size20 a[title="Dutch"],
.tool-container .tool-items a[title="Dutch"],
a.single-language[title="Dutch"] span.size20 {
    background: url('../images/flags20.png') -147px -62px no-repeat;
}
#flags.size20 a[title="English"],
.tool-container .tool-items a[title="English"],
a.single-language[title="English"] span.size20 {
    background: url('../images/flags20.png') -89px -352px no-repeat;
}
#flags.size20 a.united-states[title="English"],
a.single-language.united-states[title="English"] span.size20 {
    background: url('../images/flags20.png') -118px -352px no-repeat;
}
#flags.size20 a.canada[title="English"],
a.single-language.canada[title="English"] span.size20 {
    background: url('../images/flags20.png') -89px -439px no-repeat;
}
#flags.size20 a[title="Esperanto"],
.tool-container .tool-items a[title="Esperanto"],
a.single-language[title="Esperanto"] span.size20 {
    background: url('../images/flags20.png') -2px -91px no-repeat;
}
#flags.size20 a[title="Estonian"],
.tool-container .tool-items a[title="Estonian"],
a.single-language[title="Estonian"] span.size20 {
    background: url('../images/flags20.png') -31px -91px no-repeat;
}
#flags.size20 a[title="Filipino"],
.tool-container .tool-items a[title="Filipino"],
a.single-language[title="Filipino"] span.size20 {
    background: url('../images/flags20.png') -60px -91px no-repeat;
}
#flags.size20 a[title="Finnish"],
.tool-container .tool-items a[title="Finnish"],
a.single-language[title="Finnish"] span.size20 {
    background: url('../images/flags20.png') -89px -91px no-repeat;
}
#flags.size20 a[title="French"],
.tool-container .tool-items a[title="French"],
a.single-language[title="French"] span.size20 {
    background: url('../images/flags20.png') -118px -91px no-repeat;
}
#flags.size20 a[title="Frisian"],
.tool-container .tool-items a[title="Frisian"],
a.single-language[title="Frisian"] span.size20 {
    background: url('../images/flags20.png') -147px -62px no-repeat;
}
#flags.size20 a[title="Galician"],
.tool-container .tool-items a[title="Galician"],
a.single-language[title="Galician"] span.size20 {
    background: url('../images/flags20.png') -147px -91px no-repeat;
}
#flags.size20 a[title="Georgian"],
.tool-container .tool-items a[title="Georgian"],
a.single-language[title="Georgian"] span.size20 {
    background: url('../images/flags20.png') -2px -120px no-repeat;
}
#flags.size20 a[title="German"],
.tool-container .tool-items a[title="German"],
a.single-language[title="German"] span.size20 {
    background: url('../images/flags20.png') -31px -120px no-repeat;
}
#flags.size20 a[title="Greek"],
.tool-container .tool-items a[title="Greek"],
a.single-language[title="Greek"] span.size20 {
    background: url('../images/flags20.png') -60px -120px no-repeat;
}
#flags.size20 a[title="Gujarati"],
.tool-container .tool-items a[title="Gujarati"],
a.single-language[title="Gujarati"] span.size20 {
    background: url('../images/flags20.png') -89px -120px no-repeat;
}
#flags.size20 a[title="Haitian"],
.tool-container .tool-items a[title="Haitian"],
a.single-language[title="Haitian"] span.size20 {
    background: url('../images/flags20.png') -118px -120px no-repeat;
}
#flags.size20 a[title="Hausa"],
.tool-container .tool-items a[title="Hausa"],
a.single-language[title="Hausa"] span.size20 {
    background: url('../images/flags20.png') -147px -120px no-repeat;
}
#flags.size20 a[title="Hawaiian"],
.tool-container .tool-items a[title="Hawaiian"],
a.single-language[title="Hawaiian"] span.size20 {
    background: url('../images/flags20.png') -89px -468px no-repeat;
}
#flags.size20 a[title="Hebrew"],
.tool-container .tool-items a[title="Hebrew"],
a.single-language[title="Hebrew"] span.size20 {
    background: url('../images/flags20.png') -2px -149px no-repeat;
}
#flags.size20 a[title="Hindi"],
.tool-container .tool-items a[title="Hindi"],
a.single-language[title="Hindi"] span.size20 {
    background: url('../images/flags20.png') -31px -149px no-repeat;
}
#flags.size20 a[title="Hmong"],
.tool-container .tool-items a[title="Hmong"],
a.single-language[title="Hmong"] span.size20 {
    background: url('../images/flags20.png') -60px -149px no-repeat;
}
#flags.size20 a[title="Hungarian"],
.tool-container .tool-items a[title="Hungarian"],
a.single-language[title="Hungarian"] span.size20 {
    background: url('../images/flags20.png') -89px -149px no-repeat;
}
#flags.size20 a[title="Icelandic"],
.tool-container .tool-items a[title="Icelandic"],
a.single-language[title="Icelandic"] span.size20 {
    background: url('../images/flags20.png') -118px -149px no-repeat;
}
#flags.size20 a[title="Igbo"],
.tool-container .tool-items a[title="Igbo"],
a.single-language[title="Igbo"] span.size20 {
    background: url('../images/flags20.png') -147px -149px no-repeat;
}
#flags.size20 a[title="Indonesian"],
.tool-container .tool-items a[title="Indonesian"],
a.single-language[title="Indonesian"] span.size20 {
    background: url('../images/flags20.png') -2px -178px no-repeat;
}
#flags.size20 a[title="Irish"],
.tool-container .tool-items a[title="Irish"],
a.single-language[title="Irish"] span.size20 {
    background: url('../images/flags20.png') -31px -178px no-repeat;
}
#flags.size20 a[title="Italian"],
.tool-container .tool-items a[title="Italian"],
a.single-language[title="Italian"] span.size20 {
    background: url('../images/flags20.png') -60px -178px no-repeat;
}
#flags.size20 a[title="Japanese"],
.tool-container .tool-items a[title="Japanese"],
a.single-language[title="Japanese"] span.size20 {
    background: url('../images/flags20.png') -89px -178px no-repeat;
}
#flags.size20 a[title="Javanese"],
.tool-container .tool-items a[title="Javanese"],
a.single-language[title="Javanese"] span.size20 {
    background: url('../images/flags20.png') -118px -178px no-repeat;
}
#flags.size20 a[title="Kannada"],
.tool-container .tool-items a[title="Kannada"],
a.single-language[title="Kannada"] span.size20 {
    background: url('../images/flags20.png') -147px -178px no-repeat;
}
#flags.size20 a[title="Kazakh"],
.tool-container .tool-items a[title="Kazakh"],
a.single-language[title="Kazakh"] span.size20 {
    background: url('../images/flags20.png') -2px -410px no-repeat;
}
#flags.size20 a[title="Khmer"],
.tool-container .tool-items a[title="Khmer"],
a.single-language[title="Khmer"] span.size20 {
    background: url('../images/flags20.png') -2px -207px no-repeat;
}
#flags.size20 a[title="Korean"],
.tool-container .tool-items a[title="Korean"],
a.single-language[title="Korean"] span.size20 {
    background: url('../images/flags20.png') -31px -207px no-repeat;
}
#flags.size20 a[title="Kurdish"],
.tool-container .tool-items a[title="Kurdish"],
a.single-language[title="Kurdish"] span.size20 {
    background: url('../images/flags20.png') -118px -468px no-repeat;
}
#flags.size20 a[title="Kyrgyz"],
.tool-container .tool-items a[title="Kyrgyz"],
a.single-language[title="Kyrgyz"] span.size20 {
    background: url('../images/flags20.png') -147px -468px no-repeat;
}
#flags.size20 a[title="Lao"],
.tool-container .tool-items a[title="Lao"],
a.single-language[title="Lao"] span.size20 {
    background: url('../images/flags20.png') -60px -207px no-repeat;
}
#flags.size20 a[title="Latin"],
.tool-container .tool-items a[title="Latin"],
a.single-language[title="Latin"] span.size20 {
    background: url('../images/flags20.png') -89px -207px no-repeat;
}
#flags.size20 a[title="Latvian"],
.tool-container .tool-items a[title="Latvian"],
a.single-language[title="Latvian"] span.size20 {
    background: url('../images/flags20.png') -118px -207px no-repeat;
}
#flags.size20 a[title="Lithuanian"],
.tool-container .tool-items a[title="Lithuanian"],
a.single-language[title="Lithuanian"] span.size20 {
    background: url('../images/flags20.png') -147px -207px no-repeat;
}
#flags.size20 a[title="Luxembourgish"],
.tool-container .tool-items a[title="Luxembourgish"],
a.single-language[title="Luxembourgish"] span.size20 {
    background: url('../images/flags20.png') -2px -497px no-repeat;
}
#flags.size20 a[title="Macedonian"],
.tool-container .tool-items a[title="Macedonian"],
a.single-language[title="Macedonian"] span.size20 {
    background: url('../images/flags20.png') -2px -236px no-repeat;
}
#flags.size20 a[title="Malagasy"],
.tool-container .tool-items a[title="Malagasy"],
a.single-language[title="Malagasy"] span.size20 {
    background: url('../images/flags20.png') -60px -410px no-repeat;
}
#flags.size20 a[title="Malay"],
.tool-container .tool-items a[title="Malay"],
a.single-language[title="Malay"] span.size20 {
    background: url('../images/flags20.png') -31px -236px no-repeat;
}
#flags.size20 a[title="Maltese"],
.tool-container .tool-items a[title="Maltese"],
a.single-language[title="Maltese"] span.size20 {
    background: url('../images/flags20.png') -60px -236px no-repeat;
}
#flags.size20 a[title="Malayalam"],
.tool-container .tool-items a[title="Malayalam"],
a.single-language[title="Malayalam"] span.size20 {
    background: url('../images/flags20.png') -118px -410px no-repeat;
}
#flags.size20 a[title="Maori"],
.tool-container .tool-items a[title="Maori"],
a.single-language[title="Maori"] span.size20 {
    background: url('../images/flags20.png') -89px -236px no-repeat;
}
#flags.size20 a[title="Marathi"],
.tool-container .tool-items a[title="Marathi"],
a.single-language[title="Marathi"] span.size20 {
    background: url('../images/flags20.png') -118px -236px no-repeat;
}
#flags.size20 a[title="Mongolian"],
.tool-container .tool-items a[title="Mongolian"],
a.single-language[title="Mongolian"] span.size20 {
    background: url('../images/flags20.png') -147px -236px no-repeat;
}
#flags.size20 a[title="Myanmar (Burmese)"],
.tool-container .tool-items a[title="Myanmar (Burmese)"],
a.single-language[title="Myanmar (Burmese)"] span.size20 {
    background: url('../images/flags20.png') -147px -410px no-repeat;
}
#flags.size20 a[title="Nepali"],
.tool-container .tool-items a[title="Nepali"],
a.single-language[title="Nepali"] span.size20 {
    background: url('../images/flags20.png') -2px -265px no-repeat;
}
#flags.size20 a[title="Norwegian"],
.tool-container .tool-items a[title="Norwegian"],
a.single-language[title="Norwegian"] span.size20 {
    background: url('../images/flags20.png') -31px -265px no-repeat;
}
#flags.size20 a[title="Pashto"],
.tool-container .tool-items a[title="Pashto"],
a.single-language[title="Pashto"] span.size20 {
    background: url('../images/flags20.png') -31px -497px no-repeat;
}
#flags.size20 a[title="Persian"],
.tool-container .tool-items a[title="Persian"],
a.single-language[title="Persian"] span.size20 {
    background: url('../images/flags20.png') -60px -265px no-repeat;
}
#flags.size20 a[title="Polish"],
.tool-container .tool-items a[title="Polish"],
a.single-language[title="Polish"] span.size20 {
    background: url('../images/flags20.png') -89px -265px no-repeat;
}
#flags.size20 a[title="Portuguese"],
.tool-container .tool-items a[title="Portuguese"],
a.single-language[title="Portuguese"] span.size20 {
    background: url('../images/flags20.png') -118px -265px no-repeat;
}
#flags.size20 a.brazil[title="Portuguese"],
a.single-language.brazil[title="Portuguese"] span.size20 {
    background: url('../images/flags20.png') -147px -439px no-repeat;
}
#flags.size20 a[title="Punjabi"],
.tool-container .tool-items a[title="Punjabi"],
a.single-language[title="Punjabi"] span.size20 {
    background: url('../images/flags20.png') -147px -265px no-repeat;
}
#flags.size20 a[title="Romanian"],
.tool-container .tool-items a[title="Romanian"],
a.single-language[title="Romanian"] span.size20 {
    background: url('../images/flags20.png') -2px -294px no-repeat;
}
#flags.size20 a[title="Russian"],
.tool-container .tool-items a[title="Russian"],
a.single-language[title="Russian"] span.size20 {
    background: url('../images/flags20.png') -31px -294px no-repeat;
}
#flags.size20 a[title="Samoan"],
.tool-container .tool-items a[title="Samoan"],
a.single-language[title="Samoan"] span.size20 {
    background: url('../images/flags20.png') -31px -468px no-repeat;
}
#flags.size20 a[title="Scots Gaelic"],
.tool-container .tool-items a[title="Scots Gaelic"],
a.single-language[title="Scots Gaelic"] span.size20 {
    background: url('../images/flags20.png') -60px -468px no-repeat;
}
#flags.size20 a[title="Serbian"],
.tool-container .tool-items a[title="Serbian"],
a.single-language[title="Serbian"] span.size20 {
    background: url('../images/flags20.png') -60px -294px no-repeat;
}
#flags.size20 a[title="Sesotho"],
.tool-container .tool-items a[title="Sesotho"],
a.single-language[title="Sesotho"] span.size20 {
    background: url('../images/flags20.png') -31px -410px no-repeat;
}
#flags.size20 a[title="Shona"],
.tool-container .tool-items a[title="Shona"],
a.single-language[title="Shona"] span.size20 {
    background: url('../images/flags20.png') -60px -497px no-repeat;
}
#flags.size20 a[title="Sindhi"],
.tool-container .tool-items a[title="Sindhi"],
a.single-language[title="Sindhi"] span.size20 {
    background: url('../images/flags20.png') -147px -352px no-repeat;
}
#flags.size20 a[title="Sinhala"],
.tool-container .tool-items a[title="Sinhala"],
a.single-language[title="Sinhala"] span.size20 {
    background: url('../images/flags20.png') -2px -439px no-repeat;
}
#flags.size20 a[title="Slovak"],
.tool-container .tool-items a[title="Slovak"],
a.single-language[title="Slovak"] span.size20 {
    background: url('../images/flags20.png') -89px -294px no-repeat;
}
#flags.size20 a[title="Slovenian"],
.tool-container .tool-items a[title="Slovenian"],
a.single-language[title="Slovenian"] span.size20 {
    background: url('../images/flags20.png') -118px -294px no-repeat;
}
#flags.size20 a[title="Somali"],
.tool-container .tool-items a[title="Somali"],
a.single-language[title="Somali"] span.size20 {
    background: url('../images/flags20.png') -147px -294px no-repeat;
}
#flags.size20 a[title="Spanish"],
.tool-container .tool-items a[title="Spanish"],
a.single-language[title="Spanish"] span.size20 {
    background: url('../images/flags20.png') -2px -323px no-repeat;
}
#flags.size20 a.mexico[title="Spanish"],
a.single-language.mexico[title="Spanish"] span.size20 {
    background: url('../images/flags20.png') -118px -439px no-repeat;
}
#flags.size20 a[title="Sundanese"],
.tool-container .tool-items a[title="Sundanese"],
a.single-language[title="Sundanese"] span.size20 {
    background: url('../images/flags20.png') -147px -381px no-repeat;
}
#flags.size20 a[title="Swahili"],
.tool-container .tool-items a[title="Swahili"],
a.single-language[title="Swahili"] span.size20 {
    background: url('../images/flags20.png') -31px -323px no-repeat;
}
#flags.size20 a[title="Swedish"],
.tool-container .tool-items a[title="Swedish"],
a.single-language[title="Swedish"] span.size20 {
    background: url('../images/flags20.png') -60px -323px no-repeat;
}
#flags.size20 a[title="Tajik"],
.tool-container .tool-items a[title="Tajik"],
a.single-language[title="Tajik"] span.size20 {
    background: url('../images/flags20.png') -31px -439px no-repeat;
}
#flags.size20 a[title="Tamil"],
.tool-container .tool-items a[title="Tamil"],
a.single-language[title="Tamil"] span.size20 {
    background: url('../images/flags20.png') -89px -323px no-repeat;
}
#flags.size20 a[title="Telugu"],
.tool-container .tool-items a[title="Telugu"],
a.single-language[title="Telugu"] span.size20 {
    background: url('../images/flags20.png') -118px -323px no-repeat;
}
#flags.size20 a[title="Thai"],
.tool-container .tool-items a[title="Thai"],
a.single-language[title="Thai"] span.size20 {
    background: url('../images/flags20.png') -147px -323px no-repeat;
}
#flags.size20 a[title="Turkish"],
.tool-container .tool-items a[title="Turkish"],
a.single-language[title="Turkish"] span.size20 {
    background: url('../images/flags20.png') -31px -352px no-repeat;
}
#flags.size20 a[title="Ukrainian"],
.tool-container .tool-items a[title="Ukrainian"],
a.single-language[title="Ukrainian"] span.size20 {
    background: url('../images/flags20.png') -60px -352px no-repeat;
}
#flags.size20 a[title="Urdu"],
.tool-container .tool-items a[title="Urdu"],
a.single-language[title="Urdu"] span.size20 {
    background: url('../images/flags20.png') -147px -352px no-repeat;
}
#flags.size20 a[title="Uzbek"],
.tool-container .tool-items a[title="Uzbek"],
a.single-language[title="Uzbek"] span.size20 {
    background: url('../images/flags20.png') -60px -439px no-repeat;
}
#flags.size20 a[title="Vietnamese"],
.tool-container .tool-items a[title="Vietnamese"],
a.single-language[title="Vietnamese"] span.size20 {
    background: url('../images/flags20.png') -2px -381px no-repeat;
}
#flags.size20 a[title="Welsh"],
.tool-container .tool-items a[title="Welsh"],
a.single-language[title="Welsh"] span.size20 {
    background: url('../images/flags20.png') -31px -381px no-repeat;
}
#flags.size20 a[title="Xhosa"],
.tool-container .tool-items a[title="Xhosa"],
a.single-language[title="Xhosa"] span.size20 {
    background: url('../images/flags20.png') -2px -4px no-repeat;
}
#flags.size20 a[title="Yiddish"],
.tool-container .tool-items a[title="Yiddish"],
a.single-language[title="Yiddish"] span.size20 {
    background: url('../images/flags20.png') -60px -381px no-repeat;
}
#flags.size20 a[title="Yoruba"],
.tool-container .tool-items a[title="Yoruba"],
a.single-language[title="Yoruba"] span.size20 {
    background: url('../images/flags20.png') -89px -381px no-repeat;
}
#flags.size20 a[title="Zulu"],
.tool-container .tool-items a[title="Zulu"],
a.single-language[title="Zulu"] span.size20 {
    background: url('../images/flags20.png') -118px -381px no-repeat;
}
/* Individual flag backgrounds (18px) */

#flags.size18 a[title="Afrikaans"],
.tool-container .tool-items a[title="Afrikaans"],
a.single-language[title="Afrikaans"] span.size18 {
    background: url('../images/flags18.png') -2px -4px no-repeat;
}
#flags.size18 a[title="Albanian"],
.tool-container .tool-items a[title="Albanian"],
a.single-language[title="Albanian"] span.size18 {
    background: url('../images/flags18.png') -31px -4px no-repeat;
}
#flags.size18 a[title="Amharic"],
.tool-container .tool-items a[title="Amharic"],
a.single-language[title="Amharic"] span.size18 {
    background: url('../images/flags18.png') -2px -468px no-repeat;
}
#flags.size18 a[title="Arabic"],
.tool-container .tool-items a[title="Arabic"],
a.single-language[title="Arabic"] span.size18 {
    background: url('../images/flags18.png') -60px -4px no-repeat;
}
#flags.size18 a[title="Armenian"],
.tool-container .tool-items a[title="Armenian"],
a.single-language[title="Armenian"] span.size18 {
    background: url('../images/flags18.png') -89px -4px no-repeat;
}
#flags.size18 a[title="Azerbaijani"],
.tool-container .tool-items a[title="Azerbaijani"],
a.single-language[title="Azerbaijani"] span.size18 {
    background: url('../images/flags18.png') -118px -4px no-repeat;
}
#flags.size18 a[title="Basque"],
.tool-container .tool-items a[title="Basque"],
a.single-language[title="Basque"] span.size18 {
    background: url('../images/flags18.png') -147px -4px no-repeat;
}
#flags.size18 a[title="Belarusian"],
.tool-container .tool-items a[title="Belarusian"],
a.single-language[title="Belarusian"] span.size18 {
    background: url('../images/flags18.png') -2px -33px no-repeat;
}
#flags.size18 a[title="Bengali"],
.tool-container .tool-items a[title="Bengali"],
a.single-language[title="Bengali"] span.size18 {
    background: url('../images/flags18.png') -31px -33px no-repeat;
}
#flags.size18 a[title="Bosnian"],
.tool-container .tool-items a[title="Bosnian"],
a.single-language[title="Bosnian"] span.size18 {
    background: url('../images/flags18.png') -60px -33px no-repeat;
}
#flags.size18 a[title="Bulgarian"],
.tool-container .tool-items a[title="Bulgarian"],
a.single-language[title="Bulgarian"] span.size18 {
    background: url('../images/flags18.png') -89px -33px no-repeat;
}
#flags.size18 a[title="Catalan"],
.tool-container .tool-items a[title="Catalan"],
a.single-language[title="Catalan"] span.size18 {
    background: url('../images/flags18.png') -118px -33px no-repeat;
}
#flags.size18 a[title="Cebuano"],
.tool-container .tool-items a[title="Cebuano"],
a.single-language[title="Cebuano"] span.size18 {
    background: url('../images/flags18.png') -147px -33px no-repeat;
}
#flags.size18 a[title="Chichewa"],
.tool-container .tool-items a[title="Chichewa"],
a.single-language[title="Chichewa"] span.size18 {
    background: url('../images/flags18.png') -89px -410px no-repeat;
}
#flags.size18 a[title="Chinese (Simplified)"],
.tool-container .tool-items a[title="Chinese (Simplified)"],
a.single-language[title="Chinese (Simplified)"] span.size18 {
    background: url('../images/flags18.png') -2px -62px no-repeat;
}
#flags.size18 a[title="Chinese (Traditional)"],
.tool-container .tool-items a[title="Chinese (Traditional)"],
a.single-language[title="Chinese (Traditional)"] span.size18 {
    background: url('../images/flags18.png') -31px -62px no-repeat;
}
#flags.size18 a[title="Corsican"],
.tool-container .tool-items a[title="Corsican"],
a.single-language[title="Corsican"] span.size18 {
    background: url('../images/flags18.png') -118px -91px no-repeat;
}
#flags.size18 a[title="Croatian"],
.tool-container .tool-items a[title="Croatian"],
a.single-language[title="Croatian"] span.size18 {
    background: url('../images/flags18.png') -60px -62px no-repeat;
}
#flags.size18 a[title="Czech"],
.tool-container .tool-items a[title="Czech"],
a.single-language[title="Czech"] span.size18 {
    background: url('../images/flags18.png') -89px -62px no-repeat;
}
#flags.size18 a[title="Danish"],
.tool-container .tool-items a[title="Danish"],
a.single-language[title="Danish"] span.size18 {
    background: url('../images/flags18.png') -118px -62px no-repeat;
}
#flags.size18 a[title="Dutch"],
.tool-container .tool-items a[title="Dutch"],
a.single-language[title="Dutch"] span.size18 {
    background: url('../images/flags18.png') -147px -62px no-repeat;
}
#flags.size18 a[title="English"],
.tool-container .tool-items a[title="English"],
a.single-language[title="English"] span.size18 {
    background: url('../images/flags18.png') -89px -352px no-repeat;
}
#flags.size18 a.united-states[title="English"],
a.single-language.united-states[title="English"] span.size18 {
    background: url('../images/flags18.png') -118px -352px no-repeat;
}
#flags.size18 a.canada[title="English"] a.single-language.canada[title="English"] span.size18 {
    background: url('../images/flags18.png') -89px -439px no-repeat;
}
#flags.size18 a[title="Esperanto"],
.tool-container .tool-items a[title="Esperanto"],
a.single-language[title="Esperanto"] span.size18 {
    background: url('../images/flags18.png') -2px -91px no-repeat;
}
#flags.size18 a[title="Estonian"],
.tool-container .tool-items a[title="Estonian"],
a.single-language[title="Estonian"] span.size18 {
    background: url('../images/flags18.png') -31px -91px no-repeat;
}
#flags.size18 a[title="Filipino"],
.tool-container .tool-items a[title="Filipino"],
a.single-language[title="Filipino"] span.size18 {
    background: url('../images/flags18.png') -60px -91px no-repeat;
}
#flags.size18 a[title="Finnish"],
.tool-container .tool-items a[title="Finnish"],
a.single-language[title="Finnish"] span.size18 {
    background: url('../images/flags18.png') -89px -91px no-repeat;
}
#flags.size18 a[title="French"],
.tool-container .tool-items a[title="French"],
a.single-language[title="French"] span.size18 {
    background: url('../images/flags18.png') -118px -91px no-repeat;
}
#flags.size18 a[title="Frisian"],
.tool-container .tool-items a[title="Frisian"],
a.single-language[title="Frisian"] span.size18 {
    background: url('../images/flags18.png') -147px -62px no-repeat;
}
#flags.size18 a[title="Galician"],
.tool-container .tool-items a[title="Galician"],
a.single-language[title="Galician"] span.size18 {
    background: url('../images/flags18.png') -147px -91px no-repeat;
}
#flags.size18 a[title="Georgian"],
.tool-container .tool-items a[title="Georgian"],
a.single-language[title="Georgian"] span.size18 {
    background: url('../images/flags18.png') -2px -120px no-repeat;
}
#flags.size18 a[title="German"],
.tool-container .tool-items a[title="German"],
a.single-language[title="German"] span.size18 {
    background: url('../images/flags18.png') -31px -120px no-repeat;
}
#flags.size18 a[title="Greek"],
.tool-container .tool-items a[title="Greek"],
a.single-language[title="Greek"] span.size18 {
    background: url('../images/flags18.png') -60px -120px no-repeat;
}
#flags.size18 a[title="Gujarati"],
.tool-container .tool-items a[title="Gujarati"],
a.single-language[title="Gujarati"] span.size18 {
    background: url('../images/flags18.png') -89px -120px no-repeat;
}
#flags.size18 a[title="Haitian"],
.tool-container .tool-items a[title="Haitian"],
a.single-language[title="Haitian"] span.size18 {
    background: url('../images/flags18.png') -118px -120px no-repeat;
}
#flags.size18 a[title="Hawaiian"],
.tool-container .tool-items a[title="Hawaiian"],
a.single-language[title="Hawaiian"] span.size18 {
    background: url('../images/flags18.png') -89px -468px no-repeat;
}
#flags.size18 a[title="Hausa"],
.tool-container .tool-items a[title="Hausa"],
a.single-language[title="Hausa"] span.size18 {
    background: url('../images/flags18.png') -147px -120px no-repeat;
}
#flags.size18 a[title="Hebrew"],
.tool-container .tool-items a[title="Hebrew"],
a.single-language[title="Hebrew"] span.size18 {
    background: url('../images/flags18.png') -2px -149px no-repeat;
}
#flags.size18 a[title="Hindi"],
.tool-container .tool-items a[title="Hindi"],
a.single-language[title="Hindi"] span.size18 {
    background: url('../images/flags18.png') -31px -149px no-repeat;
}
#flags.size18 a[title="Hmong"],
.tool-container .tool-items a[title="Hmong"],
a.single-language[title="Hmong"] span.size18 {
    background: url('../images/flags18.png') -60px -149px no-repeat;
}
#flags.size18 a[title="Hungarian"],
.tool-container .tool-items a[title="Hungarian"],
a.single-language[title="Hungarian"] span.size18 {
    background: url('../images/flags18.png') -89px -149px no-repeat;
}
#flags.size18 a[title="Icelandic"],
.tool-container .tool-items a[title="Icelandic"],
a.single-language[title="Icelandic"] span.size18 {
    background: url('../images/flags18.png') -118px -149px no-repeat;
}
#flags.size18 a[title="Igbo"],
.tool-container .tool-items a[title="Igbo"],
a.single-language[title="Igbo"] span.size18 {
    background: url('../images/flags18.png') -147px -149px no-repeat;
}
#flags.size18 a[title="Indonesian"],
.tool-container .tool-items a[title="Indonesian"],
a.single-language[title="Indonesian"] span.size18 {
    background: url('../images/flags18.png') -2px -178px no-repeat;
}
#flags.size18 a[title="Irish"],
.tool-container .tool-items a[title="Irish"],
a.single-language[title="Irish"] span.size18 {
    background: url('../images/flags18.png') -31px -178px no-repeat;
}
#flags.size18 a[title="Italian"],
.tool-container .tool-items a[title="Italian"],
a.single-language[title="Italian"] span.size18 {
    background: url('../images/flags18.png') -60px -178px no-repeat;
}
#flags.size18 a[title="Japanese"],
.tool-container .tool-items a[title="Japanese"],
a.single-language[title="Japanese"] span.size18 {
    background: url('../images/flags18.png') -89px -178px no-repeat;
}
#flags.size18 a[title="Javanese"],
.tool-container .tool-items a[title="Javanese"],
a.single-language[title="Javanese"] span.size18 {
    background: url('../images/flags18.png') -118px -178px no-repeat;
}
#flags.size18 a[title="Kannada"],
.tool-container .tool-items a[title="Kannada"],
a.single-language[title="Kannada"] span.size18 {
    background: url('../images/flags18.png') -147px -178px no-repeat;
}
#flags.size18 a[title="Kazakh"],
.tool-container .tool-items a[title="Kazakh"],
a.single-language[title="Kazakh"] span.size18 {
    background: url('../images/flags18.png') -2px -410px no-repeat;
}
#flags.size18 a[title="Khmer"],
.tool-container .tool-items a[title="Khmer"],
a.single-language[title="Khmer"] span.size18 {
    background: url('../images/flags18.png') -2px -207px no-repeat;
}
#flags.size18 a[title="Korean"],
.tool-container .tool-items a[title="Korean"],
a.single-language[title="Korean"] span.size18 {
    background: url('../images/flags18.png') -31px -207px no-repeat;
}
#flags.size18 a[title="Kurdish"],
.tool-container .tool-items a[title="Kurdish"],
a.single-language[title="Kurdish"] span.size18 {
    background: url('../images/flags18.png') -118px -468px no-repeat;
}
#flags.size18 a[title="Kyrgyz"],
.tool-container .tool-items a[title="Kyrgyz"],
a.single-language[title="Kyrgyz"] span.size18 {
    background: url('../images/flags18.png') -147px -468px no-repeat;
}
#flags.size18 a[title="Lao"],
.tool-container .tool-items a[title="Lao"],
a.single-language[title="Lao"] span.size18 {
    background: url('../images/flags18.png') -60px -207px no-repeat;
}
#flags.size18 a[title="Latin"],
.tool-container .tool-items a[title="Latin"],
a.single-language[title="Latin"] span.size18 {
    background: url('../images/flags18.png') -89px -207px no-repeat;
}
#flags.size18 a[title="Latvian"],
.tool-container .tool-items a[title="Latvian"],
a.single-language[title="Latvian"] span.size18 {
    background: url('../images/flags18.png') -118px -207px no-repeat;
}
#flags.size18 a[title="Lithuanian"],
.tool-container .tool-items a[title="Lithuanian"],
a.single-language[title="Lithuanian"] span.size18 {
    background: url('../images/flags18.png') -147px -207px no-repeat;
}
#flags.size18 a[title="Luxembourgish"],
.tool-container .tool-items a[title="Luxembourgish"],
a.single-language[title="Luxembourgish"] span.size18 {
    background: url('../images/flags18.png') -2px -496px no-repeat;
}
#flags.size18 a[title="Macedonian"],
.tool-container .tool-items a[title="Macedonian"],
a.single-language[title="Macedonian"] span.size18 {
    background: url('../images/flags18.png') -2px -236px no-repeat;
}
#flags.size18 a[title="Malagasy"],
.tool-container .tool-items a[title="Malagasy"],
a.single-language[title="Malagasy"] span.size18 {
    background: url('../images/flags18.png') -60px -410px no-repeat;
}
#flags.size18 a[title="Malay"],
.tool-container .tool-items a[title="Malay"],
a.single-language[title="Malay"] span.size18 {
    background: url('../images/flags18.png') -31px -236px no-repeat;
}
#flags.size18 a[title="Malayalam"],
.tool-container .tool-items a[title="Malayalam"],
a.single-language[title="Malayalam"] span.size18 {
    background: url('../images/flags18.png') -118px -410px no-repeat;
}
#flags.size18 a[title="Maltese"],
.tool-container .tool-items a[title="Maltese"],
a.single-language[title="Maltese"] span.size18 {
    background: url('../images/flags18.png') -60px -236px no-repeat;
}
#flags.size18 a[title="Maori"],
.tool-container .tool-items a[title="Maori"],
a.single-language[title="Maori"] span.size18 {
    background: url('../images/flags18.png') -89px -236px no-repeat;
}
#flags.size18 a[title="Marathi"],
.tool-container .tool-items a[title="Marathi"],
a.single-language[title="Marathi"] span.size18 {
    background: url('../images/flags18.png') -118px -236px no-repeat;
}
#flags.size18 a[title="Mongolian"],
.tool-container .tool-items a[title="Mongolian"],
a.single-language[title="Mongolian"] span.size18 {
    background: url('../images/flags18.png') -147px -236px no-repeat;
}
#flags.size18 a[title="Myanmar (Burmese)"],
.tool-container .tool-items a[title="Myanmar (Burmese)"],
a.single-language[title="Myanmar (Burmese)"] span.size18 {
    background: url('../images/flags18.png') -147px -410px no-repeat;
}
#flags.size18 a[title="Nepali"],
.tool-container .tool-items a[title="Nepali"],
a.single-language[title="Nepali"] span.size18 {
    background: url('../images/flags18.png') -2px -265px no-repeat;
}
#flags.size18 a[title="Norwegian"],
.tool-container .tool-items a[title="Norwegian"],
a.single-language[title="Norwegian"] span.size18 {
    background: url('../images/flags18.png') -31px -265px no-repeat;
}
#flags.size18 a[title="Pashto"],
.tool-container .tool-items a[title="Pashto"],
a.single-language[title="Pashto"] span.size18 {
    background: url('../images/flags18.png') -31px -496px no-repeat;
}
#flags.size18 a[title="Persian"],
.tool-container .tool-items a[title="Persian"],
a.single-language[title="Persian"] span.size18 {
    background: url('../images/flags18.png') -60px -265px no-repeat;
}
#flags.size18 a[title="Polish"],
.tool-container .tool-items a[title="Polish"],
a.single-language[title="Polish"] span.size18 {
    background: url('../images/flags18.png') -89px -265px no-repeat;
}
#flags.size18 a[title="Portuguese"],
.tool-container .tool-items a[title="Portuguese"],
a.single-language[title="Portuguese"] span.size18 {
    background: url('../images/flags18.png') -118px -265px no-repeat;
}
#flags.size18 a.brazil[title="Portuguese"],
a.single-language.brazil[title="Portuguese"] span.size18 {
    background: url('../images/flags18.png') -147px -439px no-repeat;
}
#flags.size18 a[title="Punjabi"],
.tool-container .tool-items a[title="Punjabi"],
a.single-language[title="Punjabi"] span.size18 {
    background: url('../images/flags18.png') -147px -265px no-repeat;
}
#flags.size18 a[title="Romanian"],
.tool-container .tool-items a[title="Romanian"],
a.single-language[title="Romanian"] span.size18 {
    background: url('../images/flags18.png') -2px -294px no-repeat;
}
#flags.size18 a[title="Russian"],
.tool-container .tool-items a[title="Russian"],
a.single-language[title="Russian"] span.size18 {
    background: url('../images/flags18.png') -31px -294px no-repeat;
}
#flags.size18 a[title="Samoan"],
.tool-container .tool-items a[title="Samoan"],
a.single-language[title="Samoan"] span.size18 {
    background: url('../images/flags18.png') -31px -468px no-repeat;
}
#flags.size18 a[title="Scots Gaelic"],
.tool-container .tool-items a[title="Scots Gaelic"],
a.single-language[title="Scots Gaelic"] span.size18 {
    background: url('../images/flags18.png') -60px -468px no-repeat;
}
#flags.size18 a[title="Serbian"],
.tool-container .tool-items a[title="Serbian"],
a.single-language[title="Serbian"] span.size18 {
    background: url('../images/flags18.png') -60px -294px no-repeat;
}
#flags.size18 a[title="Sesotho"],
.tool-container .tool-items a[title="Sesotho"],
a.single-language[title="Sesotho"] span.size18 {
    background: url('../images/flags18.png') -31px -410px no-repeat;
}
#flags.size18 a[title="Shona"],
.tool-container .tool-items a[title="Shona"],
a.single-language[title="Shona"] span.size18 {
    background: url('../images/flags18.png') -60px -496px no-repeat;
}
#flags.size18 a[title="Sindhi"],
.tool-container .tool-items a[title="Sindhi"],
a.single-language[title="Sindhi"] span.size18 {
    background: url('../images/flags18.png') -147px -352px no-repeat;
}
#flags.size18 a[title="Sinhala"],
.tool-container .tool-items a[title="Sinhala"],
a.single-language[title="Sinhala"] span.size18 {
    background: url('../images/flags18.png') -2px -439px no-repeat;
}
#flags.size18 a[title="Slovak"],
.tool-container .tool-items a[title="Slovak"],
a.single-language[title="Slovak"] span.size18 {
    background: url('../images/flags18.png') -89px -294px no-repeat;
}
#flags.size18 a[title="Slovenian"],
.tool-container .tool-items a[title="Slovenian"],
a.single-language[title="Slovenian"] span.size18 {
    background: url('../images/flags18.png') -118px -294px no-repeat;
}
#flags.size18 a[title="Somali"],
.tool-container .tool-items a[title="Somali"],
a.single-language[title="Somali"] span.size18 {
    background: url('../images/flags18.png') -147px -294px no-repeat;
}
#flags.size18 a[title="Spanish"],
.tool-container .tool-items a[title="Spanish"],
a.single-language[title="Spanish"] span.size18 {
    background: url('../images/flags18.png') -2px -323px no-repeat;
}
#flags.size18 a.mexico[title="Spanish"],
a.single-language.mexico[title="Spanish"] span.size18 {
    background: url('../images/flags18.png') -118px -439px no-repeat;
}
#flags.size18 a[title="Sundanese"],
.tool-container .tool-items a[title="Sundanese"],
a.single-language[title="Sundanese"] span.size18 {
    background: url('../images/flags18.png') -147px -381px no-repeat;
}
#flags.size18 a[title="Swahili"],
.tool-container .tool-items a[title="Swahili"],
a.single-language[title="Swahili"] span.size18 {
    background: url('../images/flags18.png') -31px -323px no-repeat;
}
#flags.size18 a[title="Swedish"],
.tool-container .tool-items a[title="Swedish"],
a.single-language[title="Swedish"] span.size18 {
    background: url('../images/flags18.png') -60px -323px no-repeat;
}
#flags.size18 a[title="Tajik"],
.tool-container .tool-items a[title="Tajik"],
a.single-language[title="Tajik"] span.size18 {
    background: url('../images/flags18.png') -31px -439px no-repeat;
}
#flags.size18 a[title="Tamil"],
.tool-container .tool-items a[title="Tamil"],
a.single-language[title="Tamil"] span.size18 {
    background: url('../images/flags18.png') -89px -323px no-repeat;
}
#flags.size18 a[title="Telugu"],
.tool-container .tool-items a[title="Telugu"],
a.single-language[title="Telugu"] span.size18 {
    background: url('../images/flags18.png') -118px -323px no-repeat;
}
#flags.size18 a[title="Thai"],
.tool-container .tool-items a[title="Thai"],
a.single-language[title="Thai"] span.size18 {
    background: url('../images/flags18.png') -147px -323px no-repeat;
}
#flags.size18 a[title="Turkish"],
.tool-container .tool-items a[title="Turkish"],
a.single-language[title="Turkish"] span.size18 {
    background: url('../images/flags18.png') -31px -352px no-repeat;
}
#flags.size18 a[title="Ukrainian"],
.tool-container .tool-items a[title="Ukrainian"],
a.single-language[title="Ukrainian"] span.size18 {
    background: url('../images/flags18.png') -60px -352px no-repeat;
}
#flags.size18 a[title="Urdu"],
.tool-container .tool-items a[title="Urdu"],
a.single-language[title="Urdu"] span.size18 {
    background: url('../images/flags18.png') -147px -352px no-repeat;
}
#flags.size18 a[title="Uzbek"],
.tool-container .tool-items a[title="Uzbek"],
a.single-language[title="Uzbek"] span.size18 {
    background: url('../images/flags18.png') -60px -439px no-repeat;
}
#flags.size18 a[title="Vietnamese"],
.tool-container .tool-items a[title="Vietnamese"],
a.single-language[title="Vietnamese"] span.size18 {
    background: url('../images/flags18.png') -2px -381px no-repeat;
}
#flags.size18 a[title="Welsh"],
.tool-container .tool-items a[title="Welsh"],
a.single-language[title="Welsh"] span.size18 {
    background: url('../images/flags18.png') -31px -381px no-repeat;
}
#flags.size18 a[title="Xhosa"],
.tool-container .tool-items a[title="Xhosa"],
a.single-language[title="Xhosa"] span.size18 {
    background: url('../images/flags18.png') -2px -4px no-repeat;
}
#flags.size18 a[title="Yiddish"],
.tool-container .tool-items a[title="Yiddish"],
a.single-language[title="Yiddish"] span.size18 {
    background: url('../images/flags18.png') -60px -381px no-repeat;
}
#flags.size18 a[title="Yoruba"],
.tool-container .tool-items a[title="Yoruba"],
a.single-language[title="Yoruba"] span.size18 {
    background: url('../images/flags18.png') -89px -381px no-repeat;
}
#flags.size18 a[title="Zulu"],
.tool-container .tool-items a[title="Zulu"],
a.single-language[title="Zulu"] span.size18 {
    background: url('../images/flags18.png') -118px -381px no-repeat;
}
/* Individual flag backgrounds (16px) */

#flags.size16 a[title="Afrikaans"],
#language .switcher .selected a[title="Afrikaans"] span,
#language .switcher .option a[title="Afrikaans"] span,
.tool-container .tool-items a[title="Afrikaans"],
a.single-language[title="Afrikaans"] span.size16 {
    background: url('../images/flags16.png') -4px -5px no-repeat;
}
#flags.size16 a[title="Albanian"],
#language .switcher .selected a[title="Albanian"] span,
#language .switcher .option a[title="Albanian"] span,
.tool-container .tool-items a[title="Albanian"],
a.single-language[title="Albanian"] span.size16 {
    background: url('../images/flags16.png') -33px -5px no-repeat;
}
#flags.size16 a[title="Amharic"],
#language .switcher .selected a[title="Amharic"] span,
#language .switcher .option a[title="Amharic"] span,
.tool-container .tool-items a[title="Amharic"],
a.single-language[title="Amharic"] span.size16 {
    background: url('../images/flags16.png') -4px -469px no-repeat;
}
#flags.size16 a[title="Arabic"],
#language .switcher .selected a[title="Arabic"] span,
#language .switcher .option a[title="Arabic"] span,
.tool-container .tool-items a[title="Arabic"],
a.single-language[title="Arabic"] span.size16 {
    background: url('../images/flags16.png') -62px -5px no-repeat;
}
#flags.size16 a[title="Armenian"],
#language .switcher .selected a[title="Armenian"] span,
#language .switcher .option a[title="Armenian"] span,
.tool-container .tool-items a[title="Armenian"],
a.single-language[title="Armenian"] span.size16 {
    background: url('../images/flags16.png') -91px -5px no-repeat;
}
#flags.size16 a[title="Azerbaijani"],
#language .switcher .selected a[title="Azerbaijani"] span,
#language .switcher .option a[title="Azerbaijani"] span,
.tool-container .tool-items a[title="Azerbaijani"],
a.single-language[title="Azerbaijani"] span.size16 {
    background: url('../images/flags16.png') -120px -5px no-repeat;
}
#flags.size16 a[title="Basque"],
#language .switcher .selected a[title="Basque"] span,
#language .switcher .option a[title="Basque"] span,
.tool-container .tool-items a[title="Basque"],
a.single-language[title="Basque"] span.size16 {
    background: url('../images/flags16.png') -149px -5px no-repeat;
}
#flags.size16 a[title="Belarusian"],
#language .switcher .selected a[title="Belarusian"] span,
#language .switcher .option a[title="Belarusian"] span,
.tool-container .tool-items a[title="Belarusian"],
a.single-language[title="Belarusian"] span.size16 {
    background: url('../images/flags16.png') -4px -34px no-repeat;
}
#flags.size16 a[title="Bengali"],
#language .switcher .selected a[title="Bengali"] span,
#language .switcher .option a[title="Bengali"] span,
.tool-container .tool-items a[title="Bengali"],
a.single-language[title="Bengali"] span.size16 {
    background: url('../images/flags16.png') -33px -34px no-repeat;
}
#flags.size16 a[title="Bosnian"],
#language .switcher .selected a[title="Bosnian"] span,
#language .switcher .option a[title="Bosnian"] span,
.tool-container .tool-items a[title="Bosnian"],
a.single-language[title="Bosnian"] span.size16 {
    background: url('../images/flags16.png') -62px -34px no-repeat;
}
#flags.size16 a[title="Bulgarian"],
#language .switcher .selected a[title="Bulgarian"] span,
#language .switcher .option a[title="Bulgarian"] span,
.tool-container .tool-items a[title="Bulgarian"],
a.single-language[title="Bulgarian"] span.size16 {
    background: url('../images/flags16.png') -91px -34px no-repeat;
}
#flags.size16 a[title="Catalan"],
#language .switcher .selected a[title="Catalan"] span,
#language .switcher .option a[title="Catalan"] span,
.tool-container .tool-items a[title="Catalan"],
a.single-language[title="Catalan"] span.size16 {
    background: url('../images/flags16.png') -120px -34px no-repeat;
}
#flags.size16 a[title="Cebuano"],
#language .switcher .selected a[title="Cebuano"] span,
#language .switcher .option a[title="Cebuano"] span,
.tool-container .tool-items a[title="Cebuano"],
a.single-language[title="Cebuano"] span.size16 {
    background: url('../images/flags16.png') -149px -34px no-repeat;
}
#flags.size16 a[title="Chichewa"],
#language .switcher .selected a[title="Chichewa"] span,
#language .switcher .option a[title="Chichewa"] span,
.tool-container .tool-items a[title="Chichewa"],
a.single-language[title="Chichewa"] span.size16 {
    background: url('../images/flags16.png') -91px -411px no-repeat;
}
#flags.size16 a[title="Chinese (Simplified)"],
#language .switcher .selected a[title="Chinese (Simplified)"] span,
#language .switcher .option a[title="Chinese (Simplified)"] span,
.tool-container .tool-items a[title="Chinese (Simplified)"],
a.single-language[title="Chinese (Simplified)"] span.size16 {
    background: url('../images/flags16.png') -4px -63px no-repeat;
}
#flags.size16 a[title="Chinese (Traditional)"],
#language .switcher .selected a[title="Chinese (Traditional)"] span,
#language .switcher .option a[title="Chinese (Traditional)"] span,
.tool-container .tool-items a[title="Chinese (Traditional)"],
a.single-language[title="Chinese (Traditional)"] span.size16 {
    background: url('../images/flags16.png') -33px -63px no-repeat;
}
#flags.size16 a[title="Corsican"],
#language .switcher .selected a[title="Corsican"] span,
#language .switcher .option a[title="Corsican"] span,
.tool-container .tool-items a[title="Corsican"],
a.single-language[title="Corsican"] span.size16 {
    background: url('../images/flags16.png') -120px -92px no-repeat;
}
#flags.size16 a[title="Croatian"],
#language .switcher .selected a[title="Croatian"] span,
#language .switcher .option a[title="Croatian"] span,
.tool-container .tool-items a[title="Croatian"],
a.single-language[title="Croatian"] span.size16 {
    background: url('../images/flags16.png') -62px -63px no-repeat;
}
#flags.size16 a[title="Czech"],
#language .switcher .selected a[title="Czech"] span,
#language .switcher .option a[title="Czech"] span,
.tool-container .tool-items a[title="Czech"],
a.single-language[title="Czech"] span.size16 {
    background: url('../images/flags16.png') -91px -63px no-repeat;
}
#flags.size16 a[title="Danish"],
#language .switcher .selected a[title="Danish"] span,
#language .switcher .option a[title="Danish"] span,
.tool-container .tool-items a[title="Danish"],
a.single-language[title="Danish"] span.size16 {
    background: url('../images/flags16.png') -120px -63px no-repeat;
}
#flags.size16 a[title="Dutch"],
#language .switcher .selected a[title="Dutch"] span,
#language .switcher .option a[title="Dutch"] span,
.tool-container .tool-items a[title="Dutch"],
a.single-language[title="Dutch"] span.size16 {
    background: url('../images/flags16.png') -149px -63px no-repeat;
}
#flags.size16 a[title="English"],
#language .switcher .selected a[title="English"] span,
#language .switcher .option a[title="English"] span,
.tool-container .tool-items a[title="English"],
a.single-language[title="English"] span.size16 {
    background: url('../images/flags16.png') -91px -353px no-repeat;
}
#flags.size16 a.united-states[title="English"],
#language .switcher .selected a[title="English"] span.united-states,
#language .switcher .option a[title="English"] span.united-states,
a.single-language.united-states[title="English"] span.size16 {
    background: url('../images/flags16.png') -120px -353px no-repeat;
}
#flags.size16 a.canada[title="English"],
#language .switcher .selected a[title="English"] span.canada,
#language .switcher .option a[title="English"] span.canada,
a.single-language.canada[title="English"] span.size16 {
    background: url('../images/flags16.png') -91px -440px no-repeat;
}
#flags.size16 a[title="Esperanto"],
#language .switcher .selected a[title="Esperanto"] span,
#language .switcher .option a[title="Esperanto"] span,
.tool-container .tool-items a[title="Esperanto"],
a.single-language[title="Esperanto"] span.size16 {
    background: url('../images/flags16.png') -4px -92px no-repeat;
}
#flags.size16 a[title="Estonian"],
#language .switcher .selected a[title="Estonian"] span,
#language .switcher .option a[title="Estonian"] span,
.tool-container .tool-items a[title="Estonian"],
a.single-language[title="Estonian"] span.size16 {
    background: url('../images/flags16.png') -33px -92px no-repeat;
}
#flags.size16 a[title="Filipino"],
#language .switcher .selected a[title="Filipino"] span,
#language .switcher .option a[title="Filipino"] span,
.tool-container .tool-items a[title="Filipino"],
a.single-language[title="Filipino"] span.size16 {
    background: url('../images/flags16.png') -62px -92px no-repeat;
}
#flags.size16 a[title="Finnish"],
#language .switcher .selected a[title="Finnish"] span,
#language .switcher .option a[title="Finnish"] span,
.tool-container .tool-items a[title="Finnish"],
a.single-language[title="Finnish"] span.size16 {
    background: url('../images/flags16.png') -91px -92px no-repeat;
}
#flags.size16 a[title="French"],
#language .switcher .selected a[title="French"] span,
#language .switcher .option a[title="French"] span,
.tool-container .tool-items a[title="French"],
a.single-language[title="French"] span.size16 {
    background: url('../images/flags16.png') -120px -92px no-repeat;
}
#flags.size16 a[title="Frisian"],
#language .switcher .selected a[title="Frisian"] span,
#language .switcher .option a[title="Frisian"] span,
.tool-container .tool-items a[title="Frisian"],
a.single-language[title="Frisian"] span.size16 {
    background: url('../images/flags16.png') -149px -63px no-repeat;
}
#flags.size16 a[title="Galician"],
#language .switcher .selected a[title="Galician"] span,
#language .switcher .option a[title="Galician"] span,
.tool-container .tool-items a[title="Galician"],
a.single-language[title="Galician"] span.size16 {
    background: url('../images/flags16.png') -149px -92px no-repeat;
}
#flags.size16 a[title="Georgian"],
#language .switcher .selected a[title="Georgian"] span,
#language .switcher .option a[title="Georgian"] span,
.tool-container .tool-items a[title="Georgian"],
a.single-language[title="Georgian"] span.size16 {
    background: url('../images/flags16.png') -4px -121px no-repeat;
}
#flags.size16 a[title="German"],
#language .switcher .selected a[title="German"] span,
#language .switcher .option a[title="German"] span,
.tool-container .tool-items a[title="German"],
a.single-language[title="German"] span.size16 {
    background: url('../images/flags16.png') -33px -121px no-repeat;
}
#flags.size16 a[title="Greek"],
#language .switcher .selected a[title="Greek"] span,
#language .switcher .option a[title="Greek"] span,
.tool-container .tool-items a[title="Greek"],
a.single-language[title="Greek"] span.size16 {
    background: url('../images/flags16.png') -62px -121px no-repeat;
}
#flags.size16 a[title="Gujarati"],
#language .switcher .selected a[title="Gujarati"] span,
#language .switcher .option a[title="Gujarati"] span,
.tool-container .tool-items a[title="Gujarati"],
a.single-language[title="Gujarati"] span.size16 {
    background: url('../images/flags16.png') -91px -121px no-repeat;
}
#flags.size16 a[title="Haitian"],
#language .switcher .selected a[title="Haitian"] span,
#language .switcher .option a[title="Haitian"] span,
.tool-container .tool-items a[title="Haitian"],
a.single-language[title="Haitian"] span.size16 {
    background: url('../images/flags16.png') -120px -121px no-repeat;
}
#flags.size16 a[title="Hawaiian"],
#language .switcher .selected a[title="Hawaiian"] span,
#language .switcher .option a[title="Hawaiian"] span,
.tool-container .tool-items a[title="Hawaiian"],
a.single-language[title="Hawaiian"] span.size16 {
    background: url('../images/flags16.png') -91px -469px no-repeat;
}
#flags.size16 a[title="Hausa"],
#language .switcher .selected a[title="Hausa"] span,
#language .switcher .option a[title="Hausa"] span,
.tool-container .tool-items a[title="Hausa"],
a.single-language[title="Hausa"] span.size16 {
    background: url('../images/flags16.png') -149px -121px no-repeat;
}
#flags.size16 a[title="Hebrew"],
#language .switcher .selected a[title="Hebrew"] span,
#language .switcher .option a[title="Hebrew"] span,
.tool-container .tool-items a[title="Hebrew"],
a.single-language[title="Hebrew"] span.size16 {
    background: url('../images/flags16.png') -4px -150px no-repeat;
}
#flags.size16 a[title="Hindi"],
#language .switcher .selected a[title="Hindi"] span,
#language .switcher .option a[title="Hindi"] span,
.tool-container .tool-items a[title="Hindi"],
a.single-language[title="Hindi"] span.size16 {
    background: url('../images/flags16.png') -33px -150px no-repeat;
}
#flags.size16 a[title="Hmong"],
#language .switcher .selected a[title="Hmong"] span,
#language .switcher .option a[title="Hmong"] span,
.tool-container .tool-items a[title="Hmong"],
a.single-language[title="Hmong"] span.size16 {
    background: url('../images/flags16.png') -62px -150px no-repeat;
}
#flags.size16 a[title="Hungarian"],
#language .switcher .selected a[title="Hungarian"] span,
#language .switcher .option a[title="Hungarian"] span,
.tool-container .tool-items a[title="Hungarian"],
a.single-language[title="Hungarian"] span.size16 {
    background: url('../images/flags16.png') -91px -150px no-repeat;
}
#flags.size16 a[title="Icelandic"],
#language .switcher .selected a[title="Icelandic"] span,
#language .switcher .option a[title="Icelandic"] span,
.tool-container .tool-items a[title="Icelandic"],
a.single-language[title="Icelandic"] span.size16 {
    background: url('../images/flags16.png') -120px -150px no-repeat;
}
#flags.size16 a[title="Igbo"],
#language .switcher .selected a[title="Igbo"] span,
#language .switcher .option a[title="Igbo"] span,
.tool-container .tool-items a[title="Igbo"],
a.single-language[title="Igbo"] span.size16 {
    background: url('../images/flags16.png') -149px -150px no-repeat;
}
#flags.size16 a[title="Indonesian"],
#language .switcher .selected a[title="Indonesian"] span,
#language .switcher .option a[title="Indonesian"] span,
.tool-container .tool-items a[title="Indonesian"],
a.single-language[title="Indonesian"] span.size16 {
    background: url('../images/flags16.png') -4px -179px no-repeat;
}
#flags.size16 a[title="Irish"],
#language .switcher .selected a[title="Irish"] span,
#language .switcher .option a[title="Irish"] span,
.tool-container .tool-items a[title="Irish"],
a.single-language[title="Irish"] span.size16 {
    background: url('../images/flags16.png') -33px -179px no-repeat;
}
#flags.size16 a[title="Italian"],
#language .switcher .selected a[title="Italian"] span,
#language .switcher .option a[title="Italian"] span,
.tool-container .tool-items a[title="Italian"],
a.single-language[title="Italian"] span.size16 {
    background: url('../images/flags16.png') -62px -179px no-repeat;
}
#flags.size16 a[title="Japanese"],
#language .switcher .selected a[title="Japanese"] span,
#language .switcher .option a[title="Japanese"] span,
.tool-container .tool-items a[title="Japanese"],
a.single-language[title="Japanese"] span.size16 {
    background: url('../images/flags16.png') -91px -179px no-repeat;
}
#flags.size16 a[title="Javanese"],
#language .switcher .selected a[title="Javanese"] span,
#language .switcher .option a[title="Javanese"] span,
.tool-container .tool-items a[title="Javanese"],
a.single-language[title="Javanese"] span.size16 {
    background: url('../images/flags16.png') -120px -179px no-repeat;
}
#flags.size16 a[title="Kannada"],
#language .switcher .selected a[title="Kannada"] span,
#language .switcher .option a[title="Kannada"] span,
.tool-container .tool-items a[title="Kannada"],
a.single-language[title="Kannada"] span.size16 {
    background: url('../images/flags16.png') -149px -179px no-repeat;
}
#flags.size16 a[title="Kazakh"],
#language .switcher .selected a[title="Kazakh"] span,
#language .switcher .option a[title="Kazakh"] span,
.tool-container .tool-items a[title="Kazakh"],
a.single-language[title="Kazakh"] span.size16 {
    background: url('../images/flags16.png') -4px -411px no-repeat;
}
#flags.size16 a[title="Khmer"],
#language .switcher .selected a[title="Khmer"] span,
#language .switcher .option a[title="Khmer"] span,
.tool-container .tool-items a[title="Khmer"],
a.single-language[title="Khmer"] span.size16 {
    background: url('../images/flags16.png') -4px -208px no-repeat;
}
#flags.size16 a[title="Korean"],
#language .switcher .selected a[title="Korean"] span,
#language .switcher .option a[title="Korean"] span,
.tool-container .tool-items a[title="Korean"],
a.single-language[title="Korean"] span.size16 {
    background: url('../images/flags16.png') -33px -208px no-repeat;
}
#flags.size16 a[title="Kurdish"],
#language .switcher .selected a[title="Kurdish"] span,
#language .switcher .option a[title="Kurdish"] span,
.tool-container .tool-items a[title="Kurdish"],
a.single-language[title="Kurdish"] span.size16 {
    background: url('../images/flags16.png') -120px -469px no-repeat;
}
#flags.size16 a[title="Kyrgyz"],
#language .switcher .selected a[title="Kyrgyz"] span,
#language .switcher .option a[title="Kyrgyz"] span,
.tool-container .tool-items a[title="Kyrgyz"],
a.single-language[title="Kyrgyz"] span.size16 {
    background: url('../images/flags16.png') -149px -469px no-repeat;
}
#flags.size16 a[title="Lao"],
#language .switcher .selected a[title="Lao"] span,
#language .switcher .option a[title="Lao"] span,
.tool-container .tool-items a[title="Lao"],
a.single-language[title="Lao"] span.size16 {
    background: url('../images/flags16.png') -62px -208px no-repeat;
}
#flags.size16 a[title="Latin"],
#language .switcher .selected a[title="Latin"] span,
#language .switcher .option a[title="Latin"] span,
.tool-container .tool-items a[title="Latin"],
a.single-language[title="Latin"] span.size16 {
    background: url('../images/flags16.png') -91px -208px no-repeat;
}
#flags.size16 a[title="Latvian"],
#language .switcher .selected a[title="Latvian"] span,
#language .switcher .option a[title="Latvian"] span,
.tool-container .tool-items a[title="Latvian"],
a.single-language[title="Latvian"] span.size16 {
    background: url('../images/flags16.png') -120px -208px no-repeat;
}
#flags.size16 a[title="Lithuanian"],
#language .switcher .selected a[title="Lithuanian"] span,
#language .switcher .option a[title="Lithuanian"] span,
.tool-container .tool-items a[title="Lithuanian"],
a.single-language[title="Lithuanian"] span.size16 {
    background: url('../images/flags16.png') -149px -208px no-repeat;
}
#flags.size16 a[title="Luxembourgish"],
#language .switcher .selected a[title="Luxembourgish"] span,
#language .switcher .option a[title="Luxembourgish"] span,
.tool-container .tool-items a[title="Luxembourgish"],
a.single-language[title="Luxembourgish"] span.size16 {
    background: url('../images/flags16.png') -4px -498px no-repeat;
}
#flags.size16 a[title="Macedonian"],
#language .switcher .selected a[title="Macedonian"] span,
#language .switcher .option a[title="Macedonian"] span,
.tool-container .tool-items a[title="Macedonian"],
a.single-language[title="Macedonian"] span.size16 {
    background: url('../images/flags16.png') -4px -237px no-repeat;
}
#flags.size16 a[title="Malay"],
#language .switcher .selected a[title="Malay"] span,
#language .switcher .option a[title="Malay"] span,
.tool-container .tool-items a[title="Malay"],
a.single-language[title="Malay"] span.size16 {
    background: url('../images/flags16.png') -33px -237px no-repeat;
}
#flags.size16 a[title="Malagasy"],
#language .switcher .selected a[title="Malagasy"] span,
#language .switcher .option a[title="Malagasy"] span,
.tool-container .tool-items a[title="Malagasy"],
a.single-language[title="Malagasy"] span.size16 {
    background: url('../images/flags16.png') -62px -411px no-repeat;
}
#flags.size16 a[title="Malayalam"],
#language .switcher .selected a[title="Malayalam"] span,
#language .switcher .option a[title="Malayalam"] span,
.tool-container .tool-items a[title="Malayalam"],
a.single-language[title="Malayalam"] span.size16 {
    background: url('../images/flags16.png') -120px -411px no-repeat;
}
#flags.size16 a[title="Maltese"],
#language .switcher .selected a[title="Maltese"] span,
#language .switcher .option a[title="Maltese"] span,
.tool-container .tool-items a[title="Maltese"],
a.single-language[title="Maltese"] span.size16 {
    background: url('../images/flags16.png') -62px -237px no-repeat;
}
#flags.size16 a[title="Maori"],
#language .switcher .selected a[title="Maori"] span,
#language .switcher .option a[title="Maori"] span,
.tool-container .tool-items a[title="Maori"],
a.single-language[title="Maori"] span.size16 {
    background: url('../images/flags16.png') -91px -237px no-repeat;
}
#flags.size16 a[title="Marathi"],
#language .switcher .selected a[title="Marathi"] span,
#language .switcher .option a[title="Marathi"] span,
.tool-container .tool-items a[title="Marathi"],
a.single-language[title="Marathi"] span.size16 {
    background: url('../images/flags16.png') -120px -237px no-repeat;
}
#flags.size16 a[title="Mongolian"],
#language .switcher .selected a[title="Mongolian"] span,
#language .switcher .option a[title="Mongolian"] span,
.tool-container .tool-items a[title="Mongolian"],
a.single-language[title="Mongolian"] span.size16 {
    background: url('../images/flags16.png') -149px -237px no-repeat;
}
#flags.size16 a[title="Myanmar (Burmese)"],
#language .switcher .selected a[title="Myanmar (Burmese)"] span,
#language .switcher .option a[title="Myanmar (Burmese)"] span,
.tool-container .tool-items a[title="Myanmar (Burmese)"],
a.single-language[title="Myanmar (Burmese)"] span.size16 {
    background: url('../images/flags16.png') -149px -411px no-repeat;
}
#flags.size16 a[title="Nepali"],
#language .switcher .selected a[title="Nepali"] span,
#language .switcher .option a[title="Nepali"] span,
.tool-container .tool-items a[title="Nepali"],
a.single-language[title="Nepali"] span.size16 {
    background: url('../images/flags16.png') -4px -266px no-repeat;
}
#flags.size16 a[title="Norwegian"],
#language .switcher .selected a[title="Norwegian"] span,
#language .switcher .option a[title="Norwegian"] span,
.tool-container .tool-items a[title="Norwegian"],
a.single-language[title="Norwegian"] span.size16 {
    background: url('../images/flags16.png') -33px -266px no-repeat;
}
#flags.size16 a[title="Pashto"],
#language .switcher .selected a[title="Pashto"] span,
#language .switcher .option a[title="Pashto"] span,
.tool-container .tool-items a[title="Pashto"],
a.single-language[title="Pashto"] span.size16 {
    background: url('../images/flags16.png') -33px -498px no-repeat;
}
#flags.size16 a[title="Persian"],
#language .switcher .selected a[title="Persian"] span,
#language .switcher .option a[title="Persian"] span,
.tool-container .tool-items a[title="Persian"],
a.single-language[title="Persian"] span.size16 {
    background: url('../images/flags16.png') -62px -266px no-repeat;
}
#flags.size16 a[title="Polish"],
#language .switcher .selected a[title="Polish"] span,
#language .switcher .option a[title="Polish"] span,
.tool-container .tool-items a[title="Polish"],
a.single-language[title="Polish"] span.size16 {
    background: url('../images/flags16.png') -91px -266px no-repeat;
}
#flags.size16 a[title="Portuguese"],
#language .switcher .selected a[title="Portuguese"] span,
#language .switcher .option a[title="Portuguese"] span,
.tool-container .tool-items a[title="Portuguese"],
a.single-language[title="Portuguese"] span.size16 {
    background: url('../images/flags16.png') -120px -266px no-repeat;
}
#flags.size16 a.brazil[title="Portuguese"],
#language .switcher .selected a[title="Portuguese"] span.brazil,
#language .switcher .option a[title="Portuguese"] span.brazil,
a.single-language.brazil[title="Portuguese"] span.size16 {
    background: url('../images/flags16.png') -149px -440px no-repeat;
}
#flags.size16 a[title="Punjabi"],
#language .switcher .selected a[title="Punjabi"] span,
#language .switcher .option a[title="Punjabi"] span,
.tool-container .tool-items a[title="Punjabi"],
a.single-language[title="Punjabi"] span.size16 {
    background: url('../images/flags16.png') -149px -266px no-repeat;
}
#flags.size16 a[title="Romanian"],
#language .switcher .selected a[title="Romanian"] span,
#language .switcher .option a[title="Romanian"] span,
.tool-container .tool-items a[title="Romanian"],
a.single-language[title="Romanian"] span.size16 {
    background: url('../images/flags16.png') -4px -295px no-repeat;
}
#flags.size16 a[title="Russian"],
#language .switcher .selected a[title="Russian"] span,
#language .switcher .option a[title="Russian"] span,
.tool-container .tool-items a[title="Russian"],
a.single-language[title="Russian"] span.size16 {
    background: url('../images/flags16.png') -33px -295px no-repeat;
}
#flags.size16 a[title="Samoan"],
#language .switcher .selected a[title="Samoan"] span,
#language .switcher .option a[title="Samoan"] span,
.tool-container .tool-items a[title="Samoan"],
a.single-language[title="Samoan"] span.size16 {
    background: url('../images/flags16.png') -33px -469px no-repeat;
}
#flags.size16 a[title="Scots Gaelic"],
#language .switcher .selected a[title="Scots Gaelic"] span,
#language .switcher .option a[title="Scots Gaelic"] span,
.tool-container .tool-items a[title="Scots Gaelic"],
a.single-language[title="Scots Gaelic"] span.size16 {
    background: url('../images/flags16.png') -62px -469px no-repeat;
}
#flags.size16 a[title="Serbian"],
#language .switcher .selected a[title="Serbian"] span,
#language .switcher .option a[title="Serbian"] span,
.tool-container .tool-items a[title="Serbian"],
a.single-language[title="Serbian"] span.size16 {
    background: url('../images/flags16.png') -62px -295px no-repeat;
}
#flags.size16 a[title="Sesotho"],
#language .switcher .selected a[title="Sesotho"] span,
#language .switcher .option a[title="Sesotho"] span,
.tool-container .tool-items a[title="Sesotho"],
a.single-language[title="Sesotho"] span.size16 {
    background: url('../images/flags16.png') -33px -411px no-repeat;
}
#flags.size16 a[title="Shona"],
#language .switcher .selected a[title="Shona"] span,
#language .switcher .option a[title="Shona"] span,
.tool-container .tool-items a[title="Shona"],
a.single-language[title="Shona"] span.size16 {
    background: url('../images/flags16.png') -62px -498px no-repeat;
}
#flags.size16 a[title="Sindhi"],
#language .switcher .selected a[title="Sindhi"] span,
#language .switcher .option a[title="Sindhi"] span,
.tool-container .tool-items a[title="Sindhi"],
a.single-language[title="Sindhi"] span.size16 {
    background: url('../images/flags16.png') -149px -353px no-repeat;
}
#flags.size16 a[title="Sinhala"],
#language .switcher .selected a[title="Sinhala"] span,
#language .switcher .option a[title="Sinhala"] span,
.tool-container .tool-items a[title="Sinhala"],
a.single-language[title="Sinhala"] span.size16 {
    background: url('../images/flags16.png') -4px -440px no-repeat;
}
#flags.size16 a[title="Slovak"],
#language .switcher .selected a[title="Slovak"] span,
#language .switcher .option a[title="Slovak"] span,
.tool-container .tool-items a[title="Slovak"],
a.single-language[title="Slovak"] span.size16 {
    background: url('../images/flags16.png') -91px -295px no-repeat;
}
#flags.size16 a[title="Slovenian"],
#language .switcher .selected a[title="Slovenian"] span,
#language .switcher .option a[title="Slovenian"] span,
.tool-container .tool-items a[title="Slovenian"],
a.single-language[title="Slovenian"] span.size16 {
    background: url('../images/flags16.png') -120px -295px no-repeat;
}
#flags.size16 a[title="Somali"],
#language .switcher .selected a[title="Somali"] span,
#language .switcher .option a[title="Somali"] span,
.tool-container .tool-items a[title="Somali"],
a.single-language[title="Somali"] span.size16 {
    background: url('../images/flags16.png') -149px -295px no-repeat;
}
#flags.size16 a[title="Spanish"],
#language .switcher .selected a[title="Spanish"] span,
#language .switcher .option a[title="Spanish"] span,
.tool-container .tool-items a[title="Spanish"],
a.single-language[title="Spanish"] span.size16 {
    background: url('../images/flags16.png') -4px -324px no-repeat;
}
#flags.size16 a.mexico[title="Spanish"],
#language .switcher .selected a[title="Spanish"] span.mexico,
#language .switcher .option a[title="Spanish"] span.mexico,
a.single-language.mexico[title="Spanish"] span.size16 {
    background: url('../images/flags16.png') -120px -440px no-repeat;
}
#flags.size16 a[title="Swahili"],
#language .switcher .selected a[title="Swahili"] span,
#language .switcher .option a[title="Swahili"] span,
.tool-container .tool-items a[title="Swahili"],
a.single-language[title="Swahili"] span.size16 {
    background: url('../images/flags16.png') -33px -324px no-repeat;
}
#flags.size16 a[title="Swedish"],
#language .switcher .selected a[title="Swedish"] span,
#language .switcher .option a[title="Swedish"] span,
.tool-container .tool-items a[title="Swedish"],
a.single-language[title="Swedish"] span.size16 {
    background: url('../images/flags16.png') -62px -324px no-repeat;
}
#flags.size16 a[title="Sundanese"],
#language .switcher .selected a[title="Sundanese"] span,
#language .switcher .option a[title="Sundanese"] span,
.tool-container .tool-items a[title="Sundanese"],
a.single-language[title="Sundanese"] span.size16 {
    background: url('../images/flags16.png') -149px -382px no-repeat;
}
#flags.size16 a[title="Tajik"],
#language .switcher .selected a[title="Tajik"] span,
#language .switcher .option a[title="Tajik"] span,
.tool-container .tool-items a[title="Tajik"],
a.single-language[title="Tajik"] span.size16 {
    background: url('../images/flags16.png') -33px -440px no-repeat;
}
#flags.size16 a[title="Tamil"],
#language .switcher .selected a[title="Tamil"] span,
#language .switcher .option a[title="Tamil"] span,
.tool-container .tool-items a[title="Tamil"],
a.single-language[title="Tamil"] span.size16 {
    background: url('../images/flags16.png') -91px -324px no-repeat;
}
#flags.size16 a[title="Telugu"],
#language .switcher .selected a[title="Telugu"] span,
#language .switcher .option a[title="Telugu"] span,
.tool-container .tool-items a[title="Telugu"],
a.single-language[title="Telugu"] span.size16 {
    background: url('../images/flags16.png') -120px -324px no-repeat;
}
#flags.size16 a[title="Thai"],
#language .switcher .selected a[title="Thai"] span,
#language .switcher .option a[title="Thai"] span,
.tool-container .tool-items a[title="Thai"],
a.single-language[title="Thai"] span.size16 {
    background: url('../images/flags16.png') -149px -324px no-repeat;
}
#flags.size16 a[title="Turkish"],
#language .switcher .selected a[title="Turkish"] span,
#language .switcher .option a[title="Turkish"] span,
.tool-container .tool-items a[title="Turkish"],
a.single-language[title="Turkish"] span.size16 {
    background: url('../images/flags16.png') -33px -353px no-repeat;
}
#flags.size16 a[title="Ukrainian"],
#language .switcher .selected a[title="Ukrainian"] span,
#language .switcher .option a[title="Ukrainian"] span,
.tool-container .tool-items a[title="Ukrainian"],
a.single-language[title="Ukrainian"] span.size16 {
    background: url('../images/flags16.png') -62px -353px no-repeat;
}
#flags.size16 a[title="Urdu"],
#language .switcher .selected a[title="Urdu"] span,
#language .switcher .option a[title="Urdu"] span,
.tool-container .tool-items a[title="Urdu"],
a.single-language[title="Urdu"] span.size16 {
    background: url('../images/flags16.png') -149px -353px no-repeat;
}
#flags.size16 a[title="Uzbek"],
#language .switcher .selected a[title="Uzbek"] span,
#language .switcher .option a[title="Uzbek"] span,
.tool-container .tool-items a[title="Uzbek"],
a.single-language[title="Uzbek"] span.size16 {
    background: url('../images/flags16.png') -62px -440px no-repeat;
}
#flags.size16 a[title="Vietnamese"],
#language .switcher .selected a[title="Vietnamese"] span,
#language .switcher .option a[title="Vietnamese"] span,
.tool-container .tool-items a[title="Vietnamese"],
a.single-language[title="Vietnamese"] span.size16 {
    background: url('../images/flags16.png') -4px -382px no-repeat;
}
#flags.size16 a[title="Welsh"],
#language .switcher .selected a[title="Welsh"] span,
#language .switcher .option a[title="Welsh"] span,
.tool-container .tool-items a[title="Welsh"],
a.single-language[title="Welsh"] span.size16 {
    background: url('../images/flags16.png') -33px -382px no-repeat;
}
#flags.size16 a[title="Xhosa"],
#language .switcher .selected a[title="Xhosa"] span,
#language .switcher .option a[title="Xhosa"] span,
.tool-container .tool-items a[title="Xhosa"],
a.single-language[title="Xhosa"] span.size16 {
    background: url('../images/flags16.png') -4px -5px no-repeat;
}
#flags.size16 a[title="Yiddish"],
#language .switcher .selected a[title="Yiddish"] span,
#language .switcher .option a[title="Yiddish"] span,
.tool-container .tool-items a[title="Yiddish"],
a.single-language[title="Yiddish"] span.size16 {
    background: url('../images/flags16.png') -62px -382px no-repeat;
}
#flags.size16 a[title="Yoruba"],
#language .switcher .selected a[title="Yoruba"] span,
a.single-language[title="Yoruba"] span.size16 span,
#language .switcher .option a[title="Yoruba"] span,
.tool-container .tool-items a[title="Yoruba"],
a.single-language[title="Yoruba"] span.size16 {
    background: url('../images/flags16.png') -91px -382px no-repeat;
}
#flags.size16 a[title="Zulu"],
#language .switcher .selected a[title="Zulu"] span,
#language .switcher .option a[title="Zulu"] span,
.tool-container .tool-items a[title="Zulu"],
a.single-language[title="Zulu"] span.size16 {
    background: url('../images/flags16.png') -120px -382px no-repeat;
}
/* Individual flag backgrounds (24px) */

#flags.size24 a[title="Afrikaans"],
.tool-container .tool-items a[title="Afrikaans"],
a.single-language[title="Afrikaans"] span.size24 {
    background: url('../images/flags.png') 0 -3px no-repeat;
}
#flags.size24 a[title="Albanian"],
.tool-container .tool-items a[title="Albanian"],
a.single-language[title="Albanian"] span.size24 {
    background: url('../images/flags.png') -29px -3px no-repeat;
}
#flags.size24 a[title="Amharic"],
.tool-container .tool-items a[title="Amharic"],
a.single-language[title="Amharic"] span.size24 {
    background: url('../images/flags.png') 0 -467px no-repeat;
}
#flags.size24 a[title="Arabic"],
.tool-container .tool-items a[title="Arabic"],
a.single-language[title="Arabic"] span.size24 {
    background: url('../images/flags.png') -58px -3px no-repeat;
}
#flags.size24 a[title="Armenian"],
.tool-container .tool-items a[title="Armenian"],
a.single-language[title="Armenian"] span.size24 {
    background: url('../images/flags.png') -87px -3px no-repeat;
}
#flags.size24 a[title="Azerbaijani"],
.tool-container .tool-items a[title="Azerbaijani"],
a.single-language[title="Azerbaijani"] span.size24 {
    background: url('../images/flags.png') -116px -3px no-repeat;
}
#flags.size24 a[title="Basque"],
.tool-container .tool-items a[title="Basque"],
a.single-language[title="Basque"] span.size24 {
    background: url('../images/flags.png') -145px -3px no-repeat;
}
#flags.size24 a[title="Belarusian"],
.tool-container .tool-items a[title="Belarusian"],
a.single-language[title="Belarusian"] span.size24 {
    background: url('../images/flags.png') 0 -32px no-repeat;
}
#flags.size24 a[title="Bengali"],
.tool-container .tool-items a[title="Bengali"],
a.single-language[title="Bengali"] span.size24 {
    background: url('../images/flags.png') -29px -32px no-repeat;
}
#flags.size24 a[title="Bosnian"],
.tool-container .tool-items a[title="Bosnian"],
a.single-language[title="Bosnian"] span.size24 {
    background: url('../images/flags.png') -58px -32px no-repeat;
}
#flags.size24 a[title="Bulgarian"],
.tool-container .tool-items a[title="Bulgarian"],
a.single-language[title="Bulgarian"] span.size24 {
    background: url('../images/flags.png') -87px -32px no-repeat;
}
#flags.size24 a[title="Catalan"],
.tool-container .tool-items a[title="Catalan"],
a.single-language[title="Catalan"] span.size24 {
    background: url('../images/flags.png') -116px -32px no-repeat;
}
#flags.size24 a[title="Cebuano"],
.tool-container .tool-items a[title="Cebuano"],
a.single-language[title="Cebuano"] span.size24 {
    background: url('../images/flags.png') -145px -32px no-repeat;
}
#flags.size24 a[title="Chichewa"],
.tool-container .tool-items a[title="Chichewa"],
a.single-language[title="Chichewa"] span.size24 {
    background: url('../images/flags.png') -87px -409px no-repeat;
}
#flags.size24 a[title="Chinese (Simplified)"],
.tool-container .tool-items a[title="Chinese (Simplified)"],
a.single-language[title="Chinese (Simplified)"] span.size24 {
    background: url('../images/flags.png') 0 -61px no-repeat;
}
#flags.size24 a[title="Chinese (Traditional)"],
.tool-container .tool-items a[title="Chinese (Traditional)"],
a.single-language[title="Chinese (Traditional)"] span.size24 {
    background: url('../images/flags.png') -29px -61px no-repeat;
}
#flags.size24 a[title="Corsican"],
.tool-container .tool-items a[title="Corsican"],
a.single-language[title="Corsican"] span.size24 {
    background: url('../images/flags.png') -116px -90px no-repeat;
}
#flags.size24 a[title="Croatian"],
.tool-container .tool-items a[title="Croatian"],
a.single-language[title="Croatian"] span.size24 {
    background: url('../images/flags.png') -58px -61px no-repeat;
}
#flags.size24 a[title="Czech"],
.tool-container .tool-items a[title="Czech"],
a.single-language[title="Czech"] span.size24 {
    background: url('../images/flags.png') -87px -61px no-repeat;
}
#flags.size24 a[title="Danish"],
.tool-container .tool-items a[title="Danish"],
a.single-language[title="Danish"] span.size24 {
    background: url('../images/flags.png') -116px -61px no-repeat;
}
#flags.size24 a[title="Dutch"],
.tool-container .tool-items a[title="Dutch"],
a.single-language[title="Dutch"] span.size24 {
    background: url('../images/flags.png') -145px -61px no-repeat;
}
#flags.size24 a[title="English"],
.tool-container .tool-items a[title="English"],
a.single-language[title="English"] span.size24 {
    background: url('../images/flags.png') -87px -351px no-repeat;
}
#flags.size24 a.united-states[title="English"],
.tool-container a.united-states[title="English"],
a.single-language.united-states[title="English"] span.size24 {
    background: url('../images/flags.png') -116px -351px no-repeat !important;
}
#flags.size24 a.canada[title="English"],
.tool-container a.canada[title="English"],
a.single-language.canada[title="English"] span.size24 {
    background: url('../images/flags.png') -87px -438px no-repeat !important;
}
#flags.size24 a[title="Esperanto"],
.tool-container .tool-items a[title="Esperanto"],
a.single-language[title="Esperanto"] span.size24 {
    background: url('../images/flags.png') 0 -90px no-repeat;
}
#flags.size24 a[title="Estonian"],
.tool-container .tool-items a[title="Estonian"],
a.single-language[title="Estonian"] span.size24 {
    background: url('../images/flags.png') -29px -90px no-repeat;
}
#flags.size24 a[title="Filipino"],
.tool-container .tool-items a[title="Filipino"],
a.single-language[title="Filipino"] span.size24 {
    background: url('../images/flags.png') -58px -90px no-repeat;
}
#flags.size24 a[title="Finnish"],
.tool-container .tool-items a[title="Finnish"],
a.single-language[title="Finnish"] span.size24 {
    background: url('../images/flags.png') -87px -90px no-repeat;
}
#flags.size24 a[title="French"],
.tool-container .tool-items a[title="French"],
a.single-language[title="French"] span.size24 {
    background: url('../images/flags.png') -116px -90px no-repeat;
}
#flags.size24 a[title="Frisian"],
.tool-container .tool-items a[title="Frisian"],
a.single-language[title="Frisian"] span.size24 {
    background: url('../images/flags.png') -145px -61px no-repeat;
}
#flags.size24 a[title="Galician"],
.tool-container .tool-items a[title="Galician"],
a.single-language[title="Galician"] span.size24 {
    background: url('../images/flags.png') -145px -90px no-repeat;
}
#flags.size24 a[title="Georgian"],
.tool-container .tool-items a[title="Georgian"],
a.single-language[title="Georgian"] span.size24 {
    background: url('../images/flags.png') 0 -119px no-repeat;
}
#flags.size24 a[title="German"],
.tool-container .tool-items a[title="German"],
a.single-language[title="German"] span.size24 {
    background: url('../images/flags.png') -29px -119px no-repeat;
}
#flags.size24 a[title="Greek"],
.tool-container .tool-items a[title="Greek"],
a.single-language[title="Greek"] span.size24 {
    background: url('../images/flags.png') -58px -119px no-repeat;
}
#flags.size24 a[title="Gujarati"],
.tool-container .tool-items a[title="Gujarati"],
a.single-language[title="Gujarati"] span.size24 {
    background: url('../images/flags.png') -87px -119px no-repeat;
}
#flags.size24 a[title="Haitian"],
.tool-container .tool-items a[title="Haitian"],
a.single-language[title="Haitian"] span.size24 {
    background: url('../images/flags.png') -116px -119px no-repeat;
}
#flags.size24 a[title="Hausa"],
.tool-container .tool-items a[title="Hausa"],
a.single-language[title="Hausa"] span.size24 {
    background: url('../images/flags.png') -145px -119px no-repeat;
}
#flags.size24 a[title="Hawaiian"],
.tool-container .tool-items a[title="Hawaiian"],
a.single-language[title="Hawaiian"] span.size24 {
    background: url('../images/flags.png') -87px -467px no-repeat;
}
#flags.size24 a[title="Hebrew"],
.tool-container .tool-items a[title="Hebrew"],
a.single-language[title="Hebrew"] span.size24 {
    background: url('../images/flags.png') 0 -148px no-repeat;
}
#flags.size24 a[title="Hindi"],
.tool-container .tool-items a[title="Hindi"],
a.single-language[title="Hindi"] span.size24 {
    background: url('../images/flags.png') -29px -148px no-repeat;
}
#flags.size24 a[title="Hmong"],
.tool-container .tool-items a[title="Hmong"],
a.single-language[title="Hmong"] span.size24 {
    background: url('../images/flags.png') -58px -148px no-repeat;
}
#flags.size24 a[title="Hungarian"],
.tool-container .tool-items a[title="Hungarian"],
a.single-language[title="Hungarian"] span.size24 {
    background: url('../images/flags.png') -87px -148px no-repeat;
}
#flags.size24 a[title="Icelandic"],
.tool-container .tool-items a[title="Icelandic"],
a.single-language[title="Icelandic"] span.size24 {
    background: url('../images/flags.png') -116px -148px no-repeat;
}
#flags.size24 a[title="Igbo"],
.tool-container .tool-items a[title="Igbo"],
a.single-language[title="Igbo"] span.size24 {
    background: url('../images/flags.png') -145px -148px no-repeat;
}
#flags.size24 a[title="Indonesian"],
.tool-container .tool-items a[title="Indonesian"],
a.single-language[title="Indonesian"] span.size24 {
    background: url('../images/flags.png') 0 -177px no-repeat;
}
#flags.size24 a[title="Irish"],
.tool-container .tool-items a[title="Irish"],
a.single-language[title="Irish"] span.size24 {
    background: url('../images/flags.png') -29px -177px no-repeat;
}
#flags.size24 a[title="Italian"],
.tool-container .tool-items a[title="Italian"],
a.single-language[title="Italian"] span.size24 {
    background: url('../images/flags.png') -58px -177px no-repeat;
}
#flags.size24 a[title="Japanese"],
.tool-container .tool-items a[title="Japanese"],
a.single-language[title="Japanese"] span.size24 {
    background: url('../images/flags.png') -87px -177px no-repeat;
}
#flags.size24 a[title="Javanese"],
.tool-container .tool-items a[title="Javanese"],
a.single-language[title="Javanese"] span.size24 {
    background: url('../images/flags.png') -116px -177px no-repeat;
}
#flags.size24 a[title="Kannada"],
.tool-container .tool-items a[title="Kannada"],
a.single-language[title="Kannada"] span.size24 {
    background: url('../images/flags.png') -145px -177px no-repeat;
}
#flags.size24 a[title="Kazakh"],
.tool-container .tool-items a[title="Kazakh"],
a.single-language[title="Kazakh"] span.size24 {
    background: url('../images/flags.png') 0 -409px no-repeat;
}
#flags.size24 a[title="Khmer"],
.tool-container .tool-items a[title="Khmer"],
a.single-language[title="Khmer"] span.size24 {
    background: url('../images/flags.png') 0 -206px no-repeat;
}
#flags.size24 a[title="Korean"],
.tool-container .tool-items a[title="Korean"],
a.single-language[title="Korean"] span.size24 {
    background: url('../images/flags.png') -29px -206px no-repeat;
}
#flags.size24 a[title="Kurdish"],
.tool-container .tool-items a[title="Kurdish"],
a.single-language[title="Kurdish"] span.size24 {
    background: url('../images/flags.png') -116px -467px no-repeat;
}
#flags.size24 a[title="Kyrgyz"],
.tool-container .tool-items a[title="Kyrgyz"],
a.single-language[title="Kyrgyz"] span.size24 {
    background: url('../images/flags.png') -145px -467px no-repeat;
}
#flags.size24 a[title="Lao"],
.tool-container .tool-items a[title="Lao"],
a.single-language[title="Lao"] span.size24 {
    background: url('../images/flags.png') -58px -206px no-repeat;
}
#flags.size24 a[title="Latin"],
.tool-container .tool-items a[title="Latin"],
a.single-language[title="Latin"] span.size24 {
    background: url('../images/flags.png') -87px -206px no-repeat;
}
#flags.size24 a[title="Latvian"],
.tool-container .tool-items a[title="Latvian"],
a.single-language[title="Latvian"] span.size24 {
    background: url('../images/flags.png') -116px -206px no-repeat;
}
#flags.size24 a[title="Lithuanian"],
.tool-container .tool-items a[title="Lithuanian"],
a.single-language[title="Lithuanian"] span.size24 {
    background: url('../images/flags.png') -145px -206px no-repeat;
}
#flags.size24 a[title="Luxembourgish"],
.tool-container .tool-items a[title="Luxembourgish"],
a.single-language[title="Luxembourgish"] span.size24 {
    background: url('../images/flags.png') 0 -496px no-repeat;
}
#flags.size24 a[title="Macedonian"],
.tool-container .tool-items a[title="Macedonian"],
a.single-language[title="Macedonian"] span.size24 {
    background: url('../images/flags.png') 0 -235px no-repeat;
}
#flags.size24 a[title="Malagasy"],
.tool-container .tool-items a[title="Malagasy"],
a.single-language[title="Malagasy"] span.size24 {
    background: url('../images/flags.png') -58px -409px no-repeat;
}
#flags.size24 a[title="Malay"],
.tool-container .tool-items a[title="Malay"],
a.single-language[title="Malay"] span.size24 {
    background: url('../images/flags.png') -29px -235px no-repeat;
}
#flags.size24 a[title="Malayalam"],
.tool-container .tool-items a[title="Malayalam"],
a.single-language[title="Malayalam"] span.size24 {
    background: url('../images/flags.png') -116px -409px no-repeat;
}
#flags.size24 a[title="Maltese"],
.tool-container .tool-items a[title="Maltese"],
a.single-language[title="Maltese"] span.size24 {
    background: url('../images/flags.png') -58px -235px no-repeat;
}
#flags.size24 a[title="Maori"],
.tool-container .tool-items a[title="Maori"],
a.single-language[title="Maori"] span.size24 {
    background: url('../images/flags.png') -87px -235px no-repeat;
}
#flags.size24 a[title="Marathi"],
.tool-container .tool-items a[title="Marathi"],
a.single-language[title="Marathi"] span.size24 {
    background: url('../images/flags.png') -116px -235px no-repeat;
}
#flags.size24 a[title="Mongolian"],
.tool-container .tool-items a[title="Mongolian"],
a.single-language[title="Mongolian"] span.size24 {
    background: url('../images/flags.png') -145px -235px no-repeat;
}
#flags.size24 a[title="Myanmar (Burmese)"],
.tool-container .tool-items a[title="Myanmar (Burmese)"],
a.single-language[title="Myanmar (Burmese)"] span.size24 {
    background: url('../images/flags.png') -145px -409px no-repeat;
}
#flags.size24 a[title="Nepali"],
.tool-container .tool-items a[title="Nepali"],
a.single-language[title="Nepali"] span.size24 {
    background: url('../images/flags.png') 0 -264px no-repeat;
}
#flags.size24 a[title="Norwegian"],
.tool-container .tool-items a[title="Norwegian"],
a.single-language[title="Norwegian"] span.size24 {
    background: url('../images/flags.png') -29px -264px no-repeat;
}
#flags.size24 a[title="Pashto"],
.tool-container .tool-items a[title="Pashto"],
a.single-language[title="Pashto"] span.size24 {
    background: url('../images/flags.png') -29px -496px no-repeat;
}
#flags.size24 a[title="Persian"],
.tool-container .tool-items a[title="Persian"],
a.single-language[title="Persian"] span.size24 {
    background: url('../images/flags.png') -58px -264px no-repeat;
}
#flags.size24 a[title="Polish"],
.tool-container .tool-items a[title="Polish"],
a.single-language[title="Polish"] span.size24 {
    background: url('../images/flags.png') -87px -264px no-repeat;
}
#flags.size24 a[title="Portuguese"],
.tool-container .tool-items a[title="Portuguese"],
a.single-language[title="Portuguese"] span.size24 {
    background: url('../images/flags.png') -116px -264px no-repeat !important;
}
#flags.size24 a.brazil[title="Portuguese"],
.tool-container a.brazil[title="Portuguese"],
a.single-language.brazil[title="Portuguese"] span.size24 {
    background: url('../images/flags.png') -145px -438px no-repeat !important;
}
#flags.size24 a[title="Punjabi"],
.tool-container .tool-items a[title="Punjabi"],
a.single-language[title="Punjabi"] span.size24 {
    background: url('../images/flags.png') -145px -264px no-repeat;
}
#flags.size24 a[title="Romanian"],
.tool-container .tool-items a[title="Romanian"],
a.single-language[title="Romanian"] span.size24 {
    background: url('../images/flags.png') 0 -293px no-repeat;
}
#flags.size24 a[title="Russian"],
.tool-container .tool-items a[title="Russian"],
a.single-language[title="Russian"] span.size24 {
    background: url('../images/flags.png') -29px -293px no-repeat;
}
#flags.size24 a[title="Samoan"],
.tool-container .tool-items a[title="Samoan"],
a.single-language[title="Samoan"] span.size24 {
    background: url('../images/flags.png') -29px -467px no-repeat;
}
#flags.size24 a[title="Scots Gaelic"],
.tool-container .tool-items a[title="Scots Gaelic"],
a.single-language[title="Scots Gaelic"] span.size24 {
    background: url('../images/flags.png') -58px -467px no-repeat;
}
#flags.size24 a[title="Serbian"],
.tool-container .tool-items a[title="Serbian"],
a.single-language[title="Serbian"] span.size24 {
    background: url('../images/flags.png') -58px -293px no-repeat;
}
#flags.size24 a[title="Sesotho"],
.tool-container .tool-items a[title="Sesotho"],
a.single-language[title="Sesotho"] span.size24 {
    background: url('../images/flags.png') -29px -409px no-repeat;
}
#flags.size24 a[title="Shona"],
.tool-container .tool-items a[title="Shona"],
a.single-language[title="Shona"] span.size24 {
    background: url('../images/flags.png') -58px -496px no-repeat;
}
#flags.size24 a[title="Sindhi"],
.tool-container .tool-items a[title="Sindhi"],
a.single-language[title="Sindhi"] span.size24 {
    background: url('../images/flags.png') -145px -351px no-repeat;
}
#flags.size24 a[title="Sinhala"],
.tool-container .tool-items a[title="Sinhala"],
a.single-language[title="Sinhala"] span.size24 {
    background: url('../images/flags.png') 0px -438px no-repeat;
}
#flags.size24 a[title="Slovak"],
.tool-container .tool-items a[title="Slovak"],
a.single-language[title="Slovak"] span.size24 {
    background: url('../images/flags.png') -87px -293px no-repeat;
}
#flags.size24 a[title="Slovenian"],
.tool-container .tool-items a[title="Slovenian"],
a.single-language[title="Slovenian"] span.size24 {
    background: url('../images/flags.png') -116px -293px no-repeat;
}
#flags.size24 a[title="Somali"],
.tool-container .tool-items a[title="Somali"],
a.single-language[title="Somali"] span.size24 {
    background: url('../images/flags.png') -145px -293px no-repeat;
}
#flags.size24 a[title="Spanish"],
.tool-container .tool-items a[title="Spanish"],
a.single-language[title="Spanish"] span.size24 {
    background: url('../images/flags.png') 0 -322px no-repeat;
}
#flags.size24 a.mexico[title="Spanish"],
.tool-container a.mexico[title="Spanish"],
a.single-language.mexico[title="Spanish"] span.size24 {
    background: url('../images/flags.png') -116px -438px no-repeat !important;
}
#flags.size24 a[title="Sundanese"],
.tool-container .tool-items a[title="Sundanese"],
a.single-language[title="Sundanese"] span.size24 {
    background: url('../images/flags.png') -145px -380px no-repeat;
}
#flags.size24 a[title="Swahili"],
.tool-container .tool-items a[title="Swahili"],
a.single-language[title="Swahili"] span.size24 {
    background: url('../images/flags.png') -29px -322px no-repeat;
}
#flags.size24 a[title="Swedish"],
.tool-container .tool-items a[title="Swedish"],
a.single-language[title="Swedish"] span.size24 {
    background: url('../images/flags.png') -58px -322px no-repeat;
}
#flags.size24 a[title="Tajik"],
.tool-container .tool-items a[title="Tajik"],
a.single-language[title="Tajik"] span.size24 {
    background: url('../images/flags.png') -29px -438px no-repeat;
}
#flags.size24 a[title="Tamil"],
.tool-container .tool-items a[title="Tamil"],
a.single-language[title="Tamil"] span.size24 {
    background: url('../images/flags.png') -87px -322px no-repeat;
}
#flags.size24 a[title="Telugu"],
.tool-container .tool-items a[title="Telugu"],
a.single-language[title="Telugu"] span.size24 {
    background: url('../images/flags.png') -116px -322px no-repeat;
}
#flags.size24 a[title="Thai"],
.tool-container .tool-items a[title="Thai"],
a.single-language[title="Thai"] span.size24 {
    background: url('../images/flags.png') -145px -322px no-repeat;
}
#flags.size24 a[title="Turkish"],
.tool-container .tool-items a[title="Turkish"],
a.single-language[title="Turkish"] span.size24 {
    background: url('../images/flags.png') -29px -351px no-repeat;
}
#flags.size24 a[title="Ukrainian"],
.tool-container .tool-items a[title="Ukrainian"],
a.single-language[title="Ukrainian"] span.size24 {
    background: url('../images/flags.png') -58px -351px no-repeat;
}
#flags.size24 a[title="Urdu"],
.tool-container .tool-items a[title="Urdu"],
a.single-language[title="Urdu"] span.size24 {
    background: url('../images/flags.png') -145px -351px no-repeat;
}
#flags.size24 a[title="Uzbek"],
.tool-container .tool-items a[title="Uzbek"],
a.single-language[title="Uzbek"] span.size24 {
    background: url('../images/flags.png') -58px -438px no-repeat;
}
#flags.size24 a[title="Vietnamese"],
.tool-container .tool-items a[title="Vietnamese"],
a.single-language[title="Vietnamese"] span.size24 {
    background: url('../images/flags.png') 0 -380px no-repeat;
}
#flags.size24 a[title="Welsh"],
.tool-container .tool-items a[title="Welsh"],
a.single-language[title="Welsh"] span.size24 {
    background: url('../images/flags.png') -29px -380px no-repeat;
}
#flags.size24 a[title="Xhosa"],
.tool-container .tool-items a[title="Xhosa"],
a.single-language[title="Xhosa"] span.size24 {
    background: url('../images/flags.png') 0 -3px no-repeat;
}
#flags.size24 a[title="Yiddish"],
.tool-container .tool-items a[title="Yiddish"],
a.single-language[title="Yiddish"] span.size24 {
    background: url('../images/flags.png') -58px -380px no-repeat;
}
#flags.size24 a[title="Yoruba"],
.tool-container .tool-items a[title="Yoruba"],
a.single-language[title="Yoruba"] span.size24 {
    background: url('../images/flags.png') -87px -380px no-repeat;
}
#flags.size24 a[title="Zulu"],
.tool-container .tool-items a[title="Zulu"],
a.single-language[title="Zulu"] span.size24 {
    background: url('../images/flags.png') -116px -380px no-repeat;
}

.glt-controls {
    margin-bottom: 15px;
    background: #f0f0f0;
    padding: 10px;
}

/* Some Dashboard mobile styles */

@media only screen and (max-width:1023px) {
  .metabox-holder {
    float:none !important;
    width:100% !important;
  }
  .flagdisplay {
    float:none !important;
    width:100% !important;
  }
  .flagdisplay div {
    margin-bottom:10px;
  }
} /* End 1023px */PK%>�[�rI�
widget.phpnu�[���<?php
class glt_widget extends WP_Widget {
    function __construct() {
        parent::__construct(
            'glt_widget', __('Google Language Translator', 'text_domain'), array( 'description' => __( 'Add the Google Language Translator website tool.', 'text_domain' ), )
        );
    }

    public function widget( $args, $instance ) {
        $title = apply_filters( 'widget_title', $instance['title'] );
        echo $args['before_widget'];
        if ( ! empty( $title ) )
            echo $args['before_title'] . $title . $args['after_title'];
        echo do_shortcode('[google-translator]');
        echo $args['after_widget'];
    }

    public function form( $instance ) {
        if ( isset( $instance[ 'title' ] ) ) {
            $title = $instance[ 'title' ];
        } else {
            $title = __( 'Translate:', 'text_domain' );
        } ?>

        <p><label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label><input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>"></p>
        <?php
    }

    public function update( $new_instance, $old_instance ) {
        $instance = array();
        $instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
        return $instance;
    }
} // class glt_widget

function register_glt_widget() {
    register_widget( 'glt_widget' );
}

add_action( 'widgets_init', 'register_glt_widget' );PK%>�[6Q�>�>�images/flags20.pngnu�[����PNG


IHDR�
�MbKGD�������	pHYs��tIME�!�B_ IDATx��y�U���>��n�t:;	���/aS40��E�,nEp��7�;�73�/�3Ȍ�:������D�	�}�N�w���Gս}��K��3�z|��[��s�s��S��K�����l:��R���Z*��R����A6����7�~���ް�}�������|�֭�X��`�0^�����Z�qU��Cg/z��#:(t<b����c��\��Q}N�̢Io9j!�E��>ZCE�?�Y��ߍ��ɓ�4i�Bpڙ�e!����kGo��M��]qP���Lbb�J�1Q;��w'�ۓM���\���h��<�;�`���{=~?��{Oh%Њ5���k��b�^���0!�vm��'��c>�e�u��^�Ӿ]Zk�5Hb|�y�l�e��E-J�Q���y�誇����r(�Ek�A�6�V
1k-X�
B��a�6���{�K�+�F�z�39rn��v�J�(���A�X,�Z|�>���s���_&n��V*8�<*�Ce2�58N�3����>�y�j��P`�=�$l�u�y
Q�]����
��G�!D"+�V�BC5)(�'^H������K)�峡Oq�֐����p4J;�͚��k���0��~7å�*�]g���{Y���T{���K�Wfk�^߲�s��ǝ�ٻ��
?�,�0c�ѷu	ծn�wt��{F���nr���F�	hU�����Q��OƏ�gC2����^�3�Ci�+	�?k��e�Mi�A� V�趲�cs"�Ag����Hg'����;q"�u�������!�Z$M�Y�
"��.���N��ջ���fÃY�ӇX޷������ϴ]{}t헼�]_:s"�Z�ﲼw#t�w�>�"�t|�l�'�6|4�	�����U��7_A�R���;�֑��콚R	��(���A���3cP��A�32-LU.���3�_��J4��[��x⣬0.7�c�C�ɲ���7��|�&��o'��+]�6�
=��ֻAS�e�:@�E�<P���*
�@��&������VEiM�C㞵��������͝||S��^7�
����\��ȥk�(��
�Gµ�<q"�3�#�+\�B�T�ge���/�\��E>{|�e���r+�n]�Ϳ�6�s&g��w6��t��ӓ�`�@R�x�?]����d� �:(�HP"����:Ï�^�Ɏa�;_��i���k�{�^��=���	��C� ���Y�Ԗ������=�0��T��c��Zd��ġ��Ea<���ܽ�Ѩ��E�������G=愭�y��O�(�b��4�
Y��f`�z�]{���lc!	��`��=�,?I8��ݻhEq��zY3)�S3�wx�����2%�q7S�Y���„J�?�DZ{}�
>�H�p��t[���w�%~�n��e����mG�bw��}�_NՇ��B˒/'��b��x{a�b��3a�����5��!p2��E_Ĥ�S)e�e�k9$?����|� �����]�hˎ�x�-w�挡��8�0��^d��y"n}i(�L�JI=kT*d	n"���u;=�G��߷�"�BZ>v5���`VoB�qt����Bl�o}%L_�Rb�}}���G��Q�ʬ�?^0�����a�qyS�7l��cO�%k��~=$[�"(�J�¿�U�g3����p��.>��8��?�דh*c���r%Ѫ7J�4�_��W(���;ʡ/ЄYM��(]E�J~�
��&qX�v;�;9Vun���Ū��(����\+k;7�ـ�_\T(43o�J~<��ơ�ĄoQ* �S�R-
����c3.��A�#��Kȿ�bJ��5���0�đ����};�ʷ3��'���8Q��=��\t�ǯ������&9�C�Ze���p�����Q'V�%-v�<�1�k�0X"�ŪZ#��Js�v��XFB=��3MgP�D�L}�f¦Dj�A;"��YҾ�(4���Ac��D'�I�x�;3�t����8oW�?�7�4!���,
����X�����֡�%�g�a���Z[�Rj�PG;���9�iww7-y�G.�s�Ey��}�h�-�@�(�=�,AH3���8ݣհ±"��{8Y9�+ޚ�H�
�]������\T��i������S;�k�!)��܃9���؏n"��1�i��~w]�����n�)�bVl���(��A�T��%i�x��w�����U��T
zs����eXs����k8{K�x��l��*Ž=�C��#�3��9��[;���]�(
��8�0�m��;y����Z��j�*.���ɺ>0J#q�B�0`��y�*�3�ޑkc�W�K����	6�hm�����?�fRCS�-|��������w-%���ԕ45ً(�@5�U[z��K	e��X�J��ס���{��`-�3/#�
8.(��kQ�M�$��61J!
����y>���t��S��e�p��C;��7Mb�a&���G��D�];�g]������ �ի���b[��
g�:��\�a:�V��'��'��ł���v$�&4e�YS+.sT�e�Jo-�ƺp��B�X�F�6���`��V�a"J���tz����m�6�D,"�4�
�ya�
��vG+qN�t�%��M��h�L�g��y_}4�u���}>�N�:b���X�o(mm�[�$��!F�՚���ݧ��*��O����>�����cv��u��=��B��{k���u�f'�僫��9o!Z�̝q4�{��#����=��7Ï#� AS+m��J�n$�l-��p�3A8�:x�O��A^��/Mx�?�K'
Vv�g���g���i-1a����6�@�����6�U�}4��H�"A3i�D��.�D{�	7P�-`��7I>�o(8f,�=�bNsފN.Z_��UB�0^݇��D�����[������#�\��ț���!D�Lq<��6��8�|�p���xx�F��W'4�IoJX���AH�"�N�:�P)���V����D�A)�Y
Ycm�9�] A@X��A�$�/��BYPF�wsd�'�R
Q:�IU��vV�	��-;?�bG9�"��1��"�ͣ�,����qO=��bC�	����W�U��p�v֦�P�g3q;]�R8J��9 ���P,�	�v����N��e�
���i(���=�O<��x�A����P����!��a�N���r����6~x�X�~΅���uZ=��ǿ�w�9��-]|��ż���d[$b�e���#-��5�8��:�Z�%D��W�=�Q[��B��8�dO�8.��F9J�
	�${�P"�F��A��㰭�������7�jϳX�0�@h�L.L$R�q(t�Q;u@�A�p�N�K��&j�Iy��X�ͼ����kQ�
���9�p�#ef�*p�qcy��	�z�Kmr0�cE`�X;�	���g����n�z��$[ˤ>S���Ti!^j�>��Z*��RKE�Z*��RKE�Zj�HSKE�Zj�HSKE�Zj�HSK-ij�HSK��Z�)��w͢�9y!k֑;�8��5dN8���g�
���vF?�'�L�:��E�枼0.���0᳝���Oȯ��F�9����>z�G>�v����|�G�:��X��e��Z0�������,��G�t�]��q��h�G��l��4�ԟj?��SF�V�<<%TJt�]��(�ο�=;Z;�]z͢J��Ka�T\���Yj�86�5�5��q ��:�=���v��p�~T��O?�1�jTKb���P-C�l����P-w�y󩘀|&K.�%�81TK��i���}�1x�O5�)8�y�D>�^�v�\r��j�	<��������V�V�yP�
�w���c��늿�ǿx<�Ok�{�GR���D�z��$>���y}��Q�FRÇx�w_N���g:��?=��ϱfk	�5WG�Z�8� i6��2�Z<?��r�{���%�bI�����R@v�BZ��=��yf��!�8���P�b�n�롳Z�.�JtX��	31?�u;�&:xogQwvW(W
��w���ml��6M���d��]JT���Ybæ=�|A���u�%�`�Zk)��I|��K��*��~�M����O�$l �ڣ�`%W�{);:���&^\ۓ�D*����V�u[����?�2Lg'n�X��3G::���z^��׊`��j	��0�p�'
g���4KZ5�Y=�]�b����X)�z]=���'y�I���{#?~`�~v�:k�ȳR�P���5�5�[���`�&��.����^�2�Zv�{�u��sŐA��sR�E%p�LDƼP�8����;�g�w�7�so%AЉ�W,�}[����=踰�n܂B�{	zz�����!�������H:�>�#�
���=
^���aY����O�)&'���sO/�`E�|�n��Y� �:�"�}�+޸��9H�F��s$�b�6�^�N6�R�a�H8aHa����%��\��e�b,�A
�A���9�YF�D"�J\.�2A;8�H�3n���/�����l�U���)��b0�o�sR? ��#s���͸����i'�������Ոl��''��rqt��}v�DZe[_���^�����T���?(c���z�*�\@�W��qk3mc���p�<��|�}�dڸ�
�j�m|����Ŏm|k�����cҁ��

KV-Mt��OZ�;k��6g-{�M4�깳ى����N��y��Ɗ�En��Vn���a�$:�⺄�8(��+�����<h�hj�ʓ���K^�M$cG�-
��O�@��nC���m�#���L}N)Ŧ����V��/��Yˍ_.����C�z�]�[(�=��	�|�:�;7�5I"m��B���~�a��W(�x~�'�}	E���ː�U|<Z$��Ս��6�?����y3�]9�;~�����A�Ԣ$:��F��WԊ������ ��i!\5�5�W�
��Dlc���cю�
"Bh�T�yyU;�)��|�Wq۵?gZ[O�9U�1���2�9z@.�8��_��v���`����f�ek�Uя0��6��9�u����;v���Q��gCVl[ύ��4��'��q�/.%s��H�D�ى�Օhu/@���R�o��S崾�#���f�gc'�J�BO_T�k&^����s�<���\��*��B߼�g>���-k��MD��J)�L��]D���|��2�6^'5�Zb��lF�}];'{��'T���n�9e��Ev~�a*K_0����E���⵶��AV��b�\���it4��8�
�g�d�
M�Ư_9D񍮡���vH� ��F�?�1�)dv���t�U�R�ug7/���]�w���C_{'߿�N��6�F�H���Vm��w���Vw�7f�g����|0�q�C�|^�
�J������V�4�U�@�{P�r��@��
;��s��Q�F�)4@7`��I���2z�dl���2cL��L�UbA���P�!"Q���?�����3�d����ge�u�#��1�7���jS��]p
[wts��g�YG��/]ė����<�<7_��:<,\ͤa����;���I����;0�%�/�O�p���(�Ae�#nhe��,��'Fo�����V�n>����i���x��(�F��&�{<�7������2Y�te���}V�"�ib�<���f��k�Q��f���Q�������x߹K��F�h"|�fSMF��������c�����2����XL���
~�Ӹ���)=�,������g1]=	f��t
"u�:�M�
Ԙ1(��y���A�j�І&�}�~5�";�$P�8�(�|6K�uɸ<Li��x<!��C��%�0��y�dP-���+�,�\�l�%�q�[��ە�����[�u�~��;xd����B5fS
�"P�l.��dq21���@^��+Vc0��
|ϋ�:�3A��q`N�
lJ���%��E*��BY��ɠ\wڔ(?��@����TY��+��7�;�,��d.�G��U���u'_YE�+��� T˥���v�_��ZI���0���Ks�N	�5~��+#;]S�ͮ�[����Gᖯ�'�pr�d[���'ݿA�~��h��q�%drN"���ž���I�������߁�����R`�@�Jk�B
,y=D
�:�>-)�,��^;K��O-ij��"M-ij��"M-�T���"M-�T���"M-�T�����4����,LJ�~ZZNt�e/��[/p�1��g
B���S��U
��nK�Z\.�>�m[zU�����#]t��iNb���F�Q�d]&�!L�����8"T��momk��u��3�0�up]�$�e�8ވA���'��L�.�[����ڀޑ|���=찅��9JG5����H<�̨���\��]�plK�5��p�q�n8�؅��V��o�G��ذ�H�+B{y��_���G.���#:�V˥���ړ�&~��O/,��+މ��8�N&�r��	i吙�
�i��,�$0���<l.���>�ۻ%�R�8o|�1tvzL�X�S&�,[�� ��3h&1'�k)�"a��}�ĉt,_����Q_�lE��vt5ng.n��묆��D�/���y�|��?���ز��}f}/o}��:���a��+ފ��\�ˢ�̬Y�u���:�Fp6���c=�0�e�/�O���o��n.��ˡ\��ꃡ�wQ�!��z�s<�_�}�E�uw꠳�ݍ1��t�R�p���W]�GTi}1�m<}��3�
|_ut�ر����=�c��R��Y��N�b�V`��>��(�x�?���t�с��4DR��Cag����
�Of��n�:aN����; .m[}�k�G���[��u���<̕���g��t��2��m:�P�}�BT�2�7/.!�El�`ƵRڴ%��JW��vtb{z�2�dUl�u�8�n�T�9`�6�"�S�ȝ��;r(%T�(�@�TT����%�S*6ł���={<G5���#�p�x�.�`�z�P�:�H�d��!kɆ3S*�<���֎���3�W+(4�q}�0f��m쩼k�,�`J��H-e��g��l�.>tՙ�k�'�`�&6�R���Aj<�����/"�R��jq!(�P����G�����2�۽=Vh=' ����P�P|8���IW�GI�)���@�@a���d�*�vwW��P���DU��R�޽UJ%�@��>"m�������Y椓Ȝy&�87����wvu1���-�0�?�s����v��l �őH���g-_�Z�K�soO�>U�'^���+���g��Oe���DQ4C���/z�����ܰV�n�����"�}}j�G�q'τ�g�s��ES"���!�����Ǿ"
K�T;��>�~a�ޞ,�	�pd����:o�qQ�LE3���K/�Z��3���|6DĐ��-����c3��>3'�D��K��ru�m�{���`��mk�/�hŘ)�_~y5�y��1#�H��X��Qx�Aq���䲍�v�eL�8�Pk���"u���_o�������m�Fpc��Ⱦ�2�~"�N���!�6iZc���<f>m�
��2B�Y!ܣQ(�C6�r4�[?��)eQ�w䡒2����/�Z���w����T0��im�B���d�0�v��:�x�O�	��f܍7��/�=�T2��_G-�5#�r�C�HJC��V���_~���9\��cG\�7�s�v&=����Hj��:�C�#��'b���>@��'3(WP[�U�e6!��L6�n��H2��I��8O8�H䳶_���	��:5��:��� {�i8S������կR}�I����1�L���H� cЮ�#+sKS.��/��g�i����5l^������Z3�|�|X8��=1DW�7f$Y��� IDAT�QU{X��W/�,j�����@��n��+b$J���$�	�`H~}ᬹ��k�R������;pg�b�
�c��AS�枾28.�/:��A��(��܀�v&�[��лr+��x��E���5���,+�Rٳ;�`�o��jܷ#ibT���f��q���>H�x;H�-��Q͊D{rq�B6څP
[P���������j��UOE(�ZC�6��g*�%�P�i��\��/�FIS��tnK<�c"�R�d4�-O2��=�dԷ��1;Ho�)�Ĉ���Ɇ��[P��i������]�Qh�}��_X�n�t�oZ�&)C�����>L�EL��:t7�"ф�Tr�S�YC�M,���D�������;9���\t�TV���r�7��W����
�sI��^MS$�0�t4�?���n����0	��,ky�	Cl�?W�=��&I�~}D0�w##��`TJ71/6�A,b
2�T�[߈M��T}#6�G|�Hj� ���t����`���CҔ�;��ȿ�w�hy/��K4�БH�"�~��-s����ę����pT�M��$�`D�WG��p����@"_��&�6�Pԭ*9�z��!���&=�T�b����l�.T��%6�j��x�辫v���w����L&�j	6��Y{�L�1� �Α�E�X�Ϲd�.�Ei��z�LbZ`h,A�����e6�ϩA���|������݊u���:H%5��	�ˬ��$�i4� id38�[E�:dʐ�c�>�|�Ð�zB������K�u��v蝵��� 0A�c�.R�q���p�B��6~�%d��+�ur�	�Z����f�p2:z���_46�(�G���qkq��Mp[�u
N	����%>L����a.��v��p��i��
�^呰o�]�l��Z2N��+���U�*��J�
7F���v�� ��VdH
fsp����Z�x*f�$D���E�@�˦:��+5�[�P�z
/�U�X���f�yU�����-�ڷ69�����n>E���A�Fy�%�����hg��<��2�la�XKj��,��goi�Sj�HSK-ij�HSK-ij��"M-ij��"M-ij��"M-�T�������]��뮽v�P�z�׹�xOsg~�p5��M���,�A��qF}��΄��E=A���G�9��kU�.X�]
�1Z+�K�ZmL��_�8�ϛ>�E7�x��Z�Z
Xv�-��_�~��,�|�e�&��օ�5n�o?5|
}�'?UF��g;����TW�gW,X��g۲�1�����
v����y���
n���w�qx��a�]����kQz����s�P1�|�%��d�V�(�yU����Ăo,^`�!G��/&�y�L������9�l-��&��>u�:�>m��~h��'�9�=�?�ȧ5�=��#������/�ъY1Dl8������J(�.����(���ޅ�g<�Ͳ��ɀeXqǝq�\��Y���ÿLØ�Ӵ@/^\��5�/�o>�Ƹc��w/��_Lt��D�G��,Vu{�O��P*P�;�I��abNX��'�O�ڣ�`%W�{);:���&^\ۃ؄>������M�3m���V����Z���ξ�n��Y2���}�]��±���nN�s�VzK9�W��~|q{/���9�#B��8��IV��/�lc�F~��ܱ���8�+[��]��Z�9����ڙ�-��狞�cV��&E
"�"6y�3�@1����D�Y����ν��C(��ק�8G���p�߇�`�&�b����u6�� �+b�ǖ�������޿�o�8޼���C�_�1��j-���q��;���`v�l��Ρ�+�����}Z3��@)�]"K����W���ra��k8����$�Ja�2A;8�H�3n���/�����l�Ub�秥��������u��M�=Ũ�j��E�f�e��[B��зjTa�'oq�j�H3��_�D.�>��)�Mݬ�@�Ԋ]��mv�fO����rNy���u�V��y	���Nk���F'#��x�+�K.�=��y�CF�Q�F��R�|Ib�c�NlϽQ��R�r�;�F�~+6���kX��k@�T
(�DI�z�e�oF,���"
������ҟf(1,yii�H�S�":S��k�6��>,��w�"4[�pH!�Gge��	<����<���g�f�|.)îj�CJ's��$)��G��z^��O-L�fH�B9�4��DV*�x��̀�D���ː�U|<�l��Bu#������?o��oW���c{{yP4�(	��C�j�2�0�H���T
-u E��H��T��H�>���l�F��c9�K���
,�<�U{]Δ>��t;7�z��u�޵�N��
�hkr,��?j�A7����#M_Co��	PVE?*B�hk�lDqNyGo�>��]ѱ����!+����dN�v::
��\jj�9�#Lb�*��)A�U�"�߉˚�ILI��e�3w_�k�Z�EX����'���՝<ՉLȻ��TB��
ļ����~mw�E�X��q�ҟP�S���1X�P�1TW����,}y�(�a^J{�%�q��S(lA�����g�H�U�TX�z5�a��-V�1�9�='
z{BҌEx�upSrv���3>E�|2K��56`��տ[˯�v��3b�|C���U�3��~�%��jn��V�|�m��
�V��Z���/����h{�[��(��a�?���=���i�x�FR�wm\8�ij��x�$9Bh�*�Y��0�5��!Q(d����?�V�Wfs�qe�V��wp��Xq����q�ɦr�1�7���M姵;1�z�ό�>�鈛Z��7�{�Q�Cߍi��:T;�	G�~����;
�5h@K1'����J�p:*=���l�>�1��d*����j�+��(Vn�&�c|���eδ"i�������x�uF�~�,�^<k+�=O�o"���ij��z��'��t�$��o�:\;k��#������>lNL�S	W�~Po��}E��}#V~�b��s�f3��<���?��m�e�R�Ǿ�"�:��K[v61ݿ�9��S��d�Yt̄j�+3��'���~p�t%VKl���T?��7�A��)
�߲�	ª�i	�Lõs�1�܆=P� �ѶU>됭��F	j��X��& ģ��0��7��p��i����쨀�m[z�Ǝ�C���_�5��5۶m��$Ѵ1O����d2�|�w�~z{�d�W�x#�`s�Ud��+jg�g��A�v��C��ā�&�(��_��P��o�Q����r��i|Ͻi��<�g^����[�!�4`Y�3���g��T�\:�o}}�$����gʂJ����'�SKE�Zj�HSKE�Zj�HSK-ij�HSK-ij�HSK-ij��"M-ij�\�?5T��l����o�W՚<yѤI��ƬY�6��y�&Mz��h|*~�E𰋿?��eЏ�}�::���c�4�腮V8:z��V*#����B�9����Y�.�4��ĵMͼ�e��e�<��}�ڢI睲��cEI[0�e���EubJ����?�=X6T���ox���~C��]�`�J�|>O.�#��ԟ\w�6�q0����yT�U
���sOB��.Xp��!��0{�����"FѠ��_wm,�o�j5�Pp�����"�s/�'�C�Y�v��3��!�@� 6DBx�*��'�O�Ϋ�H�*�sr9���f�
`6/���{~�T2�"�S��L���!���#B�����m�T���p�����t0Tk�
�`�7o�?�SO
<�-����e��[�P��N���NgggS����"L�8�u��%�Y���E:;�>�~G������
� �?��7��сe�m+]H؇�"hs\�ȷ�J�#<�����V��	Q�(������kb�˺��|�zu{��N����|a��z�Xab��u{��}�&�����l��ff����7DC���z>����ߺ�I��E<�{E"-�� ,=<ϠTu�������#�5��GqM�T�� ��4�b����492��l�&HE��g#�F�ntH��Ȣx0��ށ���5���o�N�OŤw]�_��3��2��q��'�<&�㲦�Z�oޱG��.�%��>2�ws�u������k���Ј?��;ꟹ��;G���T���	!i�!�z:n���T��"y����	��r�@�K�r�~�=�V%���n?f���'L��'"�ZK&�ܼ���pK__҇�#��ۉ8*J���H��=�b�Z��0�E���b�.%�ڀ��>=���;��k�R��>��R�%K��r�O��G��D��R�P�w~�E�-�P����쳿]��O���m���<^~�8�;t�2�X̬y��\=߯Y���C��2��`Ϛ2�3���s��4���ܖH�=}��G�Z�5k�:��=x7���0��|�;/7�*����"BO����>���D#�QwWJ1�-:�
�0�0��D5[iǼ�>A(�<D��W���?`�6�Hkyi�@
k�Y�vt��0!�c�m�Z�sgժ����'@��ǔ= 7�ZƑ��pt�G/��7O��3ls"J~1z�H:�.���T;L$�V�ظ�Z*i�G5[;G3"{�}FS�Ek�OCJ�9��^����z��6`��ՉEZۙ���/�h�j�5�"����X��x���2�s/9�D�]
����|�
��^g��9o:���SV
��YÊ�:nHxA#����u��ʈ`�(���p�+͎�ޠ�qwp|vw�㦫�H��JMz������{��eش��3Θ�R�M�����Y�n0�$�b
�z�PJ�e���;62��Y�aZY&�ˋ�'��ӟ�V�'���-!��G���9iW��!3�f�\}5r��|��4}�3�[��J�Z�T��U� 	<���Cl.����vI�� �
�GG?���p��g�r�M�"⾐���:np$�f\0��+�p�3ik��#��e|̠�m/��
��v3�7� ��(���A?JT|#��I�Fh�o��8��)0aD���{�����Z+_�NZ��>�����-?�Nx�����E�,c��xE�.B�&cI�ݲe{��מ�u�1
��L�ZC��ܙ���?���
d��?Ζ?%@qg)q$5�HA
�e�~�C�~x�4h����h��,������F���ȑs҆)i���$�v~�[L��C�ƫ��s/E����L���MA�W�8��/Jv��E.��oQ�q]�;Z�'ѝ5��`�?�rk�
���U�>iy� �����m3.�w94,��}�>�����h0�Ap��>��8�W3��k��;lH-�?�^xh��Z"c~���<Zgq��B�^@6���k����*�
"N�<1��G�.��ķ�U��N+j���!
�Mѥ
%U:�͑u�d�Zi��n���X������{ ���8�X P��g��,����8�Ft�f3A����E��I�S��
+��,Y7C�uG�Q3�0� �Àj�!N���tTx�`"s�z%P-�q��^�u�/t�RA2x���
c���Ɇ�D�zu'[��1�(��rM1�a��u\��<�Q�_x�0Q��"k�t6$	[�q��4�Rh	�~^����ќ"M��&ng�lPZ@WT5z���V���\���(�a6GmC,��>��}����矽�X�ڟ��O槖�4��R����4��R���Z*��R���Z*��R���Z*��RKE�Z*��R;��X6��`�y]������Ph}�FEj(�
"��|�g��x������ď�_����aǾeѤ�/X���0;���;�t�9���6T�6bS".���o,E��,; /��^�ϭ��F�'G�N��nmEe2��Ez��r����g7~L���y�誇����r(׍���j$M����5Hb<S���/�{_�v"�]p�YT|˲ѫ�g͚Řk�f�Y�t����h%�3�<?�e5��DŽ>_e`�7�ۤ�+������LlU|� �䅣��{p��|h��u8�WI�
��
���b���9ᦸ�MF�Y���~G'��7�-`@a��͌
ᬀ�GφM����S��]e:��8��wn�e<�t�(�S�ؚa��=�|��2�b9��kbi^1"�bYHZ-v0@^p]K6���iD<��p��
��5���������f*�1���Ee�M��Ƹ3�RSմŲ��ۆ�j�GD�pd�b)���n���k/=�/~��z=�P�K��7�:a��V���=Ν��M�t>���l���SE�e�?E��[�^�L'��Aӻ�E*	��s<��� �QѝjN�X�xa�xe�_J4�w��C4F0���c=����Xf�yi{u�e
9�`��s+{�����-F#��w1}j���Q�.�u��K���`��j�ej�Q*���G]�Q	#�;T��z�2O�s��������Is~cY�c����.;���%������0���_>���6��ο#�xu�e#@�ƏuX���W��Dpӿ��/Nb��]@^�x �?���ƞr2�Y���2�1c�`}"`�~�3i?5�ή���u[v�%B��Yj���1r*�|`��Չ��,�%b��=��q��J�Z�U��0�y���X�_����*�B��K2t�BޅR���ۙt��Lhlj��hW�#�i��ɫ,��uW��<|�s�rB��s+�8��6�V�
�: /CT�>ԧ[���	a�X:�˞=[a�ҥ�t)�Bc�D��v6���L;�_q3n��B����5\ʱ��&��J�By��}_�1����F�j�9gg�ǧ�܀1��G�#l$���j�Wx5l� k/��&��10����j�
�Hb�޽�1~�������J�� ��г}O2���W��t�\ź���Q�p��%�Z�!={�%���)�Lk�Ϩ��E�0C��35�7���p�y¸,���������7��o7�
�Sx�1��6�Іy%�C�j��C$�@5�Q&FƏ$�(�S&�o����n'?Y�t���&	��j���z���/�k
�
̘+����(ҝ{�od�"UV�a�KJC1�=&�*L^/�&���5jߎ�M1�Đg]��ab���׳�	H����e��i���$�͒�f��R��,
|��}6l��.O"������p2�W��yiw�����;����}���h�T����b���=	�2��Q�3C�A�5#��F�Y3�|�%�uɸ."�3u
�M;p��ZB+A��T�Ap�J��`�����˳�Td�-&>OC&E��U����[���$<�b��$��9�k�%:Ã�F��:t�4A���7����a�;�u�D(h�`s�d>S`Y��>S`Y����g
,K����'�SKE�Zj�HSKE�Zj�HSK-ij�HSK-ij�HSK-ij��"M-ij�\�?uP�Z���h�9��3����^r��ɷ�cc�������ϯ��EsM��8�0�:T��{��7|�D�&����zt0�A����y�j�uײ�@���� `��jYq̽�����\�r�J��₿F���Ư:V/�'�ϳ.n�jeA���Dj����<�������;��y��=R:���U�#�/���.҃�*��r7�a)꼤�i;^���+��Dʻ�5�3h�gq��|,�Z�޴%�� t��u�r���j���(�,!i��z�~ּ�zS�}�e��W�$@�@����k\GF�b�>m쳡�G�i}�>έR*'٠s7�v����_QY���13��y�gM��5�&��q=�u��
Pݹ�l��$:�@H�d�R IDAT�޾��;���"�M�Ñ�m���9Q9z_E�Ž��AP-5�O��Xo�!���&%���!�����>��e���Fu��g{��c�/e�ܓ�����g�Q4�K��^��z0[2�H����F�Ou���8L&��j)i$�ڑ#��R�T��0F5Ց�P���I|�}}.^ ��~܆�~��eC�?�Gƞu*/��0��q=��>��
Jj�+�J�@є`J~�qTK�+�G5��	hBɯ��l1#�+�zl��gÉt0��w�J���5��{Z��A������Wl�j_�Nx���ύ�'M��W�U�˗�E%�Ic�q�A	�#��5�)�F>�|�P�<��hjWu��1���~(`�%Ǵ���Xv0�����W�1i�V*���A�Hte���g$�5�M�����{��夥�~�!MMHݕ>�~Bw����7΃��I3�6s�!�\?�ajlK]��j]OU���!Ԡ�w�7�IW7�˚y��!�!��)�&�M�bh"��P--1�T����C�h�mj��o�y��c���ʽ�]k��&3If&�S�z!D �"�����Wl�� X����׎�Ң(�"] !H����!���vYk��}Μɴ}^�~>��ϙ#g�笵�Ye��h~���]oVҦ��{E�w�o���&�
X6�(b7�e�Ɋ�*��
G.�A�U�I��j��`��Z~��+cPFG�PT��}�0|��=���bc�f�W?�U?��xtw����.�R�PZp���!z$
`U`�֣��u�����Uq���cɈ+
����1��T5&�n���P��bܝj&9���J�qdЀw�nߓ��oi�ݹ����e��)���pe��C?Ӯ��=���:E�1iA��@�P-�dTk�'�v�H��<�q�2J+j��neM�Q��y�����v��7�2�L�AX*\	��6��4�Ã��d�!��#�Զ,2Y��4�"�t"A��tu�<���� �JF*�{Q��O���
"��e��=�g,�}��>c`Yl{��;�c�E[l�Hc�E[l�Hc�-il�Hc�-il�Hc�-il��"�-il���V�5j��O�߃��3S񯄹��o~!y�v~M͂5��g��h#|���Ԝ�(��f̽�LPo~�M�L�`��.�1H�v�mc����ܙ��Y�_p�>�͗B�;A��u��zP;���<���>}�����)D�A7��$����A|�+��e`�y�P0��	R)�DB"�����p��Ak�R��8�O���.|���yuww0bĈAU,)�>������>�õ4\9���阮�d�7��A�{%i8�E����E��X�4�+�OZX
�N���䯟�u�r��9�8$R)�d�SH���]ʩA�Vh/�y��H�X��h`6���9�CX��4�J!�\*$�zܻ	����a���(Ҽ��e�e����ess��6?�dQ�h�hj����fݺ���>��w��s���3k�,,�oz��<��cl߾�������QF��ơ�ɭ�r=�#�pn��^�yqY�k�7'h�}:iȜ�1�z���;.N2�O����!}:;e����D�*��NȪ��uSD0[�]�b+�t�e�ވ�؄(O�A����ח}VFR�Y�1�H�٬&j|%�멧�b�Ν$	�q<�@���d:�V�X�z5���,]���?|�y��E��WaY{oA��V�}^y���
��`�@M� h�� �ގ_�$�q]�T+�R¡��	�� ��}�@SV*���v�Ez6/�"aL�@Jd:���;�Dd*E�c�!{�(T[[9�P^��D�擑
D�l6KSSJ)jkk��K�-y��w=�j�-��:�9��Og���<���ض�ԩS�d2�3��GwaL���K%�S	N?~&S&4����g����+��n����àk�>}��;���e�ד�VÁ���x4�,1E�
*�䡀�j4����We�F�ߘ��o��~d�dw6c�Ƥ���Ԁߝ��wf�{m˶�a�oU�4#�_�M
�w�u;;����Cz�4{�M��'�#S)v���L��v�����剅+DՌ���Z.��bv��ȑ#I�Ӭ��;��f���d��ɿ�������0a�Ǝ�R
�q�J���·��/#x����E�����犯��J`���{��9>ܨ�QT|
�ȓH+p������h!���}�}�ٕl9���>�:�L��o�J�zAҨ��8�È�+����������^����7Fg(�@�mnֳKw~.�4�ϲ~�����cM��ll����IL�Fb���7�E�W�G���k̘1�}���`R6��P?�k�2.�����8_1f̘^3�jD��1TF��u��>�3e|=S�7��ͦ�*71$���4�S�}�r����S��>�n��nE�j��rN#+`p�'�A�p��kw_���R�|�֘t����8 ���0��s@�뢥����*���J(����sF��3ucx�~`�$3��k8B+�����z����l��1:�W�+�zUd�{0�H+�]�d�J�wR�Q�ݽ�
ap��iϘ�"i��7&5����kuT���š6
S,�R�a��d��$�m�p���Bu��B�J�}&���cx��DK�;��g�N܏�ִl�V��u�@�U�.{}3g�9��g7lm�eo�Ue�n��7bIs��$1�	�2�W��ĸ9Y|��%hy^��Ht����o�ݪ�5].v�E��Ғ��P�Wߡ}UZ�6�g�A�)�@"�>v���6P|Wu'�L��E�����1�r9�-[�…�5k�\s
����/�}�aX)�ԏ��/�Ͳe�կ~ży�8����bU�)U��ſ<��K�<��&�*�[�8nE��"��߾��5�b��>���)�J�龎|�b��mN�鐞���zX��v�f��5O[�
�}�g�6��F�����#<��&B"��(��IC0�g4�Z["]7���zaI){=��>�k�fC[;7���~�����Qw�i�oG���L�͂XÆ7��k�x�ѣq����~7&N---���?g„	�X��%K�p�yG�qk+��4p�Q����N`��^�"�L�����r�-��i�� i�H+�fv�tq�G�`�>�����4�1=��>d�A���
 ��;��I%���+�I%����Y��@� ��
-`[I!�%��['���<�)k(|̴;�^�7��,�G8�'�s�d���խ@k?_�^ٙ!���uRp���O$�z�Ǹq����{1���s�1s�L~��sq� b%A�f�,Z��aÆ�}�	&P("�����~�yҕ�w�PӠ��h�h[���"R`�V�x���y�@�N����hW��� �,t�1�`�.�:]3r���\���=�纈0��H�p<ym�u����c�j���.���,R!��-�"�N�L�$�XƲD����y���5��p]�b���e�C�(-/�j͚5�n�!'N,wM%q��2�in��:::�0aB�P-)0"X�H�S�D;�f����o���Y���NQ�h�CCm�f�1�G�HY��4�>9x��	��CH�
5��-�8Zp��,��g#�-\eQ�T
;��J�!V��#��h�Q���y(�Dш�D�:�d:���%�[�Q���E�V���Զ,2���$�'�(K!KJh2�1�O�E�@P�
6D�nذ�j���,v&-l)��G�
�#o��t��ׂ���6�5�2��Z]C��ѵ���
J���P����7a-��gh�o�ð����W��h"�l�N)��@z.�w�h��4��R�$S��>mZ-KJ��!���P�F�[�J>c`Y�s���b�{��X�o���b��[,��b��[,��b�E[,��b�E[,��b�E[l�Hc�E[lﭕwA}��Q>����q�t?޳p�`�?�-���oԝ#� �M����г�p5j��4N?w>���͇wu=��ƠÝ�~��u�s�D��I��I�ד������EW�z�k?)�}���C�����,�����'�?���>v;/��˱i��ؿQ�z��4|�#�5qo��"�DŽ0�G���}l�X������EbH�WL�����ۻ�����x�u?��W��K��u>�=�y�L/`YiķSt�N�l�Vu�-RӃ�:F\�Akd��~��1Jɿ��KQz�l5m�;�
�!�J�JZ$��&��z�s`ah�1��a��Ò���Ñ|� i&W�e�v�N�Hj��>�����Nzv�k�G;.��`�)�=�H>�����LcZ���~�"0��+0�ǜ��nތ�[yb�6���g��F�t�N��G&)X��"�-��Iá~����CM�Dor�إ%���q|�<���p�I�`p^p�X`p�"a��|�胂��Jw!�o��a<�`pi^����,���v�l�m35��h�� 1j�@�p6@�����g �b�w�ŀ~��ސ��@��u!Q��� ���uk��#�0g�U4w��%dzf���g?{�ٻ�^�yu��'�7�O�X���6:[[is
��[�#QW����
�{��>זs����9|�sܑ$��{)ɿ�*�P`�
7P3z45��'��%7=�����)�s2|r=
u6�6E��a�twAwl^[}�G��9�O��]z�-ȎN��l�9��{��=�Pc�#Gе�`��l��"w���
v84^M_��k=iх�@;`����!�
���n���R��l��q��=�Y¯�u
�<��c�8p�:�m�����N�ݯ1�5I�>�P$^��֍�(&-��1�Ɠ��8a"�&��
i̕>�C�\.r[M�����
�I鎿5o^���5��f�4X�.���H���L�}.�y��*����=� $��!�S�֎[��a���ij"i�����Ps$��"ض �`q[-h�v��Kz����&z>���9�IN��y6���3�c�Z���_�{�ϲ-{�>��>�Ԙ�[t�O����ңU�aܴ��]�Pp?b$#Ǎ�N�rFI�]��Ta���9�P2�g������<���H�p�%�>۹(��~�~������uL}�S���^���ԫB]�&|t��Y�w�v���D�28�OBu�1^WW�z����꟪7�h����f�6An�!�
D����p��|���O�-HL{
0A0�#	�tv����Kӹ��g9e��<��<�t__1���'E2�طR¼}�8�\w�!Zd&Mm*�T!�3�I]��z�~D�S��b"7Ƨs
t7���#=m�;�?�)���ڋ>L��� �m�8:B��g���	dz|MKXOy֙*��9�=��ef���f��H�\
d7�H��wO�3s�R�Kc\�Mh�)��PJ� st?
Svc0P
��@��^�\��Ý��ƨ��w�컘�y��\�w9l>��*4H���bغ��hCa'�i�M�4 �D���ZS�H?2��ڈ��gt�=��~t?<D���XR��g6p���Ҷ�o/\�9�8��}��+f��* E��/M�*_���iCF��#}�Oq�@ؐ���,�(zϹT�Pq?�&Tٕ3-�Z�2WR���zՁɼ�RA��֥�.R�4�2xJr�cg����	�~�ݽ��EZW��SO�$�( /�O�W)�lw�����-��;��2���ys@�
���O��#B!L��"jwo����
�`�Of�O�ƃa'yx[E�*3P{2s��J���L��е���f�6���5aE��q3$&�]�h�s��Ys:����ސ��0�Pv^q=_��ia!C��@چ�pݲhM;ߎ\�Q@^nG砑�5��	bGw�O�3v-�]��JcR������͊w3�܎N����WB|G�'�.��wtT&!p�5��H;�-����)a��U�`�eP{bА����`(�_	�U�6uF+R�y��x뭤��2bw��b��7ހ3Ψ�"��~#�	A^:r
n���GoHZ�IwI�
�b�ev?#�-��wA�����xkm��9N���?Pw�yA	Ku;�XV�y�'��/C���=
]φ_�
�p��)���p�Gu����<�ƥדK���)�q�f[wkUc��L^J�/�G
P����)��&@�Y����[�3&��V��to�w,R�h�G�`��J��j��u]�c��D�9��0�T��� 9��h��”����iȿD׉?�I�t>���M��:���9�$2����8��H
(���ð����E��+u�&�!���w�;^m��X�HQ>4#J4�4vӷ.��G�xŎ���b��V����=���ߍ�(	��>o�h!�y�D;fi[��������HK�|U�p� �L#H����%�`Q��t���y�t�;�3���wvi��?��}�f��o
���J2�$�L"�IJ��x�L~\��r]��_?��h�=��
�31~L��Z��Z������l�0O'C�m!J���`p��>_Z��u[�(KFծ���_���� x�TŠF
��9A2�F$�6-hH�OP��Հ
ap^�0n+�g�t�E��M��b�xt=�<�	�C叄���t���aćJe��|χ���@��('�U>�X�禶��6�NJ|-HF�ٶEFv#�O�2�OD��dd���O��iO�Ӆ~�(�~t�~ޗ�n<	t�e�#���K+���q@��-^��;[~���	�6$*n,�}��>c`Y�s���b��-ޙ[,��b�E[,��b�E[l�Hc�E[l�Hc�E[l�Hc�-il�Hc���.���?�y���`>��[C���{�WO�o�-�B H�_��Ӯ��G�y�����uep�	�
���QO�}H�ִ3\0��󱂣�����8�W��goxpH�W]uՂ+���|۲��DJ�����m���Zi|��=���C��=pA�1�w\S~
����0(܀�ŏG��U��=��3�/�C�k����?y�7��oˌ��>��)x���!����﹯��\{�yga;.2�B���"1u*���L�N��w�G*.Sz��<L;~*���[$����G��c\R�$I;�-m$�Z����(���8�KJ$yp�C�|*���KZ�6Z�+�O+1����J+V�\�'���>p&�%�L�J$IXV������� ��x�qQ��J�X���F��!�2��ӯDd?X�������U.��Pt�d��ޕEZ+|y��W��C'p���wN [�>� �H�2-�T���)U[;��Ρ��ׂ����4���A
�#�qs$��Nْo�Se��Fv�1�V-�7E�麮�}cT@!eu�\Z�B�f��H>ۺ;esWm��/��+��;����Gԑ�f�<Oj�˙B�m^DF٫�Yúm�4����]B����Ǒ��/���̜�/E'�X��x������Lʊ�~PX�L/`:���D)��S^�tHҤ\���	�1�t[�+G�$�Ddqk���~�6 L�:2!5A+M5��N�z#�6>��ʳ�"l�HoKP�Z}�x)>���nh�z�u}��(=�0zY'KW�+�]��	c����\zD*4�K�D��J�p�Wy�^���ߐ;�J�9v"���zBP,"��ٌ���8�R�ή|�Ņ�/�T��v��#��>��L��B�m��6:|/0N1��T���(QZ�F6���5��Y)���)�n�\��	4�5��`d0MJ�G��1���Y]�)j�o��EF,��]ѧn0����v +!��β�'�s���ō/�v�Z��Z0����ܺ���&Э�i�@��Gi�ݟ�=��|9��d�<�����g3���2~���Pp"���߿;�*�a|ߧ�;���Z)J)��\�N:iH��2
�S7��.>�̊] IDAT#���o�
ZcO������L���8����7����F�W���A�~�Vܙ����t��N�L�'17\˶���ڄw��x�5m���/��@���D�*g)1�T���2��3�bƸ����q�X�L�D"��u�o-���k4Κ7h;z?�a�����L��ׇ��4�L��sp}=��FK��݃/���b���Wܼ�>�`�~0�N�f��eZ�>M5�$�x�i�0�K^$�|R���D&jT3|�c)˔�)T���)_�h=���4�����"�~�;0�]��i��̾��)YF,��I	�NU�t׺�;��L=_��B�����;��3D���b�Hj|�����l�%����v�7���{���;2�ǜ��D-�WH[�����*;�����,3���}��ۃ1��"jjʟ��z+�c(+����F�'E����{!#��(E��7#�[)���-N
���ћR��(X.�M1~k��^>��eH�	�f�U�t׺5%�p}�ѵ���0�
M I����X֯H�=�1�������?�C�~�3?d��)8*rv��Dzٹ�r뭟'����w��X��mC�ՔR
֬Yé�=��
,��#5w.�_�5�7ވ�:�����y^�ex�BȰ�U.(�������`�S[<v�<�*2��$1z&���tP��C�"��T.�x���Z?u۞m/w�K�/����}��w=�%��A�U,��+��N��5/rޭ����̉�ȕ�������QBb	R>�G��@��]8�e���ۢ���Rh�CIL�,Q�	B�ر���5�1c�'�[��d�`�b��О�����U�䥫�h.�K��Z��[x�å�����a�{
�{V��ԡ<�ǧ�w��E��"��{����^�v!��
��w��#?dK���$sf��M����Z�����h�ۼ4�{��~�~�������
��W!�KT,c)�/��ȠLtƝ�j��5�D�Ă��`�+��Cd2����0���n!PB�>]�7G��
��M0��7::��>�� �Zr�#9s�V~Q'���Ռ����B�_�oUA8�[S�����
"�뷮�s���_�}Νu.g�<�U�V�k�߼�v��H�P�I��q:��q��#Ƚ�*a�ѵ9��;�!Uˍ��͈�tM�2�B��P��aK�X7�}���cp]p��G�D�ʕ4�]KJl!�c~��M�3�ggL�l���18R�q�m0x��%�pɰ:��Ύ�\N08�Z��=���	^�9�i�Y.�����]6Ë~��������@��Z�ߗ��־��	3�P?KX���5Vo[
ez�}ƤZ�uv���UL�-��3�vnz�F�|�0���O�$�d!D􉓐(�E�L� ��
8~��#cG�<�!<�ug�D0�5��t+��Z��_�~�����]�X"|�)��e\h"��D+aW�}���!i>���NѬh�"8�FH�I�v���ƉZ2�%|�4�����n=��S������!�d�H�d�7��m=F|�3�v��Rt�!��B���,R�X�r��=��~��U"|j���'(Q���M�� ��,��̆
t�7�~�z��-��0h|)Hm�,-���X���_ı����C��##�s�-��A*�\D��>5�0�Z�!i�M�
t<��U��Ж0�N�TB��>����[�Q�l#ȘL ܤ��4��>�x�1�,�����e����̏-il��"�-il��"�-�X���"�-�X���"�-�X����4�X����ZyԨ}N\и��Dn�
6>�`ŀ_�|��mxX�+AS��X���u�C��b�^��<m�-v�����~�1g����|/|x�G��󅴃��B��N�L�U����:�s{����;���H����㮥L��?�s�{�2�����WՒ=J�f͚h>�>��E+��J��
R`l���S����Q��*:�t����[�����>�3p�E*a��%�R�>'��!��Ai��kO����?���,Ҷ��ln�����F-��90xA�vw����N���|:��kmCvv�D)�
�1��Ӓ����;�<�_{"�=b8]6�����/m�-;q�y>x�L�7}ܻ�3�Ȏ�O���zi(B)�),�I��]e����l��q}D9%�Xf\w��a����q�VhTS��u0B�%-R�'�-H�I�I!�w�+��oV��;y��˹����*o�2�Z��}Ϳ�n���aL�T˱�����wuԯ6�ް��TM;;1X}Z����ng��a˗��Dz��Ze�3ab�R>/�-�d=�u���İ�9�3��8v�-�<��ܕ��6,�0tZ�k�[���uX�$BH>���跷#G��>��>�5~<�9w���Q��K�D#�,����ϽU�����Ǵ�^��ʯ�ys���}B���EmQ�t;˄	�}����_h�Ya�&��^̫^��������]�^�^��y�˗~�+�1~8���p�c�!˖Ei�����?T�Is�b���L�#%�ы�˯W��(��x*�H��ck1�$�&�0�<���@���͢���Ŧ7���Ѵ�>�^]Y��zz-F��p9(��%����[Y��kອ�~��X��[�G��!�`�Dț�>.�S3$,��qvY�^Hi|lU7�Y?�Z�Q��*�9N��N�H{��Z
�rT�b��)cPU���
&&Uq=*�BA^���I��;��Գѯ���7y2���G4��)�\�������>��`�CQ+V��FRa�*}zi@H���[��7�tm'ya1Aà��M����V�b���<��戩�2�䈩)�p�����a�8���w�T)��d�4�|�bD�J��Ji���6l��I{�R�
��,�a��m���I��qc��T��2d,��S�Oi[-
w�K��{I}dν�g4�Ϟ����s��R�jEX�I^\�
{3H$�]N"��PJc[����,j㠉�I��'�o��C;��M�I�.��^ͩ�;��I}o��,��QH���@�^�3,v�
���"LWw!a�5�1o��r\�u��k����1�.ctu���ld��zcb#��A�J��,3k��z��*0����VUΎ\,�{S]ݚp�N�U�4t\,_�P��|�Dx��f]��""�[yn�F�K�~p�C�2=��j`���^�0ST�R��V�!��XyFU����A'�G��U�[ol��_S�Bb�I�o�H�s1�X����'7����<_!�BrGzo��;<��yL��H|�e�1�с�*z)��%"D>TE�O�饌�W-B�^"7<EG��϶a\}bGNM�׺z�Ԅ'����{_�Ad�����wL�ت����e�cX�U�
�	�q	���9�@n��c�����g�����o����������3|S,Y�f
g�uא>?ض��Vt�K�xM�֬c�m�)�t�#������1P���fw'�P�m����>w���b^�a���B!�.�[+��p�a�|s{�0,d�\���j�1��@��:i)�)`J�r�݆��s�0*�0�F�6�2��hĻB��w:V���,��]G�1ǖ�$��*H��.�谜S_��ܸ�l�Hj6��bP�����p׏��M>�B�z!txvT�-�K����%�.��'ޅ�jW.�BhҩɄM"�_��ߧ$�hh��6<�H�W��42��J$��P�����ts��`�aY��L�A�,�"uȡ�>	�|��n8q�ޠ� ,g
�H"6��B7b�ؾ��~�a
0�#���~|"$X�0�6�[{�e��&"x$SI���epF����aP�|�������ڶE��K~ϗx�8~æ��N����0˲�Z�U���n���jEy�]����L;��vD�eۼ�����R
��
`���PF��-ۦ)acY��Ð���2�hDz�ear;0����pd�s4�h,A)E��0�X���}�����3�Ŷ�[�3?�X����4�X����4��b���4��b���4��b��[,��b���{k�]P��M]�᱓�[��ID�=��S�=��W�0$�jԨQ�[�Y��C�<�����
�l����?��?3HIM9շ�ް��~yhx��-���}��2�!ɐ�4�6Mc�����F~�f�ҧ8G,�,޵��Z1�ϏN����&�5�?b��
��+4t��%��ecr��B1y�RH�v�[2�)_iZ��=���e2i^���JQZ
�H�͛G�P �N�J�H$����.>+io���8�b�L&�…��4ƞw�(x�t2��,��Y.�k�ٽ}�D�4��8�O��$$y.�Om���1gc+�B�I���"��|7:l
�}��<_$Y�B4{�����^���O�UGB$"���1���w���h���3.�Y,b�
�A4d�wW+LIC��N�y�?�}�EZl�Ns+�w���ˉ�~$��7��6���L[[[��1b����/1��'Of��ͽ*����u��E�ٝ�͝9��~o0�bњ/ix�jl�mk����wJ]h��AjL�� +��#߲)�O���EW����
+����ߕ�}�۵�
2ƣ���ڥ�҂��DUDҨ*�5G�����e��S��Y��R��_�H1�l����l6��8}D:����;wrɤIH)�g�fN:�d^\��qz�4��Fwh [pq<Ӌ=eT�����9��0n���WQ��t� ):���q[�
�h��^z1��A2�|G�I�uw��0{v�1騹Y�|b�!�⹒B�¶
�j���M������p��?�Ce�������#W���3��y�M2S�PW[�o��w��7�T���p�DϼQy�t�"l,7��n?�H��9;pP�.�Q�Q��~��ӤRV�5�
��u�7��y����g���1X;�A�����oN�P�嫛��/˰�$B���*Zk,Q��ry�e}'Nƀr;�1X�Eر)�ʗ��q�jR9Ӌ5(W�#��1˗3�g?#aLy�����N���ۼ!%��do��}�.Cp�	A��e�|^1�E��G*���%��h��=��E}��������P������O��
�<�*���=�!`��<'�0��#S��R*�u�nz�FCr�X[�����S]G��-�E������G����בT�"��׷�߿�þ�T�K}�@�l�k��ϡ�AX��}�-��v�L>�6�|���x�h����� ie/�hݰ!%�y��i���*��rJ�3��Œ	z����Lkݧ�hi�S_��g6���&��-}�^ח&�Qs��cq��w�8��:�#�=�a���v�VE/U͠1��I��:!�.��&�}��3�	����k؎��;�.E]��*�Q)�-eYt�H��T�)S@J���B=�`�HZʣ7ՈL)��e<Re���t�H�)ge�>��$ԀƬ�y��h���V�RW~�;��H��A��
�B���zޑ�9t=�/�����s:���,u��3�������_l�	a�N��n�s����tt`�YSK	���W��H��3p����`��^y���"�z�e X�[�g�jc@y�6m~�e��)����O�qcG9!7vp�)S�h�]�)�J�d}=e��^��J&�њ�a�LX�����+"�s'E53�R{GR�}�|�L��z�I��Qgi�e_�P��vo���h"G�q�^�Q��J:��i��f�9�$�F�6Ӗ.�_������a��"uo�g�ɯ�+0A_RP*Xg�L�@^&�M�HZ���F�dRp��Sx���q��S1"�G�%���I��y�o>͡G�@:��=������*�u�b<{��)���ĩ��'�Yc`澝�'��8�ZcP�1i��~ϋ����L�z
��S�xd
�N�mS[����~��G;z�|%���En���(z��ѡ(�RC
�*�����_� �7n�@
<Ⱦ��E� =��^ZF�`X7��#�g}�Y�r˧z�઱�0�{z����a������ǡ��N�����Z�u���	LJJ+>u\7�n��o'���8����T@��<Є`� ���uR�rjB�Ut���c�*�b#E�:iօ\�B��=)�j"SiO'
]��_����$�L`	5�:i��)�]-��Ie��K��d+|�%,�o0�c-���P��_\YQWAsF�N�I&�$�ౝ%-d��Y���L��F�k�p=��[�`���Ə�3�M:i`6�k����}׀��W�q=���cL����-�QhA*�"i�"87J
��
�(�p}�w��lL�s��X�	~��4bC|}
[���BC�`mز���h(�9�F��"�,��TK
,4�-�ms@��*m��!�$Dxd[74<���Ev*� c2m�>^�ږEFg^~A���[�n�c�A|�Lxr��J��l[6�\a	�Wx8x�6��p���i�2Ȥ_ţ��ߥH�,�fG*�-��� 'R9�W�R�@W�b`Y�s���b�{��X�o���b��[,��b��[,��b�E[,��b�E[,��b�í�X��c�ׁ�	!�(,ˢ����V���g�����l���N��0/����"�9Hkݘ����|����u��r�����|c._h4�F�Qs�6�6����"��P�g��W�EWW7�d�|&O�w��p]!$�.�u�5(Gu�p��b{�"��Dz%��>�V���Y�r
�Ry�Aض�_�	Ń���MZ�1�W�^��L-!Y*WsV.�I�Ȃ�Ƌ�E/��E”�J���յo~ph�בG.��?��'ŝW�tu���G�<����˱ϟ���]Bs{�R�߁{��}�(�[���㮿>B9O[��8w~�2>&V�nT��0+���|f������Åϼ�Lʙ��Um��􄾵?y�7��W>�mq�e��e�z���?8���8�(~�??���cc�ƭx�����Z�]�U(b���T�H7в���+�b�I��=����j{޼Y
�t�&��H$���-KЏ� �^\��8�b�'�1,\�,�OmY������?��~�"^z��-ێ1`I�:u*�>�I��2z�}���Μ�R��ͨgƖ�p��0��Y�cG�r�{�%��[\z�<��&.�`o���Mp@=ӧ���G�p�i�y��-LժTP��bU,�g2����J�{�w���+O�I��̦M��
W�8�C�-��3,|��g�~Rc�Z�ֲ۶X�r
M۶s�͓ز��K���[�������mk�~K+����T�H�oE��es�K[�@vë1��úu��|>�5B�z�Q�}�mԟuG�{.c2�辕�ݒ �d	�P`�'>��5��v9���L��чΨ�����r�>��y��_�����}��;�[ny�뮛Œ%;�瞵\w�,n�y)���sTj��֡=��i��	'
f�<Y�j5&`m-ۼ,����TYC�PC��uo��z�E��h��\�e2\�G��]���?��a[(��_W�n�*�~�]��f��SJ��S�#�G�X����x���]S��jH���XaZ��4���Ҽ�5Ϸ�U��}��#�Rx�U&�p�]{$_��� U�uю�1�S�_�l�'#.��̡��r]+���J�u{��z�E{s������/�s�;��o_Ʊǎ�ӟ���/�s�;����W1\Ч��L]��{��N�0���;�E���:Y��]A�W�^c�����,R��.%l�6+V���$--��4��-m�F��H?�vԂ�|�(�F�C����X��;#چ*�۴�<b�Ǝ��O�<d�����#�y`Y��u�\2� IDAT\������#VeS��1	����vwW��i�6�s�=��7e.�մs��~Ͱ|��CW:�C�>�d^g|[��g�D[�'n�Uo�"�_��F�'���̙#y���'�p�A��rn��'��Bggu�y}Ħ��W
�H@�	��m�'��|gY�Óù�����Y�e-�R-�{�\Vn]IS{�V���ˏ��n/Y��;�+.��?�[���<)B��N��b��6"�Δ�U�n��Ս� 
�.�	9s��V��{v��H��~��_�~ >��eCg�f#�P��ck!�F�p#/n\q�~��wN"��@)�����>3?���;
8��	(�p��+��n�T�G��׿~,���|�Gq��/�`�Q<��6�~������{�G?�,h�[tD\���~�����L�3�bƸ��ʽ�e,F�G"�t�:A��b��}0�8��C9i�������v��v0~�D�fEB��q�P�u)��C��x�<�`�}(�|+��)h�),Z��͈��M!u�y�	��=�lQU�=��
���H�"z$m��>^_��d�m {���\Wp�`�ڵ����,�����/����},_���|�$���������>��nZ�&߯OU�/�-��ˋ"�GO�W>��.B��O���!BJh�$��`�y�!��,�d�>���u�2��`p<h��_�|��K��Ȍ)3��aAi_��@,Z3LcY5z��c��F�C������G��oߴ�t�²�ɚ���	#�2�����+��N�np�¼�
ѧ=�Q
�
�H�`��7/�[�z?_��bn�����E�v�1<�����_���7�����ʐ�b�j�zj$��
f3=�\�et�h�6LeC�H�+K���u�g���?��<̮��۾��{���TU��LF a	� �آ(�A���Tl>���_�v���A��V�D�Q�@��J%5ש3�i�����9U���	����s]�*��}����g
{=�2Z�%{{>��<�ٗ�C��[W�F�LƎ�\�;�T,�	!��#�AŊ���:0�n�F�S�'�!ʌ#��C�o~���1AP��*[
�2〶�-�h��o*����]��O�N�'�l�-��������ø_�P�b�6��Ҋ��|�I�pã|��r�����/���?̥�.��8���/�\n��	�ҥ�VNT4��W\AG��s���~��
����k�^�
?�!B':#΄-��&Y̗�w��2_z|���+Uo����#�M��	�
���AkHH�e'i������}������8u����m�r�2䉫F�Tds��~3�"EI�
O'4��#�T)R�:q]Tb?���9Ȉ6wʪv�r�9̟UO�7���O��� B@=_�C}n*��}CQ�u@�ŵ�я�l>��1n�!"��s�^�g/0�;5
sa��Ǯ�WI��aP����o;�m�v�k�앟�k���p\x��<��9���#�Lƿ���ؽ��\���0��O��.kJ����a��pɉ�p�/���|*|�n�̦�T,R��x��>���|��?@��~��-�!غ
g��g��`t�J�*��(WdU
��`6U�Hː4!���k��;OB����]�{�9̎A](�R�{�w�ƛn¿�V���%���<��xv_Y�^}�r>�ɷU�\}�K�螔뢷m��.�xLZ��I)�rE�ݝ���O?��._s9��x/|�P�|o�����H�P��I;��: sh���` �Os��`ά����*`��7�{��@J��p�Z�g�᥃��T��T�!�}�x|)d��[��k��8tl|u�:)"Z#�8�V�0� ���hQ�VIAiC0�y"k�wx�+y�E�h۳����B_N��rזFCB��$�a�>�'7����ZVw>�_>u;-I�`�*�ڜ���R���qv�f��!tV܀K�}i1��H��Z��e�����q"3:��ŋ�/������#�v�%۴a�R�tR��N:��;H�9��������������� ��\�M?1�����'$
A "�B&����'������ބht���uQ��!i��?$)�p���eL�;�)��L�|�	��
�T����SS�/�W����w����$1o2>��cf���|�nx�	����۸���U���J�y�U���{�D�D"Q>�$�J&?��|�{7\~ye=c|zH��̆�#�Qu�gp�vG/���<)�n�H������\��Zs���,�����P�^P,��.x���!e��$��s$�xF�6͌��4*m��)[����U	IK��h >�Y����%�,��>�2�V�
�T�P��=��<��Rw�_rۮ&��Q�I�k�{��

!��g7���rI?��C�汍|��Ǔ�җ���͊|Z?�9��݇-�+:�.4��HjIIgg'�7��
�@7)f�OЀ���pvC��#/��
�\N]�ð�'z;e���Vu�փ��CKh��7i��S�ȫ�sz�S���������=��>��1P�-F;wZ�32�1d���kh�3$mC�4��/}y�i
���p�[�=s���:��T���� s��s;���
�Ƒ�A���>a�OD3�P��t�Fk�cGa�lLZ��O��e
����|.:��"+۩Y͎��Џ5���ZJs�j"�Y�j"�YM�5�YM�5�YM�5���f5���f5�֬f5�֬f������Xr�Us�bEGÖ�Tb�ѐ��5���?zT�+)�)�7��֜tҴ>���6��[�Y
�����]t�mm�9�d�P>N\��o�ҟ��H
������M��է�6�5g��S�筫��
P��	vn��nK��D)9a��5w?2��?���Q�W�������Jb%�ێRM����8�Z� �0A��<��SI6���R��pUi���,�0ٶm[E>���B�́%K`�\hl�'mz�#iF_��#��4�^w�u@�I���x���E�&��.��!^�>i�p�c�����\H�
yxpo=�,���;��m|�q;����IV�0D���Љ$���G�PY����Cq�1�#GZ_�b4`Z����P&\�aH��/3̜���$����K���Rԍ�!��
��|rx��a�+اu��#�t���eo~��0�_^A�x�{w�EmhMԱ���"��듽�a�2�<��V�岕���{(���)�Ơ
��&�*{�,
�٪��y,ߋS��;pfG
)��9(�����D�x��K��!z�{k�A�u >�c"8��݋��#�{�D�Eo|-Fk���8�T����>�ѩ?�����3�f���p�M�4��t�9��3�꾽0����9�Xq��Z���nw��x*��x��m��~3uB���.��M�\Jêb�*�t�J��i�}c�n�xb����@=?H�+Ti\��*i��+���n�;f�p��ui�/�"��x�C?��/�X6�7N���ѻsw���S��zU9�{:�3.�p������������Sy���X�2A#�QJ���2��rڐU��)����m����<�����F�9�����w�r�٬��fһw�zǩ�`��@�v�𵊂�t����4d�Vr0���A�镊��DR�"����8�M:����,��r��L�J)�t~�ۜ����tn;��H,�G.�e��9܇%-���y�4���q�
����*�T68��ݻ����
��2�Ɩ�n��H�Hr*�)'��uő��W��uS���]��mg'8�T�q�ܝ��>�\������]�+��i��k�jhL$
E��0^ѰI���gi8-D�YZ�	z~���4��@��j���PG=6��p��-�=�ʰ����#KH
F����!���3�3�c!ү,J�c�/<�%�Eҩ��c"�P�*2[>�'�3|�9|��W�񍅃ܸw%Of[��k�z��i�R-L��1"�*�H�y��Q������]��O��#���*�X�?�{?O>���(�pN���W�����v�/�h<la�0�Z�P��g=]=�?�Qp���������]�!\R��9F��&�-��Hw7�jZL�3�x� b"��FO9�I����+����}�T*U^J�v�Fk�뺸� i���2G���LѠɡ��Wn_@8(��5�a�j�Cn�����uw�\�ƭ���%)
C(�{��wgK��"(��nޏI�G�����~�������P!�U^-�I���u/ P��.%��S\����7/㙜
d� �|�T>Xv4K�A�iDc#i����7#"M�Q��!���s�W���"�$Ɖ4�2V�?�*�r����3�8W�v�碭�[����7��a��Y�<��-k�*��k����䰞ٳ�'?��+�o�v�Bi��h�&#�M%�@��3��2���>sm��3-�}h_?����@�	����K�Ɋ���F��[��|��hX��&����q"U�B	5n�@iŮ���%��GR4�&@�rL�S��N/�
������ĩ�+�470�҆}�~�r�݆�ۊ�f8� �:���T��w�K����;mcTab��ȗO�ݗl�MՔ��e6���}$x�<�k.?�s��W����"��<����� ����]U�1F˪Y�*CҎ�c�Y'�})FַJU�}��8���ĸ@3j1֯<���|�h8�q�b��3�A��7z����p�͒�vì�>6/�A�`$�TJѽ�8묩?�����s�l��}0Vy1��ٽ���qT��
,��{�-�Yo!R��j�2ް�V����~ãO����su��U��	,;��~b�J�
A"�D8��D�Q˚����&]/*�U�[�@h
��xc�m#����
84
�Y�ٱR!Ð��q����쿒����9fV�3B mH�	��s�83�D��a�zѹO�sC�g�aN���Ͻ�*VΚ�o��'��qB�ikM����J�!A�a�tA~<�� iGf7ѵ,z��H"}���*W������ʶl���H�@U��
cHk�Q�0���x�o��ۖM��Ҁ,7�W�K��-Au�WY�:

��Ӷ,=Õ���m��&���|��{���eu�I:c�HPI�1���h:z<Zڋ�8�H#/)�ժ��S�9zL:ı�T6������g
�S�?y��̯YM�5�YM�5���f5���f5���f5�֬f5�֬&Қլ&Қլ&Қ�DZ����ZyT�[��m�����HW����BVxbj�3�Dg�l��N�Z�����-`��i��J,Ϊ2�S�a�|E�4���7�7�1�aN�������~[[[ۤd�!iQp�h�fꄻ�;vL_�ׯ��K��bK�gRK!*:�W���!�ݬ��yU�m�G�-��{����|FIJC��+v��I�_y�E��f
IK�H��O����T~`��k��n�Hc�}�s�(=Mz���]qEאJ:$�6�-�d�e�S�v��P�y!��N	n����
�f�=ZgLP�:k��Q�G�H���_UXN�u��Q,I�R$�I�AJ�|;�q�t�e$� �l�T��x��뺤�in�����i�}ܫވm|,'��i�y�1�&n�Fat�	}T����WE>��^�f�(b�)���D�
��l�1*����1�C�.�I����r�E:Xt���Z��_e6�kb��[(��ѴJ����ā����/2�	G�+̉�"h�Y��l�sO_E>'������ҋS�x�t��F
�UV΁�������Hf9�ܥ<�����b��0[��&��k������;wVV�BF�� &�bJ��N��)m7R諬��7 �ߋa��HB�؇?a,0ڠi��)�lQA�� ���
}�}	$!3�!�dL=ú1j,R�ɩ�r�sy�!�L���������+��F*g�ߕ��׎FU�Mr���E*��F��L62K��G����!�6s�f���>s�\��4`�B$�Q]���i�4��X��h�t�����KɧV�1>G�{��CH��lP@c�*�`���<�Eδ��.]j6���x28���5��8���f��3gb�	��Q~�M�������-[�m�cj��ɀ*�q�q|��+y$��]c�{����4�h�fs�n������b��J@J��1�^��Q�2#�8M��\M�eyS�������l]N8�T�
R����SF��g�H�LZcn"`Y��e>�uZ�ۂ:�,b'"&�8"�:��yo�C��`l�&���_��6�o�H�*J
�Š�p1�p������1O�,aC��	!]�i4"*�|���t�d�<><�~���z�r�'2o޼q�SJ�y��e*i)��H��u1�
D
(c*�`���\P48c@^���ˣ5��3��pȫ5Y�H�V�]H8Aݺnȃ�e��:�����?--�q��<�m�4���~��2��Q��lZS�X�bu�j��`����l��ŰȞ���0��&)�ti�@>T#ݽ�Y�x�� �!;�\�`���a?�b���p)9S:�J����ZO�U���ذa���ǁFgV
,�ʧ	|�[�V�����a��і�����I}t?Z�?>[��q�Ys_Q��B�#�(r�<�^�n�4O~��h��\4�b~��'l��FL`&��1�
+�
M	�u����k��{*Fkf�!6�+x�_�9�&�����:��B0�|�#�^�L&��~�3����/~���w��v�����7OOLz��vЁbWʁ+�d0�i�=J�T�&����n��Q����m	�f�6"�|�{�����O��k��ݡ�q߁�ʢ4�w����G���&��Q�����ex"��ݹl�����A�;�z�)D��=���}n��f�lقeY|��_����K.�dLEN�:Z���`!ô��ah�)`p�M�7E9�����3f!�`��!^��Ec�>GS��zY��#��������S�q�������qu�}=1�Y�Lz��.F��Ž=(��Zd[h�Nacș4�:���W!���zb5�t2��֚.���K�b��������q9��h}��"�{S���hQ�n�d0�jDZ
n�r&��/^Ȗ-�\|�B����nK:��ȒW\ДH����LΊ@n�
-ՎЍ�
�yaG�!1�^�	,�y]r7�t��AV�wz���(Z!°�1�n�w��Ƒ��8k������#�k� M�k����DP-�Ք����ֈ�T\ΧOs��miDB��z��Ҭ������鯹㥟������$&��'�
�;���>/|^�>AJ,1���w�C�)�~g��uWpFz
�|��r*cp�`��U�D���E��
J��7��^u2͢��� ��FE�x�� �8�b"(�yMg�A^���a|?��
�?�aD��4�H�*�l�����ѱ���ՌޢC:l)11�T�`���5�7���y/��E,[B��K#�R���	YPB-��!a	�B ���jЀڌ!4� T�J��5��B���A^V�DI3��}���A^Au����Z��4�fN�m�Z���0��r�O�D"I�v�-)RX��v��h�V*������<�0��D��������ω�V���}�Џ}��*�"^*�	�DiG��-)��G��{t=�hDk:Q�O�yQ��:�,R!�h-X6B$�2�jU�;Z���B�D�b�V:�Ґw	�WyM�4F������j:��С�
|�Ѣ�rZ����l�EP�+J�R	��ap�|
a	�_x=N#H�Fd"�ӗӶ9dl!���,T�8��%��!9���j>��}րe5��>k�����[mg~�j"�Y�j"�YM�5�YM�5�YM�5���f5���f5�֬f5�֬f5�9(�� IDAT֬&Қ���ʻ��k�m�_q�`Sk�jz��U�����;n-�&���!�.�
@^��mm����E�󡓗��`��t�N]���!޵����L�SH����=��o�|�Fヲ���О��a����G�o4ZO�2R�+����f�RR\�;����3S����F� �x����?���)}~�-�OK���U`S�)�Du����u8
��3�o)>�Kw!�$�$�}[H������5Zitz>ɺ�m6^�ۥ(=5T�5��!�E�T
+a.���/��q>�:��D�0��t��+ya���U�Q4�rl�z�\6
dY����E�X��H���1�S=C#�9c��n�p��
����{���Y���ھ3J�mj �w���2��Іu����I9I��C�vX�hє���:����(�C��l��]�wF{<'���λ���}�	��,	��g��o"РQqkr~7�H����޲�r�����1P�a�Q]u$���@wr� wR���:;+�j����EDXB�"��Lk+�
A^���-�����
�>�� 7���w̯O�i ˮ���M�-��7X�Oc@��!&N��vX�n��~�,���S�ή��=D6p��J�SI����ZT}C��V�8읽��3�EV�圵z�����74p�@۞o�
�Y�p���gp{�l�ʉ�괡Q���;� �d�抅8-jX�L,[�DB�@�Di󿄞}�������2y�*EJ,R��U�H3��<#�2��Žvԧ�9\�ѱhN8�.��!�˃�IE�ӪrR��B �S���x�I��o���=ĺP�ڝ���!��1�`���X�g~ѭ�n{C��h_Y��Y*�_~tϼ4�P���9㄃��g9i^/���S�f@�*wL�=����0R��L4���6�Cڗ���J1cq�ts�W��҆|^Rrp{��e�M����z�5t|�K�R�1�Fq��ek��6X��䆻���.�pZ�+���O`����O��ҶFV�=�=��K�Lv���IGJk����C��D�#�\6l��^x�!���

ѵn$������-x.�*��Gx*t��;_|��g����D��E�cM��T!RC�w1�ff"�53�a
�ow����P���������P,��ƿZ�����	�xI��?F��|nD���8܂�x�|d� �K�!%��v:V局����QT�H���D����FԝMt�.�g���^���ɻo�fJHZ%��ygm>���ye���b�(�����Fؾ=*W>�Ê���g?�*�Q��Hj�D*Gh�FP�
d��u��<�سlzv�w_&��D��E*F&N{֒���gm��nV�!]CK�K/�U�
4$���$���8�s�{��V.8������+s7��޹���
z�lQ��"F
����@P,�"��ښ"����.v�e��V`�߀_p�Ya�"�X�1�,�߅0
QBk�z@���?���J��֧T��I�c�_xa���Z���x«���i�<-9��U@!;@q��0���i������sܪ�G���^
$mI�����"�d�����0���H��IZ���,��q����<q�a6nJ�fU��M�α�!Q`�D�T)�6ʌ�	�1�2�mɲ�Đ�ֺdr����Ѭ�LBPߤ�9��!&�j7��	���D�Yԁ�0��XVɵG�S�;8�����暨�߲e����e�\�Q�䣕�gi	(��i����垐₳�
4,Z���U�`D��4MB�9��*|ϧ.
Zi����x�,X�ʫ޸��-(�e�	0�h`�.�P.��r"��PjœN<�'/��œ�h=�0���F��Cah���*�C��A��d���N=8�a!q́e���Z�0a��	&J)�3��}x�;��G><~��FP
QY��.��P>�(�-hj�A}��pw��ŋI/h������P������,�񮭳�jN/��>H��X4{7����X�H&#�G����3��Uࢿ݄p-�����EO�{��>�)B�@�!I�g�S�\g��怎�>v��b#��"$Z�0��Ut�A�	�t�opwF��V�̿F$�Ch0FT��g�bˣ/���|��54P�H
*�B�GO��롄������ǟѡ��h����00=�#G��"�0��tH�Q�ֹ󩯏`p*��D����i<����Y<�i䦹�x��}�9n�7����iI�E�:V����M�޶�D�Ҡ�fP���C�0F�e�DD'ބ!�n��߶�'8��XI���s��0@"�H�	�
S��t"x�u��u�i$cr�#z�P��xlX���s��FDB�%�
���0�?�[+{��
-5
9�^��y�)8��R�F�
a4u	����O�]7H(1�F���u���ȫ<�#�WQ9�0R������xt�s|⺇��7<��B����a��[���9l$_ؽ���=&[��|,I�XDhX|b?�S�&��El�9��+�|6=܈%!ߟd��L�c�o�1w|��G�ǦB����f�!+~x~�G�~%�*�c0U���BB-BOL�S#g`��M�PkU��@���	�F�i���kG��#�UUjA���@���*�v�>>��{ٸ���vD��S��5]�"���_ZLo�B?~�z�w�Y�)'�tX�C���� �vR�Wh�k��L���34���b�F�Q�BhB��Z)'E‰�ZB,9	TKBF��]KZ�
|J!�0�d"A�r�mII�`&>�*���I��%-���Rb76DC�#��Y�v\/#��45b�],�?{i��EEkUOL��,��&��W��������?�GY|d�R�i���+wq��ؗs�v�2ji?��r6�ٲ,~u�fl[�G
����}��.�'��c��Զ,�~:z��C �*�e��IG�M�����3(h��ʠ�C����ITt��L�elv�@z׮�&k���B���8$*�h]:��P&޹�ٳgϔ�N;�^��$	�
|��ع��%���g�3x�3�]�Pz����%S��F����SHi�%�c�/ܩv#�>�26�r�j���g
X�G�*�����c�0ʍ��g
XV�?y��̯Y�jV��լf5�Y�jV��լf5�Y�jV��լf5�Y�j��qm�Z%��>>��4�iF�$l��8��(�T�T"��?�%���I7�;�JQ׶B���Fkh�K��TOo/���~�ayk[D:1-Jk��4�̧vm����]o�9��οx/W�x�9�-�?��E�����i���l>s�,f]����[q���Z���t�k.���6'����ҽ"J+Z�Sn0���g������6`!��&~b��L�YfT
uT�(f�޽�)c��bJ���҆!d�e8.I�)�h'�1h�=�d�y�\��)NMu����ʬY�� 4H$sf60gV3���؎Dɬ�SPȑͫ��g�5:і�`�Avs��d>����;����ۂ0�_�r��Н
H9�؆8���m�}�N��&aۉ�y��n�a�sp7�I�m��X3��|C�i�pd�R�ldU�`�:�R��$��#e�1"�B2<�Ś��mN2!�(J'�WDŽRls��VޤD������N�'걵�6��C�$���8�_�rI)����
�
݃�0x�%�q����*"�D�i��&,��"��m��4���}���=��J���u�"g���lΧ>� ��iiNS_��Ž�z��<E��PV0DIy&�
P!��3Z8�e+;���<�x��Oտ���>>g�f�24��e��W��%ȓ鑕�e^�iJY�=��3�Ә��u���>O��oB{��
�[���;��yo�3?y���/Ҳ�Ȫ�JN8�d>rr={6|�%��_lȱ�-M0*��I$xb���ꦔUʉ��q�Z�[|E��i��$�P�rK�sC��W���?�=0�U�B��P!Gm�f�b4��T�E���o繡��{�߷��t���KOas��Xmc��A�\d�<@�s���A���Eì���t�|�\���D�@��=�4�'�=��Ǟه�[�ܜf�~�s>����RID�S>�A|ߟ2���-	}�6���e�Z�sZ9�����;�5�H1(m8}Q�Μ��a4�hn��c<�a˔�寶����o{��z�w��ӷ_��G�d��3r̛s���r�w��x;9�o���8)�GmT�H2��O#,;N�u�u#'L;��/
�&2�NS&����LF���{��6�,>� �5�>η�KLAb�H;H��ш�3��;@6��e��@i��|��Fy>"��g,Ǚ��F�L0�g��?I8���hۿ��Gi��s2���*0���(|�b��f�{~�E���5�{����Ԧ��;�q��n>s��bm�g��^o�Ww0���g{�B]�$,��O���͊"��}�.?|��;��&���ź��"Q�%�c��I�?��=}�4����?6��-h���M�ͯ��B8�),�l�liA�I}�T
#%:�f�N��B$4�2”�r�m+x$��֟|X*e�U�YD�0BG��^#��+\��8e��&ܞB�N����g�AgA��;K"�w4�-�rj[�����,eS��5���4:Q�V􋸴0�tk�N:�N�
I~I��;z���&�+���x��I����"���eD�$�Bߏ|W`ahX�s���y�y\zb;B��N���i��~f<00�9�G.YȚ���Fix`���x'�'�����-H�aNz)�-m�-����<��)7��	'�4���C�t��ޭ96�f��cJ�cƤ¶��L�l�7�H��
iY,]�5:;T=� �-�t=�Zbq�/rLд,��۶�{.�ۿL�0����VbD4�	�=��}f93,G6��l���K)�+��cR�m�Yu!�:��� �(�4����j���4�C��<�h���
��˒��x�
4YY�x�����=dO��*%_�	�!�4kO�υk�r��^`([@X%an���*ۊҌ�'�bP�����S������˵s�ג`��4_�r������u��KJ|?�p��GOu�_/���$e)�rj�>��U�ק9��Wa[E~=0��ɓ9/��V\�;�Lq�)\p�jf-���?�1o�\�{�*����H[�Ͷ�f`9I��o�<�Ϯ������k��]���ar�`:�@f����{1"��5�[��ӊT��kgh
�3����J�FG�"ki����jB
$�h4�Xwv�H�d\�p��	����q�ᓘau�*���P�X�l%�l�A���k���^���",2�DM�`0��аe�����3�)���Dݽ�g��U1'�hC���=���}�\s��]�L}���/[�@3�xrW��?��r�%$�h|�+��߼j)�0`՞��W����}�q�Σ�{�Onʒ=������3��e��H�֍�ŷl^�H�S��>��lj˫��Gc���]EhM� W=�-Ĥ�*7����ع����hT�J!�@Z�raF�`HvI�`$>�qZ=h�1���
�4(�B���]jJ|oa4�Rx~3��C�Y��deI��Kt��Q�i���3~�#�2���%JO�Z�qc߃�д+�v��̸t__ȱ�D��T++F#�)�!ZX �l�3Dא��߱�:��G�Ƚ}E>s����4�m�P��FE�����7dp�a�Ϝ��L�֮�̴5����o'�ACz�l��V.����{z�ж�)�!�RS�Q0��Z	b��G@8�HG�G4x'�v�������Od裔���C�3�`�g��
٪P�C�V$R��epڈHG��a�-@jZR9����r<�嬦�4�����͙�t�٬븇�T'�U�Ə�`=���*���f�P�j���
*�F�l��H;?�������8h��KX �+�6Y|������p G�#�q�c$��~���~�th���d�ũ�砆�Z�I��q�Q��,���teƉE��� BN-ҦDC9��&ek\�5�B�Cnk�3`�P��i�}ͩF�PN�,�!��0zdY��]d{����",��
�*�z$���p�3�9ܸ�>+�E���I,)���~��b
3r��K��XB� q�����9�w�ϠLG�X��4*����� ,��V�:��J.0FS��2��-���-`q[��-��?ށ2�,�1!y���,������ 0�Dܬ��?��1���gF��8zm�`F�Z��qd��0I`�>�|
˶�i/�UX
�!��ri,,�!("�gg2���x��yJ#�v=O�P��YcPEQ��h0���$_�!�(��-������F�xʠ���W�h��+	e�ZV:�����W��{�$����ZIS1����vl����O�a�
A��QItd3DTNB6�i����y��s����޾�ݽ���]�|��9ma#[>w�q��Q���p>"Ng��,�D��+ND�Q����s�s$���9y���S�%�;���4D2��f�2�r���/�Ϡ�C�p�L˶ٻu;��Ut@�A������(�pN�#[���e�PG�L
3d0F��G��m�J,�3_����mӖ���K�㙎U��m�{~ϙ�_�Q>J��Z�m*z�@D?��F���d��&�D!�1QED�d��$���x�\܄��|㡃|��}�}U^��P��|�>|��;�5kgq�47�l�̴��ڛ^C]*��5�	�+�(���6ϡ)��>�G���k�lr@�@8$�B"�$�!����"�
z���RM��Qg��tA�[os=Vk�N:`��L^E��x�KI���f�)QW���N&����,��x�����`W�67����E66��A*���E]X�PZA���"h�eEg8	�2�eo�k�3�"��Ѻ��}K��9'���뎧�>E�
���op�}H	v�L�ޕ���_�ٰ'�G/]Ȣ�$+f%�ѵ�����K6SQJ����W���eLC����qv�D���S��d��r��7SD/(&{mf96=MQNh����$Ҷ2�	$d���U%��\(z�
�(?�^�����H�8�=��B`���xG-�͑�+Z�
BP��
&!JJ�Tj�=i�[�N&��6��X���#[�A��O�h	J-���r�)���� >��x�<��E�ޟ�Ou���ef�BJ1r���a�6�~K7�=C��ٳY����m���<� ���v�wp��b�%�W�GD#Ҡ�(zy~���jΒ��sx�n���+�c"��K`�$)ppҏ%l[8�$}��%,l$:z�j�1�b�c'&�`bA��P+I"�^,��n���59e�(��T]�1tN4X�p�
����˼�k��MYB�"~��Roi1_�1�ޠ(ox�k�{{�:�޴u�.�g ����ag��H;Vy��6�S|�e�k��fY{�t:MwO����!��c��/�Yk�F@vtc2uz��a7m'��� D��m�Sv���B/�μg�fdTŐđ�Pƈz����ˏ\/��1i�%lJ�"�S�J�����Ρ�v���Y�1��m>(��ܧ)�0G��V B�S
…p�1�A�W�WB4���d.E"-d�2��Y�H�<(!¢�yc����=/f�Qt���c�R���_5���)�rR#�լf5�Y�jV��լf5�Y�jV��լf5�Y�jV��լf5���	��[u��b��F)��4e�P|��rZq��%�aY��C��f�Sn]_�bE���r�?.2���Y���p�9Xцژr����O{��?~��R�뾃����a5�Uq��LT����IDAT��쁏nvk2��
0�uH����Ki�eaŰ�h?��6eFr[�A+E’��F�8�p�̙
@6�N��G�9Gެ�D
��V|�a	�~��o���{��[���76$�lsz��#:Hi�jE�1����v}��o�Ӹ�ù����"}q�/��/b��O{��#�U��߽���yt��q�	���$+$"�C�wdE�
v��X�`I^<�H,��GPB@���qBy�{�a�v���U�u�9,��g�dz����Oji���3���ֹ��;���-�F��L�L�󰑧4��gVAs�O8|�7~��ܼZG�^�W����ĉ��m�����Z�1<$�\��(�=�(�u�n@�g�6��/=Mo�76f�ݯ?�����wy�_A��
-ƄX�cζ;�Д�0.s�~@:Hh���?=C�\wl�
���i�����U��*Ԣ7�]�uStJ{Q8:Orq�4I�j`���]^^fee���5� �������Nv5��Φpr
�B�x��ݸ���2��`l�n�k�u����'�ݩg�oP���B���\3Ta�ۻh��bI5�� HJ@���)Ah}�M�j�*>M��(�9�;7Xk����9�� e�8�)A\�o$��^��z����ma����ɀ���<��ţ�?�lx���H�`���" Wy�c�w��rţ�ORs���/a}��L��w7�:��湧��X5"B��"ϋ�o)���F
3;M0{��;h�E��t�X)��y��L����Y���Y��O���}����W�0����N>�>�DQp���k!i;g��­!�����'�k�͗J���C�1��-�{m�׻���Y��]8�=4��=�	,����5��[l�*M,��yN��k���M^Ÿ?�����>��b����L��b�{o���)^�I{YE҃ ��9��Ƶ� Kk�����9|�]��s�*�nW�n�Qd�I�p'�:!���5[$�-Je�N��PU$���
�/r�M|}��_��}_���;�|��{�sKg�Y��T�]d
eM�T�`H�	
���En9�'�����*3�!��BI�dd` Úkh�33�v�AgI3B��!|��(�䒗z�	Hj-�g>�`�U�/��ju�O*��#4�-̯p�F�����R������̑TJ���f���	��a�N�7#�:�	.�9����M�#v���*�U�U�\$�os��M�b�
��Kt�U�s�!��*'��J�����}�0�&���8[�=�=�k��S�~�,_%Dݮ��fG��l��S�gI�b��&�N�Oo2�Ղ0DMpӢ?E1�9:�7��L��O��TT�]f��\m��qB�6��O�I���	cF9�;��^�|�SOP������V�l��9�['Y��2�pH��Y���L�qRC}C�9
c-L*��f������q�#���WR�In@�w�;N�!i��h9jx�靧��.�N���1@\����:���_Z)�qf����(xѸ���Q�K����������2"6��鎣I�[�+	�T$=�:�k[N�-��
5����J1iB����L��!IQŕǬ9�҄�b�d��Q�!�;C�C�b@
�&����؀4���,��ԿhN+&�(�=v�7��jp���e�p��f+|���)��� ",���9����dT����΋�|1�IT1"�}�1ű�AD0�P��i�!� `�j�и�Z�f�;�JWY�!F�m͸��
��uVVVy��q!�I�!��c����
���"x���	�u��*ImP�#�&&���,ۖ�Lf�}�b�`UU�Ρ���,�g���h��RR�*7tA��@��
,��ޢ^q�#x�v������/�嗹$g�`\\�%�ɂ� ���0KsJ;L�:�A�T6V2y��7�4�M�w���G��7��2�uUD2y�9W�͇�zc8��+ɺ����t1x�E�^��1K*26����W^�˓g�^�5C-�In�\���1���e�U4���a��a�G|���,���Yս����������{��
������QC�0AL�F��5��o�C#CLC��O�
������[t�	���j��ט*T�P�B�
*T�P����Q����x��IEND�B`�PK%>�[�}��F�F�images/flags18.pngnu�[����PNG


IHDR�
�MbKGD�������	pHYs��tIME�'��o; IDATx��y�U���>u���K�ٺ���}�w
��"��2��2(�6��h�WǠ�3�:��3� ���ʎ�@$��M�t�^�VUg��Qշ��۽0���z�+�;�ާ�9�y�sN��}!U�T�R�J�*U�T�R�J��-1�io8q���yG�Q�sx��'0k�ŽU�m��?���1�J�u��=���J�p��|켋��q3�uB��Z�$zlMdSi�1l]��+�<Y��i�`�u��+��\OF6G8C�i�X��h��Fc�a��լ����y�i���ow�Bz�� n'�3�o��h�՚�v�X�	k�����Z0���ەp�\O:Ddr��l��Ӣu4�+6v��SW�e�/8��+��Y⒍!m>�v
!���/Pz�1J�?���1�X:&9�`���kx�K�f�j���r�O����.�,y��>�,�t��������õ ��x�eY�q=@��Q������Ӈ ր�lW>��G��Lw\|�t0�Eg�,_[�ͮb��6u]��Va�X!1�h�0q[��D
�/l��f���Nnk����"r�!9���)	r9�vt$hg�m��B��8 �A��5�4��0t��R�6O^��~`G���	޿��Cv�	��҂��"�������3�ғs8u��?���as��^ڲ��6��d���/<�6��濅!(>p/6�w�1�Q�N�b����@#O�N���!��G�p��\Nj:�l�%���m@Nd8f��de�-�4�9��&�u<v���,ws�乬����N�$F-`�}�5�E�9��i)�
��s��%ш����
]||}�?k:_;�����tu��ViL`�㨩l�4�,s�~^��0'}ti�[V-��G�Mq��ie�>|�x�1gp����K0�Ұ��X���K���l�N�8���x$,���W��I��)�xC����F'��;fD�h :;�R0�y��>e/��ֆ�(�����F�"ÁM��W)�
����[���y��KnM����<g��e��M[8����B"�� �@�3ȃ�b��0�;���ء)��g��	&c�}�>�"�9��{��y9���e}�Кn��ٹ
L)��~�����2�9�杆/޵��,|�ovq��Fn�|˷���{�Nj��bI�K	�%���I�_�(��<��v^8�2��Մ2��a�H'����c4�-���s�À09��@^��D)�P}v���,�-�����-a��{ֺ���;�mS,A��Gm�…�=E�F}+� +
�����U�%[	A��(L�oۖ,M�a?������I�gp���<������~8uK��n2ڢ�p�4����b�B�����G+|{^7_8�o��,�L�e0,�$�8aP��)�TH
I�2J��Б0�B1(a�`F���f�����̲�k=�Jݬ�^ό�Z�ͬ�ڀoB�A)r҄9F��)�S����ĨT��c�(�7ϥ��#�4~�f��=�z�-$:��*�*�t�[i��W��rH)�M0�j�bx����/��p��&�}f.]
�?��f<���R2!�o�ƚ~(��q#���I���!��,��7� 4�XC���*��+��9�5IV��I+%D�a��|�鯣�A M�A-�ب��FcU@R�ŢG�Z#i���0�t�X�b	GH�X�B���V��~�=�ڸS	�hf�`�&������Nr������HoNr�W�<�c%�zCް��c,�Z��}e�đ�����x�Q��j�¿]t
�M��������^z���~��HZ("���U��	8]�����\����jJ���ꤖ�[�BP#�N�
:�G�pD�K&]1�9�In��Er8����ZA���\���T���@�K��J��z'ٷ��Y���}��&^�
�X���dNZY���;H6>�xiV�/͟N�2��<����p�z�ۺ��qx��~nz�+�i,�]]�;鉇�|������X@s��q��7�kw�K��S6n�9g��ؿ9ђ��F��AB�0�r��X�+�!ֺ\�5�g
m1FE���7NJ)�`BXN�~-�fm�\��i��X���(�)�h�k-h���"0��������{�O��k�f$Hg��"	\y��IF�(����N0�
-`��<��`:F�����Y��a�aNW�����-����ȗ޽�7:��('�Lo���O����1�.=�w��{�xz#A�G_X��$
�'>��2�ߏCr���,���a��7Nɖ{?�,�X+v�B������0�A�64�<�a��
�C6E�9��Z�M�aب���0"���Q�Ɔ��7��y˓�6�͜���_)p��
ʂR
*�v���ލ��f~pR���g���;��>_h�뛌p;�n:�b~|���?��a��|��M|g"a�(�
���(v%�!��ˁ#@F�&gV�b-����0D�+ ��o�	�0 ��1�'��B`�ĉr �Z�A��L�
)�
2���sRm����a�@�0��V&�C�
P��E�[�zn'F�BYsYr^!R8�v2�[YC�U�N�ĩ���f��e3���t��	�O�n(����
k-�ܪ��>n=��~�4����>���R��[�qĩ��q���,Z�}�ݧ5d=���Q)ّ�����N1w�;x�Ģ�Of�vRW��B:��OILh֒W*�%�Ӧ���y\G��(1^`�v�dO�<^V����{���NH�)��vjT&Sw;�L�1���U=����0�X�]Kg'���{����(�4�����s�!Z����,@��^oj3���6S�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R��ְ=�ͻ߽�S��.z�����d.�����G�a6�2:��u�X�[�j�~�R]a��â���a�]��V�'uٜs�|�O��B�N�rp�8��-4g��v���5��.:������|}��o\�����.RJ��2abtQ��ر�N<�v�B����ҁ�6��x1b�ǩ��{�yο����v���,8��w�/���է�҉�u�KVb�11$Mi�ѬX����46��/��f��#��)U���1f\������r�V��6}]�b��WT�BN�ttn���}n�NE.�e���<��<���?��3�LX+1V2m�$֮��f��ɓ�<�uq��k�lL-���k��k3W�<SN
Q���1/�=�D�� �k�l�{��xS.�gw�G6a�(�)�����Yr��c���^w�y�.��&��ǖʐ�b|��6d�'��
�2�
�N
pTAsf�fS��II�N*~Hw��J���������sՙ/��0���>Ii"@�VA-N:��Z�^h�N.�i#XX���C��a���q�Xx�N�r*��@p�Y�h���\�����{�Z�����0'��O�}N\�������wB'
 1���{7VF�Z��rj�Ɖ��ܬ�fْ�
�d5�X��}��X���	BE��B�|��[N[NS6����Kds���ܵ�yd�C8N?3�g[k1J�?�m�;����Q�<;��r;��vR3
�(A��)�9�#syxQ�{�Άm�Q�ޭ�o�9�	BT?^�lw/:	{zzzƾ�����`"��
X退/��9�Aޯ���������}7D'?B_�����=��y�'3k�\~�<���u�/h�C�����_&v�]�����`]�45�h�5KV.����O:ŮdY�b�5 �wR�5Jo��GY�9���s�	,�P�3�Y�Ξ�팝t�H��v�"ص�m.�*�&\�T�Hj��W�����w�
?�Z�Lz\1�Bm-�|��@��oꢷ��w�x	���5���E���M�4%kg�c���k��q�N�h�杞t"[�=�+���1�2li6܄h>*�
�9b���F�O|K�egix�Z"�R�l/���8��X"�I�����:W-*��/�m2>�����	v�_�	IK�Z�%�
�� T|�[�4ᴫ��o�z�b&�*M�R�`mC��X)#2^Ĩ��ņ�8;��6�Zj2��=ag�ǽ@Ҍ!��$ӄ3!�8��B��i�����O��"U��-ߴ����:��-8��� @!Y��O��|V����7��B����϶j��r�fr�!9v���k{���b�(,Nhk��<��絰�~��������AS��EP���)uۻl�:>��_�u�6[@`-�w��:m��rft�('ʕ$�+�6J��4�
�@�H�j`��L�����@��i�N��)�p�y�<�5Z�w����dm�>�?��K�T����.��(5|æ�"�-J+0#�L��:{��C+��7��?Z�폼��/~.:���Y�Z+tL����.!�m�O��s��oy8/YNjr�p2��R�l�������sxN��b7��Nb������l2'�?��<�}��=*�=AG�!���M��'�	bt��Nc�¿?A�������:�]g/&„)�A��TԌ~��I�]g��8�m�!k��u��S&�}�}=������_��Btw�+���=�T���f�"�J�R��1+?k���s>e�	T@ٔ�HL�P--��Bc&G.A���!�V�@��!T!�R�U)�j9":!�Аϐ�ep�@JQ=��K�w2wV3��7��y�m<��$N;dY20��8���&"���+r��X��a�	T�2�ktjԔS,ms���L�da}��U)��R~�<�E�w�8 �@�&�
sRa��x3������3��s�J����{H*� ��"���
B�	��D�vx�6�lx�+��"���D1�etua;۶n���?������l6S��K�Cf���
4",��L��Pf����f���o���$��<�=��_��s���"��/�@����"Gt{1��J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R���ְ=���Y>y�y�R+\�Ñ.‰�"NS�TS�cl��kF+Bcٶj%>��f��|rncì��L�1�j�|@�5<�5,D��c#p�� ��T�w��jm��o�'/��]����;��#q>�v*Eh-�V��…��~�����G<����X������Eojw���dp�$��O�r��v��k4FiBcرz
�?~]6�<��7^pQ��4���q�U/�b��ȇ�1l^���}|l`Y���mim����[�I���i�͉*
*�$b�z�XGb\���X�����m���	���gG��8��Y45y,Y�c,��,<f3-™��Ƅ!FJ^y�^X���/��tw�-3f��F%��{Z[�Zh 7C���	�Q�l��vb��H��fYU?<�����'�m�ϯ�לˡ�M������-�3p���D�\K����4*k��#�z��~C�6K�=�����>��88��\�Jl&˒��G���хRV�����3���b�Ր?ާ�[}ell"`�_)��;ttts�ys9����s5
���,G3�0���,�T*��+�t���}��B��w23~��b�=�L�	��t<WmX���ي%�����{����&5�&t���l҂)� ��*4-ƺ�jѣM�аXD��pBU��&����8M�I�W�dȗ<
g"L��r�EE5�DD\�_�J���}��<�c�2%ǔ)��]6l)�2�~�N
�K%L�\��xG�w�d�D������Ʒ����bvnGL�ҿz-��/����(EC&�n݃�uw/I_��/��iG���Ϭi�c:i��ݘ$��c'Qu���=d,'U֐d:N:���~
Y���&0��	�f��w�}|'U�>*]���E�����)��.BoT2dB�i������k�4�C�~}t3k�t�kA�"���NG?�8h�9i�K�f�H)����$ܰ;�,
gL!w��U�q|��9s8)��D'��_?�2�,[ǭ���S�vT�T"'�W\�����i����:~��d�.��Ϋ�Ig^|����%��}���['pR�TBb�آ�ۦ1�–�����Axv��g�\zBIg�aǢ^�ZLc�ǎe���p襂��92J8&�vҡ�I����#�<�����q���.9�� 9b�(�}��Q�}lss%��/���]�.<�1��D�t�v֚�o�9"���"��`�Q.�6G��?%�n�}�Cx�Z�mE��I�e��w�G?�j&n`�b��n��#�q0(3�t
`���Hc��u��V;���hmř3����e���4������ء��b��p]N���!�۲�����u)�e��M��R+WS��X�C��{�U�w�b���XK�5�+�7s����A��ۑNZ,����}p��h�s+��q� ��?'�A_(��]@ZK=�h!�a�)�'˿����˷��"�^ܑ�0����J�����~4���c����E�4Eo��D�B��p��4��
OpBq{�8�l|���4I�֫:��s�p��N[\}e���=�UZ,���]uۼ���,���E8�ZyB�b��{�Ɖ�T+���v�U5��$X��h��am5�Ժ<(!�	w�J�Ȟ��=�p+g�>���J�c�s���מZ���n-�NL�SJE�!&逛�<˱�m�@ ���+�R�8�Z�.�Z�q_gL���Ţ�FX1&gk�n�4���4�"�����хY�n�@g� @�畢����)�PI!�����|���D��T�CZ�h-A"�e]\��%rF�˹���!n�s�8� {L���`N�0���v��Z �����Ј�f�q�	ղ&�j�� @U����+2��)����u]���8�YE�����R�0���u.�$-�56d�e3G ����5.֢�!A�(W�u/�BZ�7o}���eRtFF4��^2��a�	b`����p�@� ې��f�y�h�1b<�&�I�1$�~�� C��\�\���=�w����P��r%7�I�t�.���@�
'P����_��(�����<'�d�,%���8�ܖ:�"rn)	3B����8ߐ2��R��E�#1~��8���'���R����!i��2��0l6ਰ���ro�����W��
\2��>�u뢜t��1#���$x��l�F�J���kq��Ql�k`Y0	�&<f��(��RH�_�M��T�Y˽��hm�֐*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J��^
��{��v��?��vm52&@��u7�-�v�7�X�]�,�_���v�_-���kW��\<���ëU���im��`�bź����u�|���YpΥ�j_����O!��ܣ|�Z�`�Jc�fŚM�����l�x�����]�EJ���}�W!���.�5{,�v¥��veEܷ��;�?u�痾��1�Nj��5�u�u��-�\���'ۛ��MS�\3%OF�^�~�z�=Q�e�{���g9G�@]�Q�q�7?��Tx�p�U(�m�Z����B�)c]������غ�n���}���M������ل5��U�Hi��%�Y:6.��f��ɓ�<�uq�d�@K��d�[`YW_�m�1������θ�<Wb�<��ѱ�~`�<!܍-��|��v[��;�7̊-A�p]gX�ӞN�D��u��o�}���g���j�Ue���W�>.�2�>��)�_�Taj{�#L��b9�x ��Y�Mi�G�c���6-F[HT�:����>�������r��� ��0���DŎ	L�ے���y���m�+]|M�ӨY�r
�Λ��9���#���9��n+��U�]E�׌�5����V('�ǝ+�|�ި�]8u�������b��%�8�2�|d./*r�c�ٰ��H�K�����L IDAT*����n���B�acQ�X����E���}+Ƶ�
�8qe�)�w�T.���'W��mE�����8�[�o_�ƃ�f���&N�ը�ht���ox����4{ͨ����Fm�+���XE�~9,�L�H�(}yI"��Z��VL�Oq���c?�9'���
>���_��4A$��7/���_���ڧ_����i&�f�ҥ�"io��u��;��
}��?)%q@m�?:~����n��޽�".)J��8Ø�u;鹳��5���څ�D�a��\��X,&\Β�Z�vc�e��2l�	�|6T�!&s�~=�ˍ���f����iTb�IqXF=�O�b%�:65��l4�r�I����Cu����^��Q?^�Շ�Y�u"9�������g�հ��w���;�sǸ�Ѹ*%wҁ�XO$M���B-�L�1M1B�cA)�.��{�+��T�xZ1a�7m�u�<�6�~ѱx�l��	�7�7��u���a��w��q���b����h�$&���� 5��8&e$?{���7����c�ēM|a�6��̹\T�`��4���1����a�V���n��r����԰�jA��K/q�%��I��m8�oñ=�?���/��ǰ{`h�քțcn�ݗ�0��_���\��'n�.w~=��	��9�NZ,2�Z������$��"E�A!
>=e��[�W�����X��p'�$^�#'O��j���1I�3�}��fnNfVj�����?��+�N����N�ո��޶�x�f[%�������M���:|Nk{�h,o��G�#�/ +����	����TQd���o�g9bS4A$
�0��S&�}�}=������_��Btw�!�pT�[�vA����~��Π'\�N�*�C�㬸�bJ����8�÷n�+��e��~1��o<��3v�थ��?���G"A ���:���J��
P�"o�*�Ǟ�s]�+qg��=`��0��0�6�yU��:�)_�vF_(bVӘ�"x�8A@��D��0�Y���VCC���ç��=����ӵ�L_)�{��M���U�qؼy3��V�Čב���Da�������>p;�E_��	�ZU�WV�����bo5�I�z;])��^����C��i����z��
�l6ј>���u=���8|iI/O>�aԓ�}
,Km�6��f�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U������ѠZU�|���o~��p��ZӦ-�?~�R
���</���a��C?�>P�f�aŊ�^��N��̟��v���+��+��C�mlS�a�X�
�4+Vl`��/�,���׿���zH��՛�Z�[�+q���5���ش���w��s���_��v�^��s%�	��1�
fS�X����|�>���`�{�ڮ0x�C��s�
�>����
=Pl�5+6����{l`�P�V�Gh�bH����!��u�8�n���P��.�������a��9�&P.����#�͂��6������I���`m6vH��O�>�5C�a�/�o�b}��R�;y�<Տ+�8�AJ��c=�vQ�����:��^�`�Ŭ),RZrY�X��~��>�m�t���19elH9i-�	���7��9�I�B��~�z~�[�3���?|��s?�Xw�G��{���P(�}��JѡJZA���}�R�J�z�C���D�lP`��	�b<���
��!j�E�3I�-�2�	fp���|VW�����s �Z3���4s� ܪwH�o��I�_D�Ly�eA��i��wv"��̵�hn���{�=���zQԠ���?[���?��1,h�x���nꡨ�q3.8;d��}Mww�\Υ�%��2lѡ�b��u{L���㏜��GM���q��{�
Ҡ:���2̊���[)v�2�Σ�N���_|e-@�5}O?��p��[��̒%�����^�q����x	�C8�?\²�Z��;��;���A���~��1"��}�.=�sϫϪ�vz�sP�,RJLa*�C�gƌJ]!'0sG�(���Ln��I{�},������o�o��w���9��9�o�Ґdc $����[.`݈�b�@�8z�O���mj���.1	��I8�M��>�j|?/�J��i��Z���n�8�1ص�Ĕ)Y�xb#s�4�r�.N;m֫b�X
��+��� y�e�ۏ�-� M��g�$-�`�3,��u���Rg$�b7�T�D5?7��|M�n�Ţ���*�(�s�#���h��X�ٲ���v��{�/<��K���p]���^5�%���\��7+���9gH�v^ĝ;7�ҹ�`�?�ܵ�acX�˅��M�-V�O�IK~%�j�U���\���T.��v�!��;:F
� �������,�;w�@`�7�׏�\s����jN��b��L	�C��LI�Rc�}���r�ɭ�X�������'M̂�b	�D����uo���w%Jt��BKqp�$"'M�P)��Q�=���WJ`㧩7Ng�;o���^;b����×O|#G���^��"P��a��j��EkH2v˖���}��Ĵ�ړ��lY[��_��S�����)��C�X
-�-��Z)t�H
��]�v��Þ���΢1�R)Jk��`Ӛ�!izp��kY�@�z�}�53n|��#�xV���0����w$sR }\��U�rOt��6��C���7,������Qa³�0��� j9��2h��a��A�������0ɀe��X�p&^�0�v�
G�:#7N1Tk�m�:<�o$�����8r�Cc(��	��J d#���"B�Џn�X�0:Ę��X+I��1��$����^#�8
l\,Ji��U<b��#h�4���p��#�o�X�5h�	T@�*aG�F
�6��l4A��-U0�&P�
�m
!��4fr�2�qϿg�'*E�B�V#�k�IDž���>1^�P-)%�w�q]�+
�S�f�A��xU���Z�ŦMOEQW$�6r�z�J�L1��U2D��2�i�
2*��Q��֔�dG��*�Oh�R*+��L�v�K�XL�HI�@�
I+m�Z�ڠ2Y�|�4H�Z�Ϳ<��R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T��O�v`��[`پy]&ł���ow'5�_i�inF8LP(�g�奟������ճX��.jw���xH7n�|@�X�Q;��(cغrW,y�>x�!o\0�M׶+
���.��7������y,�Յc����ld���w�n��u.�o���"�C=e9��_��\�����{��+��†3���X������â7*�4�5L��I,��l]6��=nKk+��)�hϨ�&Bb���.:�e��u�����͘FWO����������ٵHi��%�	:6,���k
,(�~ ���&'���aY����k�d�g��`SD���f��]���X\��J�l�b��Y-��g�D�P���h�3A!�5�e�����{�l���ê�g������m�1of~��B>|�����٦}�
-t=��Cih��@���5�mx]�����_�#ȟy
Y��NMA^�-Y����#@�~l��V��&��GkMo�2���#�leCJY���ӊ>~��vv���s��ʹU���/Q�>y!��	��(�#(?8���B
�
����"ɜ������s9I�2��n'}�eG�o_�d�M�A_?J)~���ǵ�t��=��uO��X6T��I����w��(�z'�[2Qbo_���R�R�vTB�5�
e�G5w,��ĔK(k�O?
�ҫ��Z^�����+:6n#���l�y���N����U�E��X6T���Bֱ���X�������`�%Tk_���F�w�98�o
s/��'?*�@m�A�(_kz��W��9�޴3{�a4��M�3�(}�M��n��皱���⇊�+�ߪ;'}m�ec@��: �w>u8_�c-�?n
g�8�J��[�־y�@�ڣ?f�g�w�E�`�h;ð�AAa�6ض-�l��`�v��O�(��A^
�ȫw��m޳N��/z�q�1W�����;ߣ��Wr���j4rE�0����,B�p��؏\��/[H�0��e8�\ˤ<,����0։6N6�PM���\U�d8��S'���e��ɦRX���T�a��l��7N�Uk�,����U���EY���7 �ϘUؔ(��s��BsO�47“�{m���!3L/�Z
��I��ٳa�a���"����o'y��1~�\K�q�A]�p��kB!�_k`��̤��g��d�f��OC��r�̚5�x�����;w��۱��
�w��?.���5/��
�8q;�V%h��$���yI�U@��	A^�>�r��Zd��km<�3e,a�E�b��H`s_��I�X�/@^����x�F3<�x����8�V���t	�	�t,�׸7��5�MW�w
Gb*EJ�`ݺul��F�]KϮ�Q�
k�;
���o3��6S��R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T����az�'P���Y0��+ڕ�1��E�wκi�����F*Î
+8�_��g���[ڕ0x�;h�G}~��k"�Vh���p����f�0�}1�v��\���V����Y֯�s�c�	T���M�N�*ƀ+�\e��eH�c��lN�NWX��&�Ӻ&����!iA��'O��ji΄C��A0P~����>��Θy*��3��`�>�je|"�`��X�+�?��v/m��l� ���6�Hv�Ԇ��~���k6�N���k�Bn�Y#���d-��\�W��{vde�v2�%P[��XL���,�º����1���het�J_Kg��!P-1�͠�Pmkh
�&�F�,�u����}t�ݭT����^Ĥӏe�O_����xc_��^ik-Nj	��!n�S{	<au��0��b䤂d��uڔz��V^iw� T�	kÃ�����6�a��/�}�֌x����������/�s��U[$
Ke��R]S#�"�LR�)e����T�V��B��
1Š2�&��T�r4Z��'
,�[���4�W��Q�8%�����텟��N:��9�K_"��׌'ȯ|ߧ�l\tQ�S)#2�"�_�Ɯ�PYtR'��"�5@��r����&�r?����p��Nj=�0�
X�O����+a�'{&�1��Ռe�,��QI�&����85����9��r�dk/�FF:��
�h�"rҽ\��v�g�g�o�HC�2��t����5�������3~�;�qc��N:�l��čb����B��^']��rD��26TKU�U�(W�os��c���z������x?rʤ�R��N���W[#�t`I�fh&���
$BN��FGP��)�6)�+�j�DP-Ə�*�lɗ�1����Sy�`G7�1�����R��{ӷ�d<_s'��a� @Q�l�S�U,a�W��+�0�B�
Pa��8ͯ��TKC�C���wJ:��J�d^�ڷNC��o>�5��}1�����`�$�gRc���� �\ٝ%�c���eT�N�JI�`�`�%J�<.TkS_�`$u �����}ѷ��&�㯲������_��T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T��5�C�Ӧ]�`���ەx���ɸFg8�*�7h=P��X�b��]b�DE`�\n��+�ÐL&��!��ohn��6���&3����x���� s8�p1ݒ9CQ���h�hòo-W�n��\��K>l�
�^�.���v��v�*`��h��
e�W������͕���t^��(���qb�CJtl\�`-�j�Q�n�*N|�e]]%��m]]*~c'vȱq6RZ���r���E� �ŋ�p�B^���s�ǎ �A��>ȶm۸���@^��6/��ۋ�eT�t�&q^���R�m֨����I��%��������3QQYl]6K����3��8B�Hv�6B�#����<o�X�x����S��l�JN����k%�JB��G���2K���Z�bE#k���:.�z饗�����樣��qL�G��h�Y�|9S�La�…��1 /�%��K�M3�����?$…�h���fp�!{�>XA%&���A�Q
*j��:!N�*���5]'ւ6�6�Ü�2��c���g-r`�'�C�J4�}6������;}:���Z����Q�P(���G6���(>�"�n��݇��2��Ә����?><���r�!�$*��/7��rkTi:dy�e=.~��̛=��2�=����ޭybʉз�.����>����G���L�)����u����EN���������go�_�yLa�N\˄�}L����ђ�<w�� ]g�`b'��o�
��z{�Zt|���;� J�>J�Yg>�(�^`��~��6����`@'�Z���Ļ�.<�#�˱��_�v�D`q�e��v#��M̞=���6|�O\��_�Ƭ�����_t"��u��v�<��?D��q+����(����X��5]��I���r|p����Xci�LE@5�����t}6|��d�ٚ1;c�>�K�r�y��esio�tx�P��z�zUڰd�T`��N
��E��L��b�Y���g�L�F�)��Μ�w�x��Q�E�h膃�B������ÜB|��HtNqݢ��T����j}xR'-�*X"i�M�fM�~�fMa�YSyiM�`�Nd�k44��Zuԁh���t��o��‰^��o���#d�S[*U�[mm�w��M���xy�@P*��=���6��^D[�DCP(��1mΒd����|�GJI^8�`�!�0[Y�kf���bҁ�9^+�����R,���8oں�gŤ��Ć�]��>B�\���?xA��gy��Rn҄��y��P�#0
�-޸��w4u�𨐴to i�r�E�^[�M;���I�B!fYZ&_r	��OF�!"����B`��ȝv]��}5'ݛH���Ϗ~�#���o�г��~�3�{�2������,\��������䤓NJI�
�0�Ĩ#o���{�!8g:�}%����ذ}Hg�ȓh�3�'wI=C��o<f�g�{��埻\��>�9�`<��<�Tì�4���Yfmx�i7N�j���5�SsNjm4sBcX�{g��`k��yb'���G]��n>9��Z@+������.��m�T���х"���dP���Y�pg���v�{᤻v�bٲe8����?�uo9���w�xU'3�5��^ʡs��Kϑ����n��քNjcHљa�;v�q�{�Ƒ�dgW�]݅���I럎��B)���
��"�����K���`�z�a�е�A��H���N����T@��w�5�V)��Ik?Q�c�9郜�#�����ް���E��!>�U(:�o��a2s�LN:�$/^�SO=��G�7>}9A��R �B����G��g?KCCC"'�����>MN��c���k�[,�2��I��Ͱ�.�%o
�������uU�{���M�&�@���R�R��2) WQ&'�
��1��P��W�\�E&E�U.��@�����-M�t34�I���}r2��9�����
9%{�笵��<k����<�k�itހ:k/�v�`�LM�$�_��ɘ�2��ya!�(�����m/�ò,�(7���oJ���!B(��	!R��w��@�
���4R���G^�u�Eq�Yg1eʔbj�9��D�n����&O�L.��l��
�}�Ȫ$v"N�D>��$ IDAT�+�����B���ry�V�&5u��)��W��*����OJ�+ 0ߐ�	CU���W,\-8�dś�Vr?1\]+N2���#���{3���6)�'�}t>WQ;-���mhi��[�Qj��&�pR[J��>���:M6��ՙ)|.M2��8~�NZ
��iӦ�N�7m�T1T˒���Ķ,��2�~[i
�A\��x�7��hz����iC�r�&�y��2�o�uhb��cl�ꤡc��h3_ڒ�%���r�X^~�׳�Np`	b�x6m�H��,��by�~]�������[To��Z��<��"E�)R�H�"E�)R�H�"E�)R�H�"E�)R�H�"E�)R�H��Wk�C��W�����o�7����8�TX���g*�^h����V�4c/R$ޡp�4l�ݷ�/pU?�}��_xms�
�4{$������`����*�(M���n�ܗ�����.c'6�u�������Q����Z��K�|�,�N:s�]�nn��kH��H�,���x�o��n�{�8^_�bn4L����#�V-뷱��`p�ʢoo&Q����Wxd�I��ٕ����ʲyՔ���r�9�2���W|f/��Ѓw�g�۽f-羾dd`Y�.ۻ�	{F
Wn��;�f�����h�n��BUo�%P�.��+�.���B��������PGW��C�s݂����CK�`��)Ԟ��#Κ2и���<��-�w=X�M7���ڐ��%����S�L�.��A�XH�-1v�Î?Ԟ��y8��m�l%,�8�B	�!�l��u��	�Ե���g��K�i�R>�=C��жg�뉰,h����ʲ���k�zRXZˤdUM���
��m�m��1�l���A:M�)
��ka�� ��P�����N�̛��>p��@^�l��%s^���ȓ�N`f�N���ʲ������zd��i�����'˶�gsl߼��#�e�/`��)T2�x�v��F=Pq��/�����C*/����;����?�:Z[qde0�~ڨs�U_���q��Y�3��
��BX���]�X��Ui��Iݝ;�C��{�N�ؑ�yv�
A'��/��Azi��SY�=vv�1"Ƹ�^��c�)K9cf�}�(9�Č	C"�1_)j�<�bYeU��3���'�~v">����tRC%�19g��K�e�<�p�_~���mIR��?�����)Z�7�2j
���$>�u��;g?y�w�x���>���cH��?���[<��쟪7�}0���4�+ �̐yD��d�4l�����&p�C�10�J(���<�����=s1�c.����u�!,�8�C/�L�C;�ժ>�̙��J&��ǩ�Uc%h@B�xÜtpGV2g��;��^~�1s���uVM
5����ў��=}y>�W�9������ޠ2�ф���ˆ�)�=}!h���������I�?�Ďɐ8� /9E�z�c�$$O���0�W`ׇ�����ferF~��\�~�#,8b	?^|>Ϯ>���	��d�`
G,���֔o�@Mq	bUɒ)\es�>eh3(�.W�̩Ǻ�^z�!�l1��"-�G��ĩ�\̴����Y�5p�[��.��ן�͠��z�u�b?i0c3$N
ȭ$�qq�I�~i<����3��jr�2i�j�`�AuCn;x�`����Z��~p��:0
� [~�f]��k�e#^���뗄
��
�?����:�K�Toh�{^.�#���s��"�<��/����x�k>b�Rfƍ�~�dp.���.,?��sp3�.���|��:�1�X��;}�U6�9��1������)9��=���i�P�?�:H��5�w#x�`�'���!9�6��o���g��	��eaY֨:���yT���TI� @k]Ҧ�Ɓ2a;}S�ѐκ`�it��T6�W�H�w�:���EՐ.���{9��*�L�l~�t��!�FÂ,�^ h��~���B�V�s�>m�.\�
N�z�ͯ}�����*��jŎ�ΊӽR
!D�t��6�p+0Z���_p0���?|,?|he��+���f:;S�zsМT�PP�B�`�d?@�Q:��$�Cçc�4t?����0�^H=�o��W���!�����G��t�=��yI��H��-C��G���W�v�t�սm�W2�FSi,u=,��~is�4U3s�2N���;+��z�<v����0� �:`�W$�5�>d�]�a��0<��[݋�E�W���b��V��R�5^Rw�ǁ=9L��wL�˧��ּ>'�����3k5���X,F<�/�u0�X�rT�_?�^���IB���Lj9EZ�Z��	�˄��+�������4
��i��ܴ��:h�UA��T�^|>���[��_���I-�R/#�WU!c	��`|���jm�ƣ
0� �Ô�ۡ[P�Hzf'I��k5�e��]�B��0�o-�=M/���.�N�i�
��s�R��}����.,~*���斮={o�A�"f��mI��CX:�&�g4IK��e"t��87l�ތ�o1Ȭ�u+��n�ܹطҦ�q���|D:@�۷�<~s_��Q
~��D���{Պl��ٌ)R�H�"E�)R�H�"E�)R�H�"E�)R�H�"E�)R�H�"E��ZCz>j�ŋ.��s͗��ք5eh��U���xU9�~��Y��z�ͶRر��Ŀ�/|�����W�}��~X�1��Ak_���?QTk�yG-:�S5B����M!\
؏1Ơ�F�h�nk��/��,������M75��F�i�W`�h��~��ݼ{����N=r�_���882,����A���[��*�ך���9c�_+��ٶ�����aB
�A�w_��0�âH�4-�ZXw���e;w�����x��w�s�M�shr�*-�eo.�2�Z^O�]�؀�ۇD`	A��-ljkkɛA�),�XF:�q�
���m�;�cO��'��aو5��8Hc!�M��ol.ۦ�vmm-RJ���/��?X�~]�6��RvS}]����B
��ۈcK�m�b����y�=nܸ"��XX�e,C�t@"�F��	Zw�
�Z-jJN��+�k�͌���1�A�G���|�1�3Y�|L'�����RA&�Ѻ�J_KX��/���X�W�7]���"&˯�€ViY�EEY]!��Ǜ�*T�n7�N
	p��,�'�a�d��qe
�[Lf��r�p����aqX�	&�M���3t=�Z�E�C�Th�W~�u�'��ƒ/�F�+2|���N!Pf��>��UԨ���(:�R�To6���K�褕��1�$������!�R���a=�q�i�-��PZ��i�8�w"��2�����TK,=z���vvwb�����#�L�qWWaD������34��`{bX�VƼ2�@�x*�*:���X�=�Zy�R�B�9�Vm_��Fɾ�4�#��S���x7p�m󐓦�\�$�˯�����i���ܲ%/��߿��#e�
����L���}��ЮK쭷`�²lNH���1ӈ�	���W�څU]M�S ���.}�*�x~���E��'~�ѕ�!R�>�eqhM���X�07|�cj9~�N�?�]�d�[�8�����O��Rғ�	�T�5�_�Q�b��e @Im��T&5�|(
��v
]������;�|�U��c�������u���Ww�!�GY��pɭ#��'^�����Z�ҡM��Nf�+83f��؎��"��w�������$҄�ѥ��<m*���|#ɚ,��R3kj&�K�� Hu�l�Ś�e�+�l��#��ͺ��I
�l�I��^�8�|�ΐbbQ<nߑT��Xq�'�Ύ=$Vl檯^�ɇ&��zU�"� �ɔݨw̞��{
N,.&
s�o��sW/y����=֮�}w=Q^G�,3UU�i��,]��4�ؤI�yv1��~��O�'��c�M�-���] �`�k�J<�L.�p$]��!9v07��Dծ6b�#�����]��E�ҁ�m�I5l������^w8+w��A�x5���z�TS��ϒ\�?��;���7��w��)�}/�� �-NzԺU|�WwXP`!H>�{�}�c|��y��@ɨd�Z�����ʴ��"p]|@
F��=o֬Y�d�L���pU\XH��� c�Og"�7z'�רN�,��\͝���ӧ5r��w1UMfc�
�|�#�]�/3`STns8�/�WD�|���p��ӹ�[���ױ�k1'Ƃ���7ٓ�3'
��¼���'x|�\��'�����ɫ}yiE��*@�La~�
�T#��W���}�mz~�⎃4˶�]�X|�L��.�ML��!p��w��&���[A�^Xj]Մ6����ηj���=�t���-���#�D��N5�l6з�;i?N)��Iظ}#_x��������o�_��W�u��mܟ�j঺i��v�m�P�d�g�'��x
_�n>��;XA.���Q��c[���"\8��O(�/�|���$w�*:֭#.6��t�N;���і�ЁTE�1��H!ۄ��Q�1�_eB���v����2�.��ui�v��!������>�.E��/��]�?�x���ؾ��;V��F�h���e����(Q~����_�:�'�z7�,��,\���=�*`4�$V<�1�I
��?75Z�jP=��L)���F& Bʡ��0A�����Z杸�v�����$v">Ȧ2 i�C�,��B�a�:� K ��[[Tw�
�ԃ��r�p�V���j�m>K�8��4/mx	�
�	W3��9�%��x�C�40��y���]�e�M�–#
ẅ{\��X�%;m�-@zy,�%�i��lܸ���Β�4�!���c�۔��d[��X��~�a��W?��	(�ƅeK�m�m����󣲩18�H��Iz ,�^���/�o�J���aF߱*�9��̎�ˆ0��N��aN�"���6#E�)R�H�"E�)R�H�"E�)R�H�"E�)R�H�"E�)R�H�"��֐�����h�yW5�pe���kvh�8�w�{���+9�2	�u������9'�P�ͫ��X�s�m�J!i�aI�%������Zc�� �f�������?��7ly�Ջ.�藛61G"��@ �"�%e��6�B�e���7�X�Փ�����‹%,0n�Uҷ=K0<l8�j� /�5��q�Ʋm�{���F�T/R�Eqnc������
髁�کm��f���v�����_/m��g���c8}�Ŀ��T:o7�ב�
�a�3:Z�h`p�b��5{ٴ�}D���)Ɣ��;`x�p���Ô|]�T&��\�hK?���D�Z�n��g��4�R߃�h�`�۶w�f��ˎ�<��w�۬��@�Cߣi�M��d\=$�B�f�B9{x�v��0�Bl.�g�t���0<l�2��!#T�W�F�p�+�.-�:|C�������KX̋e��w@�Xh�cu��n,yn�W,�>�Z�����s�H'�ѝ�8r�߰&`�9�/� 'M�ǜS:�>K___~�n��6 ��==\�Y̨M���=��#���t�|���Z�h4t��i�>��'��ֶ+z���	�%�W{E�T_#�7�?<�I����V�Z����+�	�-�o"-(Z]��'u��i",�,\0ٲ�`�1�??����_�,��by��se:i�~zƲ�\��|�ԓ�M
�4j�N~�e�^<��|ykEN����0����q�:����Β���H�t���*�霏���5sb���'q�ਉ6c�	�Յ����cO:(t�_��pR�dݢ���t�*��Q�|q(S)
Ɛɨ�s
@���"d����sAH~S#���Z��ß:�\���L@E��@&�a�Ƶ=��`_p^8/;aj�J����`���1�!#,~�߯����ym]����
�ئ!�["D��Wl�2��'MO��f�8�*��������_��UF�?�f�y�eMa$-=ory����2�h2!�B���Ά�)�fMGf�y,���G0�
���{R���c*"�2�0
�,�����^$}�Ɍs	�ΙN��+��o4�7��#��Ů`��˪"iaެ|��hټ�#i����7e2�����t�C2F��GIә<X6fPT�Ҵ� �/�Â
�AWr?�L?F��8j��x�*R�W��d�K���5�5�8�-�̦'IgN����c鬋�4O&'��)gӗ�a3��r6G&jIg;K�{�}����y 
FX�#����3B��Y��RVؿ���qqR����ʼnӒ3���ܠv椣���
�A+���H��~�؁���e��9z�mL1T��w���v��H$ضM��
T_񯸿�=������{�����os���,��%]+�ee	!�67�oM9��T�;�/q�#���D�Ն������ڽ�[^�*�eM�\�i���C\Q(�PXf`O���;He+�f8��1!�t�y�O�\�a�*DSPA�Ԡ<���a�]7� "ܶ��9*���P��y�!�Fu���w=U��-rI��^e]�=[���o���6�M����-	F��m��^�m��f���J�e�>a�b�^�m��^�[�5�$c�APr���j��T'�$�.'�����0>{��0cY(!�@TWc'a�J9��5.AP���r)��2
�jٶM��9{�q��ֺ�R���	��	A��
;� ��!&6
���
3��=�&"��f��,��f�h�|1�x�
�ث�6hc���^�%�㤶-I�,BH��'[��oڲ��r{���I)�^���e����ÆC���t_���Q}��q��i��rl�ؾ�x�k�ߑ�*���6;ؾ��}"'��l�
���LFJr9��������9#ޝ�T+���g3R�H�"E�)R�H�"E�)R�H�"E�)R�H�"E�)R�H�"E�)�j
y�MS}��4[A��8H�	�X�J��VW
����lY�e�^)pU__�h����A��4'�)��K�t�R
�ZkZZZX�~}y6�?{�K?���MJ�>�w ��CCm�9(�Q�F뀖
[Yw�W˃���E��\�l����(1b���*F)�@Ѿm=sn|�,�\Ȣ�'��5��F��1r��AԶd��^�e��IS}e�9Ͳ�C�m�>��GC|��g��ư{�޳����e������{��(/��{���6F��x��7n�2W]]]vSS]]]�ccǎ%�J!
��L�:��[�	q�D�����m�f�	���E0[혰��U�LC�� C��n�l�^6e��o�	���`�%Q4j�DO8l|�|�;���e��C�3�͘�8e�)�ʃ�uu۵�
X=)$��1�J#%ZJT"��
{C����i,�c�$�~�U����4���3��������9�U}}4�|2�.Y��@*����震뛂M�Q�~���6��˂��jW3�s�V���+ WFN�\n$~�>Us凩��_��bH)GM4��y�����!N:�4�>�6�������Ķ
�UAɑW��x>��חר���a���H)�i�����W�d�QG1m�z:�McLM͐�)����ᗿ�U�^�sO�@jP~
�Tf?AC�9��'`�l�fP�s]Eww�D¦�6>lVeP�Ba�5eټ�Y����sNCnh��ށ���~�;��2۹|�N��2��!�S�8�����y�k{�����TӰ}C�Uo84L�9��.U�
MX��YA�j\���ދS�����w=@f�V�;v��opD�d�p�]��l�9�U���>�AZ`	�*D��/��nF?ׇ��/g�e:i�,���8R�"#���_6��PE�����
� IDAT�9�!p]t�x�lZb��aM
�������9����g�����a�h�~'m����zHf�G�02�b��F�A-=�z��ɴ�L=�|6�?Ñ��F�d���2(8ir�ts6mbO{;K�Yf�bT�h�e1��tPa;�_k=$ctvf�����[9�1�Y�ɩ�Nr^�AS:̓kO`�&����7ώ0רl.�ɺ|�5J/��Oj�n[ܮz����
�k���Ј;v26�}�#��T�N�f2PX��GR��c�@k�l�8Eꏤ^���ڦp��s���BT��Nz�;�x�>�J)6��K�kg�f߶m�1E'u����Ԕ��
��9Ez�`j�H����H0���5Ije�L�\�yo���rʈ��p�QP��	�������zF����/�k�4f���{/���B�����M��e'�Gl���g-$hh�v�.���[�`��v|�*8���l�h���W�t
/�������FN!�+ �6�|'-D� �Z�9f��I'5�Ҳ�	�L�^����G�|�~�L2'��������T:�����Q�]z ��NJ�WoA!8�T�;@�N��
*��>�����HS�2����U[���D��^�"{��r�Q�m�V4�C\N��$�@"վ"Vh����#o?�s?}�>.�_J�
���}�6#�2B<��.k{ ��;��n�t'F��{`d'�x��ח�'.��W��l�����;�\�C5�ҊO����fm]]�4�n��$�(S)[�A�2\��oAy�>'��B'�Z�0��?�����J~�/���Z	-�ׯ�[��?#s�����Bz>��mk�w$�
W���*�x,!�����@)��</�>�JW��P1��x5�x!ҒXc,^ 
�OF��?��|�\�CZMP��p�+��:#��l!�R_3lH(�x~@.�H��[�TŪH�X��k�7t�L���<��#�籄�$
�L��S^�Zz��&+,��U��D��CR���
���<r�<��!N*�Mg�AZ[����_����	�X  ]^�l)IzI�%О&+��ƨ0��N��2�Ԗ��N#�Й4ٌ���a:�i�1�M���Ԋ ǧ�v��2	�YMZd�ɴ5��gi� ��N�Ѱ�HZ��m��a�� ��v��9�;8�!�
����dz)R�H�"E�)R�H�"E�)R�H�"E�)R�H�"E����TO��f�B���V�\�I'W|�7,P/�~؉~ԅ�����9Vk]�Ig�}߯_ߺ���[�[���]��f�3�\�1�kcޫ����/���}����e��t�"2�,`�z�D���{�<!,������Ge�đ"������t�lܰ�qc�0�a2�=�8�&6r���¢)s���HӔE7-8{p��auU�郂�$� i���^���V�^&$�Ë�Ͽ�9$�c�8V��U8���ڠ�A)��>--�X����@^'����曛������敕��?��v�t#c�.��c2]�y����%�8�ڍ{�a�z�%e��E���_j^���ɓ���X��)&LH0~|�
R����7�
E+BҴ����9e�஽��E���Ͷm#����f�Z&��+��(��JӲ��u��X���9dr+W��o{�۾�%R=�|�����dC�P0��;(N�vu۵M���,ʃ��8�6TI��MMutu	��Y�)
R	Ek��m�5]g/�o¿�\�/�G�V��3Kmm-)��8+������"q��/���]��
ڙ���-����y�=,]��ן�ҥm,]��ן��ڇ��<Zk<�c�e�w�f�<{ܸq8��m��
�2��;��"�H#I��;��
-i��
��8c�ɼ���7~���f`�[(�����M�'s+��t�u�*"�Q����2��Z��o��ßН{�F8@u��ו�Q'�p�h���ts��,�~1�ǯ�<��/�o}�d�v�k�cx:p}ŜY�9{�_w�$����Zx�������w��ܹ���c���e̝�4䵹��!��q0�C�߅�n����Ä�	t�u�U��.ٵC�T��,Xߺ	KZtv�����2T+|eO��p���ټ�F+�Ѧظ��j�*�Q���������/;�82����c�GTUa�<o���cvLEo�Nc@�y	���ch���-�q���{A�7��^�R�����&[�ԕ!q�<ӕ��_��֎�d����g�q�1�d2�>��c��򺥥u��{9�R
]Se��L�i`ۡk����#�����3���!�K!��c�a�U���9l��ठ1F��ώ]m|����Ӹ���7��B+�6:a��٠h�!��6`b9�=�����~*�1G�_���_
�z�����/��	��<Q��͐Jy��c��'�h�?��Y|�;��eB�9T��J�g���k���\�=�M�u]�zkg.���v��ϛin��/�b��]�z�)<��/�ɭ����o"X�
he0���)%=����4\s�55�(�m]���&j��HeR#���j�1�r�>>����)t��a҄)X[�����1q�@�Ac�I��li��*���^Y���M�3���b��ɤ��bGV��3?$� �p��#i�CѲd	�~z`�c�w�{�-iq���K_:��o~�����|"7�2g�uȐ���^65���ٲn6|#3f����-��;�nQ<n��^i�Hü��q�8%���u�*5�o8e��+V�O�\P���<��9���bY��'� M����
yC�s7��o�.Y��ˇ�]�?]q�_Yt��q)�R����1@�5�Z��>Z���G2� �8H�����^j�ͣꤓ�͂��}j7n�_����}��-�vZ���䓛8����--�W]�W���Bm���My��يN�aS�&f7����Y�ce1>��9#�Z�;��ʭ݉��/ΰ���T��	>;oG���������?[��j8����C�M���LA�������~'~(���M
�}o�����r��!��h���@��"0�v$y��*�&N��o��!��l���|�m��q�;�qW_M�HOg�/��nK�TgME����0�)=�e�uR!P�N�(�k���C�w���8�[.���~}ۺ�sb,8jony�=�=%��:��$�o��q��W7��w���c���ՆY��傖]p�	Л3C7�tR� �ߺ��w������8X�g���*�����J�T(�uP���}�h���/�S�� �o�L�
W]�֦���Uh��o�i�җ�r��C��s�+�O]q�L^��Z�a֮��u�J��u�?f�:tKj�r�c�U�J��ׁB������_`���<���g~�}�܇�E[w��I��8I�)|�7��b܄��Ʀ��.'��O�+8���e�<�+N�ǖZ�1�L7��Je���c��y:��90u2ދC{ޠsSX˜ʢ��c�0:�:�����a�T;|��t��y�1V���g&��[��\�.����/p�au|���s��Ȓ�2}�~�.A��P��y$��Bٯ�<��p�M���I��=B��m�Ǘ?N�V��v<RHVl_���A���K��3�
�ޖ��3�q�m�d�U����>���8v28�0�F�w
n���q*H��B!��B�h/ ���E����AVWW�{h�'��*��#P<_���d�@%�
�����1`Zyh�9�)��gL��_�6,� _k?������M��5���
Ut��|�����C�|/s��]�ݰ�O����/G}�kx�"��[����A.�Y�.���̨��!����a@W��t��
/a�!0�j��@W�I?y�����}��a�c�p��z��s��wj�����g�'�*��X�dw��
�t��N`A��N)mv�Ű���,��?T����p��v۶�ڧ?M��a��]�ݳ���M����C߮]����-��Ov��˹�`�䞲m����O<�-van����_���TI�e�}�vl�ƶm�����_�d��\�9<��}=w��=c�ЛZ�e��������w4�}$�@^��}��M�97�\�4wKk�W�a�¿�R�}`q�'��H�������Mc��Q�0[���n�)R�H�"E�)R�H�"E�)R�H�"E�)R�H�"E�)R�H��5�y�O����m��s��]�rx1���LXj�E�5�֬��/�J�����>����9�dy��E�כkj��ƌ}�1�d�f˃�-xǢ���9@����aq���\�랺�X����e���@y6�u¢3?rY�э�p��9Lں�u-���C/}W��
�fw�:�ztqY6�>4�y�\w�]�؈��E
(V��d�	#-��Q�8�7n�2�Z�WZkR���^&Ξ�U�s�ظ���,)�,K���qc�6�ugະgOy���S�ogW��n��@��EX�H
���!���4	$�M���e۴���Iw�~�s\q�;���Ƚ�"�?�qX����H'�ڭ����C{=�2��z��&�Jtf�S����!�	+F���`�oCn�A��Ɉ��1��e���O��{H�bL����\w�R��{�/#�����g������_*��i7��}�E��H��
�UQI���,���#�q����x�����/�J2O��{_
�:SKa_>T�k��C�����F��`�����dޒ�߲���c*ƲA�%n&K�IǑ�Jҷz������#������:Z7�ǧ{�9�
��'N�J�m�v��X��:��1�LE׎��])BdJ�s�R%�M�����0Ͼ�q���|���e&�XO#�mk�G�e������H����\v�"P$�a�Ag_>4�9��!{�G��}P0`H�VԜ�#b�8�G��p����c�]V�W�?�wR��=�䖷pȥ��ڏ�#6}
�t[��݃4=S&0.c�w��1�΢�qz׎�6A�Sà��
7�a��77�T.��C8�)\�`��̞\�ߝJWI�wh�uUq��ӝ�gr5��~��2|��#/R°��*Ȍ{��~��Ӈ���~6�0L��-��SsԜ�p�@�
����>P�Wkn�IeMq˦�e-j���X���ѽlY̜JO{'V�'��P�?X������֊|cDe�<FYC"�H�?��8��Q?C:m���d��
y���7�敾ڑ㚩�f)��ˇ��+W/�A��`�O
��C���������C8s����'y��v����N{�0G��!Hǡu���G����+$]�-O��k�4'
E���� ���sG�*�f�|1��@U<Z2�1G0ov���Y�V���I�R1Q�>x3��m��dq9:'5��.�+��s�I����P]����
�;��&�9�'~�Ofcl�D�7�2�����%�x�CO��D��5�;��9r��C/�8[�����ӴB���e��K\x!<�̞
�_w��A��t>����#9i_>�p�8鬉y���*���8o��dT�X<����{%�&L*�0��j�*�{๊2c?��
��f?2r��^
%T�Q�)6|%A�}o�ԝ�k�y�T�/�
�4�|��wjn�!�҆-�-f�䘺�a��h�k�Q����8����Up�1yG�@�F0{�#����1��v�p��=�M�I�/l<�^��wN��/�-�{r���l�ֻ��Rd��W<}SJ!��tL��	��I��X�=<Q�}+�-x�[A�v폤�0�lA��#�4f�|�Y�"�?�!h�eh��1u�a���o0���9�����c�^xn�����*l�灑k��������JP~�	5|j���֡�d�\0k��ø��y��x�*��1A���rҽ�p�B�B ��؉D8�/�:�4(E��G�� �g$	B�P�v�8R�8�D!�?�ɀ9R�~��
��#��Ha��;;ßR��$�@�PK���y�c�/��UQ;��kqz�!l����gO?��.�Ŀ��E���,F��k�4��)s9��D%	c��,HZ�ܛ
ѕ���Ķ,��2�(W� .qd��F��&�
��G[9�V~T=!�!�X�ʾ;r1����M2��Ag3dE�*�1�{���:�1$�������q
�y
gTO�S��7�j������1�MÁe�e�s0�ϩ@�vg?� �jE6�mF�)R�H�"E�)R�H�"E�)R�H�"E�)R�H�"E�)R�H�"E�_�!=O��E����=!�*����jAXEү~֔Ơ
eZ�l�ɺ�@yP�i�-���O5����8��,�j���Ҧ`3Phвv�ŃI3K^�%/��PcF��0_i�[�q�O����E���o��qp!c-I��a��У{��_(L�/Nkiia����=G,j���f[(�� e���P�q��E���̹�l~�C���o��l[��`Ig���%H�]�1��
4�Z8�֏,��f�;Hi̓�qa�߁��5�Hc�Ɛ@Ѻ�m(�՝���ӕ
B慰l�CJ�)
�8�nz�l��!i�e�&�(�
� /�qظuK���겛�����*�ST�<+ɚ��ʒ�Fs�eSo'x���J$������l�W߀�a������#���,��^�ˮ�k¡)�m�"�5(I���:���{�sXI�`�#���ͰZo�E�D�E�$��c
�:����8��p]Œ�=�㴮�^?$
�u�F)��pN��*����i\�-f�w;cؕ�rY|��&��7�n|�f�ִ*�bJ�1`�,#Ĩ>�)�*l��A�]�易��
޶!�#R�6��E�߅%k��b��`����
N�+i����+�1�Y}����㏮c�)
H;���aU���ގ����0~��r/^I�/�-:i>�I��cX�ҕ�f�8�u�!W$)��.�1�n��B���VYN�I�@��yx����M����3	O���aV4r]Eww�D¦�6>lZeP�Ba�5e�\�W�dw;f#,1dV�X�L����ϲ�w�^�
�k^���#;�6�]9��#��L�_,Nv�s��S�nf���/{�H���Q6�?����;�x<^���m�̣��;�����ҫ��R�vɒ�M6�F�16�!6f�!HB��LB��0�$`��@f�d������%ް�l���������2��n��M2��n�_��ݪ_����[�Ͻ�y<���_q���aȺ%��r�ʆ�8�He�[:���y�ZֻY^�[�:��a��3�<0C��x�kavNڽ��T���p��@��,Z�Bu2��}�9�E�!f��\S6�Dy�*xO���|/]�.ᰡsF.��f��$2!��9X�O�Ɩ�grR�t�A򺍊�I�b]��le4�0�fXb���p�e��ʹZKٶ@��夳�*�8�Ly2���z�ʦ�#l�9��yͷ���U.���#�Y���]��ٴi�Krm����E���V�c��i?����n]�/� �<���ڙD��kՌ�%yX�!��U�]�*�w{�=l�Ws���ǣ�6D`t��Vo}<D@k�]w����E:;;ٸq#��8�����{����,2|鲓ߘ:MD���|~x2�i�9Kܩ��y05U��7��Z:;�:I嬯��jX�!�V�����Wּ���|˱������>['���`�9�j�x
i5�0���;�Y� ��P�y&LC�B��D�`�9�WqE��r��2==}…<;h�6�0��WN
$���Fғ���<<�?�T�low������9AOO�U��^�k��jTE ��:�܉Zzk�c��=>��F�ެ� IDAT�@w���*�Ei�ɓ4F�"�c
�d��b�������Tk~�������z	���Ew�㯞
�?�+�
գ��y�C��ѧ��2o��Ϯ�ӷ��(�pn���盳����䡯�^2�|J=p���<�<���$��ڙ��e�����{Ʌ�b��|�3l����aW�坧uR����s�Cn���2h�h%�Q�e���W$�&p.��:�
���KՊ��}��w�󚛱�RH�����Ε�"�潢8JE�c�h ǰj�=Fm�WJlm�:��G�����&ĺ5���g�sF�eJC���2.��"Q���@��(k��&�_�d@�쒗8,k���y	��)��@�Z��ĺ�2��@^��j�g�,�X4��m�8�8™W;Ð��d�R�pf]ۙE�1�X'6̹�/'
�#hɴ���B�lm
�h"�� ��i�K���0EK'�)�^ܙ�"�&�7|�	�5���X���l�a��
��C׀�b� U!N��׼^C^)T&3/�V��1�J���9#%�`����TP��#�L��ަf^�tYL�lA)$�aCO�� � ��.S�!��ʢz��)k�Cf�7�N�e��B�F>"
��,�#��S���<)T+����f�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U���5���~K��nxۛ>���u�2���x��w1�X)���k�)h�5n.�����A�n���G����R������1���։e���2���;��I�W�������O(!�kkaS�B�K>�Uz[2T��P��,0�I�lJ���{>vG�6�p���
�+�!��|�g�b����`,h,��Ƈ�a�j���J��5��?��_��}o��˛�{�9���G̱y�r;맶�]sl�)��I���%LV����D��� ܖgr${Z]0:�<T˟�t��"&'����I�)���`�˱} ��j���^Ȥ2l\�����U��q�d}k�&Khy�H�f�}[^h�fNa��Gf��l����g<(z�/c�������,7jcy�
7��d=�qY�jթx�;�J���l��}��Ԗ7]��Ħ����t�8x�h-���Nl����1�	UD���'�<����W	�K�5���E8�A��Uk����P�����K��u�����)p���3?D��rZ�h5bEk�}�*�Cg��@�Jޑks��h1v^%�n��a�#�Z����o����ڶ�V�g)<|�:��}�G�;2P��=�)Ty�(����>�߼ͱ��>z���:��w�[:'9rd����eS�\9�}Ņ����
�Ʋo��v��G��q�h��� (u��=k�L�X|Am,���R�T�=��<GZ{�����������\)e`��@��e$���~���DQ��>7�Д��\���8R�����
���0"f����9�%��D�>���L j�����?O>	G��G?Z���@m�L���G��V��Ч|Na�|� �����x�3ȗ��
�پ�]<��x�/?˳Y���j�>i�	NZ���NjB�_\��T�#d�m}%���{���Vp���SC��C���.$_��<�[�Ȯ�x���f����Wo䎏�甐��}�0ٸ�J6?�ݦll�t5`B�{�����06?�)��}����0AP��f~E�T�pg��]��oE�,�wŚ�o5'��"��f�X���EC�҂)��^��/��%��2Ahx�>|�R��ן��B���F��I{���J�c��xD�����rdD���5WW�pQ���<�XQ�;+'=X�*Xw1&D�v��Q�=��^j`Y#��צ���:�Íc��ʹ�k�M~��ω'&kc	���Ì��D�0
��&�Nd�w1�wr�
7qޅ/#����6pjVk܀��?a8��{�F�*Y�|�ǵo=\x|3�f3�t�x��=���=����U�㢴��-��C�J�%�\w�G�
,����t��,��3��ɡZ6�A\��%`2h�!����W���A��f
����O���3��d�=OjJ݆��L31y��
�մ�7�h��u����#�9�I@(3�;
#Z�`��T��o�cŅ]\u��b�@�l��q�ZG{EdA���(LW��`D��ǁ��p�4q,��Yw�3P-��<�#��`8��%CdV"4X��
�5����d�	�;=1/Q������`��?|�E�ϣ�I������r��D�X#�h[Hk%dx���իik]�5�hjz.~~F��-|�_���=��Gb�l��cv<s�#�����SH
���ߌ.e���ނ�k
V*�h�(���!*f��C<��+X~�$��&��U����xx�-������R�Ѽ�m|0'}��,{���Ȧ�a6���g��TXb?�w�q�w����EN::���6�c�ZN��E�3'�C����q�mY�+�,�k.�4�c� ��S3_���-�+�]�օ�|�Ͽ�'��
<�u%�X�9�5/;����|h�J�ZTC�k�gv�0���(#�e�%��Q���}v�K+�R8m/>Ԏ#�2�e����}��o�?��	/�6��>�j��P�yQ%�s#h�Kg14�I�5Bӱ��ے�O=W_=��7:�Q�Λ_��F��_���6Jך9?�z��4
!4��ǻ��}�?��y~�R������\q� w���s�!���I��)�*‚δ�z9�]�t�y����c����5AcED�X�t��%/!�`��l+�l.�ɓ@��E����_�8�4iS
�l���%�#��!I is��6ْ�րe:&�	��y�(�qj'�Zs|Ro�JV~��߄�M����s�|Zk]�'��/'��}QB�K�`�o-?X��?�`?�����=���Nw���1_���s��q�n�+8(AT��=��fE�v�XY��6�㐏�)0��*�
�y�Geq�6��M	��7�X\x������ڪ� ��[o/<8'
�='�I��#ߴ͖|/�I�]�v�e�x
�D�2.Pj�f.�W�9�̄��<[Y���{�V�?J$Ndq.��V
,;6�h�����Y�����fS��__B�$���Y�EA3/{�B�L�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*�9���5���/���fo#?���\\�'�����?GOL��f��EU�����y�09��X�X!�U�%��}K[��$y��Z�hi2���z�M��yӻ�V]���]<��Z
�=���bDex���Op�[���}{���oO/� 
c��Q^���3*��'�S^67/��#�}�����F�G�Z����ؙ2��T�a1"y�:�m-es���褪t��/����VB��Dje�?��k-����٤<�8j�NL]4TN����^���{8���:x�d��.������-~?7����H"�Z��8�/W~h�3G��y���[wX�_}l���і�[��_GHޒ�^������>�R�ݷo���3��D/�Ƕϴ~���*����h-r�a�r=\�|9o\�e����G/?_�ۖ��0?��26]�׽�}O&WY�x]NJ���[���l!L�4l���=��7�ڻ�p�E:R,��[��e,�Vy`�FKAib���e��u'�><Ժ伕�^�镋"��yY<� �@J�k���D踂11�Xb�	␌ty���<���Q'>�'{�U�y��h�e��aIoSU֭�bס)6�X���"X�5�X�ɟ���
o���=�}��/���Ϯ?���{�M�{����9��X����n����Y���<���}��l�X|3�����-��N��O\��m��o��=��o_������֞N����T����<@G�%�u_��2=6�fO�mmo��eW�@�ce����GZ���Ai�6���)7�ϳz��R'�!�L�TDf�ପ9�M�t㴷����/i%f�D�I�r�� ��F(�U�)-N��q>�}5���T�2ni�xU0F �g[�34Ha|B6z�JU�M�-�7\Ʒ���F@:��e�q`�e��T�C������O�W�
߹n�;��ֳ�[.[L_�˯nZķ��|��d�c����+��M�ɺ��G������s�@C6��x��u�~l��O�q�b��)�ʼ����1Bɇ���_���Q=�K��� �:MS�p�X@:A$w�
z��h�a�ප����j7a3�?xS(%���Z��
ge�h�؊�ɠ�]�ؤ.��N0<:�����w�������4�R!(�e��մ��E�k2[٪.�k��,eY��6�Z�8�:"h�Ɇ��FL�|���u2�������۰m9����VP5'X���Q5�R3*Tyo?��-�7�bA��{^����[�o�b�әw��[W��N�2L�#�ǃ�yt�ӕ�ap�`�E0�?����,�bSG�R��q;ک._EV��1L�<�{�ɪ�S�n�Z(51#_��&�����o�H{��&�R5� *�0�X�a;�h[����R���iʦ�cL���b�HaqV�xז��c�,�9�a�hC��bc�b�eL��6���p�\'�~U���b��.�GH�#,�_���*�� =N�>q�1!(G��Ul�Y�/u<��k�w��v���k�aT�)���ϲ�<��(kQ��Z%���ERk���R`�j�Rˢ�Bk���y�P�ߺ~o���K�����S�p��g���{_��ˏ0Rɹ���Q/�`���S<��&����e
<,g�ɭ�!�V�e��/d�1{�(�N��:;s�Zy��z>��?�%���
;���}�5�/@)5�h��b�����Cv9��ȖW�hMR*��<<��ӔM���R�`��[�^<
K�}Y�ӭp�+"/�bu��]�B%NZ����tq^s��*��'����O�\K�=�:w�N���Ŭ�n�$ڨ��h�>��.b+1��,��8�D�.%E
��cy�0\�9Z�(Tc��>q��f.��ZJ��1MERK�4ӕ#$�şܵ�{��/o;�μ�[^օ&�!�<y��8���!V�a'��,�
��������x"��N��K<v�ӌn+���i�j���l%��t�\�8��ȧ�`�҆[._�V��J�����#�d��`r�β9�R6����T*F�+�H!�e,.OZ�3nPE��`Q�mӟ��ȸ(�8��h?���T��O�X�'
ca�j�F^�Y�)��`,�2@&PUSDF����qa�7J�x���G�j�~W��� 	�d�$�TK]4�3�)�I� � R�X%螙�0V�"�kLm$Z�L��:��s/k��e�
�vZ���X�Y\B�B��ع�ցV��i+��o3S^�dr�K�:@[�����JxŒ�+8�	l�:���(N@wZ�~��v|36�Ҩj�`,H����0�x7���r�G5ΊmT(r�R	X�D�$SPӂ�0T��+-�����=�8�(3�{��X��@���">~��m��#�yU,$��09]Ʊ����S���Ht7=+�D�'Ғ����J޵���++����	n��MoG��y�y|�Q>��!Ɗ�Il��>5��ߥ���1�i#P�PHڅ�m�ľ��}�tbb0���!�AL$����k��
��m���ᕷ��0��D�bD"�u���M��qLT*%#w�h���e��A!ZF�c���qQc%�t-'ճ�R�I�]JQ�����j�,7�{��_v	c�vd"�e'ύ{��}O3is	��Bi:Kt T�_ �0!�HI�t�	TK�F��S��\���q�;<r.<�o�|c�ň�����uׯ_�ۯ����޷���1\�kS'g�C�F�ۮk�m]��F����
�;n�Vz�����k/��p[��c3?3;��0�_�"
�0�������
�unT6���ڌM�5:��v��c.ٛ�p~Uv`]���D�
&
A��j�g����TW ���'�dD�N~�ǯf�Ws�{	kGx�{���d�B�̃) �t��kQQ�%A"�3d{3�ߐ�eM}�ڸ{{���[��~
�@%P|�G�|�LJ��&``Jq���7��w_������w\���o���$�g�ε��G����+W+M>���q��~��=_ឝ�7|���S�V��f|���"�D6���C�¬�e�29F�4e���c���DF�?��y�K}d�Ɩ��y�lQs�Y��=c�OtR\	0��Cd��a���G��u�~*^���g�_ ��Z�P���A�v�&���EC�s�q5<x�1�܈bMmk�A+t�h�u����5�v��玔���<��@w[f��6�ˏ��h��{�2�=���]�K�YÝwv�ȶ3�[pk[��m�yx=�ao[�?*�r��q@(4���{��u�뉩a�i;�j�C�6�1�`<�#AJ���;1��9�
$��@­q�IV�jN��I"�&p��A#�nd�*H�hV (#�KA���e�M@hƢ�D�^���/P6�I��2游"��H���8��H0B��Y�I��lnZ�#7,���_��(�n�Ə
! <1�g-l�>�o�9��.Z��,Ⓘ��떏4`�oo�@?��ّ�a�i*��$��B��Zz;	nh�m�arp�sv|wu�[�eD2�ߔM2.eG�.�� �S_J���BO�7��N\J�p�ךE��e��Փ�Z޸��o,�W��m�O�튙�uP�(�D�N��q��{�tY�3@i|��skS ��8X�Y��~b���C�[G%\�����Խ��xcW����o���Ұ��$�qf$g����	���i�1�5�fm&v�8[�W�t;��2���)\Y�qc)J��1��Y��r���<:��#�af������K��%髞�R�J�*U�T�R�J�*U�T�R�J�*U�T�R��E�/���?���o�v�"?ƺ�Ri[{K�c��r�ʂ�C�-n+?��=��vү^�J�e/�RĞ�ׄ�)���zi���c����^�͟?�P���ի�L&s!ɦ��2
���[��Zݓ�U��z����ZT��Q'�v����Wu>�����v.}�pO��ݑ��%dJ8�{���g�a�Xg�@�C5��ݝ:뿲�T�U��x�K�Q��7�8>�&��[��8�6��84LY�}�H#��8�koo���ׇR
�88�C�)fE5�%�[fY�
�j�ָ�exj��te90Јͼ�r~wׂ���.%�Tp�ԣ�fA�`�����&ۘ{�c�0AX.�Ze"��nt��t��X��}�}͍�8mm)�;&DR0#cjw��e*��-��:;&�r�����tuuq�u�199I&��u.��R��Y-��
\��0�֢�DqHW���>�]�M7������׽��t���@8
ϩ�u/��Sc��S���ez;��г?b���>2�zйtҨRM8>{�!�1tމ�`����T�Rm�x�Radd����3>>�Iz��`-SB�H��Q��
���F�ғ�a�8B�o��o�4�di��k�r��Mlٽ��e!
Fָ���	$F*�q���=?,:[��>t�T._���rĚ�8�{ju)g���f��y��HB�j,�)�Z355EEu'U�b2��'ׂ�Clq
�D��h�T8��!e
a�H���� ]q?��\��]�ײo�E2Z#�{"��F�#(���驺�"�n�C��I��/C��]�
@id� �A`]y�j�����aPZk��"A$�'c�=��ٽ���*��G�|���-��k4��l�F�KT��M4�}�da��(�'|^�:�[�Ui�*��$�^k�}{`ǰ��I�d{�T�&����t�v-�X���D��H��t!�Z��3NEQ2ж��weۑA*��c:&��SX)�"������ս�b;��S8�4�/�Q�IDAT�=7Q�v�����Ɛ�[ˉ���ZK�%b��gh:f$6��K'�a�-���Z�̠�'��$Q�P���s�f�L�j�T�Ơ=���@O�&G���,�Eg]�8H�ԀB5�e�6S`��ꥄ�*�#�m�.]�t?{D����f��X�b�1�:`J(�i)ιu�]�1w��l����D8c4�!�1H�W�5��I�1�E�1hk�P��p�JD�l�G.��� �)������)d
�~&��l'�|g�e�m�к�軜�(C�h}��21L�� 
���Δ�9r�C�㠴��3P��I����U�ş�Ԫ�E�[�������Ǜ����'��I���(�O>Gp���i#�d��-T�!�kR�D6Im���R��N�R>���E�/pު!ZVK�9���%Ik�'b��j�F,�=�:�9sҪ6T�W�"�5�"C�^/�FM����XK(Ѝ�i�6EQⰵS+c�l����8^{q�L��I�
M����1Ix3�4����ڐi�#0�x��T�~D��$��2'Ca֜���XH!���ה�H�����	�x��#f����!�Zb�1&骱��gN�q�ۉ�H)�����	�	�H�C�.R$X@mM��NIY9�2n���cpt����g�����,ȃtr����bk��(�1��0>%+���s椎�
7��G�8^�IB�9�";�2�MF�����M�Ay�htR�q]�:a�.3��a`��S�`��4��9��YZ�l"���B�X.<49 ���&�f�ģ�l��o�͡�9���e�V�Qhm��
�ײjt:uT�<g�e����RTc6W��:X>3�=8�3'�� ����,��nN�N��9�;�T��f�R=�iB�*U�T�R�J�*U�T�R�J�*տ�_����mXIEND�B`�PK%>�[�$������images/flags.pngnu�[����PNG


IHDR�
�MbKGD�������	pHYs��tIME�!ZB3� IDATx��y�U���>Uu�^�I��%�		K�.B@�
����qt��3_��FwEc���Ű$$@�Ig﬽w߭����޾��{�vP�����u��P��:�<���y>�T�:թNu�S��T���B8G|�*?�8\~�B�w�ɘ���ݍ߾>�M�m��p�+b#Gr�o�?��XP��B��x�w��c�<���|l���u�Ƅ?����G��v���q��rh�P`2�Ʊ��_��AX`��g-d4h�T*�?|��ܾߏi��
�xKK���3z7������i������f|K�ዿ�9@�����R��z��Of�܆�ކ�ꋠ��A�Bk�R(�E�.:�`��H�Q�5)��\��w��	�D�8X��˲����4Zk��hm0R�\�w����ME�(Ò3�KN�$c	N���`	K,,�a��F��4_K\�]RV�e�mE�>0w��\;�D$�X,��S�T�}��c\��#S)ږ-�2Nɒ��N���C±�Y"� �hb�&��k�+y)I	òg_�����Ȝ�yPp�IJX�&��Fi�5������h��hrF���f��8ۗ��H:���љ>�7ˎ�n���ƒcN��s��>`2��݇�yC�g@R5M`p�ւ����[�z}%�N�M���֒��iǂ��|���d�!k4qa�����	�o�̳�k��z�`0i02�)�r��.��?��цV����myf��ѝ�����5��Jܠ[[ɶ�Wg�Y�	��Ik�l@�Ѵ:���W��|��sN������4���gv�Wva�'� �ꕲ����-�Y�^�G�@߃��3p������mܛk���U����l[�gN9�/����ϒy�7�{��`B
Xi�U&���� �L�F��X#x��rb����a��9�iBcB���`"�{����
�3q	;��Z�MX¢5�´T+�w#��3�ˑ�#+���C�.i��S�t\����cܣ�	L:a����p���[S�pf�&�M�w��go��s[���Iln�s�	M\�1ͅ�X�p]p�«-xxN��4�Qޙ�c��2A$y1d�<���N�q3ܺw��޵���1_��KO8
��9��s������\��D���!�p�;b��5��?�;c�<���':
�6��Sc
h�Ў��h^.i�:s�����E��I�ϑ�y�b
6�@�V��bM��e���	��-�
��A8�U���A�IC}�:�����Йs1v,pSS�W>D�*{��\�T��6���&�;���	�|�^Z�
�iU�=
6?<ap��<�jKsQ[�5>�!5
������|cf?��L㞮��Z��\n}~9Olz�/�q��
c��	Bk�<�׮��Ϯ82��6"����{9<���e����`P;� �����$:n��)�2R�H�4��0��ؕ�G��^�p`�Tz�:��H��o$����|6�������j�DHSu��/��=cb5�L��PB�<�;��ʥ�N?��!ǀg¶0�ř7�y�M�W7`r.�C��*r6�+�>�K*�&XO���UY�t��ݓ'���\��߽��š��p���f2qM�@�kW�2��Rtt8�E�ٵ��0��ߝ�S3�����:g].Ъ+w�s��[*�	�v���Uk^�2����#��΀/���%�e�]����p����@���Wa� �d�<�m5[�w�ֳ���D��ї�x�[g�*���o•>���LK���g����&\٬�n��US!dU�f��!M��
l!��x��8�[~�jۊɆnH:Wt	��nz
�
���Q�l��۲���|��I�x`�o�=�{�L�7ޞ�r��<׮��SHJ�sh�E!�d2�ӆ�ޕ�c��G���^��������n�tU
�?�C� 5�'��%�\<?G֨����fз�m��[Ȃ�|Q��/��a	f��)�Iw�;���ټڵ��l/�{� ����D&&��9��݃��G���IM
�L�}1�tK��+
4i5�����%�T���;�>��Ǟ@� qم$?r�/�z;��D�*+Umn��s�}4�d۶%>��%.�;=sI��?�Y)E>�g��ù�	�R
+L��}�'
�h�4H��_�I�VU}5
h%1������NqR��>kd�c�$ӭC�����gLp��B��	�lc�=����
W{H�yl���`���I!���륙�4�A/Т�����c��u�Q��A�HM:�*�"ip��l4�A����`H��s�:�]�mF0�*U4�c�Ժ�	�Y�	j�Xm�e,�WQH���hH
��{�\y^����G^�͋� ��6�_�$a���Rs/y�c�VL�c�"��|ac���݉V���k����g�L�K�}�AP��Di8���=��,
�۽i�Zx&���ˇ|��'/R�
yߒ�YB���W4�ۧ��[�zc3�{&�t9&�/�{O��@
�ov]�q�N!)��SH�|��x��T�B�?�{>���s|��n&����Dycص��\H�=�~e�C��x�Tn�3�����8��z �<��1yF��i���\p�Sw��}���O$���١\-�3E���>�D[��Fq��@�X�Ѻ�nǀ��K��W�K@,p�`�f����C�;�i!_�3�������s���5����0�Ȕc�]�'�
�8�-��+_�Q�)
��������%ALU�B`kg$������hӔ�?v�>�p7=��o�q+��{�p��]�ߝ��vX�t�I��$Iq>�vD�=
���6ןz>�>�\��s|����s;���#��j�T(��^�a�X��K2ǀ�c049Aj�h�_���S�����!���=n�<&%Z0&0kʀ1c4��8 5���}��Ն22p}�	}RS��@I�����8�6�AIQ�ø⦷�x�L��cS��#�K�l�Fx�̎�چ*�)Q�eq�q-����h������L�Ȣ	?}�s�d�ڢ)�6-�g�9��W����������8w���%gA�q˅c�����v�z�3^�=�($��	w����C��E�a1��4����TZ/PM%�J�%��m0�Nw~b�b4��	1k��t���|�Wj����̗�G� L�eDmbj��nc��HyR_�{1:��kT�"��c@�H.���=M�X4���XJ��W��rU?�}�PH��L����y|?_0���ob�����>&�ey���f}j&8,I�v��r�I��ٝ���=�����
FQ-ԀR)�0
�4����9́()�%�e��^I�*)��ňo[���n�k+w�\h'��J���&ՠ�B��1Η?&d�Up�(b���Ě��� j80�m�0���2���]�'_\�B�^��X��q�3�ۢɬ�ls�{�q�3��!;$����R�`��C���>�ܩ�-��_"��̜�<�ծ6��|_�|>p�m�r�J�A�N2����B�ͲV�~O,j;|M��A�>��y7|�^��-l,,��H�	�N��C�-,�i��QFc��W>���� �+oa�������r�Xv,x�/�PxF�j�(�1h壥�T��O��C�6N�Ђ����D �1Ʃu��@��{"���\z�$�=q2±Y�K�2Lԍ0�9X�pw"���C�ZkN�4w>��['6��T��8s
�7ص7�D<N�5|p�I|�S���˧���W^�[[�h�`rmg��7b��lDz�������V5Wp�6Rbv��w�N:��"���O���9@CJ[2���2ΎA���G�GVlC
M�t
�
���(��x����/�8��`��42�8ΕGL����>m����͛���3�T��,��Jq��&V1	
�I���@o.��=�%�W�Y���@���t�2���c��y�yF�Y�:թNu�S��T�:թNu�S��T�:թNu�S��T�:թN�$�Y���|����N�ȹ�
Ď�G���|���ޤ�F3T�sI%P��?�X��ȲƊ�b�eX��_��s�n�/:��}y'��
N_��	���i���,C6Z���[ЭW���؀ek��e��m�XV�s���1M)�����;���O�	Q��#k���t���W��������eJ
g��x6DL��&`��
�T<ơN���\��3 �%y��4^}uI}g�=K�BP-�j�T�U�@��a�9�S>�X�D,N̶CP�@lO���ô1�J�y�#e�X���<���eS\x�I\z��<���M;�oВ����������\��s����W<S���̝;�(���EYҶ��J<[t����]�Ю��M��S��Vq��,��=��_N�aG˲�9VX�����f
5��K��I�$�,{�(��w�EI��AC
�g"Հ��'�⋑[�vo0���W�ڽ��~z� �5Z���ؚl�}���<7n�KO_�l^Ѷ����:ضڷ���S�2�X0��ٓa��}yf�Y��EA�U@��֚l6[�g2�D��.O�)�6u�U��� �g�w��^.=�]���{�VVo����3lAjm�i��!P==8�M莝8����T�5Y_m:���9\�-\�s�o8aP1+�ّ�X�l���0���m8B�Oo����9�~�L���'󫇷��_�i�SLk�T�J�@�~/I�J����u�Q%�<�}t/�U���*ꁲ�KT�	���m݋s���*0���4.OKq�G��>�^���ݹ�N0�tV����4:�G��b75�w��jh@
�Q�lMB�?��s�f���^�'w�$Kzj��kF��c#kC>�gWO��Rб��u�]�ݷ���t��˳���aj�`E!5.SWO&��4��z��}�*Qӗ
�:h�N��PMG��B:b�:�IG9�t�q,}�����`VFTM>/�B�6�؍�����Ftw7Z����<I!"5�e�<�j���|zSkX{�\�)��`�{T�	�}LU����Q���㟿�$�w ��O���l�?��O<���4�ry�*�E����w��q��u�
c,��ٗ+�`�w��،Όw$��Q3�߆]k5nf��:��R
��!�:9�%�������v��z�4�})�� �L-���Յ�6��"���3�hsX�4�Q+R��\LV�Ƹ��6�<ut�d���P:�V��<���Y߶����k�n��3�������Fh��	�	$��h�}^��B�	��
ޫ鶻��|3��bP�!CA�*���߇�
,��JĤє��?^~-��-K7�nK�y%Q~ �%�Ԥ�Ȯ.��.l����L&�5)�4i�4���>�o��Pi	�� ��>G��H���ͺ�(bK��=���-��;�.�ȵ����ӿcf��(
٬[]H�!�];>.@� RWm/�zr���#Ŗ?�WѤ^7�_��=��3�k�|dV#��`Odށ}|�3�xd�)��vvvfG5���⸝RU�m{(i��:�&̠�^E�/y�`Z�]��2��f�K����FlPJc٦�`�Ajp�ݝ��������d�a|��K��'���-�%�E!U��X�m�z5k�p���S4�DÛI�)
`�B+��vj!
+LS"
�,fۙ���]{J�Ta_�j���v��gѓ�	���;~&�A������%�I�ˤ�	����78�hOYlsu��4�!DN��Y���a�����\��S�{_?���^��n��G7��A�|Re�¤/�唜t2�Tƀ'���v�az��z1J�+*\S��m�a�
��M��X�?!�~�б��A)�miv�8�5���l�qM)]��mq����¬k�t�D*�E��G�m�@���V�0R
��0�w�	~�;v��iI|)��Q�c�N|_O�0���1~h�w��c�k{سw7��a\���k�1��/������0~���m�IX���a�xڰ���J���ɤ����;��C��
쫬I�Ԇ�#��VRG"b)t�{�y��>���o.K���p:�Ś<�N#�L�5ݷ	�(@��A<̄G�l���_��4��dm�Ί�@ʑ�/��E���`�F!˂�����Ytڡ,��<n�{�f���k�8P�0�
pBJ;`��	@m�ٌ�~	s��֞�+��գ{�<aۈ�����tߵ��m���ѐB����9�}3�9�Q��@S��kҢ�U��Z�Fh]Ԧ���͏�>ɼ�aSJ��D���(z5<4ƀ��T��L*!�>f!e��=����w�n������^��	�hm�{E�t)�`�q����9���k�=?ԣ���캩pM�����})e1lD�V��;���}�:@f��$^�.�)S�:vb55#{��k�R]e����N�f�S��,�T��T_-B@h���S(�]d�P�^�9���;��~���+�On�53��!�r�TH+8�o����&�۟0���N۫��*�	�8�p�lg�ͷ�}��25l�����չ5}��砃��kb3f��aOhB`+�u@^y��iAW�
'�;1�VT+Ԟ���$�A��
���1		�x�!s���3�_���Դm�s����sw6p�'�¶Rh�Ȳ0���v"��c�b�6/�'FHe6�Q���=��s[���G��
i��U���V������&��y��8�&��!��ۗt_rl�Lb�i趍��YD����NThAJ�0� ��V"���� :/�j������j%*��%ql;�%l��x��L7����/��c�s�G��Sp���3؉x���I��v�A$Xʃ�WsE�6��8Jb	��w�W^�e��7�T/�4����?�@x~�x���e{<���ˢ�(ԁ��<��u�S��T�:թNu�S��T�:թNu�S��T�:թNu�S���M!�'�>·�LX��JJX���(og�GR�����V�
X6��`i�۱����<HS��[$퉓O���q����J\�Y�rL�������uM
ɿ`���w i"�a�DP����/��ǩ	��B��I+~?&���(��B������UX���V�e��c/����N$�c	��P,��"vpp3��B�%�e&-��(�E'����}P	�Œ%g��i�$S������B}�B�h	HZ�d�	A�d*�* i�1���c��q&�qZa�qX�Z6yZ�0���L&Y��_W��W71o��}�4u�_�,)�y�E8���H`%��&6kV�"��)�Vq-���Ю�v]d"κ��S'��bȻ8�N"�p�fVX�����OFk�TH�E�.$���(�
n݄�Ӆ�ׇR�������h~���k�C�jF�lt�D�n�J�e�]tvf�f
��aɒ9L�����㗿�H"a㺁����+�P۴����6�y3~WV?�D��O��6��$��l�7��}�1�Zv���uK����c�ܼc/�]��O璳�s�i��e�j,s2[��zz�@pֽ@+�H�^[E���
���Lf�<�7o%�Ճ��<�l84��2���[�Xf�Nc�yP���B��+i^�[���  ��){d�*�C:�18h��9̟ߊ�p�Md��r{J�t�T�y�4�L�B&��ٳY5�0��Y2)��AvM�i�l�hZ�e۶��4Ơ2�h Y����ţ�X�y�\z*�5	�pa�|}Ц���eF���"�_�Ag��{1����ߟ^.C0�e�e�H�h��'63Ф�t�����F8`$(/�n*g���!8
�d>�� IDATIH;;sL�>�	bx��#&�aC&�hi��{w�n��VR
�|>����n,c�����<}�+4�>��結Bc^�#
X)���D�r�~�1�<��՟a��X��v6l��3��gϨI�F,3���E��9�>;���kt����5�\.���{��S@��_��),��r�ւp$�����I�k�Jz��$�\�Z�o�7:�����7��ޝ栃Y����w���Hͽ� ��@&Hڴ����I&�������K�m��z�50��'?#~�������)w�5����y��]g�]q����N�W.�s������;�ñ�Ȧ^)U&l��&�@N��,F�|>�&�&@��U���ew2���K��片s[ԅ*�E�=�/L�D��X��C��d�V9A��o�f=2������ĉI��\��:��ih�Z�H��[:�2�!y��|�547���.lK�8됲��BE�a ��@(
�)!�w=�zm_���Lom���Qy&~���C,�(�Kec��D�Uy�.��^�ŋ�5��
��q�Ԁ�f�1d_4�}�3Ma�D�x�@{>`P�8"f��y��`�d<��$1~��י:�����%�}]"��*�h��T���'"�ZD~�RL_�����o&~�b..�B�h���ń�~��ް�+��Kn��B�;��HBPU�Vg����h�Rh�����]���`|h8������A�t�3]
X�#�-�V�Vo#iY�T�v����)���³�o,�t2���k�x��S���꫙r��{�}_��G1�����,�*BUׄ*���7�����C^+�m�4�q���F矓g1p����sL�D�������	�0���(�(d�Q���&E�����?�!Z?w�/����h���v�Cf�z��E3V���}?B^�f;��14�o��ٝ�3�K�َ]�JE���'?��i��Ul/hX~u�eU�W��������܎#\:�C�TJ�4�0��@��3�;������
N�.p0R��Z�44�&��_p�}����±0Иe��;����F{�R	������8P!
���騞�Q*�!!FV����|h�ZLE?>��0
N��U�tߗ��Z��yRDġ����eҔ�v�&gk_Pf2�OogG�&5^���X&��*���a�)Mȳ �ѡG5�}��N��Z(_��Z2�y���ƿg�~����[��Srt�)�F����;��	��/p|zO�;�˪ϭ	��(��$�+e$�ژ��TjnF!,�'	��R��yR)%���
j�(�-�@�
�|���{k�Y�Ua_J�eD�d�~��t_���.�W����j0��h E�)aX���
;_`��Gvo����
P�B�ThKߢLy
��&
��Ԇ(K��^}
��g=�|N�P)��?Me�cr"A"��b���hi�HD8���r6�S�t�IWJӆ%�����t�9��D�jZI���
>��}<��Bmt��Q���&ς4i	]�h�hQ�J"�q��X 0�VX��()1��r�hmVe�"lmYH!��I�x+������S^	�о��<d>�.l�
¶�ڄeH&l�q��� ,�m���mc�@�|)�<I�U�AZVu��i2��_�H��ji)�m�K���
i��(/,�aW��p=�ea%�x+<���Xӧ����-%�󑮋�=�2ΠFǐL@p1�FO��.8
�0�
���E!�%�K`I�����[��dkc�vT+�H��88Bes������@�RHc�IYQH�8��	6���
#���ÄѤl�
��WI;����΍4��,7�p�qn��6CjM���X"�.G� ���ڲ�xM�����b�6HK�20[<�1��Q�,�!>N��l���1
B0�:`Y��_=�:`Y��_?�:թNu�S��T�:թNu�S��T�:թNu�S��T�:թNu��&��SO>9f!O��ǥ�/�ݯc�}��aR�EY(�Z,�u���N����+�~�_��n�2����j�I�������5k��Xv�
w/{�++����O��mɼ��|������%
��ޅ�O�߇���O�x�FK�'�p�[�\Bg/^+�h�"r2G�I/��|�磭a��ny��X�$KGN	�1�D�"f���'@�+%](�6��Ҹ�&�KR�aٓ�+�da����)<�r�
;2X�E�	y����!O��$yW�J�=�BE���3w��
j���9�:�Y%@bc	j-�ehɒ�O#'
ɸC"�s����BXt��V�������	���t�fEܦ3a�թ�4��q�+�XV�?�>͙���40�
�ߪ���M����rl��=�tz�!�.ʈ��X�ۚ0����3ӻ
{F/���.vu�ܽ|+�7��˵���[�mڷwW��f�@Ƙb����v�6���wv�9��'�~5̭ܰ�8��� �����V��B�♬d@H6���s�?���C��/�m�mE^��t��~����};��qI�%\v�eH#/,��wO�����Ɛv��:���aB9դ��;��1����R�t�Q�|����oaww�ƍaHg5�:���~w=9��*�c�����震+	[9(�mU^�_������˾:k"[&��j�`�`����#;x����X�~#�L`���il�V~Z�Ú�ܸ�F����}��4Ǜ���Ǡm����؝�Ǝ
�f�>La�"��#	LA�i�:�IG9�t�q,}�����`VFTM>/��3�gh�y�ĥБ=*`:����E��<�Q��*0\yx+'NLp����C|ֹ��\ŝk�3ፗIO��y�{8���qbх`kz+��1ڲp��I%k.;ݤ7U�_}����#h����쳕 >���D��z��l�,n�SN����}��TԤ`ƧZ#�pȘ����>���a,S��)j�� �B�o���6���
\��v~��R��X�Lf��g�شC��t���&Z��Iwa��3�I�ӈo|�E��fH�w��4)d��QMaM�9��մ��L�}A�0�1�C4%'��Egr��
���;B���(?�ʴ��q��c,��'�{�S����8͐/,�bիk��E6�c,���0�Ҏ�х4;�<	�����RJ�<x�,���/���?���Oq�f�X)���s�48��MHϞyvq����n¸���R�H�7�ɼ����~��u���كH?h�� �aM{"�����#�N�_���3;��FV��1d
�eX��IH� ��K4�P{qUMZ�-5%`f��:�����ę�l����+�X�s<�N5�ܶf'�Y0�jc�p���Alc���-A�*��Jr>��I�i��i���Gh|D�b�=[�m�F�0������3�b(�j�����߬�²�^�qL�v��)�[`	;hB�Gt-
�,v�*%qt��y��s�%y�O�Lo�5��=�=����zx�]GpxK���jWS]q|!������0���&�\�̟�A�:6A3(E�-��'��Q
�F���^�ܹsI�Rey�#�7���p��#�Is�mmm�w���s�΁��|�Q0JG#��8=��&�s��<���KO��xv>�:�B4�l٧y�O^����3GM�"�>��B*���
��T��?��C̛7�ME^�~=\xaEM\oCˇ��+�#��o�=߼��G��x~�,i!�X#�4�/
�|�"[��}��h�
߈�P�"
i~�7�Sv@�`f���}7;s��xn�5y���7�v#�]��7�|���)��7�qԋ�*U�4˲�埖�'2�k��m#b30Nh����}�Rd_$�P��5��R2rt_�8 iƲ�2e@U}Ғ�2��������C��mi�m#�3�i�`0��!X����מ��K�q�1��z!5�Dr��ocƣI�����e<E�V��;���p�d�M5�8K5i-)�(����
�MzՍ,U�8
(����f�=��}2M�
$��:�h�60�%���l
K���7.R�ć4����i��hx�%��ł��1�!��܄�|y�
�[�����ɾ�
FE_�BuBp򟎌.=|��0,���:�B�2(�)��
`��8�1h��ݏF�h-�{�u���o�[K�R<e�/���6�!�oUO!�PT0�Մ�pM�D1�"ފ��t|���V<��gҤ��%=l<� }?J˻A�\%}2�8��6 i�؛s��-�eH�-����jmmP��~p�#*o�D��i�p���Xp�3�t�K0���m�@�X,FGGGY	[-�t�[)%�X�7�G_�OO��0��ˏ�lQ�N�H-�ىq�3ӿ�x���T�7m��DG�#�
9?'��y�� ��W��j�b�D�	���M�Xd��<�b{�����U�WγXV��ϳNu�S��T�:թNu�S��T�:թNu�S��T�:թNu�S���IT�*�H:���o>�H��q�j͙�9�a��
<��J�z��<�{"�������,����Z�¹�#���4ȰD~�痏=��'�����h�([�z6<�ٱy������ iK�R��˾:�C]�ǹ�_~���UF�]W��0૚A��%K����H&�$	b�XYͥ5����
�q]�|>O*�bٲeUxj�,9�\N�L�8���O����r�������}R)�e˞���W����xر‰#��"$�a��F� ��j�|)�=W<�(���4ryC2#�pʁ٬1���0`6W�w}RI������S��y9퓌�I81b��%�� i�<�h��•>y�#e�X���P,�����s؏n)���ϗ�}�
en���s��T�����Nzzzj���m������Wṗ��4==^ϗ_�Uv�ҥ�ȫ`1|���8c���,�چ�b� ��ALJ��v��vUk��Egw��~I� ��A�2�-�[�*���Ag��/�(l�<_޳��'mh�7о�#0�Z`�7 �����u�Н\w�A����c0l����-A� �N��"��t:�j��.��b���uՈ�U�5�zT[k�e�x B���K�U����3��]@N��܇�l/�C���0
v�@�\���p=�\�y���~�m6���^���V�lv�}(X�;���%Ws���Mq!���|�L��e�+V|�c�=�D"�eY��{�-ל^��*��B��c�W�)���%
nZ�BjB
�e>��:�s�XP�	)C�lZ�:3;�-aY��%��˧V�jh=��MJ[e��wG޸���~'*�֓��l��1E�~|{=_�B�XT���FLZ֋�Y�ꋧ�]���d2����ǦMP��Od„������ϣ'��o�]�9?h�#��'�	�`����vn���GF�34�Bj ��1�54QH=w����E��&]�}��p��a�|T:���^��R�Y��z����sdTYγ�����?c@��?^����g����{���u]^{�(�^��H>lac�R�����)S�|r�ĉ�QyF�R%BJ9`YA8���������?@�ds���IHM ��*�
�C5�ZS��{BZb�5�2�1��hÒ(!����<��ɸ�Q���5g�>����Ѵh[[7�&%x���hmX�� ֯���g��'2Y/D�F�ZK�xb�'Ķ<��u�:sٜ?�3]�f�<FY��{o��j�&��R�y	���	5Y�^��/�Ji,�wx������WR�E
��ϦMmU���W~���1>B�#����G�^�����e9Y�eL�w��ӯ���O�>l9�t�1���J3�E�W+�H�suMЉ!w�D��ڔ{�Àٜ��}}8A�w��CE�!m"\���	�ח
�-�B�ۛ'����|�3}��<��VN<q*B�n���sg�������3
��?��)��Ӧ��4���ټKhx����#^
1T�'�h&}�4�l�G���}ovpd��a��Ca�ͫ��3{v��ANr��n�y�P	<�V0�Kt"�H�qF�����7׏}�C}�$� ���]WS�k$H�]5�h�e�0!�9�ºu�A�r�!���GҨ�e���r��\�X�gH�Ԁ</CZI&��8PF�o�JN���R���B8�O��
ϩ
פ�A�֝�N�^�D���36Q�G��X
�a8�R�α">������\�_�b-3f�8q,��/OXk���wWF�X�i��1��ܕhU��Czw���
)�2�2���D�(�S��
?:�q�JaD��:ܥ�D�7�>i)��o?�`�E��%��)��/X��.8�y/=
<��G+&HrQ�OjD����������U��]@,�D�1�	j�$���uV��T2���5���hkL�|��s��D3��l��R�О�"��7_�S”G�Մ��I�)ٌrMZ���ң�q�9��S�jz�&-�{�+��ڂ�9j��A���)���Z������&}�%̞=�d2��8�
����ioo��S�!�R���gB��P�E8�DI�&�k�R��I`��'��p���/]Ш iCG�b��Z�:j�#�:h�0�x�Q���	Tl���Z`�IJ�Xv�@{��
g()�|��:_��6v0�t�k����8�x�qp;,��g��xD
H�x������]Gi	+@�"�$�;qbNKXX�Bk�96�af:���Ǔ��b0!�x���1�@	��L`��؎S�6�Ԗ�))Q��ʻ���+�Ug�Iwb�"*�i��SJ<�\���� ���ÆC��_�T+O����8a	��#�_x��J����ˊB��߶�8��MPTi��)�E��2O�d�-0x��ů�TO��M\'1�`�%�Nۈ'��s,!������t�j!hJ��������*�e���|�("����)Za) �x�:`Y��x���<��y֩Nu�S��T�:թNu�S��T�:թNu�S��T�:թNu���6E,�@�,{+��~ ����`��2˰0Xh�6fL��=�,�o
�ZH�|TX.��UO�
v�׃
��V!x�;�g����;�����-�M	Ya���+,� ����@^*	��L����=g�t��fD,V��5��p�&���k���<�1��K��.v2��H 'h%VX�9��T����h�6)Q��ʻ�d�����81�%�A��`Y<8w֬Y4^�Q�%8`�,��袡��M��u��}�p��,n��?V��,;�+��#��A����qc4�͂�����[�e�M���컦���bG����:W`�!�B �����F�?
�"v�ua��g��x]=����Z��a=Fڀ�8���[+��}�>:{����6����֬��5�#����9F��}�y�����J\� ,�c4�l�TT6�i /��q4�Ntz�cjI8�?ZA��:Sx�!(m&j��z�65�s���q
i��#���
�κ��.Q:�f����W��ԑ��
X��8��yE ���`V���FgLs���u]�~�ǙgU�)��@^�n�����=��CG�Š�$=0��K=&Az��۷�(�Q^Wq��k7t���GRCgo�]X��F��y�d�~u�F��Gh��/X6����N����pE!���y岰�A<��P7c��
��rF��bC�ck
�ڂWe����8d��b������^���k��+��l����*�B��� ��uFV���U�2~�v��ѝ�×o�0cj��/=�R��P���+������E�ʔ�1 �
��iwW-�6�Z5�8���9�cH$�@��L?�+���w.��3f;���^yc�Y˪�j>3ɊU]���u���8n"]��X��F /�rP��w� IDAT�!�c�	���"t�C�h�C56��zj$,f
�EH��s��W��;�x���Lc�5/zu?li���mmU5���
��1:-����z+����g,=d�n�I���
^�7���%�'��|zM�>ϐt S���8k5���PRal;��20�b�h��&n��
�ZZ^|���$\��0���7z9븖�A5�j�@^.A#�CL>
��� È~�
�}o�����m���Zhz��9�Zs�Q�9����sI�R#xn8�]��C�y�r9�mm#O�F^��*�Z���!���6�|�Ë�>Q#��[���+ƐRf�
��2��ٻm8�J�Xu��*�,�*-N��UKx_���*�~Z8(���(��\�
�*��}�O#�R
Z���QU��E�,�u�~���<��Pz�j�VyI�e���U�2�A��x��0;N,pJ���N��ᕧ���6�W��t��VQ`��”XE]��`�"O�#G�V�����+ě���(&M��]��qB�x��_����<fch����0dh
=�@���
��)˅
���$��Y�o��B��yn��$1�Taj��y�]E��:��{���,d'!!,	�"��,D"��� /��g��W_wF�qAGA\Av��� !IgIz��Y��G��u�]����}>��t�}�<��<�<Oթ�[E���F�i�:ϳ0i@��ˈ'(�dϨZ�6���[��| 1�M���`[�!8�I��lJ��EX�!ȔE{
d�v<��gq5@^�k�p�W�?��S�}��G)��]9��A�vl�F������Y�`�D�D"���q*�e5B���  :::8���7@^9;;��=�.��'!ݽ��_#8�b���?zR���a�6>ݙ�w[T���y9b���%��UyU�)E�NRI�D�ŋ_��Ӧ"�
���U�W�F��X�AD�W��e�3	����H��
�W?�����–�8oL��(-��wϖF��&ó76w��V��* �Ѽ	�UUg2�+��@(	#Alܸ�-�\G}];j*��"-�4J&j�l˚:�_���5u��u6�)MiJS�Ҕ�4�)MiJS�Ҕ�4�)MiJS�Ҕ�4�)Mi�߷������JR�����V��3���e�pz��o����Y�N	�U�j���5U���q;��
��w�\���l{�7��_0�a���*,�l�@��f���!gRn2\�H!��8�J�W���Gy"����\_���A�
C��^d+V#�
"��$<��ڐ����+�8��v�f����@�1�]�%DӃ~
������Fg���(w�(�m�؞"f'9���utn�:���|yM��&>��6�6m��3���D^�P��dm���
�f�
�_��>���k�q{��!��Mhkb��PjJ�ǟ+�&�!��+��Z�`POg�ic0�l��U�m�ͯ��ɭ�@ˢ�L=�dR�f��7C�W��
H��+=�#`�@�t�0n�F�"���X��7R�Cg�oTK4�3ʕ�5����0�k�p���<�w���tYA\��Mt�(�~�b�9�
�,�V�g񷇤�޲y��F�����14�`0�0
i6�c��WE#��n��D����j5XѨbRI�����遫��r�����ĄË�����$�h-��;j�^y���lj���Ƴ�=�..�MՅ��ǘ������3��	��
ud	�eڨ�0��a j]S
X��G��
�ۭ?�������u����Kw��j ����bL3Ђ
�� �0Z�J`��~�b�kݠ'�1TK����FZ��)�1u�Y
X6��"ᮚ�|�x_�����v���,�[���24�/��xGMO��B:n	�Р���1�@�J5�N��(<����D1*�
�#�t ]���X�7����E��y�(�����?��H �H�{����\��\Xo$�gz+rRe �h( ��!rJ�Z��f�?P6Y��7��~�o���|eCͿw�!eT���F<O�m���rb��ꄮ`�2��6,��k�1D:�H�p�
�Ɔy�h ��P-ibNiDץl�Qii&��Z��H};����1Ln�H����
#}�`po��|eT�2x ��0�P-9j�eK6�Ҡ�Ff�eP-Y	��Պ*�!�L�}R޷��s������F���*=���v%��s��5���+��6RS�
�Xތ���(�
���@:��|Ө�<i<���4����c�2�)�Y�љ�{��!2��u�j};m����b6_s=��,�c�!����u�I�h�v�<Ͽ�'-�̞��B�4�R6���,@�txZd@G��{�"����c\���J��}a���
O���mr���G��j�}�W��m���EQTܥS���;��Y��@I�I�p]<�k�C��c�Q��"?�&��S�l"G�P-#b�1T�����}&[�`����W�B:
�Ϳe��-�o���5`ـA8*\	�س�\�;S��I�L�2x����&IܴA8D�P�
C�������`P�$���ƽ�vo�x�
2�&����M��	,k�|��lJS�Ҕ�4�)MiJS�Ҕ�4�)MiJS�Ҕ�4�)MiJS�Ҕ�o����c�Tm%]��)�*`���u���uäI�lմ����ED9^�z�"�k|�i7gpZl�E�.��ЂIZ�H��$mWސ¸���ݻ[��w,�EĎݮ�`��{fK��Ώ�S��a�����Eep��Iq�ҥ�C/}΋7(�/;��!��H&]<O"�@J��ڴ6�wj|?"�ii�|�c0
��࠭A�0aBC�����C{{����)�g�&�9df`:-ǎ#��!s���(��t��F��=�N��׌wD�\I�Z��kwRH�����������>^2��H �v
akʄ�Cک-�(n��"T�>"���?��Ep�[߃C�M!�$B��
�L<܍unFG壢<�k��
���������Şl��c�'��_�
���(⦛n"�"�?�x>�`���iA��/��#�<B"����� /j���x`�>�A�HE�m����$2�L�z�fO�:=��}:aHܠH��NE�Y�]�M0����UUuvo�B��58h=��l�y崵ѽ�6�-�ہ�w#MZ�X�Q*.�h�%&����p;�t����H�iM��r��_��Wv�ލ�y�w�}p��M�:��JYO���?�\��S����Os�G�iA^Q"�%H.T8��] ��A��N+,fH��q�����?X#�&�:*�z{����,&0B0V35q-��f���A�0�1�M�R��t�f��	�pD�xƔ�eX8r;1w.�u�ut �~G�I* �N�^�l �ܹs'=��T���A.����$�-;�}������-���K�%9g&�z׻����ٺu+7ndƌL�<���^9��ga���·w�}�`��j]	D��w�0����jƝ�g�{}���_'h?%b���r��SB��IbH.��z��G\:�OѲ�0��z� 2���r�����C`�1D�|�*G�|�#N�̘�����`pE�N��"��Ǣ�<R@0��c�A���^�
�t��M�.W�6EB4��ikk�s�ᮻ���$�y;�������
��
�|z��/̙;���V��,[��	&4Xvk��}Έ���S��G�1g�$����+�uۺF4��1�lD��.2�뗶�+�6A�3��Y��0�t| ����^��~�$R���b�î_o&�Eu'wa.�)L����Z`^���S^�q���X8�S��P�G�^<SFՋ�T��`j�|��?����Bμy�d�0c�aS�-���[�_y��#m��L&9��#�={6'N$R�u?�������  �5�tЛ7��'�a�/�e˖q�q�1}�t�R���@٭!��c6F��a�;��_?�fMm/VjΚ�ο~�\��ףT��Q�I���,����h���厘�	1�V����Ɋ%wg��fS��/����q�V�V������%K��L&���i�o'�^��N=���~�d�0ję(w���%#�d�F*�S����p��a�W����
������x��3���H?�<&~���P�״i���G<��vN�B�F��4�'�OgF��<���i�Z�6mZ�2T#U��l~�'�ߗ,��ܙ��]c��I̛9���vT¢'�-�������X?(�yQ�,7��U��'m�o�!��0�7�$C�6���R�xYBؖbR)p]Ɵy&B��^0����!�A��Ġ�Z
�H /OE��}�N�,�M�I��f��T��#U�ȫ,��N,x_!�"���+L�j�Hap)�Y��b�k��j,};Z]���.�[ǣ��wh�v�'���*��5�۰w�"L6k=����A?���H�۰�\wwq"e�9U#���k�.&N�HKKSfO�[k�#�h�@o�����I�R)r�4}}}�p�$
C�@�;l����X�y�͞R��u���
E8DE��Qݖ�zD�i����Hi�U({B��S4��^'t=*A�
@xv�Qk��	ؽA��o�&:}�4���h�Q�'*�RE#�Q�*��1�	g���O�a~�dH��+���U50��SOe«��w�]od	��2�+W���of�ҥ\}��|�����zv�C*v+��I�&p�%'���n`�ʕ,_��#�8�4�'Q�ʠ��<��/�����h��u�ѯތ�CF|�L�p��o=Z�¢c"^~�%�-��P3筊�w8��˖�HͶ�%�O|#�;Y����tm��1����oty��6�⾏|�u�L����Lj�!��F�����翽���6KRV���"���@k6���pE�xv��1��3�$�s'QO�$;�U�4�3n�}�����'3��I?�,���Z���wuu��Y�f�j�*�z�)�:�(n��˹�W+X��悇�u>��X4g2k֬!�����~�#����z�`!i�H����n�^�=��l�Yu�c��'M�鬝fE��#r9�08`y�:�LV0��$=��0�C����S�@:'H��QH,N
����b~dtݬ�hC��~O�f-����|���g	;��ս@o���D�o������|�	|��H���Y�fqꩧ�z�j<���c���,�3�����vqx|k�>�t�������<.\ȉ'���ٳ�f�uCҵ�/077�T�;�>���+4�7�-���3o��	6��c~�``�'�,�����ÐIß��r�9
��7}'��_�����>F�Lc�E�&~o?�)�u��
L�h���:kE=�u9k袋.�g�!C��w�g�%�V��.��ncݺu\u�U�����HH�b+��I����T�O��iA�3��(���L��ׁ5Rc �4��,h�`ؽ]BR��J�>!ZE�H�=4Re�CӦt��X���}[>�w��DC*�H�x�M�Gĉ�Hk��L��+� "�Wqhv^Q�P�("�H��O!��o�)�Jq�)�p��F�j	�n"�B⦒H�����Ho�û��0D��}]k�k֐ä���ߦ��AI�1��ओ��/ɧ%:�Kk0���)��E�{�C��\xIĭ7�i�@;F
d2��y8��v���%���&���!����V���q0R���M�p�t�6�Էv�)�����qJF�L&q�A{A$a(	�Ѭs�g4--Va%	ki5��ƍG5�ܸqc� �d�ݎ�+%�D�@!���7$j:�i��$k�6��V¦���a�xC��-�!@��+К���o��&�GaK�Е�k1��nXh"]���$�R�H�D r�{�E �(�d�n�v;�%F!REV�(:�p>�v�x��&����M��	,k�|��lJS�Ҕ�4�)MiJS�Ҕ�4�)MiJS�Ҕ�4�)MiJS�Ҕ�o�>���i�<GB�/a��
,s�n\�u�ֲ��h;&^��ME��-箫
�:��ZHZ���~��e��
��Ơ�M�Q��G~]�&�&$5i^kˈ[7\tհ�U삂���}���?��p�9g��g_~|���g���`2�����/�Ӧ���OL~�X��'�k5e{u�
ȯ�U��cM�F�)���:�}�1X6'��J��~�_�%c������',�l��,�uQ�I!��d�DK��RJڦJ���E}	��{,��$�j��
1�G�<�u-<򥛡�
�������G2��9e�4a���܄"P���H��0��%x�w��Y���L��];�>k_��G��+/�m�r?��"��>&�d�����%���L77|�"0���0aȴ����W�P���_�*�?����	gb�14"O����Ғ�����-�<�&̀�����2�;k*�T�(,���Ǖ���SO�I�C��nd>oap�$�sAH�s�"ٯb��侃.����`p)^��wP���\O�
����a��^;�?r�E���g��~�O�'��ˀ��Ő�4�ޕ��Y��{����3��û�|��x��	<�i!���"U*8����������0��m��	7Uՙ��#��Cw7=~�m+S�xm�qR��%3ϼ0�E��#
�ϕK�v�ax��1)%�^���H.X`p�i��s��ȥ�'���=��6���k��������]�_��kW�9������׏2a�p��ڷ�YS�q/�X��jRO����2`��t���>�j�>���#`��a��!�܋�j�܋�}p���2�A�/!4��t׆t6���c�Þ�g�Ν�`١ϲ�o2+���kW�z�5��5��[o��1���6o3yO�չ3e&�L�}g�˸�3+S�!��:��FLr�%kN<���{rpg�����y���~����a�z��6P�[�!������36��Jg �N5	j�DHU������{�
���N�1�9�y
�L��~^�?�o�������wZA׵�~��� ��2���Fx���)6�n�g�����%!��;w]���3�eDOZ��3�=�I'U՘��ΔiSI���C��2}�,ۇ���\���
�0�ktv���ڬ�͇U�.�W�sc#F���9�7�D��_ Q���IC>�}3��.A�Q>W龇��0�W�</�0
2	-�ۼ=���Y�i�
�Àe�i6b�@E9А���B��� ���#���#_�4öǟ�=KL$HM�B*�B�cӦϠe�T;��i�F�/L��Z����t)�T
)%&����D����p#��\~��p��Z�Z��܂���o잴�<�g�
D�2���2dH�?j�Hڷ��9?�)�Y�a��@��C��]�	�
f]�-�g�Y����%E��7ܹ�,��ˁ�nX6gk��A\z�
�>h�>{+^�Ì�G��{*Ot����i�5s�j��*x]�5Ŭ3pZ[+�P�%��j����ޣ��5�q�7�1��[I͟ϸ�'�d�B��#��Fv�_�2�LΆ��^�-�;.�g\[I�<�Ү�3#}tό�"�grD
T`�!�)P�k/6D~\ѷ�l~��	�88C��S�����O���h��@N��#a�A��]��~c@)��r�Vi29ۘ��s"Fex��wp��'X��`~�؉���;a˹�����bC�a۫kj��x��R��;�&�De��{3*#��勐��1}�.�?��ŵ�i�lGJ���/�����dn�6�~�͜�;��_�^X5d)J7�(i9\�<����q�V�iϐ::"�Z \H���t���I�ʌԮ�(��� B[�ha?SqS�*�w���^�V����F:�PI�w�2�{ϹU�)0�ߩ����y�_z	��F�(ȫZ����+������/<��J����s���/���~����O4�
a*�v IDAT��z�U�3�h�h99"���	aܩ!�6a�
k�
�8xL�٩JO��S}��@���ז��[`���͊'�������xR�������U��e��դ���1�&O��f~�7��_�=,F�
���z�4ƍ�́,����a@7`}Ql���'���^�po��	sr��<D�&�M0�j�m��W�n�Ş��t���N�H�o	��(/gL��~��'�����|zn��Րy�2�|`s�FM������=���y׬��Ϯ�I���IUV�iy��t]?j��(R��Hڨ^
��>fT9�A��'@�(�_uq�5r�F+i�_�v��PַCYP���L�,���م���E�i��c`�i��[�p���4,����jۇ��8B�!
F����r��dIJY��jtl?ŋ�uFRI���h��.�ڛV�rRc^?#-�"��xҘD�L��B�H�1Ҳ�.�1��Ll�p&	���0�^��Q�����
�C��n��`��a�~��o��5
��a�O?�̅imm}]��l���p�5?_@�a�Us�(��e�ALl)�N�[�Λ~�}K�`寈.z�5T��X�`���6��X�o�t}Ӆ^��e�qP=u^��4��
`�G��"u"�x� ���O@~������ u��f�	��#h=	�
;����tǕ_�K��NL�K��c�����'-���*��P1�n�Lc���dbt9�5���%��_�`c^#�^�-�oL��ύ��qc��E�W�:v�E�	��j_��ךBߚ�uRg���OJ&�.��Z'�G�%pgY/�v�]V"d��^,�R�a��B䄀i�7���a�w����y�O>Ǿ�H$H$H)q��w+��B�"�,� ����ϯk�Q��,���:�����6�T�M-�o'�u@^�H��1�uRX❬��B[ob����2.��]]�uҩ�zҡ2+��
�#1�D{R)����0��)o؉���ap�Mmln��|ަaqߺs�����%�C�8�k�_�J��D��O'¶����+�'a���Z��~+����T5`�h�-�`��l:7�tWy9O�Hu�e�dW��d�$�d�:4J�ѴH�I0J&k�0)x07l�5<��޶��N�^x�%��r\)p�B�|to�Z���+�D����O�:4�ZM�or�M`YS�_gS�Ҕ�4�)MiJS�Ҕ�4�)MiJS�Ҕ�4�)MiJS�Ҕ��}�@��_�"0�ys|�c��+��>}�2��`��I-�]˙�w��S�Ĉ�/��L��Ѽ��;�B�N��]v�o��bl�F�R6PV�O����G^a��H'�($���6���&RV��'�X���VŪʸ�%��>1X��T��8�������w���s��d��Z�^��������~�8�����*�a!��@�կo�P��A�<���$2�@8޼y\��s�R0o�<���W�+WJ�eJ���D�����5u�yױ�⛀�� �&p��DĆ#ZȢ��ѵ�M���?H�����:�0dɒ%8ҩ�H�͈��X�[ٖD��W���eX~�2rQ@*�$�%�)��	�ƒ���l���`6�T��~����\�xqE����Ҿ])*��8���
U���<-n7�g�w.�Δy~��e���~���g�΍�&6�y�B����̦-��^�  0�=�O�*���_Uc��� ���̦-5uvtn�+�C�J[Cك�Mc��ttn��3�N�'���c+��j:���s�k[��'?�s��+���q��&���f�f��B��&�[VZ�8ԓ��5���-�Y���޹J�(m8��>�u��<��	r�B��UkME��X&�E�??�J'����d�֧��#Ta�4�����=�cl�u|�p�w_$���i�q����
3J#- J����i?�����L�~myf�G�>2����m�3r�-�g��FR�}c�#�A�0k�,�~���@i3v�&kc�|�Il��
�J��	1+�쾃o~�B�����S�G�~�b�(�	à�H��E��vEl�ٜ_4v���Mc4Ƣ��׻���Ӗ�%<K/1���Bp�C�±,����.~��9���B�4��4���/R�Pf2ƂC�Ai���5R�}�Nl���p����-�"���d���c#x!C�kΰ(��X5з����]A��Vi'|"�O۟_?�k00.5��y�}���n1;m��|
�Ӌ�Ўp=>�?#>r��*���r޺+~� �-���Xc��y\l8F��4���Iu���NW�;���ZZV��<O�����Τ)��P�g�u��i�/��V�{�ږ�:.��/����\ձ�l������+G��cE����fydR�dv�Ч�r�C*�ط�T�r�r�A6(3��L��U'\�'o�$}�>�Qg|�{9_��X�e58 �`P�`�Z'ݗ_�>������W��<���^���~���\��9֋��_�H����%K��b�mSE&EJ)�뮭��Rh�'YX��4�"7��)��h�j��^���}��]�^15��A"�[7T+�Q*�Y5G�w���I�j�~#-6阉�'dߧ�^ΎE���;��}�-��Yi��[F��2�H=OZ��B��gJF�òS����������8�aG�Vo[M&���-AhQ�I
�z�>����qi��ް9�2yb��n8� �>�%��i�_����d��;��/�O���h^]����>�G^y���O�͟����I�*"y�U��8G6D;�)z�Qۨ�Z�]�e ��a; �$�����G{��-��v9�����)�!?7̈́LJ�qɨ���5�ES��\���.�G�\u'��|���6;�FZ�I�ʣCE?.����Έ��}��\��}�����e}߯;�U���(z(cF7�e��R0Lݎ�	,kmEG�Ν6������Co���I�ǾB��E$���F9qBČ$�����յj�RZ/�����ћ��E��DߖL�(fnK��/B���f�ԀV�!#ڷ�`��c
����2o�<6���BJdT�(�=��ʉ����=��w=�5��!��L˵|�}���F=����>��ŋiiiF09�����|��\M)E.�c�ڵ���;k~��L̙C�3��КI��b޼
xA��0�,�!�!Ƹ�ebH�n��I�k�_���YN�s@�j��ǒ���Y� }�.�x<"�3C�Y������H}ۛ�-��<<��Kf.�c��c��d�lYJ�p���eӟ�'-���O[��_�*_K}�9o}��j�p���'�N�%��$`�vZ�|��"w慵�I1�D��͂R��C��!��(t��W0�Og�g?ks�iӈ|���D�u����:U���a��α/�� /�n ?�o�,1�.�o��G�i�����+v��:ƽ�{������m�0��)
$Ӑ'
���bv���~Ʌ�_��O��kﺖ�=[�@�6��X��݃��*<i�GgK�Ϥ}��)�h[����2S۾�?�}"�|c�{݀�j����ozDyni��k��4(S�q7p�-�͙C��p�P�8v-6��)R"ZZ@)L����|�҂�}�P?�ز��Y��#dqc,R��5��1�F�tj�_��9�ws��i����L�����E�=f�5{R�[�pNZ�Sʒ�q�����'�I�s�w8�,;d/m	?�IzI�{�:v���H3|v���Va�B�fs��ag�|�kL��s���P7�Iú��(Rh��AP`Gb7Tk]64W�
��k�୷���đ�B:N	Q��ׂE�j��y�h)1��o��0X�Үj\*B��6�'�^�$-���X�dW�
]�y��n��D�;|�u�7	��{�!'A��H1F���*�<`…;��������/��yG�p���en|�F�lY	0�T`����ܮ]��;a$�1nZ)��򬹇C�h���~�E�]��3A� 
�z�""-��2���J)t��UL�L7�a��[~f�=��[��փqic'u�0��M]�B]1q*L$uis�.<���N��eK���+gS	j$\ѓRi��v��k������5K[��\�|�`Pţ��.$��[9�=��=?�ū��BJ�:0���HJd2�IxH���YS'� /��1m�zai���"L���aK��}9FJ�8�2��P�B~:�f<Q2Jه�� (B�D��N�'��A^��)�G�_b��������N�v;i7��D����-�#����L
og|�F��Dy�����i(nZ۴X��
�!�7w
e=o�� �$h"k��J�T���1}�ɟ欷	%�wХe��w�u��L����
�9Hkٸ���N:::�ww՞L`�DR��4��L��uq��iRگQzQ#�����(�i�^2�nG�J�T>R�<�֩1h�i�'�@�I� ~#��" �UocO�f�"��+O��:G��e����!��Ŵ`�!JD�DM`YS�_gX����ٔ�4�)MiJS�Ҕ�4�)MiJS�Ҕ�4�)MiJS�Ҕ�4�)�"�=���ǀ+��CZ����	6�J�AS^W8�`顇V�y��O�!iv_g�k4�˾�x_��=�j�����Zr��}�o���{:ަh��Kgx����w�D�W��	��!�R��8V4��]�	6�jO�����k���a8�] �>N*��H"\��5�@�!�ԅ=�v���"T��>:�����M�ν�Ө�e'.%�I�!�J��p_)
߇umL
�7XkCi�P���;V���l��]t���b�Qi�sjײ����8<l$��X���8kK9��ظ����?�w��&��H�S�\�-�p�jG��]�ڀ����Mo�v��3yh�n�|���;�-���-���D���j�G�z���z|B�e��
�_�3~�ag
�:e A�HG	p5�W�zU��� [L�%��{Ȯ@�z�$�~��W�H�g�g2cy����ǞX�K�8Ƶ�l��ǜe^w�`��@D�ba��nMn�@4�Rۿ�^���82:{���`JWת�v>��F	p5֐T~�zu���r��^O�F9��޺�*��
��\��{,ogp�-�-�H\p����;��?,]�9T���E�N昹���ڝu�c�[}���,Tl���[���.�J�ZO�Wae�Ɛ��an����
O�(<��5��l�W��c�HGţ����v&Ƕ�)F�n߉7�'�7��L͡���;&�Љ�o�x|Z^�iU�g}�n�{['Fz�෉
��N܃B,^3�>�,��s���2�-x6��!�>�\��=��.����'D|ᲃHI8t�N���
�^�v�
y�����&(�������3m���ϫ=��@iLT��b����I��5*�m�*�b.1��N�f5ƨ�m$�}`�e4���Pl�`�)��<�g����x����W�F5�#-�[i3�f�j؉�L:�'[�xє��Q�v�!F�Nzfw���ob�>ٲn+�|}Ї(���ZC>�ʱ�n1yь$Gγ��sS��+_tda\u����v��jv�����>��ˌ�^�*W�H�B^`�0
�
k2��h�-�j=i�ec٧±�<!�OÛw.ъGpw���v�9s�埭�6lM#PDC&`�F��>��o�=�,�ָ眅��G�ZE�P#��&jPg<0�d����9w�d����H5�O�it`hr~�p�p�e�/n�2>�=z"IOS�#�%�C�o����-�
�m��D�Eϗ½]��,��Ʀ���?`+(��@��׆c1�R�2O*F�IK�[)]�HM�NǑv��p]��SIH���M4c:��������ӕ�Z)�t�Ӡܯn$��i��,{�}K���Y��*.��g0J)�p��|2�����@�! ��vbt];PJ�:���Gץٰ+��ϛ�Wc�����fg�J�yRUF�.zҾ�,w�'��7�����z�P��}__߂��9��"�fq~���v`֭G�!&/ȯ� j�L�@�zFZȝt��=��� -Oj;�pS둤�$_u'�������I��ݐ�����}_&NL]�6�n0'E
8o�`.��$5,'��F�(�4\�送���ں��8��9id�Q�
E�k��
�rx�i����h��5Aq�b�&/%�5�sV���"U<\���6��=���5���0:���(p�n �C)��@H��Zʚi��B�"��:����f"Q�U;'5��l JEQ���x~0(��u�`���FU�ݗ�<j�8�2!?]у1p�I�9j^�;^>q��6q�Td=����z�r��h�a:���AR���Yxk�5k-��7.d��ŤR������s�'h�h9�S�#������W�]]g��0�ϳv�Z�Y�����~��,�5��8ċ�
K���=�5[�8p�D>��>���^��a�`?��M/��Em��=��Y�,��bD
-����?߼���s�ۙ���8�J�Z+L���@���S�Oޡ����� 
C�
T�rz_̃�����v�٨u��v
&
2��)�Tյ��CK�k�B�E�l��V>�/2�x��y�w�^]_s�U��i`�4\��&�	)���"��,e�t�ˑ�A=�g�7NF�˜ci�E��U]��.�+��V G��*iDi�GM�#@���]���>t�Y5�]0҂��őc�z��6�F����_YK�h;��T�`F�9�-�Y���5�R8"B�x�}l�u��к�.Ā+i���	���V��O�	C�1%7&x����Hd��W��RFƠcxX�ϗV��L�B���
�S/|���ys��q;%2�Dx	���gR�;�F��U��iC}x��`��uZ`��:M��J`Y��)%H�(����
\7F��RTy6��x�F�WHL��.@2��u�v}+�F�0�hn��S��~��me�09Fx�
<l��h^�VU��ڇ�%�I^s]!p�B���̀���$��L��up�,�ħa2j%��%2�N%&��8�Y_��N'ھ�1J�Lx�k4�ZM�on�M`YS�_gS�Ҕ�4�)MiJS�Ҕ�4�)MiJS�Ҕ�4�)MiJS�Ҕ��}�@�֥o�V���(N.�*Tvb^�걪��-
߈��n]u��~�f%0�]�a�cg��#uZj�U�����g����,����+���[S8��VqDqa��O�UU'?4oH��aQU�o9�†$��#\^_nC�=���E�p���F���L��heٞǡ{��F�|�2-)���wPp�|�rr��T�d2��y�<�������0�}�|>OKK7�|sm�Z����Ʌ�T³`6G2oiP$
~88�Rgl Z�1�J�� �œ�|�#5u�ʰ�����K"�B������F�>:��a��D"���j����vf$f�_r?f&f���	oT�Sv:��^�vb8�� �y���!Q��2;�hf�~����|��T�o�
������������g�L�H�F��Z�~=�������9s�m۶�)��̙3�-[���ɓ'�~���:�w�ٟ�'U��-��?����-���V���;k��vmF�z1Ѡ��=v����궑��\S'!��
�*���M7�Y֩�\w#J����b�:7tvu!���'��ņ�h͉��`��t���xc��tC51�t�����9�����{�d�l���z�N=�4�|�	|�f��t��ؙ����`gU��F
��C:��Vn&Ȃ	l%�:���6]G�&xՋ���.�O��zu.3�=�;�D"��&� `ƻχO�#����b������}A��kc�T�Z#����v�Gj�Mgg爅l�l�
�6q��p����a�֭lڲ����4TF� IDAT���7��?��nE��*[��7��M>5d`:ۋqA�����0ڠ�|]#�˗��AϢ���m����ћ��qXV��(����0�ƦI.d�=zz�L�֬t3v�
�<�,]��T*5bG����ߍ���~���7nX�����yV�Z�ɧ�R�&�~s�Ju>f�FZ�g1z���.E�R��h��78�a���\�`"�����ϣ���k���%��y����x�i��W���l��h�Վ'���8�أ0�cd�V�6��G�d��Q%��fӰks���F 42kAHk�ֵmy�Ҡ��5�Ϟz*���St��%�q3�޴	!%kz{Yu�i,�P)��>�U+W��y���%K'�08�9Uf��\��:](b*1��`��+9uE}S�>j���>+Vle��V����	'�a����(�F\֎�3Y���ׁ�ٶ(�E�<�Q�|´����n�䲹[_j�t�wY�)i�T�A�p`k��[���v�}�{a�6�~�g�=�@E�=��Lb#:���oٸ!%�Yv�,[�
�!�픦�5��^���36�j!p��n&MJ��C[��p�	�Y������Y���R�%;_�Ƶ�3�5�|�|�Z��W��3Y?Ƈʡf>���M���	�Z)�'���sS�V3���&t��}�p�N���i��h_K׿���Ec+���8 5w.HI����2�(x�µLFj�M�HR�n�k#��_������5T�u?�ٜFTby�o�ֿ�
�l�y����C�\�9��ut�,uK%���C�W��'Mۜ��{���'�eց޾���e��f�q}�l�}}�*���}�9p��^�~O�Ƌ�~�a��5�,'��__)~f���zTH�����aV=da��6�wG5
!�6�q���*���0�<�/X�E-ා��jfqy�o`�!��=�R�� �ғ�����pOjt��셷�d�<)`��mx��1.�B�P���eD�-P�����p�V�8M�^��q=���i�]wN>��ĩm�8��E
���&I�,)
�����U��e�3ޑ<i{��i���W�����2aBbD#z�1KG�u|��u)O�<����B*�QMz7�\J�¢�М���0��8p´'`�����ytm��Ơ
9i��~��øi�0NL2�&�&p��V���2����W|���y*%�������$����;�ȿ
�
	՝�/�坌�9<,9������e ��k���K+�h`
ꙕ���E�X|���a0���pܯ����ũd��$�(����� ����1l�[��5�&�Š�)�}���[���M��3���˼�0�d4Qc�*�>��u�k��T545F78��HEv.�c��(�`�<�"��������+���Capc]'
�sK����
F��*��
�b��F��vA+���Z���'��]	ua�'���s&�G�I�L  �YxE���L����R�%���2�^�d�M�S$�o��A�Hq,�J��J�$8��
�h��׳	������7�����}Ω��t:�<���&��� Q.* �"(���Q��뀈W�2���a`�Ȝt:���PÙ����TuuR]U���s�Z��9I�ꬳ�^{��n�뢲�+��pc&F8��#q��(+�0��0�A%{Ə�J��=\��v����T�!'X���Ͳ֘�D�Ħ�/)2ky���؎^qŷ�ab��S̊��r��o.�V����=\��q��a����0
�!�����(����eM��]78mP+�i�i4��41
���pmp�f�shq�4Qi��	%�a�V0Os�ސ�
-H�Zi���W�Hc��J�:d���Cв���ݺ���`b���c1����EcX)a
���p��'�EiT��RcD�����~��H$g�e�j��:�R9��0c�@:�
����_^gXV����"�HE*R��T�"�HE*R��T�"yoEtw�l��;�����
�������
D#Vx@W~Șz��釫J5V��8�T bE,�6�F#tuu���~ʉ�hM:���r*���Z��X��!@D)E_O==}x���m������v�y}}I���\���0�u�R�yχ���'E���z�{��kߦ���h4��>��H$5����n�0�η�LmM���S��<��R�yO�{�Ҿ�bZg�y������|�Vd26O=�S�N��Es�,?L~���s�:p�[��_ɒ�:i��"��G��,�?�j(@�lFU��ٴ�#���.��u�����ֲr]�Ay�O��,Z>z>*�b�#�p��+h����Ԛæ7p��^2��K�%�p��W)��r�_ƿ��i��n$�����V��vf�;��E.�����^�l��戥�B*�e�\|�E������W�8��:�(^_��x�\�ѳ8�E�ܶ�C�װC���y~3cc���("!<-�$-yy�q���L�Y�P�bPH��ҥ��d�E,f����%De��Q
</8�ն}	��YT��R��L?�<�B^[�΋o�C�,�K0e��?�Y��2j�>}�AO�
��9����5�����O4��_����￘���-|�sx����t�xb;�3�'��?8���}'g�1���}'S��/,��Ў��m�D��%`p��1{��	���y)y��lJ�ٯٸY��x�k��<�,�i�0�\)Ig�>,�d����ٽ�[n�ȃ=���c�1}2;�����Kh�r��[��w���Q�J�h ��$���6��N�>�$~\kEc������ί��#��[oe��gsԹ�2�1��������Ԋ�L���/�͍t�،������Q�N�WГq���/Q�6~��|�㳹��׹��r�k\u�<����\u�<n���
��?\s@1Àd)Q�G��3����ӹD�l�ț;�<⁞T�!��1�H��@ge�N+�']�	���S�����? ����󰄏%$������}����j@&��C��' r�l�g��5m
�굸/,�[���{�� ˂�i�I�1�`�wf��d�\�U���>s��>y?���b◾ĭWɯ�s+��z��r��8�d�F>S���=�e��?Ob�B�4wp��kX�־��x�ӹ�η�暅�q�*��fw��f��������h���E�q��q���
҃�Ɠt��{��Sy|�5I;�{Kɬ�*�(�e2z�Hjk�yj�r�8�8F65�ڣ�<�$�)�ƭ��3�+^��G�B�lY��:���XS�m���s��x)�I?�'2}
�N���o�V�"%�g�R�ڼp�B�xE(l�+���r�i>t�Rη�dەW2��k��E̝>"Ȑ�dP�4JJ.:��C��G)��~;����=���jF�SN�����]w��:�_���~�5n���5pn那��]�n��Nz��z���ό�3�o�}����:^MĊ`�6��h�;o��€d2��k��� �p���u�~��{�~�P!e�Emg�Z3��վ,�ܲ�k�/�����B�R�aB[��;���?�R��]?�^�\��3dO���J<�k��2�鴏�ƻb����T"�&���B�3[X9a߸�s��w�;�4N���t:0R��|�m�N;�]ľ����rֵt /]:�4���a|��+���#�ַV�o��7�(x����Q���g�A�V��"0�@B�n���0�iW�x�<x
ݩn��)MN;�4>u����_��Xf����I�²L��_�ϫ+��������ٓy������>CX��^SD
Y�q���L]��8�\;�p���14�~����ג|��5�J[r<�?�C"��ds �J��yF&nq��B�P-Qګ-���̛;�X,�[P���(��x�4*�BJ��_�*����j�����&��f�X>p�E��o���}1���r�MGq㍯�o��ŋ,h.sS	�.�+fK٩~#u���M�I�~���hj�=]{X�k
);�B��7Ndim���\���_Ȓc���Fh��f��Q�U	:Ӓ����4�1�!�3d��IqECo��>������(�ȼ��.<յ�N&v��I\�	z�~3~GG�f��,#M���0�w�I%Bx%����s�&L �f+&�O8���+7m*�|�]7��}m9��z,7��2��b��~y��7�z�p��S��;̖�E`���:_�d�L�࿭�O�{��֡���p�QJ��u�:�QVl��Ѝ���d�}Q�ڢq<h���^�3a|��o����1�J��/Qf`,J[ �4�y���jT�B��$5�{��a�� 31�,�v��,�RjlG�n�>x��C�½�`��N!�
FJ����dk��7����>�o|�U��c���_��[_�k+�m�֮��O/j���t�!hp}�Q5���8��{�/��E�+�~�K�U�?��h���m�n{v+�Ǹ�D8nh%�!^[�Ҥ���Q�i���GW�s����g-��=��i���c�<��ހ|v�x]��_ރ��s��*��
�nCk��^,C��{�}h�E"��su����'�d���$�A1ݲ���G�Y[ˡ��>��YJI&��ݸ�8�h�^�|�����ϕW>�~p<W^�\��u�-GΘQp�$������p ��+��?�۰�es���3�~��w5��t�=������ڨ���Ҟ�qNjS��{�Ֆ��~_F�.��.������7�����׶��=�O���3��m��U^P���sIA��Ȼ�1{&�O\H��hP_G�O���r�U�J
I�����@=L#���G19��'����6�pNw^wGW��_��L�A���Hϣ����~�Q�׾͵O�l��������Q�|��/�\�"Z��W����z�=����'=��ހ��^�,��Sg��m��������;ACmM-��8�7��AG_��5e��{��x�X�x�e{����H��DW�����uI�Xc��К�^8�}�Y��G�v¿^�yL3�.KF�%�T�>2��ٯ���ΟR{����JĄq����
�̘�р�ڛ��A�i�R�H)r9���l���� iB���O�Gu�����ɚ��ʔ�CJ�T<��.ι�:�G��n���_�:�{�����㏟5dx����3�m�6n���.9'�.����?�o���5�s
�q�p�s9�}g�v�Z�!������hC\���|���>�XW"f����c3w}vF�]�s�WmU��Z`��s%i��l��m�-��.�x>X�.�O*}�@�_w��&U�����.9���=Ϋ+T�Ƚ×��3�
���@tux�S޴��4�E��W�p��=�{��5j?}9�t�f��[9��P���<�R\y�K<��nn��hf���l��Z.J/g�e���o"U��眃�k�p>;�y��ά���<�
���oo���{7�?�S� jFY�o��z?vl�(h9@7�5WmuU,Q�;[8l����E]�m��O��i��̝�̈́���4XD�u5�d�ࡕ�q��ʨD���%�X�xȼ���++��Z�d�X��v��|�eazX��p�I��<�}M��Ɠ]�`����\����~�{��}��T��«������5����s��w��_��������W�o���%�RR����r��MJ
�Y^v��yR��=����[��)�?Y�=/��鍗��Vi^�R���$�l� ��fզmͣ�9̛��O���$��e��ł�fß��Ә�<�i�)f<��F0�H\"J�tI�ЮGZ�������fCD0�H�< Q�Ԍ�뾀�����u��~��E�:�����H�ܹ<w���]h`|Sc���Il�D���L]�V���q����.8���_�u�l��fΡ\ZL�c���OǏF1�� ��4��1f?���$�uQ�--p�%
��\@�����t:�Q@7�H/�@��W��`�M)��]�@�gF����xd҂��u�5U1MĀ	
��g�Ǖ�7*FT7�H,�>��FIs�u�	I��kE�7(6F"1vﷰL�i*�E�
����Q|��D���W^a�}�Qu�%|kK�Z��� ��l���n����BOǞ%��{x�U|��CI�q�/Y�n/��]��b��9���DJ�#��v���nO�+�����%]��a�Y\G���g׺b��E�`/li�?�̗��Z�36����V�Bl^��ѳ
�����*:��9����Z�WQ�g�u���O�JOB_L����CR�/�Iٚ�*M���>�uw�W�P�WEg�:�rƇ~�k�e���4o;4P�´r1���w�;��T�HI˟|U��K�EMb9�,O���*U\��T�"�HE*R��T�"�HE*R��T�"�HE*�\BX^�$���8l�G�*�!W�{�s�ǐW�s�ˑ\�X��c�7��:��z�M-�<8<�[:�CM����}�-z�3�%�f��n���:�~��,.^x"��=��I���k�P^�f�R�~���=?��҆, �k��>�a;��f,���s?����P�0��wj�G:Npxi<ƪ��!��{�t�H7n�XT'@]�I�Ӧ��qP[YNZ�z�38���:�f��$�<�(1+B$<�wʔ)E�\����$��a{.	#�/<Y\�R�w�I�K�纶s������ۼ筕�dC;�A��C`��H�A:*c���^ڐX=-�p�;�a�&�;J<�}���i�E�Z�W����چ�|��&,�? ?��e5cF�������x"��UJ�N�����
~J���!W^9�ޅt6��-�M���o�2{���Q�U4��*����H[r1�N��=��c#K��ٳa�l"���x-�JvD��05u��,ޞ�
��w�Ja�N�}YXAdL���7*��R���AZk<�%��I��K�_��ܲ�hWU��(�� W�u]v<����Ӿ�t�vFw�E+E���H<^��z睰pa��jh����?7z4r\{]��N:���(����^��R'�L�D��L�@{�v���b�H��_��o�c�`��W`�\N�o��]g�!_g�U�T�g-׆Ji!����Ir��B��9$H��l�|�`^�q3��"��o����|��x��x/�D�yv_�q�؋�E������s
RJ���}��0���JV�…p�I�+kٲ�zꩥ?��Z�3m�^�)�A	‹*�j��]����e�#
����ƣ6�p|���&;H�X�gW��n.Yp"�q,�CH���>7��8�RFZ�
��G!����`jA��R���o:��(���C���q������lv=���ߤv�D|�{���Ђ�G��8��˄;o$>����^"�m'���?��N���n*�H˩��k�-��D�F������*����G2�5\{~����P��k��i��G�<�3[�p�	b�e_,:�)��m����rm����!+�fe:���$fKj��)�{�6:�pM�!��D����ҙ��
��a۷~D�o��i���_HgR4�T�N��mَ�=̴B*��Ĩ�
�y�)���ڹ�h�1'd{�ii�ŋ�GӖ��:}�;1R��O,�2Ҳ9�I�
���2��t9�����M�|��8.N�8�����L�UW�l��?�Yd�'���o��Vɡ��

���!+������}Bз
��}��Өp�����!F�*=`~%OP6�ʬ��+a��ȭ��
����<��M!S���C&�w�[�U1��Gb̨���ÕH3��#�ׁ�ii}�w�Te%��R)�I�-�K����D?������׭q�Q��u�:���������*�
�,q/�Yn�8��� IDATi6���4F4L�;oM��7r5�EުP�%��|��gR�18i�G�M��6��a�!����&��Q	��_F=�"�&�C��i�Yvʕl����n�F?�#w�P	#�ឨ8�^��@g`���q}��
�p���2ߓJUZ���f��G<��wwK1;ŰCH���4NO��^bjITba����w���
p(�����;j��?����®2��R�*%��o��1�,6���q���b��v�
g�y�a��o����nHw:	3���oHŤ+�w��,���tvwS|�8�9=�n��kf�2Y0��W1Y��9���e�d���g���)�yHa����?������H���Gf�|<Z�H�V���
|�����?��)F�v���
�?�d�V��/����Y�����8k�dޫi^�@�������̛�̞�{��wǓ��&hF�-sN�I?W�"�)ӓΟ
�L�ɣL��;��BJ��e����3>ɬ�qey�
6p�}���,{'�4�^��^�)d��-%|�|%�������7�+C#u��#��%�f�"��(.������th���L�a�%��,6�V�k�i9��Z)���a����-XN9�+5���_��S�Kψs��8�D���Y��Z'b�\��>wԩ�wd�ܗ�Ƌ/�|9�h�Tߞ������,d��3�H|����6j{�$�����<�w��<�'}��n�5����Lޚ�1!����Y��k>g�{��W2�^1-i��s5Rfy��W�w�?\��9$�^uU����]F9}���W���4�I��d�BU�r~xq����uL%�->8l�D��1�iO<��-�_N2�_��FZ�<X�N<����F�=ܷ�Z��I���kR���O���"_�l��
�xA?&�ʹ��]aá
?f`���p,�a}�=Z�R���>���p��}v�����3ِ��'bZ\s���Si밹�ڿ���eM��*
�,,��f�}�'f����aD"X�HP����
��r'�i|�Cy�v�9�Y|���-�GcD&��dY�0�@T��M(�����J[:�jU���kn
� nňZ"�UV#��nA^>��a�Np2A�rn��0�x�`�Tn?�"f�����r�/^#��?����
N��(��<��m��`��8=X��ˆ��z�(cAk5M,��>�+�=��F�L|%����߉EcX=a
0\<��
��К�h)�1J��=����Ƣ1��D����gВ}[0�^��<��&��P���h����؜��`�bzvt���<�o��J��E4ZKL���7
ˆ�M�F�E"���ժ���)*P���y��HE*R��T�"�HE*R��T�"�HE*R��T�"�HE*�[BX�~���.ڰ�E<�{4�x�_�%�
�����jW��DK�p�rg��C�˿4lH����ц�:w�!���>x99�d`V�0hA�e�V���yL�6o��w����a��!Đ��TZ��t�0!pޗ�T��
�i�AF�a�ϖ�3<�]������,�p��)���C`���^�%�����SGJl_�@�7�TKK��,[�E��,"�������*?�<_�8>�㑈x䕢:KA���O<t7�j���]�8���s�rK�.%���lj�bD"� a�̊$�7� y�	A���ːQA
��y8��m�$	x��唚��}K���Š"��QX��;�V>�w���/�l|�/�u�0g�R,����3"���2�t�ꡥ��m|�`ÛA9-�j���p����� ��`y��~%�1u�n�hh�;z��kk;m:{���!Fr�$�4�[4om/��$m��֭.���-jjI��^���ʹ�����9@_5gDk٪}�I�z�D�J2Ō0FX<�ʫc�5���477/g�vT���t���Sʪ%�^���f�ۆ����	�ɛ�-\�*H�Q4��	���h�=�E���� 5�evŧGWӫj�U�N��ҋ�)�!
娖=�@^Esu�9?9�D1�zeh�a�L�,pD2��q���
`I��6;�^��x=���Z
�G2=x��Q��)�����d�����t`B9U��a��.�֠�$�h8�BR{dp�[^�5�:�L�tZ�>����wPą�"k#3�njE�]j4��&R���]���2�n5m4V��3LĕV�vy�����Δ�-�Fj������6�C4KF���fi�#m�+;�#x�2���c"UD]���9�m��y�t�e���6�`��Q�]���m��F��-�ST|����#;�s�Fj(���B��=Tn1�/3��,os��OL�O���Od���C7��aڭW�H���t�͛W�x�v�Z6o�̙g�I</����W7p�nT�8���Ա�n<��K�e�$
Ĵ�<�p��W�H�w�׉��3F���#4�N������?GΛ��ǃ�u���eK��>}zuu�A�V�6�i5���ϵ�bq�8D$�2�*���M?��v�"���hO�j�,`c`�����I�V	�.A
�������Eրߍ$�(Z�&��I��d8�V�tFc~>K�`
�b7mbÆ
~��L�0��}���ߡN�.ߓf�%�l�!�k����qxᅝ�U���[9��I44Ć]�h�xv�e�cch�75bZ?'׫O{�{6઀�iw�/�?���^?'�Ւ�j	YCʗ�sRmqxduF�V/�^+�8�@g�}ndz9�z�e��$u(�,O��Պ%l%�IV�X��?���y�
R*���Ρ�2�I�y
��7v0bD��cJiN<q"6�s���]�ZC�K�FxҔ��ҙ�2�v��g8y�)�<������?�3<��#�.��ʁPg;9��į�sXf/B+���5�,�pg0^�git/ه�TU�4R���%*2?��Pe������m�6���?r��:$��k�:�<"Z��r�f�I��#�vq#7O�����+U�3Ƨ��ŀ�j��.1-+��jhʹr˛����q���3{��-��i/WP�e2�<8����)?A���mA��ٝCG��Q=�d�c�q"$�Tѥ�5����f��Ӂq��p�L&����Y�~=�i������&N;�*�@��puv�{(ەj��m)\�{���J�s��Z�~zG9!۶us�S��n�>�C��U�h�]���|x�G|��ro��V�j D7�F�J�����V�A�C�$��#1���Pq,4I��C�iI����>Bga�y�b�+�5K�,aƌh��������`Ex����|�,��a��v��
�Hˁ��*g]]�SN����r�d���n�:!��}ټ���6Dl��(�֠�t�>���7I	O��$��N "\L�8=��^5��b7��4�O���`J�G�/9'=���~c:b�s�A�nd��W��
�הFx�Ԟ���j�A�Jao�@�ץ�S�W�0!��
�!��A�niWӽ��4��S3�"t,MAy��^�����T�[���u���b`9E�b��<�� ��<�L��Wߏ�=@9���Z��kqQ�H}e��GH+�=�hT�:5y�9�)�~��F���$�x�<+��/O�����<�y��v�A�<�Q�*˺|�cH#\��a�R�Iˣ����s�an)hM����QF��8��ok�\d{����.�i:�WP�/b�o�k�r�,	G��(X�v����I|)}-*�VYK���O�w�b[`�UɊ�~��dža��k����a)�VY�4�SQ�/,Ӿѿ8����W��3,K��;�ch6|i�Gi�Гf�"z���tދ�z�e�`N�����T_����/L�TiYK�Q� b�!<,l̂��BjBx��
L� ��B��@h��������Ad?��:�e�A^���,+՚P7������t��fQ��0m�i��0*�p�*����2��H'�P�8<�f��bD�(+���'�A�Vs^��r�8nP��0�W�a��@#ÌF1,���Ĩ�����
�::1����G��;Z��~#�$�w�`Z��0B�����0RȏFK@�bXI����'��k(oDs /II�W)�VϾ�!��D�rF�1�������!����h�\�B�m�+<�!5��DU-5F��G��b������x�9����� B,�G�U�/��,����Y��T�"�HE*R��T�"�HE*R��T�"�HE*R��T�"��E ����65�S�C�
A^�����=H� ��G���f��� 4�0�r`�Y0�u]I���V^Asq�*��6}�Ӄ�\y��A9�U��kH��?����Å�z����yՅaR6ߨ?V��_�nQ}����5�F
p�\��	t�b�Ρ�λ�@禯=�<	��@�s�=��!�Gؾ��L*B�/��wO�Ÿ0���XU��N�n(��EK�bd2��8f,��D=�O!��)����	�,�B�,=�h2���cug����2C���Z:l�i�	^m����!$M)_b{>	���D9�~�CX���aĢD�N�'q/8�(��EY�XqxJ���H�x$F,��B0eʔ����DЦ�֭���X��%�V��ɨP�%b�ak��1���>��Sux
2�c��$��b{	#�/=Y`Y�����n:�I��90�)PE�7�޷j����Q[[E׮�P���fܶ6Dgg�;HP���HO	�Ws{m�N_1���N��;ZsX2���t2�:���>����Z+-���:S�v ;��AƨF��������u����(^�=;i���N�������a�f�����i�V\g����tz}A^U΃
P�9UI>5f/S#�k\4��ZDZ.UF�%	S�4��Z�ۂrZ��Nf�8�Y���E,!�m�>�&H��&�`��bh���4M.m`2��A^�a�����L�N�њ���h���$'�obRu���4'�IKo��5��u]W_Q#M�r�@���z�����(K�|��V4*U&$���xn0�8 ��(��i�Y(S���WI7���\�ڤ��XS+g�w�sg�PhfM���ɛ�[�hCJF@�i$J��+[�m}�h!P*x5<;��DiFNI�oM=F§~��o�Dj<�#\do��Uhߤm�������h���3q�|b�X�c�eh(fm��Z6��qf]q,YRԪ��ڲ�0��-\|�l_�}� +s��=#f���Q�]�0&H4= ���;�W�����^;�p2v8OԨL�<HZ_7:ߣ��R��~&3��q��ihKw�M@���Զq�轌�>?���\;_Z��8��|��ט?����ǫɆٖ�@̎Ґ�m���4c�$ԍN�2>��L]Ї�������1æ~V7��q31�p�V�ǖ�����F]�ֽ� �_�H�A���?a����Î�#{�U./VN4�mc��Uq��$��b���g���.�^�+��Mk|tɼ{�&��h3K�H/��Mۖ�h~�
Y|&c&M�?�H���.k�J�6ڰM��Q{9����?����Ө�:�nϕ��`��c�d�q�^�c�y*>�{������?->�Iӎ�6�
<)��I�á��t�@�\}�)h�c�&�����=��]���ˠl
���H&$W�Q��E b��k�՚��o�:w.�X,G��du:�Cr�8���4c#��H)��_��Zش)X(������ìY���݆Lg�v2tY^-h�~�|v��wO�v6������_[�%7��xM~*���P i(����{�l��D}|OӚ��1c	�LIS��0c�k�fos7�W���ˍ,9����甪4�����q<����ISv&0�H*4R�2|)��C�#���7Mm��ʹ�if͐��H��^��MG�aH�� /�At"ZT��=-��!������N�eC1Ҳu2�F�I#x衃���[��}��
�Rkd��)e�);zҁý/=�}�dz��}����	3ر}��,��I�M��os\C`���K�5��y
�J��$�#��:�鋚��p��Ǫ�q��I�0��������ٜ3R�0C)�K@�t�-K�~�͌���?֦'��G$#�%��Ĉ	��T.��$�e0����(Pt��Ѡm��}YT�L�H��r
tH:��޴r����Z���נ�7��m�y�F�^�0�:�tt�b]�Of�bD�
j������{��4ETyN\�1[�:.U�l��c��־��Is9�9�n��ס�ȍ�Q�M�
���>0Md�3�L�ݍh)�Ӓb��=,���غ`�^{��TJu-�_!�ݍ�uY�}!��V>��`���C����!2��C����P@^^o�0D0��'p啰~}�/zh�D��'X4�Ӗ3?�N%��3���pgA	�jFP�rط����SILj����nW�A/Kʁ�5g��x�.�ƕcv32"���1-8�\��C,��i�u+w�sK��oX��0$tz&?o���5��{�A+��h�$H֗��j��]�7vE���?�e�8-o��;h���V��H]�©TK��Tf'������ހu9":= �H9d���.C54ƻB�s�bKwg��^�>RC�&0pƎ�{�O~֭������ւ�H�C#���Wp�����aI��$j��>�-5��&R]�dHw*$
���v�h���q�9kD�fog��zuՐI;�A4b�����3�f5҇'�FpǾ)lK' ���Tʠ����Ԡ\�7ʡ���<{�h��ׅ6\<��Ug�x0o*sN:<L[�Q�K#h�DX�7M�ܧ����:�&�"�L��Ð
�jzw�pS�ս�}T�ʒ�����,s��7����.���e]����}O�?Xdu'��HLi*��?Fy�u4��C��L�/����\?q߼�9n��f�[��*����c��O<�>m�-��sרp��	���}R��4�
 B�I�F�n��DF��쓤��`z��>��G�Z�m4�M�gW��p�O�!��e���ʁδ�N�tEJ��S)�	I���e�ôߗ(#�g�j9����u����o�2|��.�����%BBb�EB�9���e
�~��_�CF�!�S{#/�Tq�����'X�f<ol���8|���7�ﯝJ�G^��$d{�o�'0���!J8����ݚ`��#��[�&��ׇ�����l�Μ����3�U������#�	�Bk|)1|F��a��r�a��>�20�C�
�Ѳ�W�wم��q�2zF�̓=JA��a��9���)FHz��atR�7��|�y�7���[��;؞�𙖙<�=2|-����ŗOzF�!8K����(F4ž��P�A�غ�'�e�K�R������ZCO�ŨE��ؤ��0�@A<'	�Z��Y��ZJ#�쇇y.�k^�UL�01��P!�ˌ`YD.���l�B���p��"�$��D	�00b1t4R;ɱ�\�	!�u�h��w����uu�_<��,���bd�HP��P����l%tft�@gEB�fW�g��a���cI�b|���`p2����̀�����`Y����b�GӼ���_^[�,J_�u���Ƣ1,�
�\�7`� �h��>^��H�K LP��mx�<�Tc)�R "�9��X�=��`� �Ė-C
��d���$y��E�\�0xy08�����ww���-�4*f�+A�,��ވ"<�=z�|ww��;Q�43Q��U�e���:+����}��HE*R��T�"�HE*R��T�"�HE*R��T�"�HE*�[BX��¦���
��\�=:8���o�C�0@k&�ma�{ow��?�x��`�X~IDATڡB�V�����?~n7+�'A��5�&U�S&P	�w���u���]�e.��
�yxD"�*ތ.��/�y�0M��,���p��l]u�'9��}�
���X�w�P<�c���)���Ss:���Sf�W��m�le���X��&�ģ1b�6e���\�e��dc,��"OI��vV��	`S�B���K�ؒ�e�Z�`"�!X�n/�i`XAQ�f�΢��T�q=�3˲�w�^۞���nt�������A˄���s̴��Db�g����trx��Gx��	���7\��?�қ�h�ʄ�$$�ԓf�æ]L:t
o{�����7�A�,�˖-CkB8�~�,F��]5Ү�^���q_k�^�a��`6�+D���
�%lO帹�\��cAq�y��z��C������IP?����A�H�4��i��Ҽ�Tk�~�:��&=fL��]����hU1�8nO�����qnתA{�P�Z�߽���4�Q�&Zk��Z��(?zf'{{���4�.�O�Ĵ�x.�+�r�=���$ݛ��GqF�(n��M<u�Gx�[��~�eLC��%S8>�����ѫ�g�]��h�7ӈr��w��C}V+E�6��Z�#J~��e~{'fw/Z�{Ҝm(��hh/�)��|����ʆ:�����M:i�WY�4a�i��*A�Վ��]̄�г	�<D��FCM�ISf#�r���?�=mIz{m�˖���2.�'s����r�Zo����[��I,�1�5Sc����=<�����j�O �O|}{�.�ɪ�}Eun���ظ��L�����Q��9���0�V�ۗ"��s_"
s�i֎}��A���$��N��}{JL�D�7pU4����J�L�0ܠMU�HCl�1���a4ϭ�L��(��"���'l�\�%\�sD�-�� f�!L[hq�rL����o�%�Hlc[�L�(��oA�iZa���u&���G�5xJ��X���
���&HD��j�!�s��Z;:2|��9��+N�H,b5��%�?��=���t�x��'M��9�'QJ�x��,���o�"�W�3���^�sg���$P�T��NT:C��;lXKh�����se{#�u�}m�_�
�Q�6���X+�Ɯ�!��z�j�
�*��9�(�t
�t��E�waf�:�I��ּ��"X�vA�O୪Bn���G�hd^{ZO]��y6�fȂ��ӹa�<�h��
����.���-��G�����<΂�-a�{�XY=n;�>R|���]4fn���t�dXՓ!
`k+Y�H��B�v<�!x�VVn��s�1�)�q��>r&��v<�������eX��r��/[iiK�V���HQ;�{>ȱ�Z8�~�I����ۛۘ��+��6�0�����p�S6�w�!H4�$���M��Z��,Y���`~tf��g�Z����ш�x2�Y�k�ނSN)R����A��@ $�=�9I����[b��/G`ގr��5�]Q�N��T�F�5(?�4��/��һ9�~%�~�b��"BR���Q�H�j���z"s'�b
y@��n-�q�!&�����3�����ݙ��DHB 		�TĖ,aC��8��$�����l(
U������eq��*d@6HA�C�9%��>VǮ���3;����=��Z���j�?\��R�j�~;���yK��e��^x���7
�O��e�|!%���[���s�unyƥ-��}Zq2U��|}�1�Yu/��7F�#���;��u+��ه�������y���ǭlO	�ť�2�ʩ���`�]�5��^�>z��3W�^�E�\���-��G�di|�����_�ߐpd/r�O0n�vP]iy1�f{z�l�DS�� .h�k��[m�ac���-1�8lS�=�%��է7{K��,�2a,��m�ѭji�G2�m�)WÇ��#��n3�����1ꩡ͛����9@�,
 �͇&E�2�Z�!/�W�[2�W	��2�0�"á}&�����v���MS�K�&�YO��k{Y��ڿKtI˘4��o�~�_��k���;�m�J��6��g��g�̇y��;x�ش�t���+��͂:6A��Р"z�~+��!�8z7eՏ՘Фa@�L�S�M��1�}�#�ۃ��r0B��@wK��JP�`؅�$�����
c4Z+>隁ҚkFn䃎�PX�N���+��{6J�a�7���U��?�6s��Ǖv���ҩ�T$-f�
�Z�R)u1�(\{��ȼ@�����SK�T�6�޻|����ޮ�Š�6hC�����+�xV�l�%��,3��v�%CX��Jb��?�5>!��g��I#��3���j�-���S����ܫ#	��G�6E֕QձRӽ�ubGl !��-|�3������Z�`פߠF�m�L��S��	?Hs����oA^Z�{�Q6�!G~8�L�@��39�M-���%|}2K�pސZ׻��r��ۦ�l}K�l�
@
A���W�e������PC���"kq�=7�p�Czbԗ!�:Nr�g߀��)�~G'g�D�����u���/���Qp5^C��v��<�>�Y`�^"��.z����*��a��~w�gq��ULv��1�d^�Vr�a��-xbҿ���1a$5ڔG?bо���=�V�2�@E�a8wL��3�'��c�#].߉2���әX֛�9�,.��������F�
"��ko���w�0�7=�~X�Gdߛ[��Ad������yD�	L�eg,�a�g\!��������	�����F'	��r!���k^���x;*�0��ן�o�o}����R�R`E�q��~�m�L_@���b�uQ����̩݉J(�~�ɿj�IA�ymhmSa^,=
%T�g%�B�0���7��o>��kS��Vze7�pU��g?�[��_���I^����k{x��f����My�p�ѐUG�8�d�Ü�}R�(W�%@�,�{��p��g�i
��3n��9��{�2��D�<#�a�~�A
J+�+2$fuC&'�.��>I��&�mGk��)�/��o�@]�0�ӻ?�C�z�|P��V3h�'pPM��瑵?Øp<!�P�"h6A`G�,bF��e�4<��i�z�x��>s��ɕ�Y���Mk���_6��y�y�Ʃ$mI҆'o���)��2e�]�?�…W
�G׮]��W_��x��wf:q����%��X6�� �^�d������s��g�5��`a���[l�}ITc� <�A�uR�O��G�h���I�D�ؚ��a�V�XH��iܺ��w�ÕM[�Z�&2���	!i��}VJ��V	՚>��Kfs�đ(�B��X�{�{ۚ3%�W��6~��3�ଐ0}��z��5����_�i�q,�]e�c���;����0�W�@�ⰻ؟��6�K!���x2\�*�H��?�b��Y#J��f�ҶBbI�B���[_h�Qc�T`|�χ��Dt?�;�"�q�������zoū��Է�s��A ��7�����CxJ3�ލ i'��ڐ�+�,��=�&�����	�	���4n^V���mw�yĘ�5��F>1u�D����,�(!��I�� �ؗB����
�.�S��-��ƈ�tX�����,l,#��
��O�X(!q�2��u9jY�R"M����
�n�ʡZ5��Ӓ���ĺ=]UuY��ykC�{N i�Db���tO.CW��<�cE'�<0WKQ����]�e��U#wD�tc@�ui�,,)�����ǐ�S�JQ���ۦ
L9Mm�+qn6�U���ہ�������Ɗ+V�X�bŊ+V�X�bŊ+V�X�bŊ+��Bؿ_t}�lJ�Y�C���L���\����e3f�����L{�O_�E/���w;K���s?���+$ƚ^N�P�{E��p˛���$�,֩����7߈���n���^�T8�W8��R!G��n������2��;���!�L�.�� ����yғ�i�f�W4�h|^D��sԈ��[>h��Ϳ���/�7�Mb�O�q�����l���&</�Mx�o�}� O����V���`m�&�ڙ}���6DgX�Y PT#CX!�0�ud�����EKK���.���2m}tq��f�a�=�]�v
�f6�eƌ,^p/�����鱫}��ѻ���݃�k�L�&e��1�3ۦ؁��V·����|>?���
#�j�I�u7�&c�t�ŷ<�ƍo2�z�s�W^�Q(�Q��)Xt�ǂ�Gg���nmCG�~���S���Tjiii)BN4�����1aIAw���d���r�TkM��dGs�	�N{���~���`ٕ��h�~cb��&~�o�]D"�DJRL����(ei���Hl�W
^%��fOjRp&�ŮF�d��sԐ?x��I�"嫋�F)��>�o�%�/�L�E:n~��K�`֧H����[*��O]��N�7�'�CL�&�,@f��D��N5	җ� �n+���!��+I]9��d��d^���Ȥ�}]����&}�&u};��?Bj�\-ZȦ)SP/��Yv&�`XkMZ0��zHQ��tZxV9e2���ٞ}.21R5x�VL�C�k�5#qΟD�����#��Ԍ��jg&�gJjRi]�{FM���z;;.������d!;��I�3i�_��j�?�Y�I)�S0��Nc���ى���9��݅}�8d��fz9�J���5���ǟ�#ӹ�L{-�:A���;{A�!�F�2A�E�8���t�>�mcY�)�T)��������~��س��8�<r���L��4�������K��I�+�}��(I��	-]:��y#J)V��%����@� Km�F�3����,n�Ǥ�ݤ׾�L��4$\V�U��^�a�<��e#��}�k���ct}�)��-$�ӆ�������Zr�[���IWQQ$5Z�;�P3�8I��ђ��k��E�f�-QA�1�(���CgƤ!mNa
�2>̄y7yU���>��>�[��z�\�qj�N�hM��
t~�����*��kM�?���+�6oo���;���C8wU�:�	a����cot�M
�J��#��zQ_D�bctŜ"���`؂�;?������q!DM��EM��UQ���8A���˘�<�����+x�v�(�u�3f���S���񪌦��V�I+�8���%Ҭ*�^���
ҽ֚��<��!�w�r�rW��
=G@>v��6�%@�0IK��$�m!��
�R��(<�ɩ(��a�ҭ�d2I"��q����m�%����Q�$H�x�GN�¡�������o�=�.lg�mAx�DHY�u���?�ȫ<`�q�b
�I݄��y$:�d��_M4���0��0J$�A'ܮ�b�v1��_L�ʭ�6��zՂ]�ц�
�1��_�C��^���~�,P�Q=-&�P�DB1�3֩+���6c
�Ic`��j3V�X�bŊ+V�X�b�:� �3-N�.IEND�B`�PK%>�[��-GGimages/gt_logo.svgnu�[���<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="65 82 266 60" xml:space="preserve">
<style type="text/css">
.st18{fill:#252972;}
.st35{fill:none;stroke:#FFAE1F;stroke-width:2.3229;stroke-miterlimit:10;}
</style>
<g>
	<g>
		<path class="st18" d="M70.1,111.4L70.1,111.4c0-9.8,7.6-17.8,17.9-17.8c6.1,0,9.9,1.7,13.4,4.7l-4.7,5.7c-2.6-2.2-5-3.5-8.9-3.5
			c-5.5,0-9.8,4.8-9.8,10.6v0.1c0,6.2,4.3,10.8,10.3,10.8c2.7,0,5.2-0.7,7.1-2v-4.9h-7.6v-6.5h14.8v14.8c-3.5,3-8.3,5.4-14.6,5.4
			C77.5,128.9,70.1,121.5,70.1,111.4z"/>
		<path class="st18" d="M131.2,122v-16.3h-3.6v-2.2h3.6v-8h2.4v8h8.7v2.2h-8.7v16c0,3.6,2.1,4.8,5,4.8c1.2,0,2.2-0.2,3.7-0.9v2.2
			c-1.3,0.6-2.5,0.9-4,0.9C134.3,128.8,131.2,126.7,131.2,122z"/>
		<path class="st18" d="M149.4,103.5h2.4v7.1c2-4.4,6.1-7.7,11-7.5v2.6h-0.2c-5.8,0-10.8,4.3-10.8,12.4v10.2h-2.4V103.5z"/>
		<path class="st18" d="M165.6,121.1L165.6,121.1c0-5.3,4.4-8.2,10.9-8.2c3.5,0,5.9,0.4,8.2,1.1v-1.1c0-5-3.1-7.6-8.2-7.6
			c-3,0-5.5,0.8-7.8,2l-0.9-2.1c2.7-1.3,5.4-2.1,8.8-2.1c3.4,0,6,0.9,7.9,2.7c1.7,1.7,2.5,4,2.5,7v15.5h-2.3v-4.1
			c-1.7,2.4-4.8,4.7-9.5,4.7C170.6,128.9,165.6,126.3,165.6,121.1z M184.8,119v-2.8c-2.1-0.5-4.9-1.1-8.4-1.1
			c-5.3,0-8.2,2.3-8.2,5.8v0.1c0,3.6,3.4,5.7,7.2,5.7C180.4,126.7,184.8,123.6,184.8,119z"/>
		<path class="st18" d="M195.7,103.5h2.4v4.6c1.7-2.9,4.4-5.2,9-5.2c6.3,0,10,4.3,10,10.2v15.2h-2.4v-14.8c0-5.1-2.9-8.5-7.9-8.5
			c-4.9,0-8.6,3.7-8.6,8.9v14.4h-2.4V103.5z"/>
		<path class="st18" d="M223.4,125.2l1.4-1.9c2.7,2.1,5.8,3.3,8.9,3.3c3.4,0,6-1.9,6-4.7v-0.1c0-2.9-3.1-4-6.6-5
			c-4-1.2-8.5-2.4-8.5-6.8v-0.1c0-4,3.4-6.9,8.2-6.9c3,0,6.3,1.1,8.8,2.7l-1.3,2c-2.3-1.5-5-2.5-7.7-2.5c-3.4,0-5.7,1.9-5.7,4.3
			v0.1c0,2.8,3.4,3.8,6.9,4.8c4,1.1,8.2,2.6,8.2,7v0.1c0,4.4-3.8,7.3-8.6,7.3C230,128.8,226,127.4,223.4,125.2z"/>
		<path class="st18" d="M250.1,92.7h2.4v35.6h-2.4V92.7z"/>
		<path class="st18" d="M259.9,121.1L259.9,121.1c0-5.3,4.4-8.2,10.9-8.2c3.5,0,5.9,0.4,8.2,1.1v-1.1c0-5-3.1-7.6-8.2-7.6
			c-3,0-5.5,0.8-7.8,2l-0.9-2.1c2.7-1.3,5.4-2.1,8.8-2.1c3.4,0,6,0.9,7.9,2.7c1.7,1.7,2.5,4,2.5,7v15.5H279v-4.1
			c-1.7,2.4-4.8,4.7-9.5,4.7C264.9,128.9,259.9,126.3,259.9,121.1z M279.1,119v-2.8c-2.1-0.5-4.9-1.1-8.4-1.1
			c-5.3,0-8.2,2.3-8.2,5.8v0.1c0,3.6,3.4,5.7,7.2,5.7C274.7,126.7,279.1,123.6,279.1,119z"/>
		<path class="st18" d="M291,122v-16.3h-3.6v-2.2h3.6v-8h2.4v8h8.7v2.2h-8.7v16c0,3.6,2.1,4.8,5,4.8c1.2,0,2.2-0.2,3.7-0.9v2.2
			c-1.3,0.6-2.5,0.9-4,0.9C294.1,128.8,291,126.7,291,122z"/>
		<path class="st18" d="M306.8,116L306.8,116c0-7.3,5.1-13.1,11.8-13.1c7,0,11.4,5.7,11.4,13c0,0.4,0,0.6,0,1h-20.6
			c0.4,6.2,4.9,9.8,9.8,9.8c3.9,0,6.5-1.7,8.5-3.9l1.7,1.5c-2.5,2.7-5.5,4.7-10.3,4.7C312.4,128.9,306.8,123.7,306.8,116z
			 M327.4,114.7c-0.3-5-3.2-9.7-8.9-9.7c-4.9,0-8.7,4.1-9.2,9.7H327.4z"/>
	</g>
	<line class="st35" x1="117" y1="139.7" x2="117" y2="85.3"/>
</g>
</svg>PK%>�[ �����images/flags22.pngnu�[����PNG


IHDR�
�MbKGD�������	pHYs��tIME�')@�YA IDATx��y�]U�����;%U��2��� aFPdŒ2+�
�(BZQ_{x��;m|h������v`Pyhi�QfC2�yNj�����qνuo���S����|.U)�=뮽�^k�u��H�"E�)R�H�⭅�z�;��Ztܒ��9�ˎ<��K���	׭ny�X���,��c�Uc}�óX��Y,qH����Խ4�̋�?�T��sZ:��-�����I�6�	�H�ڿx����N]�x��%.���T䰎Pr�k�5���.�z��Kp��~&�5`l�S�H�?�`��=|�~g����8cc)F���߿��~d��Ȃ	�wX;������`�r�/e�K�}:�Z�h�f.;�x~����,ݨd��`�F>�1�+�S�<Plbd���8�N.�p]�X!�R"��)V�1k0�b�B�>��1�+�L�u�8�B*�'�ɑs�d��)����X��D�B��U��d�{��Dzx���
N>����H��}�4�lb}�y�B�5�ޛ@O�^q�۩XA�uɹ)"��#
�bl�34_i<�(˽O��R��н��R:)`Ð�����"��x�t̟�䫯k��FzZC��ߥ�n�Lf�r�}��e���]�Az�2[zxr��8�$�w�;p�N���7�{�Y0DJ�Im��6[�^_��{��u�NX�!�1�Ak��dءCڅd�t)[CVH��V��<��
�e��dW��^5
��~
�хa�X#���I�X:�v�uon)3�핦��ۋ"�݉[Lg'�u���ɮ�O�Q���l�X�5t������̅kv�S��ʏ��Y�33
W�4�A=A�:��o�
[ߙ��;藒|��O6B�/rg,�x��nΘ��W:��Z�����ͫ��	�2���}�ү����X�J	��VХN�c@"xF�!\��湰ı��<�yWf3����
���Zt��M8�Š�o��L�Mb���,�ёmC
Ig�O�(���qؔ���֡]l܁ER4e���-��A��߳a�Ğ��	?o)ߊ(�5���#kEc���A�{��&���9�
�Yn9���^+r�kE��^�b��p��_-l�m4vU��}Ly�����]sVa-������Y�M`ŎM,~�|��S��ؓp,���_;��*�Di����,`�U�"Ȩ��M�g�2gg�y��ͱ�~V�͉�	̑��b)KP�M��tU�� ��|;.x����<�2X0i�h22��}�8�4GJ����^���^��3]]��0�
�ˋV���yW��:�6�8^�D���!$��z{�|��
��/i�./N��'�룳�1Ơ+z'8�۱Sxm��=޻�ȅk�Xc)5\�xzU����s����~�;�v��7�r����/��\�_�}����$��yL[�-j�T��cE�Љr�0��������o
���Z�� �
��hkk{%l��+�+�jv��mh7�p�3a}� ]�>��8B"�P���ʼ���)��B(�h���t֕�k3��2���"�)�
|����e�$�EΊXb$3�H��q]�{���PϬg�{����E�ˋO=�	���Tp�����Y�m�ۏ�‹����v��s�\l�L���N)k�,sò>��S7��<㩕�,_;���s��%N���m��y�e[�q�=��]"�W�P��/��`�-�\!DO��P����XS{AH|%Q2K��j,IʹxD�5l���ͼ�c.��Be�����<��w>OG�
_��nH1(33�I�+B%7�rY�NWƋ:��
ak�!Tb�����[�#�wI�/?J����l�F�X��J��tB`]����A��,�9���O��9y���h�W�Y�s�����h��٨e�H���(_��ȯ�qYr�nݿ�v��ۻ��ټ�e�]�U:ZI�}�B��"�P��uH�Q�6���e�t
K�hTFơV�5�i�+"2�f�hͦ�m��=�s'��?�fB��PP"���9Y�� s�C�RP+��I�'X��<�Ⱦn#�6��5-�Y��BH����P��,J?{��C�E���S���P/��E)���xl[��v�L���'��G�!���\�x�手�i��G��3_y�>��H�������y�='���ʗ��b����a,&[�ւ�?���V��0�h�v2���(�0d+\��۔��'p;��}l���B_y�Q~�[��ٝ/�e�f��V��~<��M�������{{R�o���6����΄�s=���W7�s�g�%��I��s`�o�cc�d��+ȋ�s7�<����z�wr����->�T�|]+A����{����o?�|m�y���s��5������3��s���i�Z椫W��>�z��-$qj�BPQ![�ϐx�(����rl�K�ÝNe3q���L¡e(RDWtPg��}S	n���RTPLd/W��7]��L\Sv�'+0�Vo༯'0i�бy
i�]��c@�8�{��`�#ς�֌Ԩ�HE�I͈��Y�f�B� ,������ƞ�m��?�]�C�/�f'_;e*������������ֆv������y��r嚃c�9��������΢���'}{�i
XEihG�Fi�е�>�.��$!yNUC�\x�;�AkBbI�&	��wTJa�+�y�3�P��:�Vc��3
)$S��Y���k�VE���x�,bh��‚�6��-Ck���2���3��^y6�#�X/�a�����A����im��ThFJ�>��3#��e���.f��N^?��]en:}:/��񙳧qՊ~>�bk�^��2��]�f�T�"*�>c.����6�_<��/��S(�[iR(�p�,�Zi���0M�SE��ɠ�bB�Q���ߊM�P+����bwTۭs�6.��m�\�Ϝ�K�����N����J�����H�}���kQ:q��i@X�g��E\6��
K�YS�]m._9}+��!�����v���7_��(Ŵ�?=��;������jcٌ���=L*��KP�wҷu.��"�|���������s�䉧���8�Z�NO�*�8Ł�a����X�Q��gzښ��4H�G�v}�����oӨY����MNnx��e{R�5*��}���X���]�$�ZG�Y��q\B�[�:�F��9Y�q�t�
��C>�X7���j�T�8�<�^��1[J��ӧ�b���.�ɍOv1wm��H�U����Y��s>�!3����6�/�z�JE1{V{�]3c�����"�%��l}�AHRb���琙n&NܤD�(���N|$��mQa�	C���w5Ȍ��+�;9�n���A�EEch��A[���P�*�SQM�^Bb�Q9��#�,��D�H����b�FX��!F(�Ey����X��D � �fb=�HOB����v�*�3�≐-�|y��g:�u8c���ϕ�l&´�h>��)� �߬aOm��;~[��w�����g:'O�c�����C�o����#Od`K���1^xqw�w֐�D��,C->%�=YWJ�U�@#/�����br�2N���\ǥP��P
	�"���H ��`$V���[|�q�
p��� e� L�؆�@��X29��H]ǡ�DzʐP�q��"=
VT6�R��S�L��M?�o����
��ۻ�]X��,�_�C�Xv��e]�!���C؅��&n-���L$�j�y�cQo�5;��Le�n�)R�H�"E�)R�H�"E�)R�H�"E�)R�H�"E�7�+�Z��#�Z��u�;�f-��%�c�p�'�^��i�0|��V�Z'�}���Z7���DZ�ډ�P��o����?g�?��K�z~;]=�n��҇��Y��񛋌���n�H�^|dIs²ŋ�.��%���8R�Z7eK5�1cZk�������-S���N���2���>�o�qfW�������JǙK�Ku��Ix�;fL���<��_�0LXf��fp�9�8'��2�w����]Ww9�f=�VL��cR-S(�<	�����Υ�C�,�L���ĤZ1�X�Lc��Ì��Z�^Pp2��-ez~���q\z�a<�����O睇�JG!�w1[u�Y��!V�h�q������dK�Fk���j����IPmr��5kZ�̛�@.:��u~hLynk��>�z:�q���N�W��X������+�3�1Y�H^6[=8�2�����������t�bIj�a�f�P��څ(L��Pz��D�-b����N��je���^)>��ԍ�I��$v�'�n�֖2{z����B�ӬY���k��y;��4��_�0��Z�n[�X�zKlش���0�1�fl�1Б�j��\.����0�{Tn�������x��\��N��KO{/;�C�~p+^��q�g�'���nKOM�Hp&����mo�lێ;o.��
9��'���ZLRR-E����ቋN	-�i�{��9�CS�1BD4�E���WL�����y����g�����/����x����Q)R�b)Y|�ȭ���k�#���s,�}d?��T��l��]]26&�o�>�s,���P�;�l@���_��p�����ndgO%�Ӊ�+�M�غ60�ۇ��F�mr��`].'6R
���x���af�o��4���k����:�B6��\fwo	��ְm���u�{�z+��{s����>4��Z�������ʨzRc�>�{[w�Vh�+��ӷ1a��cm���F:ROS��]�;���6~����*��<O5��:�m8'b{{�&bzz0Z'6���I	��sK���p7�QE��=䈾돭��js,��j5B'���Z*^�-[v��77?�	����ߓ���
��wJ|��دcht#�7O/H$��`�/��u�񷊎,���[�_C�Y�ހ)�ѝ�c�ON���h1i��V
�F�q�m�w±�z�:�X��Pٱs),†�[@d�a��f��1�݈�30�2j`����c�*�El�����z��-����^�y�B�
�,�'>�+�����	���\��;w�]�͟�qw,��h�F�&�Nb�4k���x�0�Vd�I0�cC��}����!mZnl��զ���E��e�)�-?����`.<u6�}�{�����GF:ғ���=��n$��*��&2�*9�k��Uʈ�ø�Pc���2�Eˀ++U֎�$�R,z����6��g�k�:d����v���|�i�yu�5OZ,zF/8�U����qxSQ���bC���f��2�7�5H��il��1(�'X�	{�'���v��!:���!�����3y�ѿ�o���E[Ŭ����1'
�S;��&�x��;�ƖJ�=��}}�ý<R�}�!pcz+�i�c�F��
�M�D�H̜�0��,���f����q���sډ��U\�΍?a��p�-�uR��u�"1�*�B���r�e5f/)��:������-�;�&�>������ӈ�1���`�m���	����H�I�,o�3�H]�p�k���H����@�D�P�¿
��8��0��zk��p���:S���=��3�J5|�"��@��C�������;��Z3.��o~�^fw���B`Lt�$s��|�����n|��x�e}o?�h��LK>o�����U�z�$-�9��a��
Bf�p"S����k�1�У�0l~Sh]m�d�NŔ��i�0�"b��FJ�$�B%O��RX?���D����ѧM_�o��@���
�$�8/#��c����gFg�{�~_�{�Z��}�?��`�<L%�H��	i��}%~�֢F������ݖ�pF�����C8"3�f�v���cz��?�Z�Q�\�qQ�f�G�n���w	�&L�E#����G��AS�?��?*˻���-������	�L�����U*z܏c3�[[w���]�޵���@>q�����0{���&�m{C+����}}��k��{�e׿����b�c��$Q@��d�Q)U+�Y�A��e��6��[���G%��n�!&�'ضw�t�mۑm��d���W']�UR��~E��%�S$?�R�e�<W�:a	*2���8�磛���|�`ѻ��o;��sW�c��}�?��>�M�I�FIj�����<x#��s��M��$'U��o��܈�q���V�Ͼ��I��26]�I3�=�f!�q�΅�^��fO��뾥�����uD^��bbZ0�H�Dt?W �gsd]��[%kB�{�P�J�~�[N@�%E�!!�s�f\27�����uN��R�5�{	���G�;&�߅#�nD$�|H��'�Cf�8�L��k�
ViML�f
:�a���hl��p���8#��j�V��Zƶ/�3�ǞF�;e�^t
f���.2Rc��BX��ܩ'aּF����Z������n7	#(��XTN�$�r)�&z�WP�H��n|��ì�H�r	��\��SB
�$P���\���n>�׫xǑ���k����K�)�䲭ˌ��'�#���q�2��EK&�\�Zk^��
;U��F���>�}�M)�0�����L!ڀ��IzVo���%�7
*��R��^��?alS�H�"E�)R�H�"E�)R�H�"E�)R�H���[!�s�b����x^h�p�'GmR�Zoy���,�	JdkG�jmB��@Y��ϋ���l�NO�M��\��.�����-qD�d�Z/N�1G�#8jϿ�z`5������TK���l�>}��g��Zj�	�e2��2e3
B�^�6%%a���
49��ѹs�^=g��z&��纫ǰ�\��)a��g\���\��mB��!,>����p�WD�������/��x�̘z"~&��u���/�ʼh�K/�{�GT{�ĸǶz2_�N���<VGX�a�{8�N&�p���H2���SV�1i�R�G�>&���&W���R�K.9����	�̙�ƤI��=��Ǒ����v����֩��a(1�x����︃U�J���k��.���z�b=���-�&f��0W��c=�y^���h�'��]}�����;c�AX���/~� s9d.�p2����~�O�>P��HW�5�0���eY����=�����qs9�\�:�n!A�2�&�~��`�F�>�!�c�O~Z�����2��F���� ;K#�;�k�F@-"�'�v��u��Ц�5/=�w6m�e����s�s��sp]Ij~���aH�,�UN����ⅈ�̌T6m�׺�`��O���ȁt�'�9+v��Ow��.}�pdn���;�LGC64��o�(�m���[.9�(�;��q��q��H�ۇVD��.�W�l��lԕ�EOj��iKK���~�u�b#6O�>t�F\vL�gæ�̚`],�8hA�! ؑ���T�GH�c|��n�W�q����K	�b��~�L&�y��ϼym��d�D���2?�%$Z( ���.�D�д�ե�!��^��b����OQ*H84d�4˶���|��@V�F�J���Je�����C�Y�a���D&M�'6Б��3`Je�"��kA��R9a��%,�Au�cá%۽	ˀ�������B2�#O*�s(>�AwE��*оFW���4&G�X��*�&�ZKo��ܹY���/��\|_�f(z!��vDs�3Q�M��zz�Q�ې3���&�<��������T*�y��(�K���=Pတ,{ek�t�����؋�����a��jC�1�]`�	����ZL%�|^O/�}0Б���Y3RT���*:?遄�o�_�j�0ŧDÿ�/��&i���T�ٰ��'��N6+غU�}{�g��IOO����i�u�>�q
d�?�ԛo&���6/��s�n:��
:?�I�����/��Y� IDATJ߯����+�z��̕+aѢ��V�+��
��o>��8��}�#�z�u��5]���3-�ь��Zo�Ea��¼\±7mԱoJ�yٺ��^��0�@\�D��d���Ç�;��n�@7��7I�K�ew1������2qb���X���lΡ�`�(�ɍ��v�d]��DU۴�Q�J�^��#����t�`�y
m�5�qx����Ti}b���s�����Ջد����G�s�{��W��r5vi�A�L�N��L�'���p��<��1���t�9LX,"�`�q0e�� '��%�̈jM�F��8i��j�K�V�*\j�P��K��4���BOsaFbBK��ql����I�72JE,ӭ��R��[c]��mo�48�lkC8HIa�L<�])����R,UN#IZ��l�s7�< ����Q�%*�yaHo���g=��Ւ�ǔY��@?B6�)D��`�GFR~.3�n� ���M��u���J����[*qm����J��4RER>
K8��7�5��г/`+l��;o>mGR�O֗�� Hz!&7s\�t0���*}|f���TqT��z==k���j)/�ٯX��@�Z{1��<��ϻ�yN�,+�P޳����8Km#Ƕf�F)�������eC�Г��ᨻI+D���c����Q)�J@�����7�;t������_�3b�э���)����A�U	
9ɿ>��K�]ST���!�ے�z����D̓˼�g5ڽ;f��m\��&Nk�RhQ%����뽓Q�y	
q�D2��U^��Dq�k|�&ouH_׶Q6N��2ֵ�Tc��1-b���F��i1bW9��F��'I)]c<���i4񝕔.^�9��@�O�\�-�[��{"��)��Չ���RQ����$�������Xv��"1�P�?o`j5�as�J�[kcʛdܯ*^�BH�u�5vd	�:����
�8L��y����>i�B�aT:��@�ߓ�y�y��t�T$OX�e��O��W?�!u�:������?%,G�vs�g����^1�Q�8u��Ji�4��۸�o�I�Ģ�M��JEw��}]��֨���[�h�G�;����H���R��4
�4
�:��񝠖��IZ<��Zͳ�b%cz�Z�1�+�^Პ����8ٰ�c6�O#�����0F��C7�$\�bt԰'�V=�:�zȈ*�V�����k�^G�j�\1�G׾�1![�Y)��!%N>��d�n̆����ݖ���Q*��(����h~�+:l!�%�s�f]2���G�8���-�D$b�R���u�|"ٚ$M�LU��;��0[Fvt�ƶF�%F���3
Z)t�UZV�$FH���\��Ƕ�4$����|V����A��}��g�K��|."�˸�����I��U�V�1���
F�8.���He�:���,�j�m��89TR-)%�\������Ica3@��>�
)х�Z2Ja+�,6��C�)E�H	B-�mYr�0a
�b�F�-I��
7n�	��>�۸̖͠�!�fՓ��W� MV�q-l�X{����<��bPR�!	1��kK㠽2��I�qP�Y�k
�j�#�{K�\!�/�d�9$D�>�wt�T�	�?Wj�����[KI�ʬi��X���lj쇴f�6d� y����^��|s�Le�!2ߒ��
	���>1E�)R�H�"E�)R�H�"E�)R�H�"E�)R���p�5�,��꫗���~��Kw^:�+L4%����?Y:��^R%M�zf5���e� �ڛ/j*��ZZ�8sIIr�).�L��1u2qCS�7,^�t�
7,q]����悔��߸v��FX6���-�z��4�k�篿0vkr�/>]ǡu�V�}����L.��R.�b	�ґ�]S
���hƢ3�&,��O?���Pp�7��|����v�n��-Ђ�
k�+N;���3.��$���� :([��������6����r�#+Z�<t��ߝ���ϱvk):���2k�s�d�X�����
�Wr�{x��L��{�R5�j��?xf�0�:"��u��eX�^q�qT�%�u�e�hl[��/� �'�M|�Zg���քe�Nz�I��:<�u��9|i�D&f�}2��{�&�j���yl��g�Lt'0q�_|���ϦW�EOv
�!�^��	\[�Dygβn�@K��7 �p���^vt���&V�6��O*3nq�lwX�����0e��ڏ���5'aY�PEv
V�-�H^±UkWմ�Rk��vJ[7��9O
���������>��wp�a� Td3nR�	�6m�g{~ƭ=�rh��\�~	�Ͻe�c$
v��z��Pm��k|su�����vj(b��Q:�؉g��g��5���~�~p#;{*�X�b���F������oc�HcM�=��_��2��°�qߔ��-���i>�c��8޳��ö
�;fQ�g���8��G0���qY*������g7|��lwv7��v��{F7�1�yh3Ɍ�k(�:�����0���Y�W	u�_��)r��.�~��v?}|Ce��P
��Hں� 3�e/�K+LK/:.�2]V�{y�f���P�-Az�l��ɻ&��.��rV��cY�/=ȤW�g���8��W⺙�)���&>:�#�)�ŕ�RZ�����dF���(���
9�,����J6��h+��W#�����6�;�Xn�oO��C�옞,†$�f��7�~�}1������Xi���i�y]GbVmQ�6!EGuN�Փ'p����~?v�U�4V�|��m�	�Vv3���N�<�.��ty]Lt'�*-"���=~OBO
�ry�P��0G��U�5ƠM	;p_�l(-CL�m�i��Usᩳ����˃��]~d��q�/^`��]�p�6��_��ko;��Y��K������'��Ҍ�I{���I���n�C
�'���8����w(�9��?�[<���uEr#}�g_z�K<��Ɇ7t�=0��j4���whh�����H�~���p���Q|2�ö�����d��Ƿ���#����}
F^�V1k`-?O�J�&,Ϥ��/�&�d��Ce�Z	*���r�&�ʚ��A�}�vg�������}�����Yf��YC�\�U����k�Ɣ���HW�^��߭x㪯�do���{S���Z=�Y�,>��m,�F�#l(���Hp��8e��ד��X�6����^u�1�t�5
����
WL���JP�J�5k�pι��ۡ28��p/jՄ�$�[OmR���#Y|�t&l�_�|��n[~/�˯7
�7�s�S��3"Ɖ��5��`̝�H$�a���Jn��7�tu��՜w��	?�@LJ�+���a�L�?Ȯ���C��v�c�IʑT�=�s�P
{�f�m�)iN�t|�A��z�ҽ6N�W�U�7��q�D��	�|�}6��K^at���/�Ϋ׾sԼҍc�6G-$32�um��ߔ��Db��&&?�8��,�������T�@˼V�wc��M����*��i_��Z�RX)A�"�����dm,*���zq���x����lU�M�P)'ʙWm�'���%�r��1�8�T�2����zR�T���):(>��]��F�qk�R~L��0C�zO�tw�TO ����6�K7-A�ߩ�I �ޘ^q�U?<���6��Co{�5��7<���̝/q��w�Gi�d5�u�d?�lT?&3��ׇ��i�yRՋ�&j΍����n���X���l�I�)�]O]G�$܏G�1*z�DyX��}��:�SY��&�C3��j���ȟ=����YIE��<��v.~t�(��=i��Lm�.�����V�uª��l1��0�}���<�4��)Sjl[�ð�a�0�
CLb<,��Lc�9��-"I��/�ףg��
K>+�V��Z8��	ƢU�
��.4����I��39�����R���;�Þt��Ƒ�m۶Q:(�7Y�VJ�ɴ.��w�O|k4�"���F��9(#�8�}ֳ40L>�!zh����8��:P��A��X�J}��|�V�� ��%��P�>�G�K��b�'�9����)�V*�̷��,���|#d�H�"E�)R�H�"E�)R�H�"E�)R�H�"E�)��T���ܹ����_�~�gR��S�N�:u�����^k!�S��g	�s��˫"��~���v���2ojNXv�¥��=h�+��JʑV��T��q��l���N�w�p�ަ�>�J�V=�
k��Ls���^:u�ۗDY�/"��+ƞ�s��pu��.�s��`��l,R�,^<��ҫ}"���+��R������rd2������mu!T_a�>��Q(���{ȴ�W�J����3,X� "�����,~
˴
�04�~��
��xK��Z��.��N&�p�q{sl<B�8��5
�t�D�5� ���Oų�sr9���M�B�fF��
�)������2�u�8�\*&$�ɒs3d���)I��O�c
��*�
2ýO<X���ޤZ���<�sK�՞~z��ol�_�>�0�[_�Vo���ꢷ��u=��ZKgg'�֭K �(����
2�~G���cʪF�09��	�rꗛ�����a���A����v�)w�&��+ˮ�
������Oausuv�����ZfiPv���
ʈ�BO �]��d�5������V���Y����܈6|�S,���W�JD��Oc�l��F�}��q�jA�X���m��b1�E��1ܝ�z�k�%kd�H2�6(�
"��q��ek���K�=�ʜ2�p����)�|"L���5I��º�ϧ_i�1�:UO:�{�̆_�A�~����\n���ǿ���8�o�BqR#���zC��</Y��5��-��O.�CJY���=����E?���7O'�k�}X��4m\Fjcc���H-]=,�^\Pɍ�ab����]�A��։l֛U�ơ5O7Χ[���?�}��a��������2ykki���z�}�`%pz�;y�^WZJ"��م�C/�	��G�~��
X����̤I�Q�}c��0�V����[��Qϧ�{����M��ljHnϼ�ף�Ar#-֕Û&i�Z�P�Add�wމY�/S1"��OQ#�V_#v��d��r9�̽�#d&�ȝw��ʕwa�~���p���kx�SO}�������/΢3��Z�x�VF=|�xb+ӧO�G6r�3yrn�ŕ���f�4�U���
�]@�na��Ř�H�����Z��	ڨKA�5�0�Vl�#½��n<��0�J��z�7[&X������R*��,5�s�~���׈�k֬j-1nGv]�֦\o��Ww3yr�G��)��eժ.�?~֨�T)�t«8Xwsf�
�ԑ���:�o�Qf��|�����#�q~��Q�Π�fN���%��!��p�Z�Od�~��H��*M=mJ�H��>�y�W�����y�e�b���4��0���'HV��$`=�� pg����m��7�8���l���Yg�o �/�A�(�Z��9w����
{�Y����a�.�O���
��h��#=`x��`wk#�JC�q�x7#I�+
흀�z����+�75ϛ8��ߣrϨ��zf�jhEv>�O)L..b�aC!0�f��柹��#�馏�HҴ�8�W�Z����7I�]�?3Z<iR�3ϜǪU=�y�<::�
�g��"�1���^���H�q̧�7?(QԊ�a#�񍄺v�rJ��%�8�H�I�*�T�;Z��G�j�:�l�X�����8��39�ߌ�<,"��:Z=2a^9�P�6�� �ܭ\���o_��f������v�lͨ��W�/���/!�p�p,,o�6X����(���HA4��_��G�{]�F�l$dz����
�q!6'Ik\��Уm�&�z��g!�<�t�x�:�G5�W�>�<z�>����t�� lT?b9��4cQ:��v�f��@&D���
5�~�hHt%���*�dW���+��:�2����
� �!��Ԟ�;i�"�)as�fFZ����-F5�'�&�>����L�|��F7=��^>z�/x|�a��(}�U�d9���hy�}�H���u��y\�}]$i��n�:.���}�ud+���fM���I��(a�||Q��<iD̖�a1�e��'4	I��S���Uk��j������m(�T'M���?yc%�$y��"���(��>�F#�bt�2^�[s���W���[��.�l�uq]'>!�׈����P*:�J)z{w���d�:E�͑u�d�RH��!±��e�W�B�>�	�%$V
�8�2��q�Fb��C[G̦�B��H�8	�̰�y7G�͐I�fN����P)�>��I~��H�����^Gz���Z�㰭���Ƨ�d�ar�0��)��%�U-�t͚^�n�]�j.m_j
�bQ���t�l)�pVB B|�ħ�D��dM�-2�����dl]�=9�+҆� zW�SV7M9�����M�g��҂�
/"W-H�v�֢������U6W#gL	�R���e��e���2S�H�"E�)R�H�"E�)R�H�"E�)R�H�"E�o
����}%,{+��.b��Y"�iL���0\gmS��u���:`��T_Ia�^:>�v��Ǜ��-<k�ԃ�\�p�Z~���g�5��;��s?���F��6%>m
k��
�Z�x	��
"/����vrs����loGd2�iE�$˄K
��~r�?�n!�#�1��q�9�\�Q����!�C��F�����U
�h���s���zb�{�'Q	LDX����<�|&^u%B
�Ο��+O����Ѣ7����b²���~�@�����o��U�ٸO{_����o�艖�� ����\g�=�\��qN���bC(�%��D�,z�5��?�	�&s����6��ˠ��?Eث1���Q#��`'Ob`æ�z��dW_�ޡ���U��K+#�<����i�lϰn��2�؄eŲ��Ʋoc��X����!��&�2���Y�)XLq�W5 �0��5kIL����9���L�l���%�AG]*�~Ԃ�FZ�9*��*�>~`�N�������播�X6�M�JXv�{gs���y��ʊ�	�����\wv�{NK`4o2���H�D�8������Y(�뎌��(n����	Ƙ���,O�uKP�iW_��@Xf�AW�8��^�\�5x^��7��l,#���۹����i����K��秂l��p���Y{�D�{���@�or:�/�H�`�:?t	�n��FH���~��b`�JX���
.W�p�bl�^%��F�QX����KX�ؤZ�·��Ǝ�z�����Ĭy��t�h��j�D^��o	�M���K��� �Z��@9=x	=a3=��x������\.W�C�>�+����KZʌ��`���^T²�Zf�x�.n����|����]�4�B��Vy�2d-�1�t,��9ݲ�Q���#�L�ٗ]��x�K/��P���o ^����I���OY�i9!q��pd��.k�������[��^K����eMH���<�j9��WW2e��s��r�1�j��B��Vy��P�s�A�v��UK��2�2�o�w�
�!k��J�DL��Oy/��_�ܛn�P(�%s�����Hf�R��fM�=�ZT²�Z���<���
|�����ɾ�j�D^
�q��֘4ߒ�l�d&����7��V��U���	���<�Ͽ�9�=�݇�S��Ki��i-�W�����A������kѱ�h�9��7��`�(z�%��o*a��r���K�iռ+��� �2.�L*��_�����n���x#l��N�����kɌl,"��x�ш���T
+[M�H���1eZ�|���&,��C;��מ�����8���+�c|��dw�d"/-`����Y�)��д�� IDAT���][h(3Y��~�[��:3�W��mB���bB�㪉��Fc��HC���'�|&/A�Q	� ��HȾ�j�H)���fyi ;&v@E6r���Ap�,��=/��
�R]�7@9����e�&;h0�Wr=G'�j9�VDu�x���J�G��o��#��H�؄e:{����f�d�Y��8��HX6FHB�B|A��
��V��'�
-���4�R��ɓ��>���&��_�'��H)��G`�Y��砧�Ij5=�y9b�im���5#�[氝�s٬K&�3�Θ���sg��W�A[�5�G����ΥH �aY�
�x��
"/��~&�[t��|msl~���;&ùy�D�v��;�{ZI�s,"�����"�S��P�E�t ��J7ndK�xn���w�)TXKAF�*�m-3%,Ke��YfJX���+3E�)R�H�"E�)R�H�"E�)R����;�8��:��Ϲ�i���I'���T�*]��*E��wW���ݰX��u]w]]Y{pQ� ��k�HH�4�L/���r��{�2��3�����^��d����r�}R�J�*U�T�R�Q$�5�j�sԪֳ�ZYc��6��y�
����ս�Ƃ�Q�2���yl�g����#W��`ZU��E_��k?�3:WǙ���{��`���Z���װꚫY�J:�i��:`�k�2�]q�9�m@��ŀ+)Ę�+�PdW�X���t��d6O:���M�r�{���� @�>6���@�^�kў�z�d��zs� C�T����V���k�*��R]�W^Bc{�������M��oKr��l�?��ZNk����zv�lh3CY�hm����Q�1�J��6_����u�׋/3�~���&P���o�(qk
eT)?��jt�20>�&�&�U�e�
������b)yl���v���h����7�p�Bf^x*�EsG����&�kў�����JE�ѡZ��=X7���JU'��ny^�$J�K=C�Z��MU�ul||X.',�`6@}w߹�A����1q��;��!��崞�A�Y�H��$�S�p'���cE-�x���8�6q�J����\U�����9�c��0�V��[�yC�iQD��$]�H0��=����Chh���?t����j�WN[G��]*Ƴ����Wf�6a
l)�6î\5&��/V&l<�7Z��0��rIl���*a�;�l׷~N��?�u���s�~�S�=Y$}
��U�p'����w�M�uqbT�xg����+Ŕ��ٰ���""�:^1�\�JYt�cb�V&��F
b;i�T{0m-���$3
�����	��>�<Z�	�^��|V`��ye��`��n8r�#��r�#�ƻLR.�����ƅ�K�����,pE�{Pw�-�ĵ�]꫃j�Ƥc��{�����׷&�f`�;6}/l���㏌P9��&�E<=������='��g�$)<kQF���\��:��Ƣv0)pl�Z��1�F ���ڬW�����n�}bw?�	.�.�>�bX$}�`p�J{���l�=N`Y%zY!����_d��y��N��Zr�q<cC�Ԡ1��FH>qZ��C��sײ}�a���ˌ���CV�i�u�Z��뤱�T�Hƻ�<t�dR�B�@:�uR��I+�4�8k�s���ZR�6E"�].k�EY�p7j��Zq6�oZF�W�O�m4��E���I�W�g"u����#�Vn��t��I��i����&\E�ڹTʂQI��8*��d-Iwo�Y��woL�%���6w�������Q��U{��NZ�$J���J�XV)H�P��"�[YI�ɑu]2N�a����k1*Ĩ�{a�c�.�P-+b�1T��7|dZ��5�P���Go��t���]����W�I_`�C��"�a��\q�X��/ж�ҖLV5tR�q(X�c@x��O����S[�Ƣ%h!��
�Z��ka�W�IS`Yj�uo3��6���L�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�Q$Z[�^��z���J�<[��}U0W���Ϥ /��Ba�{Zs+g�nq� �
�.��0ku�`P�.��+`�I
��+�HZ�
�)�us��
c�<��V���R�*b'�S��n��5�NTΏ����y�>z�ܕ��)D�A׸=�fYhS�zÕO׀e`�+N�\���r9�LF"�@J��9H6��~C��+</�P�^�0�����O�2�a�z{{��2y���=��J���f�p
�#�ͦpR����f��%�g�ȜA��>��Ylh�D�] 	6H��,M�xK�_��w������O&���f�q9����u�4�(.�Q
�����x�W��l��.=�=8x8n��ҍ€�`���F����>Zyh�l|▪M���$���tu�8�M�ya�e�t�-[:` /�?��OQJ��#�8�lv��� x���y��f������^� /���O߽����m������C�D�i�#[4�#C�W�0YK�&M�m��4����7K�qAG�,c�,���rW7��?�h�b+�+���ζ`6�[j�i{02���p�Fc
h1�b����J$e` ����vҁ$K�$x�w�}8p�L&��w��a�V�
n<��EO���s�=��efΜ�O<�����y,���A����%���:'�qP	-0��w��0Hk���d��QIr���6�B07�q¡)����1Pn��@[�T�v`Pb�p!���_'c-N�`5��r.|v�B��;�u���%5z�S��%(�1�}�����|>O?W\q�\o�^��vʛ�Q8�`f^q�sy����=��î]�ؾ};s��a��鉜�W��x�<lN����\|P+;�t�V��E����};:i������,�f�����g�,��B�-��XrG�}���A����)eY��"�oC�dL�rw7.)^��Z��%N��^&C<|��vRk�Xt8WKi.��q�n5�f2�;��s�a�i'�Hi�FPX��`�LL��L����	ZkZZZ8��X�f
�~8�~8^����	t 3Y��;�b=���/Y�p�&M���ϔ)SƑn)y>g����3X���Y0g��us����#:�@'�1th�D�\��@"�6eQ�Bz�r��FO����$��ry�9��t=n3�������EҲ��L�&�D�0����M;������0�i��Ж��8xrd'�u7�_���w�����΢E�ň�4�����_x�Z	'M��n�!��q�q�1�|�N��Қ�߽�`{rRs�e!1m;��?�U�����mo{�g�Fk����R��R��4������d��h26o�d����䪿�>:f���HJ�aM��c>[�X��"���yO�5���!��t�Qw2��8+��SDi�sN�E�:�ƶ����8�_�H.��bv&⤕���a�?���u�{5'MT;C��*@���'��S~����p-b�
7`�AL�ʼ���?���΢ݺhv;i���
�1cB�J7n��,�ejɣ-���>�f�c�s{���>2�M̘1��r�����R4����>���X0g��Y0g*�Lc��QE��������4�4�ER!,�՘��������$�[k�/��Ԫ�ܤ��z���?�Õ��p�/��rX����!�E
���;(utTǨ� qw_�ڿ?S�N��P�k�\���l�b�}e�Y��7�"����OOOO5�&yt��t��I|z3�w���3��}w��R�C
�F%j��N��[%67�����R� �>� 'Y�>A�C$�D&Z�1T2��:6�'�ۗ,W����BL`�ק�K��J�+���2��si>�LL"�O�����h���G��3���Y�f�b�GE�E֭[��ի9�裹����'�mt��|��i���+NA�M7�ĺu�X�b�{lh�DJ�:��>��'��߭��3ؾ��Oܰ��<��ʳՉ��{����������uJ�bX�fͦ;�v��*���m��s��
G_��w.��V�1�Q<��?t6Rl��n��FF�h�4�1�-���Ύ�ל�R��<�����^�o}(a{W7�I�R�x┝3�����۷�Յ;mZ�8����n���i>�\�z
���M�8'N���7���c���<�������O+���ֲn�^�y�R>���9t�t6n܈�y
���oq���3k֬���9�Х��7�����sxa�Q�f�a�E�@�@)z 0�pE�u�}����Ė}�\��d-^h�y8t�K2(�$o�"�2^���:����h�ȇ�I�D��"��!����p_x����={]7�]Y������=qd���N
��o4,�R�y��q�駳a�2�7�x#˖-���������O�h�t``���#��p�!�p�)�0�|J�R���9�\���Gc�c�ZvzE>�(rm���&���;}���91pE�f�e(c)������4"�ި��d�F�˄�AJ�_'�69fG+��q͊	Хm��h�O��ƃc5��D��N4*��_v�e<�䓄a�%�\R]�(��A��/��[n��͛7s�׎�E,SB�TK9��|
h��O����Bư�	A.c9�.�K�$lhA�	"'��9��6��)�{$�Œ�36aT�(iq^��j;0[�f���Yn�[׭2&�;z!,��C6��Dn��{�r�E�(z��&���AD�Focb'�f�|�3�A�A4�)��s�i�q�a�U�F�I������!3�L&z�'e�>[��h��
CLb<,���e�Té'h�_�s,-yxǩ���x��ݹ��@.o9�B�]w:F���W(n^�4nx!��U��\7��ɸ�M�o_�"`�:T�0D�^�j	ʉ��!p�y�:��=C�6�a�`p�I2�8���u
������$�������P�*�#lणA��oߞxҵ}��qA���p ��J��
hD�k���br�2N�qhaC�зv��3�-��Xv��Ã/��"�l�1dCK���,EAS��;aS`P���:�C�8R ��D9y{V�pR�ds�6]:GJ�
�ZE6Vn��!�:h#���L�e��׽�X���k3U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�G���}��>��֕���z~�w�e������궣[��L�zlJ��7]�yL�U��Z�z�Vo������{}w���b��*�.xփ?NI�ڠ���O�FfRa��[/�vпmՃ��w=u�6�z�[V}�V�,�ķo��_^s��[,���[���?�GϘM��_q��%C���*��]�/�w�V]�����������-Xu�A�W�Cap��׏������(���W�=�x�,�w�'V0��2��G|!G�)���F`)i�)�
��)�E��1�Z�	��Gk����\

W`�G9��srY��SI�w�#�S�@-*e�Fa���/��f�f�e:��c����M�<��N�Еq�rmӳQ
�(���s�����6g���ibq����t�}�U�0d�ҥ|��<����o�c����l���勧����BV���'�[�S�O�is`��0m.Ljo�C���4�[�пr�����7��q�%Hϋ`p�"ゐ��-GU�~��/&�-���*tP���y��[��t���d�M�LZ�E���dh>�_G\	�E0�{(=�.����>���c:��@�UWOY�w���7d˻�{�S{���)<��~�ܛP:ڝ���_0����0�儃�䟎i3�<�uv���I�_F����p��f����'�0�&FRr`٩�Β��z<�Lk-RJJ�CD~њܒ(zNyv��Uzo��r�6���lik��"��>���B�o����i���ag��m�B�Mo>{����պ��&��)�m,�����O�A�z4���/�j�����;3��B�i����2�
0PR�\z҃\��������7<�ޞ��y0/]��Q&�h��e�ͷ7�����ц�t���ΘK�X�y�4���0$��b�:ԈI.������~�!\�m���^rݰ�?�e1l���J	ƣ>s�����"�ܙ!A�	�=��Rϕ`m�9v��#loGXKX�}_��`��0���?���>
����FC��a�Z݄���I-��e��pڡ���$ny�h@q̂m\x����/k.f��r�HZ����3�='�;�1�E'�cƬ��Nne��2{�<�S'˓���(N*�X�r9������K,-���#��QK�pm�?!i~�8=잉;gE������[2���G��J=נw啇��,(��ŧ`�e��A��_�{�	�tÀeI�[�B�hU%/z�� S�B���w#���,>�ݏ<�x��8�g� �+Pܶ�Y��P�33z��9�7z�Ƣ��4��Y�կ���RbK%�]t������������ø�Y}|��K���IG��_��F>TF��.�yK���Uc'eh�E?N�f��{-j'�mn��"�w�-0�+�L��w®O����}Hf� �܅�<����'p�rj����\y�Z�]����:��/,`N����ɣ��ś�?��V�Zs7l�P�
$͝�gޜ98�&��9
K��?#��&i��>��O��Ǵ�n&�x1M�CX,"���#��O8P�M��_��b��Mu�4������$�^��V�w��Ҡ�+,��AC9G���xP��!s����A�~���S��X�-��3��V���
��>��5�q%-Q���OR,C�GHÿ�y�8�Cf���e��5�<x<� ��G���c
�R�lll�
���)̟B�ꤪX~����kE��S\n��j8�
<zK?��z��I�!�,-?_Ͻ�����A^�Q,ENx�3K�hBQ���V�e���Dɱ��+㜵�;�����B�%Jk2���I5fGuR�A�c���p;��T7��4��yl���"�Ɩ?�g�� �2�Ya���E�6�b�/��@l��m�M>��1�^�j��Ը"���{zG�i�O����~{/�}; x��v����M�
bT�e��'��%���_��"���n� 32"��3�A�~o�'&���$e�՚�s���a׃�\�+l��r���+�㻰���(�"a�ǡ�&��P���D�n�z���S8��c���'�<�����s_E��mj�p}��6֒,�F���pz��%~�Rq�dt�q�I�x���PJ���L6�9�eT�т~<����H,�z`Y�����
L�D�}k��I�d(�΀����Z�ޓ�n�=;��$9!q�|(�o
{�;9�ֺ��K)GeH�Q*���Q�zi�1$-:�d�@�O��(���`MIKJ���P���vR�&P��P��B��7��g��N��y�`�ga�Y�
;?a'�s`ɯ`� ��~���/@�=�}_�mB���]�0w�J&M����R��-p���.��!�����Rc���'�Pi�B�qE�?����xݏP��7rT�p]i��{���{�>Ag��m5t|Ʌ�U������X'��y��ڑ�"h�ɟ�2� ,��O����Ak����m��߂I�o��_���dN����=�Ir��)wㅤ�8��V���O��~T��~���rbJXf�׵�`c�H������b���?D�����_'�c,Ύ4V]�b�fP}�r��u��ڪp혤�3T��_�y�쿑L?S �y�����C�΋�\�i�B�)Pz:�b�Cs�˖�"��'�^˞��~��/<��>�9��,�l)%���*�&�Y�1� ��6x׻��I+'�U���6��fǓ��>�Va�_���Iv��5O� IDAT)b\.���B��x'Gx�m�hb���7єw�|qUe�ᔝ@$�y�M�M�R`]�����N����:���w�06��!��!X]�F�g9�,+0�W�8�{sH�}᠇LO�������&�`����C-�Y��c��h����6ֿ�O
,�Ͷ��Q^���J�d�\ס ���:�$T�0q���� ��W*�#L���_N�:T�i�#�t��	`g��?����h�o��@�]�^���?�u��f�ƒ�s�X��|��L�e���6S�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T	��/�x�E_���P{�>�ks��>lյ�[�
p��\J�����w~���>��a�V�a6�	�{��|�cB���|բs��ĉ�pJ1�èM��������/Ǵ��~p�?�����"�x��$IB�d�c0ڠtd��'�26��ZO8|et�7T����G�G/"�7 ���݉`p�� ��y���Z�^���on��~�κ�	'q�g�hW5BL����B#x�=��q���!sY��Y��k�R
-ZDxU��jb�\X�5�0���ey�_7�i�u/~�y�6 �ɒu���E"b��g[�}�q��2�@�a@Nd��#�7���v�-[�#�A{X�3bx���=W��j�ٰaCC�X�8�<�* �͑�d�8R�'$�Q��@�l�ٴ��9���W��3��U�T�� ���r)j�Z}�l��?����[`��5��,���W������'?�.��@9���f3�J�嘀���W�nD_? �":=<��vR�~f�(_�
¢'�Pܱ����b��(uѫ"GI��1�I��2�if[{[C�AH�։��B���r��u``��ͮ�^���C���s��=]�È{*5���`�0�1��!]���뢨(�ׯ����ly����F�[&ݍ���.��N��#�����B��ue�j��Q�&`���X��b��DI�RHB�A�Pɬ�O��lmԶ�Z�C��π��N&Q�mp����XvNZA�Z�6�f�Հ_�Wa�a�Vqp��Ɋ���a�Ƚo%�XJ��Š{���+���0y�d�J}�̀�Lk-��,��I��hM�d9Ү�x����Ky�K��o���d�TZ@C���#"�,����~���L��a��F���O[�q��&�� ��XC�͠�Fp�Ch4�q���;_�d��Ƒ�XP�`����gQZ!+9;Ȋ�Z��ƤI�����É-��Δ<�V��Sd�	r��0�%g�=C������aIex"���;i�q
�n~��,4�ȸ��������y���L��qLW7b�d��᳿�5���rq�
��V�楓�)�Ja�'Oy.Qw$9iPsR�3��J|��<l�bN�wB�D�8	)8��N�i�X�����ܚ
���|p�o��
O+�q\��,�V*JL�R�a�a����-=�]�媍�y�y�P>]g0��gĺM��^I/�o��:'U�`��=�Z�<�2�h���8��O�����d��
��rL�Ϋ/���P��wt}�C8s�F~���cݿ��]@k��
�	�Թ�<���%2�\u�
Q�k1~���dn�z��}r	�eBH$�
b����j��K/�ܹ�˖A6SP���"d�����ڠ��Z9�q��M�L��B�/c�'N��:!=��|���=t~�Xܹ��_���3�g�z�f�ql<n�8i�+֜ԇ�O;��_������{���a��^1rj	ˆ��X�����=�pv�V�T���r�qS)z����޶��^qzt���R�԰P?��C<���P����7]�c��UЫF�e��Y��nu�Y��-�)?�άY�y��d?|Ĩ��3�����w���#�d�+㞫�+~Rܴ)�c����!X���O5sJK?��:ضw.�X��L�4@�x��׍'�0X�!���m�IE���.!�d)����<�֬_E`=V�Ax�hL�|�9�]s?��M����y������[c�j�K��N��w��
7�)�Ba��w~.Z'���v�Zk��2�6m�g��Ὅ,K���d��W����\��
�j3�aL�ќ��'�"'d�~�������%��{��(���p@x���}��9OY�=�zy'�#���]�"z`��=R�vt�"��ly�峗���]��N,��pE4��Tij{���E��.ߙ��p�ϯ�//�C�@��b���߆�^Ci���$�h�\�����֚�ٗ����	&�RWc���h)�B QiOg�f�_�̘��h��2�7�ڭ�C'(�L��"�9�U��e0	���#bʓ�|�.tf1y��,[��R�a[ӳ�t/�﷠�O��D��G���*4q���?��c.勗����:��v����NZzO�=MggtͰٽV�R
�g|��y�hY�I�[�̖�y�[k]�����I���!]`e�0���_YtBV���s�|���2�Jw�8�2W6���!�P�z�n�
�y�B��Z|��۹3��(�#du�8^U!iI�>6�i�)h7�o�a*�-��f1�;�0cf��2��z�V�ɝt(N��K<�۶{��?��W~��<��<��|r�7>p#���c�y�d���n��GchSYp�r�>����XV�M�H�`voA)����	
�'1�j�V7�M�M4����m��K�#%h�t���\���%^$�~���2Z���q�O0����
#���k�ݽ�:9$-���F����,[;�y��Nr�)��>�f����:�?e%b^%�ϡ0�P���������EǑu�<��y~��Oظs#d�������~�<��h��	�5�py��#?0�տ�Kg8cGR!T��XF+��U`�@z�֘QN��u�2�0��P�GX�~l&��h�/���b�J��}�`6�p|Hl3z�P{o��w��>��=��j��m�M8�W��C<��~�:qB��7���߇FR��*]=�l��#yP��y��������<R��N*$FH���\�� ��v�͜��rά���ڻ{�6Q��1�
jpoVJ�8�<2���Z�����x�e���;�U���ׅ-{Y)0B��s1�ˍl�0�!��m|�[dSAb<?��$(��%I>�#�fȸ�G��67?���jX�6P�չL�^s(nVˬ�fh��C*/E4:��*$���
LR]e�ޚ�F���?C�E�jO�BL���$�(]���� u�,G�����Dx�m۶�uv�>��bPR�!�ئ㰿P�"&�a�5�(j�@
(k�(��I��p���"����c\6
��(#Ȉ�4ǥ�/��P�CvAm�5���uF�l2�#��J��p�VP�����"��4��6_�6S`Yj��T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�J�*�E�u�)�Z>ee��k�I¿]�~ԋ���'	p%"h*l��8�
o����j��n����T��Kś��z����r�6��~ժ�]�RH7�#[��l�^�0�^��̭+Ϫ��+.:������Ⓞ�,^�,6$�4�E]L6�j���+����6���������ds׍N�2i��i*��
�V)t�=����/���Y���5�=�m�	�C.�u%N|��6��Y�(�j�Rs��U�.@WOQ�w
���ܣ�`��8ja�sA�97<l$��xU���i���ag��-��r�������4i��.���q‘�*L\�f�d���x]�s��{����w �J̞�ʟ���W�foї=E�@`R򡄥�f4g
;�UmV")�?Puؙ
�k�T�
Ll"�W�m���D�XDQ֧�tȽ=���&-�F��!���褕����A^�v9��|�э<6�T���ދ=Ǿ*u[�5��Jj�>:{��>5�Ѩ~���Nr�>�]X��Y�u�N�>F��b�����H�d�>'�TgW\��-ǡ��-d������lnF���Z���E���7:���O�ݹ�������{ߊW��ClN-8z�tN\��7�k��h��B�#��Z4�=�]����������,���3,L�餞?(�����[�l�ј��'�M@�C5��]�Rd�[A8��/&�#3ŧ�3���,c�4���F�It�V�Ȭ,��1m�螭�{�2~�݊io�=b9b١0g6�O�>��g���X�	y豧��[���{�N��9E�wW-'/�
��p��J�FaG萇�x:у��jD%�m��s��,�?�G�>�@������T�HZGY�jt'�%o���t�nV*����OO��!� /�P�@�S�O[���3�) �9sӷ�\�QJ�]?��au⇩�Xq���@bvޜ(e{��(���(��ekk��0*q9K~��QE=y �gv��:���wQ��K>�Q�0�I�(�v����|��-�`hG0�Ip�q-�1���2�����X��V#w��e�t���椣T�Q�l�FW9�t��B�T���pҺ\J� V��b)�8�
¹s�q9ᚻp�mǾ�,��Ŕ�O��x��Q����l��<��A�28��GkTW7�q^�b�i��0B�'�j�%�D�ț|�֧9lF�'��(�=�9�In�ZK��d$B8)��]�'.��i˛�Z���ȣ�J��
+!*~.4:�F���}En�ۍ�%�F�E�zu.�|��Wd���(����5����WD�]/B�o�� ��t��=Գ���+���W�%&�j=�e�g�/��O�``�N��fN��I��r�����Ze�QY�	��(���׽����J
�m�ݣ��&�J>NFĹԵ�R���S��Qq3���]t�a�}����Y}�Tt�Cm�y2z�d�
�fB��Ǐ�A�N>^�������6��9	�RJW���¾~Ŭ���K�7�K��QBü��(���d��Pi�T $_���Y��CP��&-���a���R�w��D6:�RѸ���D�M�I�Ei��6q��y��&z�!�Y�ŇO������l��1i|�ʈcR�UՅD�%S/<�,�
��oq�F"ֱ�6҅g���_C>�����]{;]?�4-�� ���6|�Bw��~42���&��<6m��y�oL�w��o��G�xV�����Ag�qW�/������_<6���Z6��ry�r�g߳��#]�͗I�l��"�Zi��H;|�I����{�-i^|��i�7�(���ab�ÝB�c�{<���LL�H:~x�TF���A�8fN6�&ZQ`�P�������S� K˘�?q�f(D7�eD�a�^��+��7�›�p��-�>d���6��t�͉�&�cSi��&�
Y%���ںsg���A��6:��^n%�j��Vf���"i&6x��^�Uj�HE�}z���P���������G�3j�+NZq�$�
UO	��c��/l�6$)g��H8�����fR`��G���=�:�0Jk=�l��XRF���\�l�%�q#n�����i3���!%FJ��&3�*ܖ�a��0a-&��)ϫ���3�%�l����Ǭ8iҵ�����!2Ydƍ&Rě1�@�F��K2x���"�l3�
�i��
�%kO!@bV�s2��u�	H)Fh���5�\!T��H�bF�F]��S��T�PI�x����k�z�	���aw<LNf�		���MנS@��L�s��奌�#��HSF���Y�m%�:��ތ�+d�&>�Ȩ��e.�2	��ulq?�q�K���Hn��[��e3C��R�Vj�ul3��6���L�*U�T�R�J�*U�T�R�J�*U�T�R�J�*U�T�R�Q$.��p����O��	���lӫ��U�
_���1W����Z[[W���yq��m��U�o<+���m�{�Y��s~��1J'�YSMox�56<��CW}��CV�R�D[H�l��u����R�������5c��Vq>�h��11�ͫ��_u����>����>t�3�׀e��w#�^����e���]��S��NL�~�<O��Vh��+VP.�����r92�̠�Ȳ�fe�q�+C|���<
��W�nl�Zw�;O���Lfs$����+�XpJ�f� �X�����
/)d$��<�Ц��]r��6���n�.u<~P�7�['��x3�ª�(�e�Íap��o�̜�����\Z�2"��c���_k\N����K�����|HT}�Ώ�Ŭ��D08�G�>&��ٛo��t���wBwO|��sb�6��mۡફ�K������5��,X��ݻ��u[���s��a�9}�t�l���fQ���*��`�7<U��G6-��q�M��eO{C�a�W�r7V�GY�xE��Jm
m��}�>��}�ȋ�A-L�5�h�k|���}��=6��[�Ȟ����*Zs���n�ڬ�4 ���^�o,f` q�����s�={��O�������ݜ~�<���?�I��@9�� v�յ��C��C���M��bk�%�A��1�ʵ�3�-�$����rl��]�.&b��{/�V�=�l�e�&� `�%�SN�=3�`�G^$��rK�ޯ��LǴ1K��CA����o���}Č�R���;8�q8y�2��a�Ν�����9��%����V���X�k���&�Q�WN�ה��.����X��9�~�z4a��}��g�-m\����F_-�[��0�F�$�����X���'���d�
`ÀIrԮ��j��կ���G�5R�2�_r	��rZo/��o�45
+�1��X�~=��vZ�V)�A�e�%���8i<,Q$=�|�i7`�(	n����غ��%K�2yrv��3Ơ=3c=|e�r�!4'x�|���}P�(���a+�r��[ױ��C,�ؤ��6�C�<9�I�Jh9ii��e��a8☐yKB&�F��e��d���7��S�ד��������|ˎl��f�gp� ���C!X�n]C�W��rQH.kq*s,��AwٗƨBS������	�Zq��غ^��>k��b��I�{�vN>yS��9��z\�15g.>�-��{'�����7��{�U������V*D�Ѓyb���⁣`��{kA��1	dG�at�����,9�r��]l��˗n1���Nj4���u�g�?�LT�+�`-08�����"m��!NZlq�x�n���Y1:����+ZJZ�8�u�jjt��n��ԩY�oo�|^x����eT)5&!����M��c�	s�U�y��c�oڳ�z'�~��IE=NH
'�X�׍X�� Z:�^�]|�i�d:��؍�e�7^�G+I����ƌ������VDw7-Ḑ��֒b�~��ͬ��e�d�{���\_��e�^�x��ҹ�
�φc� pg�	ŢE��u��;n&;vts晋��&���Ғ%\<���r�����HX���PKwoD�֒�|W�x0���(��>xO���i󗶐)�h�ao��H��f'�@�1���7�pèc��<�>p
��⧟�odɩ��:&mٸ�=��]�4XY�U�@��ᘹ����#L2�G�>+�}}9'O�p�y�N�8c!S�dEˡ��W�I�m�m�>ʛ�?��'x��U�j��w��
QYo��'��9ǁ�g=
���Cz�x8��gc��?�D�H���~�m�x։��C��i�)|e�$�������k���;{�9�=��I��� �P��r���*����������C�Һ��
Bx�q9=2�O�]��:j��Q�=�V�?��h���#�`p��p܏kN�~oO?>���ס��U�I}k��O4�.T�Ʉ5���|�ͽ|g�>{b/��BX�5�Gfv����
2;���GR�ppo�I>V�V�0͈��{ݠ���&4���������~��÷�0��,A��skD���`<���9���D-9tJ	]�0	�g�� IDAT.�!�w����>!*��'��{[3i�<�V��k���\��:��Dޔ�q�spW����Ϳd�o�%c�^ٷ���`��Ƈm!q�9�l'~�*�A-��e�T+�Lp�$\Id���3y��,7z��!Š�r|��k-�
	�/�,�4�B��l����wv|؃`���!���B�B���h\6�
2�rn���SV�/���L���@�Aĕ�������U�)�B��s�l��T�ُf����*�At��5GvR�q��ep��� ��;X�-%���[K�W����EHH8.��

��5�U�
��u
f���$,B�v��y=��a3���U.���:.�b���@����wA�xR�5y��Ȭj8>�u�0�]�#�uٟ��
����O\N+�&�L��t)�,������R��wm�J�*U�T�R�J�*U�T�R�J�*U�T�^=ݻ��S!X��8tvv���9�eL���[�0�Z�p�%dži�z�o5�GcZ��ց�R��u�m����ܺy˶V!h-�J��R�h5�^`�mN�/�-�����@��5��D__?�l���S(�9s:��=!��W��{�Er\oZ��^mE,(�p\�9眊V���I���ZC���ֲx��?�(�֯HZ�5�Zuͬ���hOp��(+H�z�թ�hI�bUk�{WFŮ�@N
����U�Gf^�|�� ��[��o}ke��X�O<�1,/}�7�c�{.�������8���Mk9b�T>yH����⭟�d�r�sUk�Y+���κd�z܍���pt�G?��U��GW֟�z�7΋>P&����
/~ss
X���u��+�ն�[~��>���f�zb-�_����<�|�1lߺ#y������/�������\�����1 i1�+1~��<t!�_�W�[5�GS.�y�\�!�1SK0���b�at���)
�����4��Ny��������x�X�k+/��E�h��t)�\"�-q1-'-���]O���`�/ɖ����'?����l+�{���~{�\��;�h��f�N�=w!w޹�EF��X�G{�P`S���]�dI�pa!<�H�t����*��u��x�G�-�����y����;ή�\�����i�33)��HB	!�7)��(�D�X_�R�"W﵋^A�@ H)�N2�^N�e����ϙ��d�N�����w��g8a���ֳ����|���s/�c�z�v���Wo����y�)�'2g�t�o%4V���H��Kvvazzѯ�?��5����Z>��!$���`���Ѱys_Y����[7->�=7�̸���.`Bc��ݵ�=��������rC]}.��R|��z���%4_y%}�O����[?��Z.�t>���O>��W_��Xȍ7���X�
7����_���]W�W��ԼR�  �yp��c�ق�*f��Vn_I)g=f�ch�4�y� �.���
���d��U���_�Ϳ��
���"!q�BIm�4�]x�C��f�<��(��'���pf�(�Zr?����ɠ
�&�<;:1~�F���K8�ە��O��{>E�;)��S?�in��8~��z�X�'L@�}�1x��y�|�~;�_�7�>�12�Ú�]�~����7�s��������c���U\}�"n�u�Ws�ţ�������yg��c�7�H����?�?��1Ɛu�ê6�IU8��3I�f�&jk�y�e�w�)457��g�5�*i����~6�T��)��-k0�V���+�����U_@�{�b�$��?P�ӣ�|g�L��m�V�d��m�A��l8d^׍��ֶ�������Ӗr���mW]��k��Ks��qa*o��V��Ni����5-�܂���Wm��G7#����ַ^��k���'���b������G�~�[+��G��ݘu;
�,��i�;�u,ߴT��I8	\��
B��[pGN�����/�y����0�d�˖�����;$n�"�PZ�KQ۝w�L���T�����ާV��p�XM�
�0G_@r�d.};Zk��!�cO��^ATWcr��ý%���j��%�X��H�pA�j�|!��ݏoaŔi|�}e�׿Nݹ�r��&���h����o�:�\�]v{�
���X����L�\��}����|�K�q�+�����
���~��$m�j(�ʫ�0�1�1R	Ӛ�q��W�ȪG ��9��s���˹��X�}
�!Ga�'��~�;Y��JN=�8.��\��?�'��������Z�h�HZ���lKG��"�s��\3�p�/ 1Xj/�er�Z�<<�͹<�3N��2�d0�Bh.TlJ�P#���+��Z"�W{�[���?�T*U�PpƝ����y�RL��O��+��$�q�I%�<�5k&q�ٷ�-�׾���|�$���\��|�K�r�#_��~ꤓ�/h)�X���
̖ss�F�g�O�˓�9P`��=�Y�s
97�B���T)�1�w���w���Ɖ�$|������@M��S�8h�0�l��+�����i�8&"i�bl�_�PAv L���(��/_���G��͜N�H��2���
Ȯ��jE`t,j���\t�C8v"J%>���D#�T�����#]w��g���bzF�u��:Z�(��3�
mm�tɒFyd+'�8�G��I'������y�+�=j|��A*�:�H�����8
��d�"���M�I�Ir�\�����?���GB,‚e�
R�:�����BM3��V�����\|T��@ ��(�z�+NW|�\�p`|
��{�2X��M��/\q2PX��Ԓc�/����gCWzz�?�9�O �3�\��I=/�|�V.}˽d��*�♣٧҂�kظ�������2f�t�L�d50�+��Q7�:�=i�P�۰�;��|_��|�ۧ���>�w�s*�^�l�+���7G�I!NwuŨ��`��lϠ'u����r������	?�(�G�?�!NH���o�^�ҙ������jG��d9P0�K��I[�*lakC�2���m�~���'~𸡭C�t�Ev2��jA����ۿ�5.�w���/��[_G�O�����H���42��#���
�Aq�aw�ym���6ŵfn���N����?�������ߡ� т���~���G|�k\�W��m�a�逾��j�_xp���1>�����kr#�4€�x���`�@�&N�z�W\�����o��G�ˎ�`������̋m/�5�5�,�D#�����q�p�Ù�i�d��u�翲/]���5�c8y�a�d����U;ཧ������dD�H���h�u�����S{�ǩ��*Ĕ�=��
$�[����ѿPa�JI���<�i���l*��� iB��w.��w���d�{>�͚��̌(�SJ��3;y˵ג>�v}�����y���?m�=qz׻�_�$6<L󮑿+>��7l��Ϗ5q*Ƥ�e��V��]j���տ����ǜ�ݵOz�)~����׳c��'NSf����o{�'�r�Z�I��~xN�w��/��6���
G)�>��%ظ^�o=���!��X&�<;4R]�S ���x/����<�4�g����Zz?~�(+Jۣ��ЩTd\�Po<La�CC���ƺ$���|�$�|��_�"�ᅡ�v�g��[y��f���5W�����.�z�	�y�Aڮ�����8�C��wl$��wމ��0�bZq[�%@�1ᢗ�Ǫ��e�
�����?�i?��ǒ���ۻ�;�����!ţr��(��U�tB��n��V�O�z�n�>i=�J�1`8e.�,��
^�&B]
��@p�
MK=�(�<L
���n���]{�IjȝCq<���w`�A����Г��9eBw�l&�g�u��d{��/|������]mLn�*y�����̊5��N���o���?���>̯��<�}���7���*������!��q�H�+�R%O������K��}:Nq9�`�aF��+�\�
�(�Nɤ�3I���f9�y�p�ᯫ�����up�I�3�Ã/��8�IXh�B	��N#�	,'�ۋ1W&��?�#cbA�@���T�Nc���(]�"F\HP\��Zh U���:O_�B�k�>�%j�:�'>�-~�`rs����Mj�T�L�P�ц�p����/9��W\�s�ql��g�z��|����.C���d+���m�,���w�wJ�G�>����i"#-��O��p`��t��
3�+�Jtܹ�\Ο��xק�5>an�=��B^r��n��*eHX0�A�S,�[�yz�f\uys������"H��w��$�hҢ�Xh���%ql�mk,�G�LJjQ�HeH$�oJ�;X�Pu��qK�ܳb���IӺu+m��8[[���=����n}j��dn��'?)�Ӿ�^v��O8���\�(�!!˓nl�b�Ν=��̿&�Q��05�5���C \����-.��aK��}OR�ka�dX�˰�Wc
�i�w&�ce��茥�v��Q_E݀k��[Y����
U�E��0P0�\CC�!�d�ƹw�m[�(T�U�Kg�x����v,q�m
9�(�;L�&�{?��w[�@E*�*�)���趤ⱤM�����T��"�HE*R��T�"�HE*R��T�"�HE*R��T�"��y��̼񲖙��᭛����
�
�N/X���\Y�+��x����P<h���cߠ�����^�<{lx�Y�nl:��뢛w�W`��e�弻�:��ˊ��7^��:O_rc�Y�_��cN��N��v�����ח��b[�0�AF[�g=��:��6�Dop�z��X���Na�R�	/�V� r� �cLx�H����t�U����:��ыF�aÆ�:���L&M�Y���jk��I��w0��۞,��g��Q��D��� a�X�bƌ��g\���“n���#�t^tʙt*�=m\|�	v��oހ��
�*:�]jа�X��P��N�X�����_hC���k��݈�~,�8�"��PG_�6(sxe4������T �:�����RYG�6j&�'S]�@_�L�t�\kM>�/������F�>(��A��}ݹ~�#�K��l�=�{����Q�Uln�YV��uZ�~��<;��xz��u2��_���L�{	Z7��5&����1��|{�+m��X�rؾ�	�� 1Q�GUP���r���1�O��ݵ��?=��eɞ>�>�vĒ0�k�@?�$�K߀���S��z������H�c1S�{#|�埭�z{�~τ	p�ap͵���
x:�C�c=�'��/��^!V��:9���{
��XxJr�?���|����+qW,#��1�7z�êB.6�6�
�e��!��P~g7I(�F����|
ے�*t��pp��D"A��������8�����+Po<w`���>�I%I���շ���q�'2���cU�Ip�����sʿ��=^t�1��Dψ^�9��5X�W���mڥ8'��c&��޾lt�|�U��q�o�}�N�cOƞuݷ|������8�864��dC%O*l#(v��d�z03F�)b�G�d�y�Z&0a�,&>��?Nﲕ�Μ�T���1��.xخϔ۾Dz\����m;���@Y�V�{��>��ƕ��bkp�D#���R�ʣ~���~��5����>���o:'�iA��޳��5|2�0��Z�.�1�eqmh̑�6�]���	�������9���ag_LP�`c��䭘��Q#�=}l��{4��[ض;��H������|.Gkv�Ei���	
�~�Qz�\N�Q�h�3��^Dzk+�tRXQ����f�~�_jLh�z0���H+�F��z�R�m�H�s��~Vn���y�I9NJ�榝�y�z��wl�w�v�%��)�f��/��G����4�

�����+�`%������P�!�P�D���	�z��V�o4*�C����O7?@�34������v1�m2!��߲A��҆��ݷ���Zê�}�i
�6����к�U�9#���m���G8vi��e�^a��j��*&��f_�U�?/w���U|Z7��l�'���jk�uI���L9���#�8�Qj���րA�'%���Ͼ?�H
��}������@a���l)���k��b��ր��հ/�nf�+wA‚7‡~�.zJ�VY�u
P��0�j�x�X��>�2-������)�`�|MW��Wm�/�G=���Jzr��K룥�q�T��~�^@�����*-��[�|�
iv�^3��z��~��	A<�e����^�1�lq��
��H(a�вC���8�G���&}�@�q�J�j���x@[^(��蟽	V�h�v��k�ख़�;�l�`+�n��y��O�����y��(>V:f��,\w���C��Z�	�)XG5�'
�,Փ�<i���I��	_�@���mn�3���;���h�������ͼ斲1��y�o��edC�e�b�Ci�#�{%J�Q��l�l��
i��
P��e�ۋT�,�)�[\�[��'V�i�lq����J��Q�u�&h�N�	L8	�ベ�ȥ���5�᎔!�VH���'bM����v��s�\�~<M'I޽a^�=�J�6�<�<>z�9tv8��8�4�$7�;�Dx(��`�	%H�~ag���Ax�PC�Ǧhz~g��~�t�6Z�	E�$(�L��ꟺ��6/̀���Pp�$RW�a���8�ͬ��/0(U�YƛP<�>��v�a�޷kW��R��fxL:��=i1&5:�P�(�6��w<?�I�8 $8b�Tn{�{����Ïn��Z�����Ɲ��,;TO*�f�TId4q���etlO��i�U���&ߜ@H�v&)��2%�R�]�`�����|�*�1=����k*�|gTC����Pc
����eb�����S�1`I��է����?��.�+��O-�c"���k�,;#-�O*��/-,�t
+��I$�J-^��?ȫt9�AA�.t�0���m+��@A:�"1��f�A ���«�[G�h�������U^Ƚ���D���@�vR$�	�)ۈ�"��ė��a�b��S�HD�ᢖ���˘?a
�=���
���a�^�"ȃ@�
1��������f�H��Բmړ6�ea��+��$�ʠS6Rv����!�'��'�A��
c�h�Q�L�Қ'�G�Ա2y��X��)���;�Ծ�! /CF��!N9ۦ�3�s��\r�I�m���7=ɋ/틿�c4����-����h����t�m'с�D"��`U�jUt�_��h��VE�{:+R��T�"�HE*R��T�"�HE*R��T�"�HE*R��T�"�����/�q�]g,W��ù�A\FYd	��`.��džjMӍM��tD�%����8��'�#��>�� i�3/�
mL��M�E�e�r65����4&$�FX4�>�0��6n�4v9�;�ƫΛ{�c	l+:,D�;T�1���2�]��G��yiӍ���:���,k�w<���d����/�4,��tn;�&��9���m����i�kQ�R״1��)�+w?�"���g�E'Pp
�T�T�!�X�9k�ѩ�̅@j<O�z�����?[Vg9H�Y��7C�P-��$�Q��L�X�Ѓ1ʉ�t�R
��t�T*E"���,2�ͼD�z�Ð�>)�(�0�'<��u]2�w�}w�r��>�-8��N�Na9��@���23�鍖�)�lx�eu*�3g�RQ�v�;"���1�L�5�(%]�ɰ~�`9���kY�>��l����v���+��!�iœ�F˰��ʁ�z�VGW��>9�H}���̪�z��[;��
�6�+׭.��R%jj��h+_��n�������a���8/Y�V#٦�-x�K IDAT�>��a'�(��
�cc���l޼�|9�}�.�`���Ar�2J;��;˗3�-�w`�F��݄���"���A�H�o��Q��`���Oz�R	,$S�N�L5��v����}�Y������x1Z"u�8#y���#�6��2�7���B>68"���y^�HpF��7�-yg��	¡Ò���G`9/�0C�5�����χ� D��w�?jӘ�4�el��hR{,�m�:����h��\��9-i���bk;��1��rڠ�F]��qK��U��zqe4�`�~y���-��E#ucgQwtt�
��Q	��,M5`�]vbH!x�����ˉ�*��Gϐ�u�ص��=�%�gR�3r"�&�X�i�w��}~4���dL�_G�Ű�wG�0[��`��]���\��E�e�s��^5�@��UM�i��^��� ��^��9�z����1�a֮]˜9sH��j8�`���<�e*���a�����xk���H1y�p��_�bF�d�ZQ�ݪ����Ӹ��L��a�κ	�N������ϖ-�̞�@]]�u�\ݼ�=6��|���遣h�S�7g/�����膪
&0,�l4Re,vy�:C�'���^4մsdb
*�����z*)5���G���[#�xi�E`Y1u�@	[7n����)S��it�5Щ��<iq���yj9��<�zj��W�m��ӧ�АzUu��B���8)3��t#I+��@ù��啾��:$v���-�+ͧL`�
�Nq�'w���	B��I��Գ̴��w8˘��{i�Y�N"�:�&�g��{��t���g�+S���8Ni�e���s�=�ĉ�4i�{��r���:<Ώe���0�����`p��\9ׯ嵐!�Ol�Ӧ��+�pB˫�[�,��#9��v�T���I�cvm�'TJq�ij9k�ٴ���ާX�_OA©�6h_�0�aF
lʥ�%3t���}�?�ɘD'���W�%<nͤ�*zt-��n�4��MaL>4N��Q�p#�}۶G]�f�|�s�cٲe<����t�M�{�#*R)�����t~�!K,Wj��hNJ���?=<8\�rΘQ�_���c�϶m=�sΌa�C�[�����V��}�����q���|��\8�m��?��~~����֭��('�O;U��()��*�M)=��#4����Х�49�{�S�D�",B��eW��8��̙CUU���#�H\��@ʲ-Q�"Ƥ������ƅ��+g]]�׿~:�����_?���䫮�"�N(kp�kHA����o|jBrۯ�ƀ�@W���K��ph1��)$��m45�>��]̳��=
�$�h��
!e���7�;�`Vh�隢�UO����N�4��=�o,�V��!����O-Ip�%DR ,qP:|S�`|C�j�m�߳��<��?A�a7~�*+�
�ݓ+��g���b� -�^N�pw�"t )�2K/��B~��$&��ʩ��5���
5Rm,d��p�ɦP�aF�����U�-����(���\'=<a�$X#A^��s���T���XP�@Ƀ��#��RV��,���ü>z�T2\�+��a�f&.���hk�ޑb��s����-�C�ۀ��yj��)�#�����T$�&k��~��M�d�Jp�I+䂨�$E���eX�޽�7<(鲣��g���,�rP�����S��	apFZ�K3�hY\��*>�\)V����=fX��Bj�y���D��������?t5���:/���D����I��GבW�T[��-��â�ѹ�!��)�h�>���b�c��#����B`�p��v�����:yI/\��	,�5�n���x�N�:�����a,RQ9;����5�n����� U��S^�DL\IK9)�N����*��(u�Ø�訜>�֭%�C����V*��Lb9X�ՍU_
u�w�����AG^8:at�n�V�_�9l!vXVՊy�Z��a�d2T+�akȹ�+���˔@^�X �rP���]1u��"V9m����l� EpH��B,%H&��4�|��nN#H�4F���^C��=��[�X���l�p���$H
�t�1V�Z�����*:���Y��T�"�HE*R��T�"�HE*R��T�"�HE*R��T�"��Q���|`�a�Y�(�3�%��ƙ=�̭7A._���(|�+���(�Bj��J�lݰ��6���ԣ𱋚n���6���Z�65�xiS�u����gs��P:z��ʀ��λ�Ʀ��v�M�s��9�����Ύ�-���o`�g�@�힛B���Fc�8��H%S�5�$S��qȾ,Z�?���s3��!�y�xGtN��7x��/����m~�aH�Ө.X��׭μ[���p�q��yU�΍_�X�
���S|n��F$R����RK!� ?��nj��S��':,+%��IUe�nr��C9�8�.�*��i�T
�H�z���u���֘ @y^/�dX�����P0�N8\<����L��r�,G5����+x%��&��i�'n ������Թ��7-���o�+��J&����46Bcc,/"�85g��5լ��6�h��F�����O:�"��[B0cƌ�ʼ�]a�Jխ�N�Xu���6�2,=�|
:��$IXvt�:L=JX��z�s�4*�cM���q�����<\���n�����|�l
�T���O���Xa����Vѳ�<T����DwwxJ�C̢4��H_�Ww�`u\��fN}
ݮϟ����~FK#O��fju�g��Л�it,6w�����};�s7��v��^lcо���@�σ�>���Tj�߂�m��PB���܍�c�w6��A�@/�n.rd�Rs��Fu[$&�i���u[��u6wl�#�Kw0�݋��RTe�|�f&|&'����u�Z��-I�'ghLԲ�c{Ig)[4[��>avw��y`<��B�$%HD���2h)�k���
6�K�<=���l+y
���Ag����d��^��r��f�U��ܟ���M���^���?�7Z��#���bQ�g�� ��TQ��G�|�|�/��O�3΀L��#U�Q)@�g�!�|Me�^�Y���pt���*��ͼ�y<�+16�v�;��ys}7;v4�S�7��/M�ğ��qw�Dr*"�u҆�ɏ�I1��ߋ��W���� ���4#��5����C�6����8՟�{{F�tlH�i�V�@M�?So��T*5���j��Q�e07��<�]ye�e�#�a,�[_��{��+����[9F�(��d�5m�����^�iG����ۡ�V���)�@4�h�C
hK��0�#���-z+�^
�?.��@G�c�#8���N��%��KX�v*R9$�qG������S:����gJ@dW�#1;Ȼ.Ǝ�TDFZp�
�&��Ifr;S���
���RX�K��^z7��R�(~++�
C��V�@�!1yT#�=c�[��<�v��F�Î=��{f9W�����\K��C�X�$���3��
�H	˖E�P'���<T���%W.��{.�.Һ�@٢zRҥc�K��	L�6+��#-�S
�H
y��X�9�?~ol�~��Y�zUI�gq=�c�L�PX�5�?×'��hz��h��K!�pv�S�򞋱�	=)�����|�|�@�|�\��)�<�̤9U�gQ��C߮�06.��@P-�V�!�
��H���	�z�ָK����wR�T	?s�R��y�5k���.#�ry,q	<�ގ����
��(s9H$���Ga�x��Y(�G��h�BY�X��R{"�#p���z�X����~��wH��!s��{����{oj�Ç&�fbR"C{a.֜38qF��d���b��mlZ����4rƱ5,:|���st�>n�h��F��H#����L�B��|���C�-���'�uQ?�M�d�`X�l
^>A�u,n��ZF��
��R-T#�����������Ơ<[X!�D)��aZ[aϞp�T���"7�b`����4�8. �"O:|��* ?�M��)��a{�Ff/X48�G:�x��Y�<_��2�4`��4�c���`�,��M�:�)ƴcƱ쁽�Z�f�<��k��8ũ��<��7Ҟ�~�md�;4Rr��%h�����8�LHX���@\յ����^c��:T��&�l����3S*@�ĿX�HF�6��P�V��BU_�9�Xx�Ѓ�C&�Z��u챈�zT�E
�"�k������=8�G�TR�9�hZ�g�̙445��������߶�|p]3�M2\5qM	E�aR�&�'���gI�;�u�3e�ml�vt�����퓹c�xڋ(ȡ1���F	�� a¾�T�����3�܅9vlI�r-�;��͛R��j���D��1�hP-CsЅ�3p7C�e�+��!-F�C�ju��A^���$���	w��l����H!�T8���&̧?
�4����߶C�m��
���--�B>�m+b�Ɠ�q�QI�Rdj&q$�-��	S��ab*"�
$
4�R���	<�W˵-m�y\�緱p�+<�zu�P�{$�	
T1�+L�Y���H�8n�;�m��}O*�
��v#%��55h���OR;!��~3a��`,�@R�d�F���@�0�L@�/E�� L�L�VK�Ɲ8����.�E$��!��P���K�~�*B:�*�R�x�I��⋡�|?�(9�
!�\�=��P�*"��8�1H)1��C�b=e����h�o2%G>{L�5�0�bs!��[��q�|n�v��COpÏ
�^�������E��w������[��`�h��Ch=��>�l-F���'�E�#Z��g��l`�+	�1�Adž��r�ޙ�5q��;����4���j� gƀ�ۏ�a��BT�8HZt+���~4 �"!*�V�0�ӧ�5ׄ�h[̘��PS��H8(�Q��؂� ?0DL/���:��C�LႾ4��$�2Ÿ+�?t6�T_����͟~�Uk&��I3g/K�澁&��v&Aa�t����DP-�Q��xox��lͰ��q�br�����K�w_jغ�܅��?�@>&p�4�x�:pP-�A*�%MtX@­<�k�������B� ��Iz�	�xaCu5�A�])�P2@�Ĉ��W�G졏5����W�)��yR��H��^��g7�ᡆq\?8vm�h���z��'�,F閳���"8K���X�$V2���ѶE��p����@"��[k�p��0��ǁ6c��,A:�&��Z!�̎X��A��A5|\�
=���NKXXF`��e'p�����~���޲� e��<^c�yaah!��iDu�e���6�CC-n�F;QƘp���
�N�����,�-;�j���q�N�@d��
����8:#D��:'A�,6��\�}h��/�&���keD��S��9B�<m
�#�j	, v4/l`�������cRe�Աm2~&��!�A���h�LJ�2:m�&�#6h�ǵ�C�)��h0J ɲ�"�N�ױB��Q8�鶶�G��陫�p�9�Q�+��rd�T*����!�Z[[���C&M���Z���C�R�N6�lBx�?z�|}W�e�
C�Lt��P]X�/��XV�[�/�7:SZM���^�0�Q=�F���k�NX��z;^�Z��5Qk���_��,�W�"�1i(]��ZH�.���Det��/�Y9��?!���:��]E*R��T�"�HE*R��T�"�HE*R��T�"�HE*R����#ۢ��NͳϜ�z���1Ƕ��\Gޕtvg��+ޙ��;s)g��j::���I�į�l�uϞ�Q�
?|�ŧ?��)�Rfo��돴�~�K:iG'�G?�.���W����o�Δ:��m���v��'?=�V�w��������_���7�n��ǯx���5�=����I�|er��_����/f�T�v�q�=��1�^�H9	���F�dA�y���%�:Fk�l�4q.O7C���%N��Agާ"�T�n�C�MA�����@���RB�c|S=ڄ׵��6S'�#��-۱�,��|����C�@�x`�R�������������`G&��N�On�#��`
�~��hK�Bl�d���"��P2�}_�u>w�;2�;���R����N`,�m%�,�ɔʹ���z�I��Tפ�+ڇu��<�'��:����3R������3��/?-�v2�eLx6w#�Z�0#Մ��m!�Rr�i�:vx��mX���)H�t2E*���6U:\��� p�h����G�Ir�ヰ��
U�ߓ�R�7�L֧&�$�I0�x<�;�d2	�|ͱ��y���{�Mxj�(�
|T���V��[���ziͺ�}Y�x��;�,^�K;s<��Go^b	��;�oQn�a\U�fֱdz
M %�<�"/�Yw@�'��q���o]H�͗�?N��m4����Ĵ�c���j�ޢز�D��+|r���.>�?�g�6O>�&ML�i�q�M��'�嫿��r�s9��?�h�6ۛQ�Q��y�L
+�D�vtJ�*Q&J��C�S�>��AM/�uk���sg��t���F��a�+�Ӡ~>�[��}�!�chW��64�kټg65���������K���?l�\���_؆�fO`����vS�k��V��)x1�D�Es#�w�	���9`�5�a�\�N��&�dє*��7��eS{Olkp��ڐ�s&T�օM5��&[��Ҟ��;װ�s�:��N���~��/���n�ɏ\��}-�9s�d�rL�ÖL���,���i�-�����?��`�_ �{�c���	eo/A��h�c����$��a�sT-����چ���ٍ"�fp��֐0a2�ka�Q�N5��F�[�(��=hH�^O�X+6L>74P-ht:�s�z�m�ݏ�Ǩ��0Ɛ���,K���b;U�J�9C�d���==9|��R���/I���A������Sڰ��������E9{AR1��Ϝ;�{����7�ҝ��V�6�����Xz�k�������<��>�u�c��.�a�dZz)�\E�[n�tt�f]�w���|�>��7dl.��!��xR��|�q쟵!�EgwՉ�}h�<��؇�F�?B��])z9/J���8 ���GH��ƚ����0]&2R�:�5�Þ 2�
Ԯ$jk
�g��LT%�0o���mѭ�M�U�1Cl�՟ɉU�y"s2��V=5�C�sx��0�uc
#�:{sH
w=�Kұjj����vt��2xY�#�3Z8�;y~��Y�=X�����ɝ�ٕc��9rr
�568e3S��B;ۺ]�5�x��	�{x#���V���s���>���������=~�#��J�kƍo�&�ٻ�~7���45�̜�i��y�֭�F�qKp$뫚��b#8U��FZ8�$�eQ3u��"l,	�DjBhL�#�PV2�6C>fY�nA�>,{j��]��-Lh��8�sd�Ģ�Q�D�5Æ�*����N�R��TF��P#}�6.�D:Y/�g�P0l�
LJ�H�I�-���R��Y��zKh�*�[�8��'\y�Gi�ѐ�G/h�����������]Tn��"��m�Se�O"1�eM'�vgy��-�n^M5	�=��	5϶�s�:O����g���M}���=l�,�X#E��s!��7���'x�-<��Z��&.��z�|���"�vӿ���=���=�M�}����g�;�HV7��{F׹��m���?��`�a����;�P݌h~#bܙ���@+��\���놴��4 �y,e��XI�55����IDAT���m�?S�8sr�G���*�oa�	��=�yUJiֲ���!��u�F���i�+�
�J�� X���vZ���X>����O�i/G2�~@���y�4��'����)l�bg���I�B��{�iQ��mţlhM�
Ph�d��V.X�̅�43R�dX<��@�@�q_�?���Vv������(��>���Q���ܩ���I���ϸk�),�@��ߟ�����D>�"����r��9�=DZ��ѳ_\;��q�̺�3����f��؞��
�Cv=f��0�t�`Lz"ьqj�7�عV.7v�b�v�!v]0IEbJ:�GnN!7Y��	��m��\��~Q��F����Z��y�m�Tm�� ����40-��=n�r�sb���^��&v2��Гa,�@IQ�Uc��mfA��%�;9��}���I������N\��_[+�xII,F�1/��3�zr�_?���
������5*b�	����_�c7�R� Pa'�,����=�\��W�'��:r�}\��՚�\�E°Լ���?yj�f^v�����ٷ��j2D�mY�lZ��D̘j�/U.&�
�Aː\h$�o�����H�e�h£\;
�,BHL�E�%rwє�n
%�+S$&S@���<Ʈ���s��g���}��8�$��CVHZ���n�B+(�RU��)B�Dj�)�TP��4�a��q���8^��>c�Ǟ���w�=K��������{6�����<�޼3�������dY�HQ�BL��n3�h4.$g�e�]�}���lJy����3���x�e=�:��#D�X��1�Fâ;pvJ&�O���x����9Y��6Y��V
�I]8MBS'A�%�k�5b��Y(��y�\߇�ߕ��$ֆH��0��J�/�0^�x2]���=��$��������B`�k��p�M\�8������٧����շ��\�g�9�W�	cA核�/B�C	��*D�:(�J'�����1-C�M����*��D�9����_��ԡ<��tŠ*�a��&�۩��'�&��;#�����B}1�x�U�	~1q=�K��P�gϿ\�W|	�c����:yRԅC��M۝�����R)�v�t0�FZb-X�0�G߲���v!�rky��8?>0���ؼv7-/��g)�}�v�c�<�"M�"�ꃥ����t��S,S�=Q�U��G����	ƞ��-E���:�5��Em	��u��p΁�<��`�=з)
�.���~���Z
i�iA+��#��"oi����Yt���u�b—%�p���V���M�)Fz�#z�I�$����$w�c�^{�Ƿ��²���M��h_s���Y��	Flo���˅1
�u4T��9�0{�A`D�P-�%R��*�ٴ���eo\;��'�6b��3��r�Cg�<�g���s�z]���[����S��ˣ�]�þ�I"QI���FJ�n��%�{)%��/%H;�)(�5NI
��.�hJ�p��!����M;����ݻ	;dm�c�ɶ(tM���c��o�!�����)�����"�N]i�f���͛��¤��f*���}�����Z3��Z�)��;�����X����զ+2p�R�	Ft��{�'��>N]a;��h���]�nYʺ�"R��x�����;;G8[�q%�:Q��o��D���u%���em���Z�M��|�G�	j}�3w�y�n~#��n�ܲ��/[�G>����)�Q�?Ú9���Pr-E�l���+({`����Ӈ�T���U�i�I��`N
�Qg�� �{F.�.bN�dy#H��6y�/������5��'�$��~�˷�
w�J�5�il;�>��-�{�F��㖄��M��ǔ�� �X�8��(:?��E�\��k���,,�(��}���:�K�+�#�+E�64�͟�b��	>���l^Sbe���,f]|�a�HA;�{��6���y󍛮�>��WF�Z����s�id��4��4�C#��S7�%�X�iMj�J��le��B=�r���Yl(�[lܢZ@�C�b>)��
��2m��#]7����w���t[�0i�e�?��:�)�#�*����\�y8M>gڍ��r���M=��a�ݓY|�@���߹�����be���Q���3OD�=�{sӖ�1������Q>�e	�E=���ܻ����<Δgs��=`Ǵ��5W�� �$8~��5���v�q�b�v*���{i;�j��p�y��"�)Ҷ>�&q��f�&V�0aI�RN_�z�g��cN��Qp�--h렅��u��ryF]WJa�:Fhuњ}暤�s[�0�T+��	ڹ���~i���a&B��gy�X�Z�q��@]7|i��v��7-aA^�nQ	�kO��/��kY�خ�]��io�I�O�B>��0c�2���6<Xf�����U��^Oo~�:���R?�c�up��i"V�VAً~n�aX0 |m��éIЉ���_<����j[�sN���ѻk���U��2�z-���!�s:n�p������].W
���C5��
��q,�sy���{Ȼ�y�R044�v̭6�ý�V��)E9�@�ya*�<��G_,�^;�6U	{��ݷEȂD�ն�uVG�c��{+��H�ƢYX��Ӻ�����:��š�
��7�Jƺ�c&ezm�a,%�U�n+m�ӿ۫��ɘ"H�m�,\u"���,�m��~W�]���2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2u����
��6��ah])p�ްM�OK���&}i�P?�\N��у��u�pۭ�뮻ν��L7'e�\t ��W��փ��.������+�?�}v�1z{��q��^�Jw����'��̌�V�H��!����~ܴ骓6J�$ʵ�iMZ�K2Ơ� ��	mA^��@�8�OrNn�8ǂ�C�M*l�8�IZ��s_ab���cn��ּ�AO�ױ��B\���I#ɘ���N���Li��`y<�T�k����j-�$�'<�IȔL�����MpXZ�l��F1�����9Xo�
� p�}�Q.�)
�r9��JJn���9v�H,~h��͆͋F+B���y<���ǃ�c���ȿ�p����{�Y�z.Rxi�h�w�2�����*"F
�^�'�=�؉z�13]%#
�ȩ�">;��0����m�o3�7�>꧆f��Ea�r��iFFF�i�lE��w�0��o^���K����bGQ
�v� �J�†
x�-�����p\GvQ�9�f߀�V�a�df4�F
@�1�ǐA���I����팵w8t�.'��2q�*�Ia�!)����2��Ja��c�r�RHZ9,O9=��i��-��wχ9��i��<Ţ�Q(v�8m~��h-��f���XfGsl��<�[`�9��e[�M|����=u��X���(z�)J�ΛZL!��ۇ��(F�����R��)�j�	�*?��b�"{q�$��2��3�>�V��bp��i��1���(3�97R�p�?|y�
8���̣�S�T`�Q�{�;�Ayb�ߩ��ӌ4������y8K �<΂~�Uq{$f�N=�P���<o���t�5���n̉�&|�ZV���,�0{�6��f~�L���qvJB!�����qEۃU���'5S��+U��c['5/�H��^G�R��s��j�#mx.β~����)^���K����[���9G5TxZ�<�c�[�(?�$����,@���=��Ȧ�������'���Ǐ����O��,֑�'�NV@>�F�4�櫙�R#m�:M��Z�ƴ��Ơ{r�+���(��D�q����E����Ȗ�
-Tyǩ��[�:����@
�87�J0�����y��D��QOc�_-:B0z>��.�H���B����'�C�69o0�B��L���4�OUl,�Dccإ�0�׃$��;D���	�(-� &�͓
��]��`��#D��B�H߭[���s�O�|�3��gPr���<�����9���Ttf�sj����=Ʋ�(��'r�]�<m"L�at1<8�Fg0A�Vky�f
�R�0�c���֬F_���~#Z�L�|'���%W%)(l�I��AYcP�}���z���c�X?��x����pn�-�¬kR�;9���JfGsk������*�.c=+�.<���Y,�hD��&y��W��O��Z�GNR}�g��xº�A�꾗�GN���h-z�b�����rDH�5o��{�)p��A�����xo�[��r���? �m;��2�ځS�uSƧ�	����|+�f)�O`PR`���8�nP:�Ʃ��8���=�G�s�F��(�(����Oɓ�f���Y2Ơ�%�d5º���0���C������j�!�&=��Pp�h��=2#�s#M�A��X�@ʄ�).c����Ah�l�v����9�7
U�1*�eD�F6bq�~M<��~�o��<��b_����>�U��V�V�c���PA��q���'�"��ϑ�NBW�R\R�Ѭ�0&AO+����a4�Z����1�I����|>��y��	�/%!.ݻ�[�J�����uL#j`�)/Z�S\�r��˶��;���X	a�Y�)X�ic5K� +�F5�LV5�F*���[M�!#$��m��k�Y�
Zc�F�<��+�$���n+�`�A�1u`��`0��R�xe�FR0����"�
l��z�Q���f����pk��h�cg�����H|��h��+�����J%p�����=A� ZS}��6�MX�1P�
���݉�+m�Z��� D��j�y�zf��q4Y��-W-�Zas��}�^��qL�8��nX㉱#=��g/�@aړ)��
��6�?�kی��j�����K�h�\)T��2Y�	X67 �N��LW鋞\�]-e��L�2eʔ)S�L�2eʔ�7������2�IEND�B`�PK%>�[*��U��images/flags16.pngnu�[����PNG


IHDR�
�MbKGD�������	pHYs��tIME�$ ��� IDATx��y|]e���~�s�MӍ��i���JYU\pԙq�����3t��.�@�A�U�"Ѝ�Ж�I�4�Mr�s��ǹ���[�W_��+����~��<��,'��!!!!!!!!!!!!!!!ۈ��P6sj͘Y�V�3g��+k��̠_lc�`����|0��&UT�,SY-oH�p��䮃��,�SU��=�)z�v}X���ěE�\VVVsZ"Q�r�vv�ԅ?oni)��'�$漥)A��cؠ�ki��o��9��b�����2>o��3�`!�7^�;�^���ܥ剭b��$fS��o|eEY,�gN;��\��3��� d�c��R�|��~���ػ
kS�ۨ�T�^��+W8J)/GF\�RJ�,�֠�Fg�(�X����P\�Ĭ�˯�j���<� *#8R"�H!�֢�k�"���GiyrWQ1OM$joX�|E�q���(8H|XZ�1X��f��J���{�����v�>�v���^���h��8R �@v��b,�Ɛ�5J��⫴<qOQ1�O��}�5_YQ����MM�p�qR[�����Xc�|�yt��1c%マ�Ons@�.�dE~nv�|�^Λw2�?��{w�}�	�ƞ�0�*7BǾ݃��hȵ%e���3�� i5h6�kPX�;1�V3KF1��FH��St��L���h�ݤ��Q&���;Q"2֐R9&����g9�i#F�����km�����;��-`b1�;w��ά����n
7�H�Ĭf硶�c�{�A����<4�65ƅ;R��� ,��SȾ�2V���(-��=+y��<�7�z���DK'��g�e2��L�כ^侭/������\}Հ��Ǝ�Ӈ���Fb�A�i/�4k�':q��p�q�&#�t����XK]�	�XN�|:��|��}��H���L�Z��Q�I�ӘmᎭ��i���,SW��3���tv��N�.�ú�`%)(�N�w�Oь�}��#xx�n[P����|��6f��t����	�a��4��d+�^�$�m>׬n��?���̳�бd<�Mk#�{|�;7�g����~=�}vэR�,�H�(<?K���E2H,��
<�����%^��bK}���L�i�ɴ�;8�iC �ϛ�Z2��4v�R����6Zؕ��y����/�ķ�O�[�D��c=܅󐳎����y�.<,������0�l�{�gI�<�[���9���-w-��q���#�'^<���`�1D�:�?�J3��K>~n3�̯��i����=��=8�	mز��fR��ށ��>)o|:�i?M�":���N�U��LjJ��l'օ�t��R-T�eH#8�n""]Z2m��%�N"�S�cI&�XkFyD���9��M�d���.��gޏ;o&�����9�k7��x�$�E)!����z7�H)�$'N(�n�K�Ĺ;ErU�bY]�hu0�R)ʧL��xtIjs
\xR����iw�?v(���N������[5-�W,a��TqK��T}���$UDT��H��4�9���v�P�o-ʖ����F��;�x|ן�Sm�1�뵃S�@������x�.�{� �U�i�YR~��������oB!p���o���e�O�����f��
�cP%�in�V�������3��e�i�p���s�����v�y��N��������ͤ��u����c_�:;�3��z�8��3ϻ}�<h�Ά�i��|�1�r&1�ɟ=͒�K�p|��[�.qO�V����	��`�FY�1����L5��mk�7%�IO�˧��BY��J1��ג�a�L�Iz�Y�y���ؘ��s
�x���RO��3��������S*�}I%'6������v�`?�x�~���u���͐�9�t?��ֆI��y:J(&���}��򵫟F)=h���R���@H
��"�$#�;[��ڒc�Z�#hϥh�%�n!�����2������jC�;��1�a����V�|(�i'+�#���X�K>8i���q�rq'ץ��F���)�z��n=e��\��=���=�
H҇Z'��NEy��,:�K罝g:ȿ?�"{���(s
h�Ƣ�F
��FY,k�qp]���P �`��cE0�`-V�V(_cF�d7 Fi������zh;;x�y;�˿0�L)��N|-��E
'8q��bX��`��WcD�ISx�,������C��W-<m0֠�B+�(aS�X�rݙ�l�Q�?n��od��u\l���_�2����%\��������Q$�'����5g]��)|�s�1=ķ�,ip�W�H�(�ui��D��"�B1��(�%�ơ��ͽ!�r92�V�,c�}Kα�XKT9�X�ڹ�3A��N��ԝ�}��`����D�
��݈�H�׀�A�D�����Ǎale�}��9�V��зm�ͤ|���{Ҭܓ����Y�«{G��(BT��엁$���+Øa�Rc��������������������������������������������-�d���'�,�<�Zfs�lg��?��_�m�(�yw�R�iSj�'W�(��l��6[�m.*f�95��~Z��{��9{�ʣް�^�7���и���e��VsڲeՎx��+k�oh���r��7v̫��F���qUUe������o˜��k���'ը���g{��068k��ֲ�ᑅeKOYR�ߋ��p��;~<�9���m %B"�.���nyث�����J��M�]�o_]�[Cy�����H'�jbjc0��kM���g���׊�;�����i�7ϚG��;k9sAA�}A��X�幭��
4�y�8a�ҥ�7�pÊH$��8�JR�ٶm7��'�s�ʕ�w�0��%s�� 2��3�<��re���p�y����ϵ__q�ӂ��&�J� I���1_[�9?�߯�e�##˼LV��)D:
͇cǐZ�fؙT�b$K�juvȺ�fڽ\Wue�z�����oP,1鲳~�1[ZS��9�#Oo��<Nո�����O�Ny��f�H����XtL����u��}��b�!�N�ͬ�t����=�w��O{��g�b2/k�xQ��{R��,��7�<����:��
C̵���<h;����چV
ۮ��<��s�$�:;K�wԵ�`�`�?>k�v�G<�'��sb�L�u'ujSR<!��P'u���2����s����i|���$jAKJg��,$]W�f&�X�\PY���J�>�c�pN��Ǹ��G�81�;O��]O6��љQ�fR�QCVm��u��N4
�(:�Dg2�Ϥ��K&��:����u�t���:�M��n�-�pg-ٜ��O�ޙ���w�6qE��{R�˕���ױ�b]�[6��[k^��KE����X��{i���^D[��]�G���ֹ=�mED&�sfr���nd��e��t&U���<l<��d�'��Τ��%��d:�u�3�g�{9�NKAn|���Y�D�6��wd�"V�J��/�����H��'��~��+�vLfӅ$IXf28]ҍa�A�ne�H�������Z��S�O��O �*��(O��w��g��ͼ���O[�UC�s@�jc�tvb��7�J���> ��ʁu��j�-���X!x5���ΞNz�\��=�}���iS�m�R�І�,�kA��11��~95��w�˜XcmmMX{l�1�7������~�P�1̪k�bo��5���:�06��*޴��!��`� �B��D0��I��A�����v���n{�!��j&�}46!��w���5���_B�B �����c%wl��(̦�9�����%
m-����~{��V���b6�,����ow2&��=J���5'���[��(�zyk�ў*:I�{N��3ΰ_�,E�I�1�r_v&�l�-���i��.T�}�v'���"�����r�D�����Xs�a*P�	)y=�^�̤b�g�/<��z��R��PJ�P�W�m-����Ɔv�����>w�hUzL�T��0=��UJ�~���f�G��߿��6��'%�c��8���w�;̹fx݀$5J���W
�lGZH�D���[n��`P�Kpu�Z��G:�\��Sc�^�T�b���a�Z�8�+q�@��5�=���8o?��Y|�f����g�8x��;��A:��L�am�8X�5�����l
-�"��������o������GP
�P+�XA����
HR)��>����F�r,��v��zY�X�8DuW���j�.	�"�*��Y�
*/Z��q7�y0k@��R�I���V>���l����[7P�� ,����p�����W��YFD�]�H�ڋ�9�zk8JX�|��c*�E���[X�ه8��CE��.��=�"Lf3	��6�7ѷ!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!������])�(s�
\E��9n��Y�'X���_k!P��k�;w��P��2�|��ʊ���WTK��<�+gL����ݶ�ᰥZZe�;�W��D".���R�
�8�c>c�w��`Fk���dؿ�R`��6��ckN3�o;��������e�f-�����:��U�eK+'ԜZ9��A;����|�_;�!]ן��^T�c+k�����ʶ�H}[(�{��e�Ǐ��Η���Q>��rD$�H"3��A�5X�й,Ji6>|?��i<l�֞=o��潅iӦ0eJ�;��;;X��c-���{j����3�ֲsϞ��L�nj��Η����}"��)D���P�o�
�lZ������(a�.�\��]����y�2���/.,8e|U�W^�"�4Ny�Sp�����m�_��X�0�@��G���EŜ7n|��/]�B��hy9"�"e ����5�P�J+^z���;��,�l���z"�"���A�	�/�LN`���]`Q�{��F1t��#Gg���>w<ӦUp��l���޽)�"����^���vt�[�|[�����vv�w��E'r0QE���UnK׿�SE�t��Ud;��=%��n�[��g-⭋f���9�2��v����V��9Y���+�kƂ���v�+:f��M�� �F������h��]���6�z���y�G�Y>&%�'���S�N2��0eS%Ն'�9�LQ��>�r9�״w�ɒ�����S������+t��{h~�	̞�"�Xr�A�R=IZb
<���vi��s���|꽧;��*,ЍM�ra��{���Ť��$HCi�
�44A6�Q\�RC��I��,�5���2x�\2�$2D�{A����-EX&����w��w��`�$z�וdI�����\��ά��jeee�ê�F�~����:oh��&�v[w�x�ǔ���쳋�l�Ê����s[p]��j��:r�$5%�@�rD���{�4�t����4���K8u�
}�v�m��y�C�;X���v����:��y�L�!r��o��P�آ�7粕ey˄�x����pLV�O���E�C�ؑ��狾9��(�PJ�8�rFkM����_�	BP��w���s})	�ޙ�
�.��/\��̧�s����=��y��߽�����]mr�����<э��s�Xߎ��9PX����^'{w�!�Z_���@U��΅�z��q�!N��`��0�nx���ߺ�H4hv���=j&{LO�!�dÞ�mYC��P)��{w���ZN$h�,�4��^&=t[��۷<k���Rt����ʄ����D��p�w<��AO�yc�ln*:��7��=k�Ƃ�N�bf6�ط{��{�y(N�W��XN���"���|~��h�%L�ytAOs�lz��~�*VD
.�����-%���?؊�{1�L���fR��w���?|���[k)E�l�<t�F��B<Z����t	��]Mt<�
B����ޥ1����KҮ��Dù����T�P��6&��Q$�m-J�6��RSϦ�>��7��-,�(�4BJN���u/c�x���K:�� ���CnG�=�RC�IK<���BH	Ҏ�MZ�G�0��f���n�����N�`�kM�9��.#���)�[Z5�Q�9k-�
Ll�șl Isu ,�Y8��~��E)�6!J;��,k��E�}Ȉ�k��$Z�[�~ׄQ��4O��F$Z��Ԗ��
��@����vq2��	MDJd\�����E�@B7Ԅ8 I7B�'"�c��l��r�q8|�|,�9ץ�q�FӜ�z�ޯ��7�5��Ӛ�R�|���F\���F�L�8������C�ըx�ha�t�������!%b�q�#��$��)]���$",��DZZ���
@.�8�¢\A$/:I]�!B��X+�C�0�s���
�
���+��	QY&�,;��u�I"k��ߊT+�YṬ�&�f�b�KpзV�wɀ4��j�,YR��r*�ݩ�G~�ķV^s�a���X\����$�ϒ�[(��>��Ż��j7���U��l�z�a�Z�v�i�pQ1��vZ�i˖U;�����;ٴ��+.Xү�GFXVv̼��1�J�Ap�Y�\�=�nm�)�~�mGQ1���5,\T=���"���y�[W��Cj����K.�d�o|"2@��A�Pj������+�*8����k���u(��D�#A�@�b-Aѝ_[��F)�{��@˚���j��)��s��W��-����ALY�i�B1_[�9���~-;)*�K���p�
+"���f�>�nޏ��/��&i�²Ĕ��˿z�
�
��Q����}ˀ��>�&��W��{�������+ﺧv��\�0�1῏� �\��ϲr��94XI�l˷qO�=D�(�V��5�U{W��m�ߗ$�@~����Μ�k���; G!b�����<�,:����$�'.X��o$y|m#;WHh���������Rk��Xk9��Κ���g�h�.,k��Ⱥ��9�=���Vh%(�%�oo�1�Y	<М�%�����R�g�������U�3��,,��ɗ�����QG]�2C��f��P��.��:��r?��N�A)�"�qg��qb�w�<���l�?�3�}��FQj|���C���L�_1sĄe�Z�X�};H,���Ġļ�fw�u���F�>�bC��m9~�e���%�ĤSN��
y�'g2�yH!QZ
��m~x%�j˃d~�z����%�K��ӹ=�mED&�sfr���nd��=�U��f�ٕ$������4��%�����$1��邼�lqJ3^��Ilh��p2��ٝ_�1��� �L����o�e��1�d.xqҤ��iGC2�<�$��BWk-�O�w<�N?�p��/�<q
�]>��6��>�VQ��c�#��J�O{����W�4�,(�lٲ���M�RwϤJ
\)�ΎB��o{��%�ʅࡷ�o�%����i�ؗim��g�ő��$]�ڭ�����G��o��N��."��*��f�%K�p�wSC6g�LA��Q�`<6�̓\y�O��H����X^d;/?�d����H$H)��o�rӯ��`ǽ�:p	6�|>ϖ-[8�;��
����b&�\nಘ;�ԭ\���2G�KgVr��J~��N~���\�T�y�
��K�N�ϙ=�9d�L�S�����t�E|�S�����y��{�MRkL�ܗ��([�u�i��AZn��llRCYK)�]1�R����||?pj�m��z���>��}����^O�^O;�)I�69k�pr\%$s�nzv/?}q?���HRMq������u
��ƒ#�G�u?���{�����J;�m��_�a����bX��;Ğ�(��NS��zp��
�2�x-o�
�S�<|趍ܾl�I��t�s���`����9
����X\TL݉�|M���w���,V�A��Zy�6h�P�\�\ IDAT����v:�`�v;R���I�+"8�|֎F�%iJ�#rp�m��ח��?�o��o�כ9��8�孇1��⯊#%���'��n ,"�N����D��]v����#::p
ڰ���0�@9.Q7"�@;ۚb��jwA"v��q]�Ỡ��{�c�s�5�X�%	˺̏D��-��'y�X1���,��<"1CBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB�~2��T�O�w�I'A�VYYM"��.�---E�<�&�8��_~2�77�iS�W�^ZZZ�+NX6��洹U�N�q5���BwQ�͏�,�����$���e�Q|E/1۾��)5�YS�=��b��c�]j�}-�ls@�S�V�$�5�8#��J����˗��}���r��(]7������}��l ��^ZZ[��y\����-�^�.֬9�ڵ�R �(�,�|C6�b>OK���	��T���W���K ��	R,i�k4���mk��?�Y\;�ͭ]~��+|_P^���^b6�K̖�Q����Ҳ���b?�v�|m���<'*]���K\7m��F��}���<�y@�I�%�R;�ph��L���/�|���c���8���?���-M���*���hoo���b1v��YB̔��K�ޮy؁֬�����ȥ��5�c�<��.*�g]W��,�.u�	פ���4����a�mYw0E{�)LF�v5Ģ�sw�b��T��k?D�����u����%������t[g�1��O��Ο�SR��	��?2k&��{��\^WWwX����YR�������w��1��.�\��~��.�c��^��/��t6a#`��ro������5��D�]P�/�ЙRPb�}]G+�-,�bpIZg>��S
��pvN��:�Λ��x&�ם��>paw�m)��Ve2�Y�(ďX�z��ء�'뽭�<E&�
Y�4xv�E賿�)+�~���{;8�rb1��V�x�j=�pv�q3Y?xעgO�ԯ�����s/�o;m�I��rX#��{,?2^�Wך!CL�իQ�����A
�7�|�:%f˖�uP���1�^���Wo�W~��֭�?�٫�����O/���/��|��pι�}c(�PJ��s�ڕd˖f�N�`ٲc\_�"ّâ����y���,���d{��M)�@�%�Ma]�=�&IKfS݉)�a(�π$�'�D����R����M7�98A`_�k��dIp�/=�o�G� �ŮI����-��4��/�C$%�Ͳ`�8>�A�%S\�s}.�y{�n/z�1d�Y�}��TU��+;V���u9��|Q�p��:_���Hz��7&��gi7��َ_�[�o��������Dla&L�V��$���L�
=�L�h�S�B����i�q�z>�j,]
��\�OV3�G���-[�NR;�{=T��Bh�E{�w���Z!�����Q�HZ+J1N����x�g�@t��J�[Ru��QP��B��I�/���$���
d��L�x��
��CK�|�w���Y�	��ƛoE+MÏna�|��>hݝ�
?���?�%s�<R�<L�
�
���(�@�ҤZ�65��k�BH�~',��Z��5��WSZ!�^m�vӚ���%iZ)+r�����,,�� ��qp�*8X�*=��uȃS�?}k>{E�]P^�$*0��S�t1�l�4y�he��F\$N�M~/A�5Xk0F�+�1��
�9��������8�H�{��=����c,Jir����bſ�����h�t$��H��9QP��Ơ�
,�V�xch|Gq]����%��Pk��e��)�B I�׍�H9�L��1(���QΤ}�Z�Ez׮���hm����T����U�T�q\�J�ܮg�}���3��:��(�h�
@x�����ʯ�)(F~�`�F��]��!�.C�BG+��7���6��"81E�o�8쾍�4�"QP@��[i\�rd f+�)_�uId"�@�������Z�ڠb�AuM(,c�}�																																											9Z���GJXv4D^w^sM�|+�G�z�����V^s�a�\TQY�xLeuW��ȥ�=
�����aU�kU����%'͛��-Au��Ʀ�z�nO'ci��ߠ�l�$-UXv4D^��ve폮�\�$O�����!ܡ�Gr�%r��7��ڮ;�c*k��•+����#".B:�ͤ IL�4� f[���հ�8yX��˯��
_Cy"Fͩ3X��)�yZ-k7D�1�kM6��G_��ͧ�����{�?m�i1
�Up��\��<?�덆�!򲎐cߝ��u��~���*α��}��c/�I矄T�3ז�����~�Bt螵@G#$w�)����iY��A{Z��̛QɌ��;����~��{�������Å�r����,�y���3��y��s�U�a�����E^J��&Pr���BF��]1�TYrM͔R!f���Fb���a�cK���k�����
�
*lsyEg:? j���A_�����,;a܀$-UXv4D^ʇ��&�˖ܣ���4?!�T������%�\�����Q�=ϣu�z8�Ha��d�V�G�W�\�~�|E&��I1C�F�_VX6�T�Z���F�5fyb]_�|V�lw$�ZGC��iˎ�b}�^+�5�뒘;����� ��
̂G��#]_J;?<G�_�{���G���;��m�90��5�Ƹ|��/,,D�e-Lk�[�q�rr�=��ҥZGC�b����΀3�˰�i��#�жmל���fC�n���D��4�vߢ<��;w�u1�[�S�D�)9c�T�7���Ng�k
}�Z�R��L	��������(�p{�v�x�N���,�`��0Z�A5*��h�����g[��~{SJ(�h�c,)۳?�g9~���'��MM{��؈�y�4������c�8Į_��Q��|飧p~a%xa�n�{����'��+i������n�s ��k��]`�����W��-���]dٟ�<�l�� �D�]۝�f@�1��%�)����k�H"��f��4H�(L(���j���O��4Y�`�<�²E�˩y�T�H�qb�e��I�1�~��wn+�;
m��g��B6ai�J~/m�{в鏂d��ЖL�����e��KNh��cS8��$�m���B�np���@\G��;�����T�*�R����e'��ŧ	"����C.�]���9�;P\����+k`�jA&
��Z�y˳?����
{,���Kȗ�D^]���wӎF�5��	'�.hI�����|�:l��'&6��(T<VB�PX�c����������������������������������������������À��?*R���ks&W�v� ��w�7���҅�����R\�ٓj���\x��z��B��ڿ���^���(���x�w��5K�P�����b�n@��Q�j͞T��꯬�<Z�N������>��²����Z��9kR��ׂT���K\Ww�2�V�\_)^y�Q~�gGqb�� �;�y�+k/�d�
X���Z�����g��ʕb�n�W�V�C�u���@����+T��!F�ag�1��1;6o	�b-�KrϾ�cz�/��6{�R�):7�N|�1�͙�'Q�1���c��$t/>FÒ!s�,���R-u��@�2�;�\g��Lw�Z�N]gs/���6� ��|cJlg�t]�'���?Qw�o0J#�`��?ʄ���dzeKh�ђ�>C0�ST6�cB�'iP��Fe�֎��^�۹j��Q_����u�S[�)%a���T���7ކ�{j��x�y�?��#"�;Z�y���>I-��a���w^Is��$s)�ݾ�W���q��%�� ��7�`1�=3L���_X��:��Z\���q�/������xj��!d�e����L�ַH$#�@�f�|>O��-p���5�X꓇ "��\pE[}�rA^�oJ��ۚ ��!��j<���o-���t���	�����!‘L����rGD�vT����aoL��F-,�Q�
˂C��rX���2X��y$T�L�#�C�T��3{S�ӿo��a�|��+o�
!%���Y&]va���Ծ=Z�y$��Ե�N��?�+%a|�@;���K��{R�ֶT�kA�%VS+՝��ă�`};�#�Q�d;��=&]r6S>vA�a�H��QϿx�ޤ�Xk��0�
\P~ɛ�@p%q��#���d7�5��Ҙ������jI9t�h�F+�o��0����,���>����ۣ5��$u�d���D"\�E1
a�O$)�MD�D� ���H
�u0��Q"1E��-"��H�pt`c��|�@�w�x��v��=1�=�I
�˜1CBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB�~2��lNM"1��Go5�EP���x(�����횷�9�r��4�3�`�(I�G<����R����"p�Y�/�����k4̫�P3o���R\>�F�K)d�G�,R�v˜��N����(DC�gWmUA@w�1�8%sj�/���/(/��JG e�$H�o�f}���5����d�W:�&���(�L2v�ؿI���}]�>W��b�,��o�bI�l�[2����#x���%�t��o����ʆ���O�5挟P{�U��
��Dq��)Rv��کr9|�X���ytWqb������/�p�‰�#d�d𧵀k�VaU_)���n��a@�I�ښ�uu)��ͨ�Xv�<4�덆.�WGGw�q���\~���b10�$���裏r�.��&M��7'�2�Ȧ[rx�W��l-
�E�<�"=I���CͿtqb�������;_�cf��e��	�N#��zXץyo	b�l�T��8�#��d-��H��4�x/��Zۭe��?�q��%�k��:�����n:
��/���t��S��D����3��t�.�fɒ%�ڵ����\u�U%Ն?�J.3	�Np3V�)#ٙ��ц'�/��}E��X�.���9pu�I�{�r/I�@)�s�a�u9WG�	�����X���Z�MMD�DG�yS�P��@g�1��:�Ma�O
Y�>�"��)x����O8��-�͟O��A'���g:��0q�z�O<�W_}����[��}����koP��9̘9�u�袋�F�%ֆ[2�<�[�0{�Dn��y��M�rߚ~_��=��
-��d^w�n� "�^q��T���"I<��|���Y*�;𲪄V��́��I*�Rzv��*�|a*��q{�t#�
/�4xytI�%�k@|�<�]qꗿĝ77�b�����=� X�/D�I��bڴi\y�D�e<��72s�.l<�Ӕ�W��?�&���'��b��Ɏt����a�ı��U�<�sO�·_�����g�V����W���/���R�i���~(�M�x�_,.��/��߽���2��X��y�n�ȵ�[��Lwbɰ��^��v�����Y_�k�UW�c>�i��3���A̛G.�C������� �J&�<��S���ogO�;�����8��:�����g��L�4�$�X��A�X,���{��S<��6�aö��-Ep�b4��o�C���OXR��	3�F�N	N��ǁ�$-�$�^w0-�6;��nyc;�n��x4����{o[pdm߳��v���Y�i/�#�ݾ~�6�c2<>����P�;���<�Ԗ-���c<����p��(�����Q�.�O�}�����I&�|�ӟfقc���?�%g�ȇ/<�m۶�n�:n��V�ZU�T��y>VXD���?�[~��m��)m�o=(y��Sgitʒ��O�|��)_�hX/ٳF2y���.��L=�������w����r�'��&ۊOҔ���Ą�r1-�1�ّ]�>��<��"�$�SM��d�]Y�!Vb�£�A�&�'�t[�ne�ƍtvv2oFw}�cD#.�T����L�2��~�TTT�tp:?��?7��Ld��}���=kٕK�򢀽�b*�[`xc� �.����5}���k�4��%/J<�(���b�<�x��R)A�{��Ō����R�=�H!8_t�1��R�4Z+�0Ż�
��r�)�0u�T\�Ek�#]��/�˼��K��֒�fKy	�F��u�N�١�E[�U'V�V(_cF1�C�c1e�T�esk��I�B`=�)K�1,\lغ<+���I�+ͪ��F����S���\km ��eti+#��F	�t�f��bj�Pj��4�$��@�Pa���;a��8�hT�T�Tq�>R�SO=!�����˖�k׮�E^�KS�%"%ab�݃`\�r\�n<���̤�ԚC���m��
m��!xn#��b�m
~��z�p�r�!_BƸ�vG�
�F!�� ӵ'U�$VV��-��u[�5e�����".QQ6�5��,���3$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$�h1�'�-.�9mY�ڑ���]=�{/�B~g�r<T��$�����R�બjAMb‚@�6Hu����`��Mn߷�$I�‰Fp��������w�uż�~wQ1O>vZ�5��{S���#��_3��Kyz�!N����+�Z�B�Z���dp��xu͒�T���*F�vҘ�5'�[�
��g���u��٫oo�;0��l^K����._Q>��q�i�u���*? ɼj�vi�1�9�':'K�I��e���Z��*1a^��V��<%�U(R�'3۰ƀ�X��9�����\�$-�x�1���*�����K1
Vit6�������)*f��Sj���Ϭ�2g�㏧y��L������ȋ��&хǪq1��w2�G���fq2���������]��0�-P>��h��G�kX�n�툱�3笢I���j���/�p�O$Q��Dx��t���>�9��0�Y��l|�An��YX�=�*�~VG��v���S����!>:��q��
��u1Z���FCk2+����6�X���g�ʾ�8�p�m�����#�k��.�����Lɦ7wq�����f��4�qӏ�|j�~3�EG#�� ,;]��hk�Cud_z�Ժu��'#
���6Tu_;7�%2���d���ep$��lyi�k?~5\~M�g�-:f��M��ɤ0Q�Y��e�
���W�w�P:�}�(�e��:8`I?�>������#6�:	��xu��Ii�ᖺ�4�?�5ⲙ���2c_�}�5�擸�z�,��z�G�n���}�#�F���1�h<ާDZ�R�^��)�����9t�}dp�w��3����_�����'����R�`$��S���`��L�8��]2�@�J�H�a&�a�eh���?�9���?C�w�:
��63���<���"�`�(?ǁ���{�Á5�ߌ;�I��R5��H��>I���{R�-)M�>�I�[����2�f��1���z��_��g��ۻ���aLi�;�����'h�CY��Di2��ȫ���:��^c1v�I:�0�I���4�����C|L�
t��cσ�4p����h>Q|��yY<��3�/���\�Uw���͓��yN���?{o'WU'�?��{k�Nwg#		I 	�Iؑe�.ut\�QpF�/n������EeA
 k�װe!�콥����Y�?nu�+ݝ�T�����t��R�:�~�9瞪�SX�RTM��<U^Ģ$m�Sp�Q�*=����A�S�m����Y�������H���T&�c/6q��Kwo���s��xeK;==�ʆ�x|�b��%�?I-(Ճ���.��rI��+5��8؏Z��{�n�m�l�ݐ8:�y+$1Zn�N���VA?~h���'u�"��>��ΞZ��,���t1
��W�k�$i"��h�ȕ^��֒+� IDAT5|kQ$̳��y�U{@F���՟��������	$i6�M�
�W>��,~v),��S�k�jcɻM��|�q��=9��ii�Y���AI�{
��
Ĭ��I
������_'l�M �`��!�ђ�]���۲��k�&&�Q���Fӓl/�j/JҔR��ॹ*��GRk���F;���@~0N]t�mh�Wd��I���o�����/�(l�D������cK �Շ�&վ������ϴ�8�0�B�vf�&v}^`�lEk��S��]���p�\E�����r9z7o�w����T
SL�c��t�>�5��}�Aj��}B�!��fN��B~q�����&8��<v�d��{��u�D�2���ЌR%};�'\A�ÔOI��]Z�p(tJH@d� �ؒ];>c��#��?*���p��ly��o�I���"���rH��~��!����\��H�|��Z�<pd��ˊR-_����	��)��^��[6�!��*v>�>X��
GR��}сW���	��bxSeӿ?eȥ����K"–�Zl,�/��}����u�tQO��
�?�EE��2n��h4]�pD����3OU���e�GӻlY��u��>�hj������᚟�s�$m��{U��\�2'�u�w�<�%�ep�	>��xb��4�M�D�!�hT,v�;���N���\
\�=�3���ui�Fp��2�M��ۣuз�ė<G��
�M(�
c��																																											�{1���zk��y��\�y�]e	�N�_b�e�	8s�pK��c�&`�n�?��V����|�,�W��	�us&.Cre�G�u��b����t��R�@�u�ρ��`t���-O7uB}bڄe��Tb�i����Zx[`l�ǿۻ�"��8H)������D��[�x�cdaٿ~����5��pz�1�:��o��^z�e	��;n�O.���S�*�s���X׊��/-=��U0�_Xfry�Rl��>��zY"����_p�6(�ID�x��A��D`�k1֠�&��P�����g�[ʊyܒ���?np���j���Ϙ
Ռ1��gÆ
����ʓ�M��|�7������X����H����,W��A��R����տ���wT$��<�q���T$�2(�4c
����(�X��*:^�YXVEA���'x�ճy���gE}
�X�Oʑ2P�)�*t�Hղ��`���xv�|��zy]ɥg,(�%�cw�1�3��5�F�f2HʾB<km҈b�b�u�վ��v��/�����m���R>�d�옝����FO!R �e|ԧ&j�ٙ#��Tyi�EE<���
�/�ָ����5;�����(�J��2ʶ���w���F+�i{W������Ǘ��VrJ�$��|���)ݺ#����$S�'���Tz��Pi
����9~�B�����8�+|k�Z<�Wy\��A��J^.+���+�Ƞ�x�֢�.^4���Նu�Q�mu>�'p���I���~ Щ
��Y�o6Hf��I:�n{�����*V�@�ʥH��7(IET0��5�tY]��|�;k/_��#?3�փ������&@�rx���}2�@�a|�BfME�c�fR����`}�'���#b1�����X_(�9:•��쓧�¸XF%��*p�VB���JA��9gL��O�d���IMfV�q�y�me��>�A�.S�I���S��ǯ��a���L;�+��d�3b��d��s���|V�\�%U�x����ǭ?<u�jFA&[�H����ܴ�ݸ�$K�{�eɯ�Qx�Xh'{��c��o�y�(�)d��f
��#�8���K��b�68�ũd����S@J��}X�������t/֑�}z']{��~�7�/�&�A���&�_�=�O���q�S�A�0�|���+x|����j������گfڧ���\5��4���N���
�l~�XHA{[�^�6�zv�Dp��Y���v�1�7��b�>Lו��P�l:
�j��!P[CaL5��3ȥ� D�����(���h�=F�/)Ĉ��ŷ���֊�ަ�6p%�<O��ƛ�4�dS;P�&�-�1!���`��/�)%M�MA�`k�V��:65o�����c&��3d��a��Iu��c�^��ػ�w�K���{|�|e�L�l�5YV�^�F��B�����������:�o4��!��Uv�ܫ���ߒu���b�Zk��������5������YѲ�/p����e

~k%�<����mLy�:��룲�Jbj3�<lT!����>k��^��V���Wɫ<�6r�_.+ޜ�6I���`}iL�.#y�{��_�'�}Sj�!��PɚԂR#
 q���A7����ik*r�6m�c�v⎃4&pAi
�&�q�uA)����H�r%��
#��c��{x$iZ��#Y�z��'v}�"�!�ć�З���uSᚔR�����ں�������3�Բ�+���j;�'k-��f�M�d����q������
���J��Ac���I�$�0�������݇J�aFk�|WJ\��k�>��u�w2���²�Rh�+;yZ���9H��D^�%i_iL�Ij�FJ��J�L�LW�t��T/&��~1�Q��2����'���Y
F���p���AI��`q�MCG���|�x��–�
��t]=�',��xX?ؒ��ކ*�J�LFX�+�b��c:�Kk"�'NqWT�
��h!��q�#"JA�<1����$�48V!�B��֣`�EE/�����B[�>�_�����"3���'+��epI�-��1Z p��c"&��*R���
��T+���3$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$��Šw���ΨO��X��[	>��%��}��a
�F%M(�=V�\YV��j����-sz�B �
�y㞝�0�{Ĝp�3�,C�ҍ�ˬ��1��adaYb���+�Ϸ|U�(��4�H��k�υ�&;Pp5���}�͛7���ˊ���n��_���Q
/Q��\��'�F��aVit.�j���nܻ�����f,^���Q��%uq���!����olP���
J�<��z6?v��²��ll�'���ͻ6
z"j}��%;Pp5}��tPWV�|W��7��Rh!0Ӫ�G��kTcwk�k�b�y����΁1��c
�w���$��_O����I�e[O��6�JFш+(�n���}=C��I4��`�S9�����/�?l�W�������5(��)�����:��BJ����+�7��ٛn���K�}�p�݈�b+>{��9�1�],<�v���{��V}ۖ, \��$I'�D��V(���^��L���)��`���=��6y�u�Y�m������3ϔ_��`�,��A�ЯO�ݵ���V��I�k���kʊy�_�`�e�J�?F�,b��<	�f��Ճ�x����'�`�O�:�V���?MSw�7��aև��yf͋]��F$�AglB��ui�=�8�Z�{3X�'�*��=��ӧ��a���[a��Q	�,B�r��%�&3 \���-F�م<stuѳ�kp �B�Gw*�?��;�T�Rp�	������0���;��J��e��/�ao7ݩ��}k�a�$3�+R�8�ϭb����N��nO�5;�t��XV�P������/�e��������V4.f-�n�o<<�(�V�F��=�XvTC˾N����M���Q<��L6�ږ8` �X���K�54�u#d��3�շ�b�`z���'M���gpL��u%1�{���$ݽ���=ւ�+�i�a_W����^nؗb�Qq>xr-{:
��dg�s4���j�IZ�\���yRE��~�U%I��/l'n-�(D^�Z�F2e'�{޺��}�<��8����/��w��=��.g�
�ӡ1�|>�ƍy�9ז�}�hXwq!p�	R��˦w�4�{�:.��x����es����������� �(%iyc؜��#���B!��qZ���U�̛�UIT�+f���W:\	�EW�OC��&����Z�����V�BT.z�T�Usڧ����Y����+���
��Bp��{9�-�c�{�M�J&u;`�TX60�hV��#���L�&����xiGf�>���/i�LR�ґ����H��p3c1Qs��aV�1�Rb]�8 ���BX��1��:�̤9P������-�b��?d����+>�v*������_��OX f3h��G!*�IIL)eз��BR�Y��1+9�X��
!}\�"H��KncPŸ�^�z�C��"D�v��
���?��=EyX����a�(�*��(�bح/cL�z�WQ;�"���13܄	FJ��K�y������%xqB1�Hj�1=<Y~����V��Rp��~��11�O,:t߆²0�1CBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB�^zg�ª���5�$}"/q�TQXV����=e	���x}"�XVN:::ʋ9���Y� (P;�&�;�	��^=yPK�oA��u�'�5�����9B E�3ap�ھ����W��VV̋o���c)�o�W\v�%�r�%�5�K��,��ѩ>��7�4�,,�_]��_��A�>^U���.k�Z��X�P�,Ji^��/ܾooY��D"�|Ŋ
��SUUE$��'��/��3�fyتU����,/�c����w|U�(�f�⌣v��_|sӂ1_�y?����t��<yجq˯��
��8�B� � [�,f��"G���}��g�c�o��қ/]^󝚆y�y,H,�֩ŕ�A.�`��?�K�O�C������/~��)��<p�Q<��>�Bg�(�Yw�]���4��,��-�����$yFY��޾c��
����������r����SWWGj�^
����ֶ_R�Fٶm[�1{Ӳ�����!�݊�{�'7���Q���Wv�B�G��>\��
1�o�0���v�����eM�ְfT���1K�j�2cکS��h�R8Bt��$P���&X���²��SL�ԫ�"6����xmd�雒
>t��
_(����XRӞL&Y�d	�2�g��yn�����d�k�Ǝ$Vz �|���Lf�C�4��&��bTӽQ�"������>A��/l�GNm���pN�1#�]v�Xl�NT�P�j�X��U���ւ�3i�������q�ǔ��l�Lܨ�*�\�;�<~�ӟ��K��Yv~���;�d�u�U%�*
���+Կ��eF�d��� $?�-�3y���̑d眃~�1�8p�v��e��*�Q����P��{�(����0���Sq�>�?W�%���E<��f�a�n�+lK߈��ލt.��g�z�w���U��e_{5�?�"[�1��9BogL�/}l@������Y��KD�-Yh?,:�(�<�����,1��߸�옟X�<���4��)��_@��eC�h��;z#o}��$��J)g�~f��n6nlgʔjN:i��+RKu5�-��Sg���w~���@:���һ��� "����@6ل�������_'��E�t/v~o\S��ey�
f��q�Qs�9�<9@3i�n�6P5fug�= ��ך	K��M7���
's�/?N+_:�q�t����ud ��t5��*+�6�l6��d�7�FRS#������|�?�I�y��Lm}��?�-J�D����I*�8K��`L��cY:�I�
в��HF�E�Ar��]����i;ֱ�挱U��v�B�_��?-aА��Tԑ���u�;N��@�C&Eӯh��㫷��5�B����J�Tc��9<Z€ҥ���
�Z3��h [V̏�g1��g�ep#��Kdp7���m�T��	Ą 0�� CP��������	"��� f�j���}�����
Vۊ/x_k@#�Ei�1�$Uz�
���[�(��@/�['���6>�m�c|xK��}��P>LbT#)E���n�EJ'�#=�6e�
�e�Bil�T��)%���H)$���u{�6�!p2)����/=��4J#��$���$��Nq�>��R��T�J�v:O��s�K&�x�[k�ƠL��VP9��g�#��;��#���9��E�$�/�]�W4���%��z��"�R�h��l�q�=ADI(s��\���@h���.*�t�@�X�:DLU�H�Ӧ�-��̲�)�eR�%�ӱK�hT,v��}��xD�qD^ dqWOء/4+qmGy8Q�+H��W���<ZbQ��U��l��r$ׁ����	�Za���!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!�2��]{�
�!,��lڼ����Q[;�|>G�P�
��ǜ���E�v�1f|*�/���w�}��B0>�Ɏ�إ����B����/�������.����#Os�-w0a�8.��ys���V��_ZUsH������5�)I[T�H,Z}���k�::�PV�%S�ԟ��w/۱/���Jb~`z���ɼ���?�ı1N�w�2���w_��U�H�ن�����hԷXY�O�?�������n~�fb�+��:F���@$��~�k����������Z��ϐ��**_���5�/�—\_�V%�W�%i���ds�J��λ����LI���+V������<"���$i�}K6�Q�gժW�輭����:j�7��o�t�y�m�y�� �|fN���i<�n���Qޞ�55�0�����<z����6l�����i-�ܹcy��̙S˄m�8U���c�Y|�ؼj+˔��x�	˯����p��N
��D����h�5��'[(
�YENj�#ˬ	*2�V��1n��v�ؾ��o=OZ��D=sXף��.Yhj�$р�JY�1��J�⩒+�*!�F%���ll����T��<�F��mۺˎyWKB�=n)��|;��%z�|n~p;��|2�����=-)�T��M{�=�D6�	|���*hgZ>�L�,D"��_�a۶��l�����S��,�}�t[��zyb6ߗZk\��Z˚k�w��uQF��Fe�mMC���(�5�xU����|嫗1������N�+�������/�	�<�5m��f�^^W(�Q����W_�%����~������tw��*U~1s��y���4�Y&��]����M�w��y|s��ذ�}qO�܌�󏌱�B�ሆnyd�=�"{Z+���{�N;mg�y$�<���O����O7�{�E��/^�<�p��
��d6ٟ�3�f��{/�j�bU�\��I�~Mj�AHxm�v���
s�4z�9��&Ev�"
?Җ�^�4�`P뼱��O�����r�Tg��qp�'��W�{�����f�h�_7��RAO��(�u]����LE'/��Y�Z;��EC�%��o8����\���'`�\ƞ{.�?��k��FWdM�����\z��u�.��8.�d
g�5��?�9���� I{�(S7�'�)d�$Up�)gr�����|�r���Ε]�
C&�1�G}�O~��_8���o=��tFb�#�=U�kA�5`�	���$�{z�j?���^�F��ܿO�Q���0M-d����W�.���;_<���]���������.R�"��<Ϳ�5��/\�C�~�Y�����5�i�C[�o���B�K��%���;�����P�|���JL2��lݩ�{}�?i>��n�<��qjc��ψ�'�V���rr{'}����*��s{�w��0.~�j+N;Zq�;
�iX�n|����/�``�tS3Aן�碦L��� I���n@����C��`�9�}s�E�IĂ���,�@���vp�����M�F�8�H�)GT���f�ׯ%�ev��|�S��}�ܖ-l[���gP���8p}�-5����kW�mے̞]ˬY��^��ٳk��N��e�*� IDAT:#� ���@1[SgS���ڸ�:��M͛hlod☉d��lf��P�Ja��/S�����*Q[��6�\���{��xkk޶���k��w�c��A�0�ʼ��*Pz��*�E��ݯ�����D��߼��x,�����
(�Տj
S�JtP�_�`�m�9i�Tn��r�o��޿��
�r��=l����SO�}Ư�>�'}����L�{O�1?��9|�{�!;���]%�h�A����s������u]���?Y]q���h5��}��ʳ�i#���T3ڑt��5�3�w�j'+�L��z�'�Y��h���|��k��_��Ucl�/h�0���o]ʘ��Yv&u�ミ(9�h��pEJq� ���Y(.�>d���D��K��|�Q��x��:�
��y�{��ůWm�{�=��;9���{ʿq��'���ԟ������`�!��b����2_�/om��]k�b�lj�ĕ]�BT�6���g���+�q�r�3vA*cb7>��8���EKm�w�`壆�[�
Qi�r\�o�󢆢�M@"�,�$Mi|ߧ������\�JD�g��Č��響��o:�~񝓱�\�S{���^nbʄ��p%��.�^�̅��ۿr4篺���(�y��v.Z����w]��'H~�0��>��n���'����bH!�z���7�Gm#Š�
�Mҷ�>�2�mJ�>��6!9{��]/k�q�%��{��OHV��HV`Ks<�'d�	
/�����O9�*4q���Q<W��v]��|_�y�UV̩��W>�q6��nx#
��t��]]tE��v��p�e�x.��9�7+�M�}�l�ʞ={�ѻl�_��x�|+�#e��p]�	�:]���H����Ȏ��ڟ�ψT����G��%�;e����6�|��CnU(�
c$�'�um��H�%�d�k;h��)o'$�02�����S*���Fr�6ੰKCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB����E�u����-�D�]�}%�6�<,�+1BN_
����+W���輻�����/��K]6sR}��I�����_
~
7m|�Xg��p;]_��l���1G��-�1��(��,6��o)���<��R�<�94�M���-��/hp�«�Bx.B: %B�� N��4:Ȧ^��nm�uXW�IR�ټy3+������^z��5̛@m-�yx_���珁����fNZ���_k�1TEcD��WO{ߠ�>�Qd�B �z�!:�P��l����͋���9�-���d} 0�������*���PJ���{�~ky��p�РӒ�ꖹ��d
���I��Bi5�tģ{��!o4�	��1��)z^X�inCΝ�Q��D�}��ԉ8E���j��
���cΚ�<�	XTM���Puh3g��g��˔��zecO=:_b�'��oz�X4i�ⰭuO��+v��n^hw�B�.Ξ�������v� ��C�֒�`Q�G���epˡ����9�5��[�怇���mwJ��+���\��Z����ŵ�^�Jd�,�8i	�����̺�
���v��y�G˙g�u������c���c����ojco'�-N��R�&��M�
=�I>S�Gr7vL��pǦ5|r�Y��H��:����CC;R
y��l�
�(]O8u>:����6�Op�8긅T;��13����h�'����-�h߹��o?��7Y��t|�����L!�5dгC%i���1����s�|��~]��ێ$S����>z��AK�B���
�eˡ��t�r�~=�+������T-R���$�u.�5~�dc؊w}����c���54�{qw�&�y�������s��$��ӈ��p���\p�|��/�[Kw6�ue�H��XWtg�{-�2��L<�R;�H>��v.9��:��r���<�~��_e�І�^�`$-͡�$�rh���B��_��ۡj�b���vKZ~/�3�EU0�ް�~�{7TKN��oY��bN�a���k���IRwP�i��8&����=I�'?	�v����
<[Is��e�M]�A�Z�@��͵��b�M��/wDx�W��6m6�L�5xV�KÍ���x�z/S/��D"1�nM�l����ٸ��Q$)�
>�g�5�N-��;�y5��7T�z
����g��.��u�D�X>w[�?��R�q9z�"����;�y4i��]��ß�PP>V�@�N�,8_��	��l�?~����ީ|}S��×N;�O.\��g�8x4�t���f ,�>g��7�T)����/M���䋂��U(���J^�_+�4\te���^�Ch��-i�}w�볜���>��V��L~�?_���7V��Ƨ����J�t�ʠ!FI_�nXU�Dw�4��Z&re�4�PL���~����A)=d�Vx-��e�{tkR��@�H�)��ðEy��j��
�k�����(����rE5��#nD$��k+aשqv�hP�"t -˶l	��K �?{Fk����#吣GLzcPZ'��1���#(�Fu��G�ʇ��w7�Ǟaמq��l�Ƣ�FM%A�I)z�1&��
������/��I��EX�f.7�+P�KčAoy���D�D�`��|��;0�������h��w�K7����s]��+��	ٱc��k�+�c����6�� "���z���W5=̵g�h\%]f�A�2!�MM�D|���Q�	�T+���3$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$��Šw���.���7o�.F8p�ڥ>A�
��:�r[yR�����9˂�#G��0��?��4��}CF�ŊX\�e[y����Đ���<�W�vtt���Y��O�=n�#����N'�
&+W��Γ��O^�X&�qA��EIZ�(v�:F�U;o��?�h�V;�vg)�[@���CV���ּL�ݷ�'ժ��|�7����*Jĕ8�@J�,:���c�%��Q�g�_��c��U�f�xrЫ�"/�U
���+Ŧ����o���Db��+|ߧ���H$B�q9֋S�8(kِO�5A[�(�Z�j���sָ�W|��Oh�h!]�|��e6��Y��~�Wl~�>V>X^;OX�X~�V4x���U��1��/����cu�Wlze+o�YX֙��t���j[�ؒ�V	�'mc�'�%j5�:��|���ٕ���)z�&�Q��ض���}�4�uKJi͆�C�ЮKz������)���`�p9�K��(f9�E�����uP��Fٶm[��L�H�ڇk�X!F�Zk��n+��~�S�\#���ց�.=��������~!�tf{Hᓴ��/G;���m�9����Q��l-I�WT�Ɩ�8���J�Y���}%�}#�I����S�����������yڤ�H��q�g���>��^���9,�d��5�I��z`��to���tZ@�1���.�?r����~rؘ��TX��z�"KF���:��N�!:|�=��S۾�(I��,~�ӳ��ヴ,���cܸq�&��R�W^����?*3G���b�w��sß<c+���'Z�wd�>��-^�
h�WD5(8�8����1G�����s�9�7�~�}�kW/�'W�:%}k
̸W��e�d�#ڦ "!K����q�n|��ox��X`��I���3���nSSd'Q�S+wsZ��w��5YZM-B*��	˔R8�S򷖖b��Db���o��;�*k1\��[�UI;�o�f��v�L�椓&־�Bo.�0!�	��t��8��ؚ9L�L"�'�.tq�{I�iP6X�j$5���N��n�L
�$�e���k��CL�ٌc���V5�f-��A��f�Ɛ�fB����t�����Y�f��~�&\���cΙ�3d���.�2��!dp_yW.����ƹ��Hjjd�4�p�5�����$����b�X2f	�v�����4�(�գ��E�J��&��:qx�_D�<�{m,��;{&9�Z
ʯh$�y���uK6"�E^�,h���?Yr��2{;+�ȡ�ZÝk�
�Lϝ���("얌j��7tﮂ����ʣ��F���-��t��E�vK\X�bLṌ��Ƚ����˯�b}��μ�l�u9w4Ij�$�<�R����鮐�S1�5���.X�(:��PZ�kz���`gNVW�0�I���f����k��VH%1���Z��Tz���B(ؿ>XL1�v(7�Z)��	�K��;H��g����y�/�����֌^X&�f�� nS�!�R����b���n4Z�[��(�t$��c�����k3cl �PX6�T+�F�@�]t���Te�0l�zZ�JG8!K�ݶ(�3��T����H<��H�8����,��ƠL�$����5�x�R��k�ױZ���O�qu�h$�єB���HI�D�uS=ʉ�:�A9`�G�c�(��D˖jy�K"%9ɂz��E���"��pR-ە>��t]�W�Zj��MhkA*I4+;a\�#��#�M���Co�Y�k#8�É* _^ߺ.͞��lC5��lJ�_���J�Xl��߄R�0�?`̐���������������������������������������������ޙҼx���˜������>���I����e}��!�X_L���,�2E^�Y����-CH���k���;|C�Xk�X}���}���� ���/Z�i�%���X������Zu�1�����P,Vc��8��m�7T�a�{_y��������c��D�ϔfy�w�9����y��>��3l�z�TѲ��L2��2�\h�5�~6G���kYygyR�����X��>^U"A8N`�(�Dk0�����U��C�"�Ĭ��W|��_H><g*϶v�ne���I��7�.�ƒ��W�zv
�UN��c�:�7�� 1s�C��A�֌����5�[Nz��t�^$ˌ3���%PLNc���+��s��t��^R,��Ksޤff&
��xܰo
����sYc��5�sP���������.��FF��~=A��H�U�U)D`��<��m�R�\g��56���P`tf��]�ȫ3����4y�О��lk��Q�F=6v&y���4��D1lk�,;�Ig��c�\�{�m𑏔��[&�){�L��B0j�TQ:l�bK��t����T!C�Aũu�r|�=�5��c�ީ;����s��HkD0����t�ʂ��6�N
�$�l��Ë���q"'���-�ړ �c�˂iK�_s�?�|���g�b�A.(Ld�d�sA����ee�mLf���k���G�����,I�*��/45#	�Jg�T
��?��n�n�������c-����jo�:��x�+��*G���#�t���;ц)��ή�cv�`���H�?��>���HD��2�:���O�}+8w���t���%�2�/�q2�G!��4"������uh�%:!C���B6��Hp7�<�$)@dzI�c*���5|�wW�a���g���e�4��Z�7�	�� %��p���Ô)��3Y��вۙ��2HҾ2q�5=]����]l���'~�Jg��(��Iˏ����#�P�Ͼ�lN}�x�#Q�N�W����k����,���ϧ��wmS��c�(��Bw:I��E�n��=��N�m.�}�tn�eƬ�	����}�X*�[
%�*�w<6�љ��6��,9��$��f���x|�$m�����^��ֲb�L�����y�n���=}z���f��V�0�\�8��7��v���mG)�qSg�{�k�lv����!�l�zN�K�\	O=mY}�z��C�����ᨥcY�a
��e|eB��ռc4I�
4���k%�4��s��nie�qY��b��?!K*�w�8�[��ʆ�jY�r~���dD�(�I���T+�a3{���x$�,�!vj���i
$�e���F�@V�>�>\���?|�|w7�Up1v��	ڧ*�ْ4l?��3gR7�����n�_�
.��4�s'[VLjd��L�}��?����^�[�V[���?�Ig�a�#��e��G҂����Ъ@�k1�xi�'y��:�}�m��4~��}А�0Q��`�H9Amq�G�����e�|�v'돾'0�����lA�K�k5���奵�ɓa�شi�AӦ���4�Zl
#���JB�h�ՓY��H){�T��&��k�$5��k�u-G�h�^�����b_���
��<��G�Ӫ7�|���ć53�&��B�Fa�"ϑi�M�N���^�m���z�h"_���5���n��#H��T��^�h�Xi��a�Ȓ48�*�q���8R`p�jU���ӊO,����a��+X�g�ype�_��8Ec�|Ը���\��������fY�H���֜�x/�W_��W����'�tV',n��WO�͏!���4�hGR��킒.S�i�J��*@��X���M�͋V�9'�aL�Z����6H)q�>�Vq��D�,)U�jQ~LaA+��
\�'I��e�(n������PXf�B��7���yt�U�`$�dTF��9g��f��ߙ�'��Jbj
�7�
�
�1����N�î�ǧ�Ϧ����Ǐ_M�:���gm��;��&.mg����n���E�8P�ޚ�$�B(�}��@K�@�X�:DLU�ʌ�:.�.�p-8
-��i���P)_��sp���R�}{�:x�$ر��F-�I���
wU>mh��1 N-q��� �H�*XW���� �ɱ����]�|(�Z��A(,�ߊ)D50���ɶC~���l4���s��r7$�y��1CBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB*��'�]�U��8��0}�8Zے�!#<���^2��ƚ�/K�?���C.�x��DUU�y�C�p��`�a�H���f2g�G:�ѧ�v�!��?�b�L��W��{}�e^��D�L�ǹ�̘<���i,=sQW����\��zx��gԗ�z�!Ō�nO�~U5��Q�lH��d8:�c����Ο/|�<�#k��T[i��5���
_��0��@k��t2%�nk���gK�J�G����獙0ns$A
���#�	�Wd��k(�$�;���-�z�?s�1S�p\GH�.���=�d�
�2~�"8��Z����s
�+��o�}ι�v��n�^�wK�4g2530`�lp�(�1�q�r\ء|�8�R�rUC�6�lW9&;f0��xf��H
�1z�Zj��q��ν��W>��-���K"���T�pu{�}���Z{����5��,���������nڼ�v����m8=ߢH�5���{�ƱoC��-�)�Ņ��D7�^���6�����b�*Eȶ�H���bH�d[#�12�x�A�h6�֝����*\�b.
�L��Z���1�G����;�6�Q��w3N/��J��a��t�Tfh��W��TZ���p�;>'?vՓ�!����
���w�nT�d���=�<�/mG�&�8!��c����8��ѨO:~������Ky`�0��X�C����×Ih�`���wX먙���}�'��}Z��o>����v�̙*���I�W^��<�p+o�?�p��_~�鮽��ܲ���3��Pħ�ƹ;���Y�Y�߼i'}7m��	�����ߑ��/M�W[�6=)�UhJ
3����ȫD0V��V�WY�����ҘKi�Ud��}�2;��h���(��" �`�Ia�&`��1Z�V<w��YCR�n���2��L�e�џ�w0"X*ޏ��`��W��eL��[��X��&���U��%���b���Tjh\�<�{t���'�35�~��l�7߶�7&T��L�gn��K�l��0����%>�ų��*աFIDAT�T��ww��C��d?�2�y���4wnw��-�U-�kk��1�wl	�R�Ph]�u�Ѱ��.��JIk�2�#�b�?;4x�V���� ��m�I���T봦f�ǰ��jWJ�5A|-�,0�h�58@kj]�����k~�;�
���(gR0XN�?J!܌L+���j߃�6�ly��>�*���_bq�p���x��$������"��$)1�Z�k�&�!��2��^����|�+�:��c����{����cO�c��7��(;G�c���x�l�F[��^Uo�����#�3�N�p�$#�~.m����m�]��su���1�S�AH�D$K�Ԧ�Ϸ~�9u�6����?�6F�nC�vz�`�����[rS�cO�4���_�2�r�Kc�i�kĸ4#z0�&|��Xo��6�(�D�)d����,�-����L�_��»�`�vK�,�n�ũ�Av��D1}n��Q��p7?{��_F[���)��Z�#_�V��mҦ�c�I>���')M������j�1�w�z�Ƈ	_?>���*��<�xoG�sq��/��+��S�V[�K��ܴ�������W�Y{���9�<��p�^��>‘�.�w�OT�p��3�Sz*�ٸ�I�={�?�ψn�G�5 Ah|�k���@k�6��������C��0gOuMRg-���k5lK��=��*n]�9Y�\�P�S��ڈ=mܩAl]���N���q�'ib$q;�ٮQ,ߜ����p�������<\~	��L�{8����ѳ$F�SӛW{0��ޥW(��x��,?�c�#%{&-�p��‡葥��J4>2!�׼�3�y�W���N�~�'�\i)���v��E��N����ũ�YǍ%=C�<;/Ԙ>{��-������#UT�����W昻|�C7��n�K���P,"�+zM���}��-�]@�@��@S��,z��u�5�c��g�u���J�P='a$�!�#�6�:��u�gw
I���7I��c���m���9����*�or������T9P�k�f��*R�z��C�i��Q�%0���5�UQ-�Z�����qBK��H֗#~�=7g᪣db���r3�z�{,�'=��L�q�gI��CI�8�	�.�b[�,���+F�<���G���^攮����]F�E}��1���6���+Z�@�-�yg-6IIM\��UKP���zM����n	k�Kt������$�9Kx��5$��)�<Q�8H�}�en�?���Q��2/�}쎦�C���S/1�a�g��NJ�b��4E��xս<X��<1�m,:Ѽ�z����_������_���K<�����?9�7N.��Ѓ��v����SX���@{A(�m���	�p��=��.R5���绲9�Z���a����6^H;ӛ�7�V����m��9
��ǘi.t�Z����h�Ǧ�:
oi�w50
�;���)��$x�"���o��?��fA��>Px���ُ���~�on���r��l=��'�/O~��T���eg��/��>�w^�k��c��='��z3�?����J!<ql���Y<��?��'~n/���
|���?^�t�'��?����o�B�5�*%����+��X�
B��9}�i���cW6�W.�c�ƹ��4ae�F�0�۔�0-oX��x![��
E�&&9�0ֽ��k,&M��#��~AaÀ��z|*��K�����9�5�=�^y�p�1b�A�!^)\ ��S�]yy�~�Z�<��tV/y0Z�:��-a��%D&V��
@W�l���w��|�}x�]����LJg��_8��W&�b=�_��	>��6���sSx+��I.t[U�P�W^���;��tH����SC.MY��.s��l�:f�>M��HZ��I D�n�D_F*�����=�J�-O�L���w���i������A�r��
7��g�y�͊4�9�k?���B$����T�(���[/��8!��`���HR,$=��B�$
��� 	�Z���)x�Y�8YA�G=�}�gnQ{��/L���
�#�}b�^z���˳��lf�|��7��Dw�O���ÿ�L_��W���	�"i��[����Z������5���r��V��J%�}I�!M�x�Eյ�C�CE+P�@uA�%L{|��x���V��̋��w�g ��ݗ� �k�S��wMR�F"!F����UC��z"q6��f��o$��Q뼌��V�@_$QR�4MO�⸫��^��=Q�J���.�(8��?�4���p{�A�/
!�uo�	!��m�0�ї�])�[
�))=Bf������E6#|g}`���s�}MUWVO⚇��x��JZۓ,��lj�M���
�fe��wv��̿��g��8k�nD�z9�o@��-'&b�9r�ȑ#G�9r�ȑ#G�9r�ȑ#G�9r�ȑ#G��M���*/��ۅp�HJD�nyq���Jvŷ�:����z��,����V�y8�8�r�����eɟ���Ħ�����x��	?�ػ�����=��)B������-<H/1��ԇO��:�$����_/���C/�_mnX�g<�Wu��[x���pZ��$�'�V:q�߿���`��/��7�{��G�wl�8F�QG2H\}�:��=ރ�)�<q�3����~�z�o۶MLNN���;v�j�)�J��w8�P�PnA����Ĩ'u)%Qdbn�#�?"������dW^|�8t���m_���*F�`Ui�)�wƉ�4��@�Za���X�OqN�H�_۾[L.W��6�Ď�G�_$(\q�W��8���TSo��15��r%�����\�p]��T*�Cdjf�Z���m��4$�=����IwxZ��ց��^��+���k������O����y��*k��3]���L�lZ���g�ptqfs�����$5�bR�z=>N��2���k��N'�1�'��1���\WE��`ff�S�N1;7�jfqn��[7T�s=�Kk-�V���L�s�V�_�W�4�ٷy'�v2�x���1
i�D�@��V(q.��lcP�a]aj�L���scI���q#��܅�7;ڤ���:�(�#�Pǎ�����'[&D&Nf��V��j��i�ņ�PF�e��ϡM�D�wԒ�f�wB���������>��%�� I:J0�,�J�J��J~�B����%G:�Ld-99nI�]�#w�B���܂L�N����<�B��&dQ!/^��^g�o�Zk����7��ؽ�y�ԏR,7���V��,�v�^{�11�F��P=��>
�!�Ǩ�B�؋�/O`���.�s�Ҁbz:��RC���TxB�)`Qx��U��W�w�fTK(<J\�G[$�ZS��i�Z�On��I�&.
Q��c
�4�f�I��F��9�9�M���Yґ�D!۱;��K��^:C�VC��L��ЧY���XI��:gύ&��r7�`�d�Z_���N��{R�Q26Y�b�����W4	�1��u�I�Nӎ�K�Jb8�Э�f�Nc��5�s%��}��W
74����=�*@�h��P�t��q��IQ8|��Gm(;M(=�T�u&gЍ$�_ʹ(�&�Wj,a�F ��e?��qaH�b�ŋMZ��O�bi���jhk;1�;���Z��^����N���%�LV�}����P�5x?%��a��/?Ƀ�<r{��j���D�f�n8]��I��TN�J�˱���|�P6�ήV��0�4u���BϷpu
q�a�ZK���t�:v���Xli��ף'��/_"��"ՙq+$��pqր�G^G�0}��D�/�n�8��WI�d�ZD�"]2Oh�Sr��X�z�9��JJyE8L^W�U�5�aX�}�+���uΡ��6�W��HϜ�^�а0�J��8�q܊�AG��e��i�<�yf�O��4E_1��0[
���G���0�
�l�ap�I!"PJ��j(%D��H�WY꼸R��k=:ʇ�7S�����p��s���%gH�%#i.��g�bB�,� 
�t�g*������!�/=��3�d���^�'�x�:��$MM�b
�����t�&��'~&��ޖq�J��0>���*�f��ΝNޣ������Ϟ�p�r��ᛴ�B)�l��@�P�pd/Lo���H9 ����F/���[��9�s��_�A�J=��XVv8�^F�)�K_�swz�I
0"z��HM�M�_h+@uv��5끴DZ��_qm�?Aҿ!�(;��G��l�'�r�ȑ#G�9r�ȑ#G�9r���FX���eIEND�B`�PK%>�[7Bk�"�"�
readme.txtnu�[���=== Translate WordPress - Google Language Translator ===
Contributors: edo888
Donate link: https://gtranslate.io/?xyz=3167#pricing
Author: Translate AI Multilingual Solutions
Author URI: https://gtranslate.io/?xyz=3167
Tags: translate wordpress, translate, translator, translation, language, multi language
Requires at least: 2.9
Tested up to: 6.6
Stable tag: 6.0.20

Translate WordPress with Google Language Translator multilanguage plugin which allows to insert Google Translate widget anywhere on your website.

== Description ==

Google Language Translator plugin is now a part of GTranslate family!

GTranslate is a leading website translation services provider since 2008 and powers more than 500.000 multilingual websites worldwide.

Please use [Google Language Translator Support](https://wordpress.org/support/plugin/google-language-translator/) for your questions and support requests! We are multilingual!

Please check our [FAQ](https://gtranslate.io/?xyz=3167#faq) to get quick answers.

**Features**

* Free Google automatic machine translation
* Option to hide "Suggest better translation" pop-up
* Option to hide Google top frame after translation
* Google Analytics integration
* Translate the site on the fly
* Translate posts and pages
* Translate categories and tags
* Translate menus and widgets
* Translate themes and plugins
* Right to left language support
* Floating language selector
* Language bar with flags in menu
* Translate WooCommerce shop

**Paid Features**

* Multilingual SEO - Enable search engine indexing
* Neural machine translations with human level translation quality
* Increase traffic and AdSense revenue
* Search engine friendly (SEF) URLs
* Yoast SEO compatible
* WooCommerce compatible
* You can have sub-directory (example.com/**es**/) or sub-domain (**es.**example.com) URL structure
* Translate URLs aka slug translation is possible (example.com/about-us &rarr; example.es/sobre-nosotros)
* Add hreflang tags for translated alternatives
* You can manually correct translations
* In context translation interface (make corrections without losing the context)
* Translate meta data (meta keywords, meta description)
* Translating schema.org microdata for better search engine appearance
* Seamless updates (cloud service updated on our side - SaaS, you do not need to worry about backups on your side)
* Translate JSON objects (JSON format translation)
* Translate AMP pages (Accelerated Mobile Pages translation)
* Image localization - Translate media
* Translation Proxy (aka Translation Delivery Network)
* Centralized Translation Cache - We revise and improve translations over time
* Language Hosting (**example.fr**)
* User Dashboard with Analytics
* Live Chat Support

== Installation ==
1. Download the zip folder named google-language-translator.zip
2. Unzip the folder and put it in the plugins directory of your wordpress installation. (wp-content/plugins).
3. Activate the plugin through the plugin window in the admin panel.
4. Go to Settings > Google Language Translator, enable the plugin, and then choose your settings.
5. Copy the shortcode and paste it into a page, post or widget.
6. Do not use the shortcode twice on a single page - it will not work.

== Frequently Asked Questions ==
= It doesn't translate, what to do? =
Please check [Google Language Translator Support Forum](https://wordpress.org/support/plugin/google-language-translator/) and feel free to create a new topic if you cannot find answers.

= Is it FREE? =
Yes! We have free version and paid versions with [advanced features](https://gtranslate.io/?xyz=3167#pricing).

= What is the quality of translation? =
In our free version we use Phrase Based Machine Translations provided by Google Translate, while in our paid versions use Google Translate Neural Translations which are very accurate for popular language pairs.
In the paid versions you can refine the automatic translations yourself or order professional translations or proofreading of a translated content.
You can get a translation cost estimate by using our [Website Translation Cost Calculator](https://gtranslate.io/website-translation-quote)

= Are the translations provided free of charge? =
Yes, we use Google Translate widget for website which provides free phrase based machine translations, which makes it possible to make your wordpress website multilingual instantly upon installation.
In our paid versions we use Google Translate state of the art Neural Translations which are included in the service price and there are no limits on the word count.

Besides we offer cost effective automatic translation proofreading service and also professional translation service.
You can get an estimate from our [Website Translation Price Calculator](https://gtranslate.io/website-translation-quote)

= Can I modify the translations? =
That feature is available only in our paid version. You will be able to make edits directly on the page without losing the context.

By the way, we can help you to translate your website with a cost effective approach by post-editing your automatic translated content.
The proofreading service will be done by a native speakers and if you want to take the quality to another service, we also have a professional website translation service available.
You can get an instant website translation estimate by using our [Website Word Counter](https://gtranslate.io/website-translation-quote) tool.

= Which languages are supported? =
Here is the list: Afrikaans, Albanian, Amharic, Arabic, Armenian, Azerbaijani, Basque, Belarusian, Bengali, Bosnian, Bulgarian, Catalan, Cebuano, Chichewa, Chinese (Simplified), Chinese (Traditional), Corsican, Croatian, Czech, Danish, Dutch, English, Esperanto, Estonian, Filipino, Finnish, French, Frisian, Galician, Georgian, German, Greek, Gujarati, Haitian Creole, Hausa, Hawaiian, Hebrew, Hindi, Hmong, Hungarian, Icelandic, Igbo, Indonesian, Irish, Italian, Japanese, Javanese, Kannada, Kazakh, Khmer, Korean, Kurdish (Kurmanji), Kyrgyz, Lao, Latin, Latvian, Lithuanian, Luxembourgish, Macedonian, Malagasy, Malay, Malayalam, Maltese, Maori, Marathi, Mongolian, Myanmar (Burmese), Nepali, Norwegian, Pashto, Persian, Polish, Portuguese, Punjabi, Romanian, Russian, Samoan, Scottish Gaelic, Serbian, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenian, Somali, Spanish, Sudanese, Swahili, Swedish, Tajik, Tamil, Telugu, Thai, Turkish, Ukrainian, Urdu, Uzbek, Vietnamese, Welsh, Xhosa, Yiddish, Yoruba, Zulu

= Is it SEO compatible? =
Our free version doesn't give any SEO advantage. For SEO features and multilingual SEO you need to use our paid versions which have all the SEO advantages.

= What is multilingual SEO? =
Multilingual SEO is a SEO strategy which uses new content generation technique by translating your original content and making your website multilingual. By translating your website into many languages you are creating many new multilingual keywords targeted for international market. It helps to increase your search appearnce on search engines results pages (SERPs), which can generate more traffic, increase sales and rise the conversion rate.

= Is URL Translation available? =
In our paid versions we have a feature to translate URL of your website which will give you more SEO advantage. For example http://example.com/*about-us* &rarr; http://example.com/*sobre-nosotros*

= Does it translate emails too? =
Email translation feature is in testing stage for our paid version. Please contact our live chat to test email translation now.

= How the free version differs from the paid versions? =
Free vesion is a nice looking language selector you can place on your website. It has a built in Javascript engine which allows to translate your website automatically to multiple languages. With free version your website URL doesn't change and the translations are not stored. While paid versions are a translation proxy also known as Translation Delivery Network. We host the translated versions of your website on our cloud network under a language specific domain. In that case every language will have a separate domain and be indexed in search engines, which will help you to increase international traffic and sales.

= Do I need to pay for Google Translate API key usage? =
No, we provide the automatic translations for free.

In our free version we provide Phrase Based machine translations from Google Translate. While in our paid versions we provide you state of the art Neural Translations from Google Translate. We also do not have limits on the number of words on your website unlike other translate plugins.
By the way we alse offer a cost effective approach for improving the website translations. You can get a automatic translation post-editing service from us, which will be done by a native speaker or order a professional translation. You can get an instant estimate for your website on [Website Translation Quote](https://gtranslate.io/website-translation-quote)

= Can I test before making a payment? =
Yes, we have a 15 days free trial for our new customers.

= Can I use it on SSL / HTTPS website? =
Absolutely! You can use it for our free and paid versions.

Recently we have added support for Let's Encrypt certificates which are provided for free if you use sub-domain URL structure.

= How does the 15 day free trial work? =
Trial is available for new customers only. If you do not wish to continue you may cancel any time during the trial period and you will not be charged anything.

= How can I be sure that search engines will index my website? =
You can check that this website is indexed in Google by searching for site:gtranslate.io.

= How I can edit the translations or order professional human translations? =
You need to go to the language you want to edit, for instance, French: http://domain.com/fr/ and add ?language_edit=1 to the end of the URL: http://domain.com/fr/?language_edit=1 and you will see the Edit buttons near each text. Read more at [How to edit translations?](https://docs.gtranslate.io/en/articles/1348921-how-to-edit-translations)

If you want us to translate your website professionally or provide you a proofreading service for automatic translated content, you can get an instant estimate from [Website Translation Quote](https://gtranslate.io/website-translation-quote), where you will get a detailed document with the list of pages, unique word count and prices to translate them.

= What should I do if the translate widget does not show on my website? =
1. Make sure that the plugin is installed and activated.
2. Verify that a check mark is placed in the activation setting located at "Settings > Google Language Translator".
3. Verify that the native Wordpress function, wp_footer(), is included in your theme's footer file.
4. Verify that "Show Language Box?" setting is enabled at "Settings > Google Language Translator".
5. Use your browser's web tools to ensure that CSS styles are not hiding the translation widget.
6. Contact support at https://gtranslate.io/?xyz=3167#contact

= What should I do if there are no languages being displayed in the language box? =
1. Make sure that the plugin is installed and activated.
2. Verify that a check mark is placed in the activation setting located at "Settings > Google Language Translator".
3. Contact support at https://gtranslate.io/?xyz=3167#contact

= Can I exclude certain areas of my website from being translated? =
Yes! Add the "notranslate" class to the HTML element containing your text. For example, the following text will be excluded from translation: <span class="notranslate">Hello World!</span>

== Changelog ==
= 6.0.20 =
* Fix for translation issue from toolbar language selector when layout is set SIMPLE
* Hide text highlight on translated version
* Nonce check added for ignoring admin notices

= 6.0.19 =
* Fix for invisible dropdown selector

= 6.0.18 =
* Fixed going back to original language issue introduced with recent changes to Google Translate widget

= 6.0.17 =
* Google Translate toolbar visibility fix

= 6.0.16 =
* Converted get parameters encoding from rfc1738 to rfc3986
* Replaced gzdecode with zlib_decode to be zlib encoding type independent

= 6.0.15 =
* Avoid minification of external Google Translate javascript library by WP Rocket cache plugin

= 6.0.14 =
* Fixed information disclosure security issue through url_addon/debug.txt
* Added admin notification when translation debug mode is on
* Added is_readable check for config.php file before modifying it
* Added conflict notice for Advanced Google Translate, My WP Translate and WPML Multilingual CMS plugins

= 6.0.13 =
* Fix for PHP 8
* CSS added to hide Google Translate popup on text hover

= 6.0.12 =
* Sanitize admin HTML input with wp_kses_post to avoid self hurting
* Avoid minification of Google Translate javascript library by LiteSpeed Cache and WP Rocket cache plugins

= 6.0.11 =
* New server added into our Translation Delivery Network
* Tested with new WordPress 5.8 version

= 6.0.10 =
* Possible Cross-site scripting (XSS) vulnerability fixed
User with Author role can possibly execute javascript code via glt shortcode
Kudos to pluginvulnerabilities.com for reporting
* Possible Cross-site scripting (XSS) vulnerability fixed, only possible for sub-domain, sub-directory paid options:
An attacker can generate a malicious link and if followed by a victim with an old browser without proper URL encoding support (<= IE 9) then javascript code can be executed on victim's computer.
Kudos to Ram Gall @ Wordfence for notifying

= 6.0.9 =
* New server added into our Translation Delivery Network
* Tested with new WordPress 5.7 version

= 6.0.8 =
* Tested with new WordPress 5.6 version
* Ground up rebuild of our Translation Proxy cloud network for paid customers, now page translations are 3x faster on average.
    - New proprietary spec-compliant HTML parser which is 8x faster than PHP SimpleHTMLDom library used by TranslatePress Multilingual and Weglot Translate plugins
    - In case of invalid HTML, it will be fixed after page translation
    - New caching layer to cache translated pages, previously only original pages were cached
    - Optimized caching with option to clear all original and translated page caches
    - Better error reporting
    - New top of the line hardware with Intel Xeon multi-core processors with up to 5 Ghz clock speed

= 6.0.7 =
* Servers list updated, minor changes

= 6.0.6 =
* Added more servers into the list of our growing Translation Delivery Network

= 6.0.5 =
* Cross-site scripting (XSS) vulnerability fixed: Only possible for sub-domain, sub-directory paid options with hreflang tags enabled:
An attacker can generate a malicious link and if followed by a victim then javascript code can be executed on victim's computer

= 6.0.4 =
* Missing closing li tag issue fixed in flags only language switcher
* Readme updated

= 6.0.3 =
* Solved issue with http Refresh header which was not redirecting to correct URL in translated version
* Email translation is coming: we need volunteers to test translation of emails, please contact live chat

= 6.0.2 =
* Added translate support for MyHome IDX Broker plugin

= 6.0.1 =
* Bug fixed preventing language selection for some cases

= 6.0.0 =
* Added SEO features (paid only): search engines can index translated pages, URL/slug translation, define hreflang tags
* Added Live Chat support by GTranslate support team directly in the plugin settings page
* Google Analytics feature is now on by default
* Settings page updated for better user experience

= 5.0.49 =
* Added new contributor to the plugin's readme.txt.

= 5.0.48 =
* Added new setting: Floating Widget Text Color.

= 5.0.47 =
* Fixed an undefined index error in google-language-translator.php.

= 5.0.46 =
* Added new setting: Language Switcher Background Color.

= 5.0.45 =
* Added new setting: Floating Widget background color.
* Removed border-radius from the floating widget for a more standard look and feel. Please email me if you need the CSS to add back rounded edges.

= 5.0.44 =
* Added new setting: Language Switcher Text Color.

= 5.0.43 =
* Added new setting: Floating Widget position.

= 5.0.42 =
* Added new setting: langauge switcher width.
* Removed most javascript away from the document body, and into an external javascript file, scripts.js.
* Added plugin version information to be appended to script and stylesheet files.

= 5.0.41 =
* Re-factored code in google-language-translator.php to remove the duplicate id "flags".

= 5.0.40 =
* Fixed a minor 'undefined index' error in google-language-translator.php

= 5.0.39 =
* Fixed a CSS issue associated with the settings panel changes from the previous update.

= 5.0.38 =
* Fixed a CSS issue associated with the settings panel changes from the previous update. Flags were not aligning properly with align left/right settings.

= 5.0.37 =
* Made some additional adjustments in code for the settings page.

= 5.0.36 =
* Removed undefined variable PHP errors.

= 5.0.35 =
* Updated the plugin to delete an unused option from the database, used in the settings panel.

= 5.0.34 =
* Updated the settings panel to function more logically. Now users choose the languages they want, and can turn on/off flags associated with those langauges.

= 5.0.33 =
* Removed a deprecated jQuery function, and replaced with updated code in the footer_script() function.

= 5.0.32 =
* Fixed the issue with menu translation not working on some mobile devices.
* Moved element.js script to the footer.

= 5.0.31 =
* Fixed an issue with menu shortcode not displaying the correct flag choice (i.e. for English/Spanish/Portuguese flags).

= 5.0.30 =
* Organized the settings page into sections.
* Upgraded Wordpress.org plugin banner.
* Added additional attributes to single language shortcodes. Users now have ability to display flag images, change flag sizes, or show/hide the text label.
* Changed Chinese (Traditional) language flag to the Flag of Taiwan.
* Fixed a minor display issue with the Google Analytics setting in Wordpress Dashboard.

= 5.0.29 =
* Fixed CSS display issues with the floating widget.

= 5.0.28 =
* Fixed CSS display issues with the floating widget.

= 5.0.27 =
* Removed toolbar.js and flags.js and combined to existing files (to improve efficiency of page load and http requests).
* Added new setting to allow or prevent floating widget text to translate.

= 5.0.26 =
* Fixed a small error in adding the setting for Floating Widget text.

= 5.0.25 =
* Added new setting for custom text in the Floating Widget.
* Removed "notranslate" class from the Floating Widget text to allow for translation.

= 5.0.24 =
* Improved functionality for flags. Users are now returned to original language when the flag is displayed. The Google Toolbar will be hidden once returning back to the original language. The Google Toolbar will appear again when another translation is made.
* Fixed the issue with flags not functioning with SIMPLE layout.
* Removed SIMPLE layout option (which was not working properly) for browsers not using English browsers. The coding challenge for implementing this option is difficult and must be postponed until we find a practical solution.

= 5.0.23 =
* Reverted back to an older version of flags.js. We still have some bugs to work out before releasing the updated version. We apologize for the inconvenience.

= 5.0.22 =
* Changed a line of text on the settings page.
* Removed a line of redundant javascript to reduce unnecessary page load.
* Fixed an HTML attribute issue displaying in the menu shortcode.
* Improved functionality for flags. The flag for default language will now be disabled once users click it's flag. Flag will be re-enabled once user makes another translation.

= 5.0.21 =
* Added 6 new languages with their associated flags: Hawaiian, Kurdish, Kyrgyz, Luxembourgish, Pashto, and Shona. You can now use these langauges using the menu shortcode, as well.
* Added a "Select All / Clear All" feature to the settings page. No more finger cramps!

= 5.0.20 =
* Added Corsican as a new language with its associated flag.

= 5.0.19 =
* Added Frisian as a new language with its associated flag.

= 5.0.18 =
* Added Sindhi as a new language with its associated flag.

= 5.0.17 =
* Added Samoan as a new language with its associated flag.
* Added mobile-responsive CSS to the GLT settings page.

= 5.0.16 =
* Added Xhosa as a new language with its associated flag.

= 5.0.15 =
* Added Amharic as a new language with its associated flag.

= 5.0.14 =
* Fixed a file naming error in google-language-translator.php. This caused flags not to display - we apologize for the inconvenience.

= 5.0.13 =
* Renamed some of the wp_enqueue_script calls to include more unique file names, thus avoiding conflict with other plugins overriding these files.
* Corrected some file paths to be more accurate/secure.
* Removed WP Helpdesk logo from the settings page. We are no longer offering these services officially.

= 5.0.12 =
* Revert malicious changes made in 5.0.10

= 5.0.11 =
* Fixed incorrect link

= 5.0.10 =
* Tested up to 4.6

= 5.0.09 =
* Turned off error reporting. I apologize for the inconvenience.

= 5.0.08 =
* Added a new popup-style layout". You can find this new layout in the settings page located in "Settings > Google Language Translator".

= 5.0.07 =
* Changed the flag for Chinese(Traditional) to the Taiwanese flag.  Requested long ago by a few users - thanks for your months of patience!

= 5.0.06 =
* Fixed a XSS Cross Scripting Vulnerability in the plugin, as requested by Wordpress.org. Unnecessary code (during testing) was being posted to the settings page, so the code was removed.

= 5.0.05 =
* Added 3 new options to the settings page: English, Spanish, and Portuguese flag image variations.
* Fixed an error with the Floating Widget: order of flags was not being honored in certain cases.

= 5.0.04 =
* Corrected the text on the settings page to reflect 91 total flags, instead of 81 flags.

= 5.0.03 =
* Added 10 new languages and associated flags: Chichewa, Kazakh, Malagasy, Malayalam, Myanmar(Burmese), Sesotho, Sinhala, Sundanese, Tajik, and Uzbek.

= 5.0.02 =
* Updated the Tamil flag to use the Indian flag, instead of Tamil Tigers flag.

= 5.0.01 =
* Updated style.css to reflect the syntax error connecting to the Chinese flag.

= 5.0.0 =
* Wordpress security updates added to the settings page [wp_nonce_field()].
* Removed 3 outside Javascript files - these files are now called upon directly from Wordpress CMS.
* Unpacked flags.js p,a,c,k,e,r code. Unknowingly, this method of coding violated Wordpress plugin policy.

= 4.0.9 =
* Replaced: incorrect Catalonian flag image, with the correct image. I apologize for any inconvenience.
* Fixed: Floating Widget issue - previously it loaded 2 times when shortcode was added, which caused it not to work.

= 4.0.8 =
* Fixed the small syntax issue related to the Google Analytics tracking number - it was another cause of the language box not displaying.

= 4.0.7 =
* Fixed a CSS error in the settings panel display.
* Fixed the coding issue when "Specific Languages" option is chosen - the shortcode was not displaying the language dropdown.

= 4.0.6 =
* Removed: "onclick" events from diplaying directly inside HTML. Converted those events to jQuery.
* Fixed the shortcode that allows adding single languages to Wordpress menus. (New example is shown on settings page.)
* Consolidated all flag images into image sprites!
* Re-designed 10 flag images to match the quality of the other flags.
* Fixed the incorrect "alt" tags associated with flag images. The "alt" tag now displays the language name.
* Modified text on the settings page - also added some lightbox pop-ups to help explain settings.

= 4.0.5 =
* Fixed: Display bug when using single language shortcode.
* Added: New link on the Plugins menu page, which links directly to Google Language Translator settings.


= 4.0.4 =
* Added NEW shortcode!  Allows placement of single languages into the navigation menu, pages, and posts. See settings panel for usage details.
* Re-factored code in googlelanguagetranslator.php which reduced code to around 950 lines.
* Removed the "de-activation" hook, which previously deleted options when plugin de-activated.  Added "uninstall" hook instead, so that settings will be preserved only when user deletes the plugin completely.
* Updated CSS styles for the flags area to prevent themes from overriding layouts.

= 4.0.3 =
* Adjusted CSS styles for the flag display.

= 4.0.2 =
* Eliminated all (or most) HTML validation errors. Big improvement!
* Re-factored more code to increase efficiency.
* Added de-activation hook to reset all plugin settings when plugin is de-activated. (CSS Overrides and Google Analytics ID setting will remain in place and won't be deleted.)
* Fixed the issue with flag language checkboxes. Users can remove English flag if so desired. Previously, English flag was alway required to stay checked, which was not most user-friendly.

= 4.0.1 =
* Fixed PHP errors that were neglected in upgrade to 4.0.
* Added conditionals to prevent scripts from loading when the floating widget is turned off.

= 4.0 =
* Added 2 new features: 1) Drag/drop flags to re-arrange their order, and 2) Custom flag sizes (16px to 24px).
* Re-factored code in google-language-translator.php. Languages are now loaded dynamically and are not hard-coded.

= 3.0.9 =
* Added a title field to the Google Language Translator widget.
* Removed "unexpected text characters" error upon activation (due to error in activation hook).

= 3.0.8 =
* Added 9 new languages into the plugin (Hausa, Igbo, Maori, Mongolian, Nepali, Punjabi, Somali, Yoruba, Zulu).
* Corrected an "undefined variable" error that was being generated in Vertical and Horizontal layouts.
* Re-structured coding once again into an Object-Oriented approach.
* Moved all functions of the base class into 'googlelanguagetranslator.php' and the widget into 'widget.php'.
* Moved all javascript files into it's own JS folder.
* Fixed an display issue with "Edit Translations" - they were being hidden when "No branding" option was chosen.
* Corrected various "comma" errors in the string that outputs the script for loading the translator.
* Changed Changelog in readme.txt to show most recent changes first, instead of last.

= 3.0.7 =
* Removed an unnecessary CSS file, left over from development. Sorry for any inconvenience if you received display errors.

= 3.0.6 =
* Corrected a small display error in displaying the floating widget correctly.

= 3.0.5 =
* Added new Floating Widget (see settings page). The Floating Widget is simply another way for allowing website visitors to translate languages.  The functionality is built-in with the existing flag preferences, and can be turned on or off at the administrator's preference. The floating widget can also function in full with both the language box and/or flags showing OR hiding, so the administrator has full control of how it displays. The floating widget is placed at bottom right of the website in the free version, but can be placed in other locations by changing CSS styles associated with the box.
* Fixed the issue with Dashboard styles loading on the wrong pages. This was causing some annoying display issues on the Wordpress Dashboard.

= 3.0.4 =
* Re-factored/re-arranged more code in google languagetransltor.php by placing them into separate files.
* Fixed the issue of Custom CSS box not displaying it's styles to the website. This was only missed in this last update, due to re-arrangement of the files. Sorry for any inconvenience.
* Removed style2.php file, which is unnecessary and was being used in testing.

= 3.0.3 =
* Re-factored/re-arranged some of the code in googlelanguagetranslator.php by placing them into separate files.
* Fixed a minor coding issue in glt_widget.php - this was generating an error in Wordpress when debugging.
* Moved all CSS code into a single file.  The result is nice, clean inline CSS code that is now called only once.
* Fixed some additional CSS display issues.

= 3.0.2 =
* Adjusted additional minor invalid HTML issues on the settings page, and also in the front-end plugin display.

= 3.0.1 =
* Changed the url request to Google to allow both unsecured and secured page translations. Previously, some users experienced errors when trying to use the translator on "https://" (secured) pages.
* Adjusted some minor spacing issues in the settings page HTML (caused some annoying red HTML errors when using "View Source" in right-click menu).
* Removed old CSS styles that were added in the previous 3.0 update - the styles were added when Google servers were being updated, and were producing major translation dislay issues until their update was complete.  Now the styles I added are no longer needed.

= 3.0 =
* Correct a small CSS error that affected the showing/hiding of the Google toolbar.

= 2.9 =
***IMPORTANT: Google's most recent server update is producing display issues for website translation tool. There are major display issues with the translation toolbar and also the translations editing interface. Version 2.9 temporarily hides the edit translation functionality until Google decides to fix this issue, although you can still edit translations directly through your Google account at translate.google.com. Please direct any support requests through Wordpress.org and we will be happy to assist you.
* Fixed Google Translation toolbar display issue
* Fixed the Edit Translation interface by hiding it temporarily until Google fixes this
* Removed some unneeded styles from the style sheet.
* Fixed some CSS issues for the Google Branding display, which was affected by Google's most recent update

= 2.8 =
* Added an option to allow users to manage their own translations directly through their Google Translate account (free). When activated, users can hover over the text of their website, and edit the translations from the webpage directly.  Google will remember these translations, and then serve them to users once the edits are made. Users must install the Google Translate Customization meta tag provided through Google Translate here: translate.google.com/manager/website/settings. To obtain this meta tag, users need to configure the Google Translate tool directly from this website (although they will not use this because the plugin provides it), then the user can obtain the meta tag on the "Get Code" screen, which is displayed after configuring the Google Translate tool on this webpage.
* Added an option to allow users to turn on/off Google's multilanguagePage option, that when activated, the original website content will be a forced translation, instead of original content (but only after a translation is made.)
* Added more flexible styles to the settings page, so that left and right panels display nicely to the user.

= 2.7 =
* Added Google Analytics tracking capability to the plugin.
* Added a "CSS Styles" box in the settings panel.
* Changed the Catalonian flag to its correct flag image.
* Fixed coding issues that previously updated options incorrectly, which is why many users experienced display issues. All options are now initialized upon plugin activation, which should fix this issue permanently.
* Fixed a glitch in our usage of the translate API. Previously, when the user clicked the default language, it would toggle back and forth between the default language and "Afrikaans" language. Now, users will see the correct language displayed at all times, no matter how many times it is clicked.

= 2.6 =
* Added defaults to all options to ensure there are no more issues with the translator displaying upon installation. Again, sorry for any inconvenience.

= 2.5 =
* Eliminated an internal Wordpress error being generated from a coding mistake.
* Added a default option for the Translator alingment. Previously, this was causing the plugin to disapppear.

= 2.4 =
* Found a couple of small display errors in the settings page after uploading version 2.3. Sorry for any inconvenience!

= 2.3 =
* Added a "Preview" area on the settings page that allows you to see your settings in action.
* Added custom flag support for all languages (custom flags available ONLY when selecting the "ALL Languages" setting.
* Added an option that allows left/right alignment of the translation tool.
* Added the "Google Language Translator" widget.
* Updated googlelanguagetranslator.php to properly register setting in the admin settings panel.

= 2.2 =
* Added language "Portuguese" and "German" to the Original Language drop-down option on the settings page.
* Changed flag image for the English language (changed United States flag to the United Kingdom flag).
* Added link in the settings panel that points to Google's Attribution Policy.

= 2.1 =
* Added language "Dutch" to the Original Language drop-down option on the settings page.
* Added a new CSS class that more accurately hides the "Powered by" text when hiding Google's branding. In previous version, the "Powered by" text was actually disguised by setting it's color to "transparent", but now we have set it's font-size to 0px instead.

= 2.0 =
* Corrected some immediate errors in the 1.9 update.

= 1.9 =
* Added 7 flag image choices that, when clicked by website visitors, will change the language displayed, both on the website, AND in the drop-down box (flag language choices are limited to those provided in this plugin).
* Added 6 additional languages to the translator, as provided in Google's most recent updates ( new languages include Bosnian, Cebuano, Khmer, Marathi, Hmong, Javanese ).
* Corrected a minor technical issue where the Czech option (on the backend) was incorrectly displaying the Croatian language on the front end.
* Added jQuery functionality to the settings panel to improve the user experience.
* Added an option for users to display/hide the flag images.
* Added an option for users to display/hide the translate box when flags are displayed.
* Removed the settings.css file - I found a better way of displaying the options without CSS.

= 1.8 =
* Modified google-language-translator.php to display the correct output to the browser when horizontal layout is selected.  Previously, it was not displaying at all.

= 1.7 =
* Modified google-language-translator.php so that jQuery and CSS styles were enqueued properly onto the settings page only. Previously, jQuery functionality and CSS styles were being added to all pages of the Wordpresss Dashboard, which was causing functionality and display issues for some users.

= 1.6 =
* Added "Specific Language" support to the plugin settings, which allows the user to choose specific languages that are displayed to website visitors.

= 1.5 =
Added "Original Language" support to the plugin settings, which allows the user to choose the original language of their website, which ultimately removes the original language as a choice in the language drop-down presented to website visitors.

= 1.4 =
Corrected display problems associated with CSS styles not being placed correctly in wp_head.

= 1.3 =
* HTML display problem in the sidebar area now fixed. Previously, inserting the [google-translator] plugin into a text widget caused it to display above the widget, instead of inside of it.

= 1.2 =
* Shortcode support is now available for adding [google-translator] to text widgets. I apologize for any inconvenience this may have caused.

= 1.1 =
* The shortcode supplied on the settings page was updated to display '[google-translator]'.

== Screenshots ==
1. Settings include: inline or vertical layout, hide/show Google toolbar, display specific languages, and show/hide Google branding. Add the shortcode to pages, posts, and widgets.
2. Floating language selector
3. Flags and dropdown language selector
4. Language selector in menu with flagsPK%>�[e���		js/scripts-admin.jsnu�[���PK%>�[�#>�U4U4
S	js/scripts.jsnu�[���PK%>�[-�Z0�=url_addon/cacert.pemnu�[���PK%>�[��O��+�+FCurl_addon/gtranslate.phpnu�[���PK%>�[��lE��vourl_addon/config.phpnu�[���PK%>�[s;Z�`wurl_addon/rewrite.txtnu�[���PK%>�[�}url_addon/debug.txtnu�[���PK%>�[�7R;���}google-language-translator.phpnu�[���PK%>�[��7�څcss/glt-notices.cssnu�[���PK%>�[
r�jdd(�css/toolbar.cssnu�[���PK%>�[ϰH���
ˠcss/style.phpnu�[���PK%>�[�@c���
��css/style.cssnu�[���PK%>�[�rI�
±widget.phpnu�[���PK%>�[6Q�>�>��images/flags20.pngnu�[���PK%>�[�}��F�F���images/flags18.pngnu�[���PK%>�[�$������&images/flags.pngnu�[���PK%>�[��-GG-�images/gt_logo.svgnu�[���PK%>�[ ������images/flags22.pngnu�[���PK%>�[*��U����images/flags16.pngnu�[���PK%>�[7Bk�"�"�
�oreadme.txtnu�[���PK`�

F1le Man4ger